:root {
	--white: #fff;
	--black: #000;
	--blue: #0077ff;
}

body {
	background-color: var(--black);
	color: var(--white);
	font-family: "VK Sans Display";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}

.body-wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.container {
	width: 1648px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 64px;
}

.main {
	padding-top: 82px;
}

.title {
	margin-bottom: 64px;
	text-align: center;
	font-family: "VK Sans Display Expanded";
	font-weight: 600;
	font-size: 36px;
	line-height: 120%;
	text-transform: uppercase;
}



.text-28 {
	font-size: 28px;
	line-height: 140%;
}

.text-20 {
	font-size: 20px;
	line-height: 140%;
}

.text-18 {
	font-size: 18px;
	line-height: 140%;
}

.text-17 {
	font-size: 17px;
	line-height: 140%;
}

.text-14 {
	font-size: 14px;
	line-height: 140%;
}

.text-13 {
	font-size: 13px;
	line-height: 140%;
}

.text-12 {
	font-size: 12px;
	line-height: 140%;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

.gray-text {
	color: #a8b1be;
}

.content p:not(:last-child) {
	margin-bottom: 1em;
}

.content a {
	color: #1a85ff;
	text-decoration: underline;
}

.tt-uc {
	text-transform: uppercase;
}

.section {
	padding: 100px 0;
}

.btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	border-radius: 100px;
	border: 2px solid var(--blue);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	cursor: pointer;
	background-color: var(--black);
	position: relative;
	z-index: 1;
	color: var(--white);
}

.btn:hover .btn__wrapper {
	background-color: #005effa8;
}

.btn:active .btn__wrapper {
	background-color: #0041b3cc;
}

.btn::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 100px;
	z-index: -2;
	background-color: rgba(0, 94, 255, 0.6);
	-webkit-filter: blur(30px);
	filter: blur(30px);
	pointer-events: none;
}

.btn::before {
	display: block;
	content: "";
	width: calc(100% + 6px);
	height: calc(100% + 6px);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 100px;
	z-index: -2;
	border: 3px solid var(--blue);
	-webkit-filter: blur(2px);
	filter: blur(2px);
	pointer-events: none;
}

.btn__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	background-color: #000;
	border-radius: 100px;
	padding: 11px 24px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	pointer-events: none;
}

.btn__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: -5px 0;
	margin-right: -18px;
	pointer-events: none;
}

.btn_blue {
	padding: 8px 12px;
	border-radius: 8px;
	border: none;
	background-color: #0187f6;
}

.btn_blue::after {
	display: none;
}

.btn_blue::before {
	display: none;
}

.header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	padding: 24px 0;
	background: #000;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition: border ease 0.5s;
}

.header_scroll {
	border-color: #0077ff;
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header__menu-btn {
	display: none;
}

.header .nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}

.header .nav__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 1;
	color: #ffffffb2;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header .nav__link::before {
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #005eff;
	position: absolute;
	top: 50%;
	left: -16px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	pointer-events: none;
	opacity: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header .nav__link_active {
	color: var(--white);
}

.header .nav__link_active::before {
	opacity: 1;
}

.footer {
	padding: 100px 0px 24px;
}

.footer__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 24px;
}

.footer__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.contacts__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
	max-width: 1264px;
	margin: 0 auto;
}

.contacts__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border: 1px solid #3c3d40;
	border-radius: 40px;
	overflow: hidden;
	width: 100%;
}

.contacts__item-body {
	padding: 32px;
	padding-right: 12px;
}

.contacts__btn {
	margin-top: 32px;
}

.contacts__social-link {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 24px;
}

.contacts__subtitle {
	margin-bottom: 10px;
	font-family: "VK Sans Display Expanded";
}

.contacts__content {
	color: #a8b1be;
}

.contacts__item-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 184px;
	width: 184px;
	height: 100%;
}

.contacts__item-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center right;
	object-position: center right;
}

.entrance {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.entrance__title {
	font-size: 54px;
	line-height: 110%;
	text-align: center;
	font-weight: 600;
	font-family: "VK Sans Display Expanded";
	text-transform: uppercase;
	position: relative;
	z-index: 2;
}

.entrance__subtitle {
	font-size: 42px;
	line-height: 100%;
	margin-top: 32px;
	font-family: "VK Sans Display Expanded";
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	color: #0077FF;
}

.entrance__wrapper {
	padding-top: 44px;
	min-height: calc(100vh - 82px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.entrance__wrapper_center {
	justify-content: center;
	padding: 0 0 82px;
}

.entrance__tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	color: #000;
	position: relative;
	z-index: 1;
	padding: 8px;
	font-family: "VK Sans Display Expanded";
	margin-bottom: 50px;
	position: relative;
	z-index: 2;
}

.entrance__bg {
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: -1;
}

.entrance__bg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

.entrance__tag-bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.entrance__tag-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 3px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 4px 6px;
	border-radius: 6px;
	background-color: #005eff;
	color: #fff;
	position: absolute;
	bottom: 0;
	right: 0;
	-webkit-transform: translate(50%, 50%) rotate(-9.14deg);
	transform: translate(50%, 50%) rotate(-9.14deg);
}

.entrance__btn {
	margin-top: 32px;
	position: relative;
	z-index: 2;
	margin-bottom: auto;
}

.entrance__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 1050px;
	height: auto;
	margin-top: -12%;
	position: relative;
	z-index: 1;
}

.entrance__img::after {
	display: block;
	content: "";
	width: 1100px;
	height: auto;
	aspect-ratio: 1.6;
	border-radius: 50%;
	background-color: #005eff;
	position: absolute;
	top: 20%;
	left: 50%;
	z-index: -1;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-filter: blur(150px);
	filter: blur(150px);
}

.entrance__img::before {
	display: block;
	content: "";
	width: 20%;
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: #005eff;
	position: absolute;
	top: 60%;
	left: 50%;
	z-index: 2;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-filter: blur(150px);
	filter: blur(150px);
	display: none;
}

.entrance__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.advantages {
	position: relative;
	z-index: 2;
	background-color: #000;
}

.advantages__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
}

.advantages__card {
	width: 100%;
	height: auto;
	min-height: 252px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 28px;
	gap: 8px;
	border: 1px solid #3c3d40;
	border-radius: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.advantages__card-title {
	font-family: "VK Sans Display Expanded";
	text-transform: uppercase;
	font-weight: 700;
	color: #005eff;
}

.advantages__card-bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 28px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	pointer-events: none;
}

.advantages__card-bg img {
	width: 14px;
	height: 14px;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.advantages__card-bg-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}


.about {
	padding-top: 0 !important;
}

.about__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-family: "VK Sans Display Expanded";
	text-transform: uppercase;
	font-size: 14.4vw;
	line-height: 75%;
	font-weight: 600;
	text-align: center;
	margin-left: -1%;
	margin-top: -1%;
	margin-bottom: 70px;
}

.about__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 87px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: translateX(-127px);
	transform: translateX(-127px);
}

.about__body {
	width: 100%;
	max-width: 496px;
}

.about__panel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 32px;
	background-color: #ffffff1a;
	border-radius: 20px;
	border: 1px solid #ffffff1a;
	-webkit-box-shadow: -6px 0 0 #ffff;
	box-shadow: -6px 0 0 #ffff;
	padding: 22px 16px;
	margin-left: 6px;
}

.about__panel-label {
	margin-bottom: 8px;
	color: #ffffffb2;
}

.about__panel-title {
	font-family: "VK Sans Display Expanded";
	font-weight: 600;
}

.about__wrapper {
	position: relative;
	z-index: 1;
}

.about__wrapper::after {
	display: block;
	content: "";
	width: 100%;
	min-width: 1400px;
	height: auto;
	aspect-ratio: 3;
	border-radius: 50%;
	background-color: #005eff;
	-webkit-filter: blur(150px);
	filter: blur(150px);
	z-index: -1;
	position: absolute;
	top: 0px;
	left: 50%;
	-webkit-transform: translate(-50%, -40%);
	transform: translate(-50%, -40%);
}

.program__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.program__item {
	padding: 50px;
	border-radius: 60px;
	border: 1px solid #0077ff;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.program__item::after {
	display: block;
	content: "";
	width: 1000px;
	height: auto;
	aspect-ratio: 1.5;
	border-radius: 50%;
	background-color: #005eff;
	-webkit-filter: blur(180px);
	filter: blur(180px);
	-webkit-transform: translate(50%, 50%);
	transform: translate(50%, 50%);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.program__item:nth-child(2)::after {
	display: none;
}

.program__item:nth-child(3)::after {
	aspect-ratio: 3;
	right: 40%;
	display: none;
}

.program__name {
	font-family: "VK Sans Display Expanded";
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.program__desc {
	color: #ffffffb2;
	/* margin-bottom: 24px; */
}

.program__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.program__tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 8px 13px;
	font-weight: 500;
	background-color: #ffffff1a;
	border-radius: 100px;
}

.program__speaker {
	margin-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
}

.program__speaker-photo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 56px;
	min-width: 56px;
	height: 56px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.program__speaker-photo svg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.program__speaker-photo img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.program__speaker-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
	width: 100%;
	max-width: 337px;
}

.program__speaker-position {
	color: #ffffffb2;
}



.speakers__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	position: relative;
	z-index: 1;
}

.speakers_row .speakers__wrapper {
	display: flex;
}

.speakers__wrapper::after {
	display: block;
	content: "";
	width: 555px;
	height: auto;
	aspect-ratio: 1.1;
	background-color: #0040ff;
	border-radius: 50%;
	-webkit-filter: blur(100px);
	filter: blur(100px);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -2;
}

.speakers_row .speakers__wrapper::after {
	left: 90%;
	opacity: 0.45;
	width: 800px;
}

.speakers__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	position: relative;
}

.speakers_row .speakers__item {
	padding: 0 40px;
}

.speakers_row .speakers__item:first-child {
	padding-left: 0;
}

.speakers_row .speakers__item:last-child {
	padding-right: 0;
}

.speakers_row .speakers__item:not(:last-child) {
	border-right: 1px solid #FFFFFF4D;
}


.speakers:not(.speakers_row) .speakers__item {
	--padding-value: 64px;
	--border-width: calc(100% - var(--padding-value));
	padding-bottom: var(--padding-value);
}

.speakers:not(.speakers_row) .speakers__item:nth-child(odd) {
	padding-right: var(--padding-value);
}

.speakers:not(.speakers_row) .speakers__item:nth-child(even) {
	padding-left: var(--padding-value);
}

.speakers:not(.speakers_row) .speakers__item:nth-last-child(-n + 2) {
	padding-top: var(--padding-value);
	padding-bottom: 0;
}

.speakers:not(.speakers_row) .speakers__item:nth-child(1)::before {
	display: block;
	content: "";
	height: var(--border-width);
	width: 1px;
	background-color: #ffffff4d;
	position: absolute;
	top: 0;
	right: 0;
}

.speakers:not(.speakers_row) .speakers__item:nth-child(1)::after {
	display: block;
	content: "";
	width: var(--border-width);
	height: 1px;
	background-color: #ffffff4d;
	position: absolute;
	bottom: 0;
	left: 0;
}

.speakers:not(.speakers_row) .speakers__item:nth-child(2)::before {
	display: block;
	content: "";
	width: 39px;
	height: 39px;
	background-image: url(../img/icons/star-2.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.speakers:not(.speakers_row) .speakers__item:nth-child(4)::before {
	display: block;
	content: "";
	height: var(--border-width);
	width: 1px;
	background-color: #ffffff4d;
	position: absolute;
	bottom: 0;
	left: 0;
}

.speakers:not(.speakers_row) .speakers__item:nth-child(4)::after {
	display: block;
	content: "";
	width: var(--border-width);
	height: 1px;
	background-color: #ffffff4d;
	position: absolute;
	top: 0;
	right: 0;
}

.speakers__photo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: auto;
	max-width: 186px;
	aspect-ratio: 0.732;
	border-radius: 40px;
	overflow: hidden;
	background-color: #1e1e1e;
	margin-bottom: 40px;
}

.speakers__photo img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.speakers__name {
	margin-bottom: 16px;
	font-family: "VK Sans Display Expanded";
	font-weight: 500;
}

.speakers__position {
	color: #0077ff;
	text-transform: uppercase;
	font-family: "VK Sans Display Expanded";
	font-weight: 500;
}

.speakers__desc {
	margin-top: 24px;
}

.topics {
	position: relative;
	z-index: 2;
	background-color: #000;
}

.topics__title {
	text-align: left;
	max-width: 1000px;
	font-size: 32px;
	line-height: 120%;
}

.topics__btn {
	margin-bottom: 40px;
}

.topics__label {
	font-weight: 500;
	font-family: "VK Sans Display Expanded";
	color: #ffffffb2;
	margin-bottom: 16px;
}

.topics__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
	margin-top: 40px;
}

.topics__item {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}

.topics__num {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	color: #005eff;
	font-weight: 700;
	font-family: "VK Sans Display Expanded";
}

.topics__num::before {
	display: block;
	content: "";
	height: 14px;
	width: 3px;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	background-color: #005eff;
}

.topics__name {
	font-size: 18px;
	line-height: normal;
}

.topics__line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: auto;
}

.topics__line img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: top center;
	object-position: top center;
}

.popup {
	display: none;
	padding: 20px 32px;
	border-radius: 12px;
	border: 1px solid #626d7a;
	background-color: #151515;
	color: #fefefe;
	width: 100%;
	max-width: 1008px;
	zoom: 0.8;
}

.popup__status {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.popup__status-title {
	font-family: "VK Sans Display Expanded";
	margin-bottom: 20px;
}

.popup__status-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 24px;
}

.popup__title {
	font-family: "VK Sans Display Expanded";
	margin-bottom: 22px;
}

.popup_status {
	max-width: 470px;
	text-align: center;
}

.fancybox__backdrop {
	background-color: #000;
}

.fancybox__content>.f-button.is-close-btn {
	top: 12px !important;
	right: 12px !important;
	background: none !important;
}

.fancybox__slide {
	padding: 20px;
}

.info {
	position: relative;
	z-index: 2;
	padding: 100px 0;
	background-color: #000;
}

.info__wrapper {
	position: relative;
	padding: 76px 0 44px;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.info__card-bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	pointer-events: none;
}

.info__card-bg img {
	width: 24px;
	height: 24px;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.info__card-bg-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.info__content {
	width: 100%;
	max-width: 646px;
}

.info__title {
	width: 100%;
	max-width: 400px;
	text-align: left;
	margin: 0 !important;
}

.organizers__wrapper {
	display: flex;
	gap: 16px;
}

.organizers__card {
	padding: 8px;
	border-radius: 40px;
	border: 1px solid #3C3D40;
	display: flex;
	gap: 32px;
	width: 100%;
}

.organizers__photo {
	display: flex;
	border-radius: 36px;
	overflow: hidden;
	width: 134px;
	min-width: 134px;
	height: 190px;
	background-color: #1E1E1E;
}

.organizers__photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom center;
}

.organizers__info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
	padding-left: 0;
}

.organizers__desc {
	color: #A8B1BE;
}

.organizers__name {
	font-family: 'VK Sans Display Expanded';
}

.text-68 {
	font-size: 68px;
	line-height: 140%;
}

img {
	user-select: none;
	pointer-events: none;
}

@media screen and (max-width: 1440px) {
	.section {
		padding: 64px 0px;
	}

	.title {
		font-size: 28px;
		line-height: 120%;
	}

	.entrance__title {
		font-size: 48px;
		line-height: 100%;
	}

	/* .entrance__img {
		margin-top: 0;
	} */

	.program__item {
		max-width: 1090px;
	}

	.program__item:nth-child(2)::after {
		display: block;
		aspect-ratio: 3;
		right: 40%;
	}
}

@media screen and (max-width: 1300px) {
	.header__wrapper {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		gap: 20px;
	}

	.header__logo {
		margin-right: auto;
	}

	.header__menu-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		cursor: pointer;
		width: 42px;
		height: 42px;
		background-color: #151515;
		border-radius: 8px;
	}

	.header__menu-btn svg:nth-child(2) {
		display: none;
	}

	.header .nav {
		position: fixed;
		z-index: -1;
		top: 0px;
		left: 0px;
		width: 100%;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		padding: 140px 20px 64px;
		background-color: #000;
		overflow: hidden;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
	}

	.header .nav::after {
		display: block;
		content: "";
		width: 300px;
		height: 300px;
		border-radius: 50%;
		background-color: #005eff;
		-webkit-filter: blur(50px);
		filter: blur(50px);
		position: absolute;
		bottom: 0;
		right: 50px;
		-webkit-transform: translate(50%, 50%);
		transform: translate(50%, 50%);
	}

	.header .nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
		gap: 38px;
	}

	.body-wrapper {
		position: relative;
		z-index: 1;
	}

	.body-wrapper::after {
		display: block;
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0px;
		left: 0px;
		background-color: #00000080;
		z-index: 2;
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
		opacity: 0;
		pointer-events: none;
	}

	.header-open {
		overflow: hidden;
	}

	.header-open .body-wrapper::after {
		opacity: 1;
	}

	.header-open .header__menu-btn svg:nth-child(1) {
		display: none;
	}

	.header-open .header__menu-btn svg:nth-child(2) {
		display: block;
	}

	.header-open .header .nav {
		-webkit-transform: none;
		transform: none;
	}

	.advantages__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.advantages__card {
		min-height: 228px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.advantages__card-text {
		max-width: 637px;
	}

	.speakers_row .speakers__item {
		padding: 0 24px;
	}

	.organizers__wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.organizers__card:last-child {
		grid-column: span 2;
	}
}

@media screen and (max-width: 1024px) {
	.container {
		padding: 0px 40px;
	}

	.entrance__title {
		font-size: 42px;
		line-height: 100%;
	}

	/* .entrance__img {
		width: 160vw;
		min-width: 900px;
	} */

	.about__row {
		-webkit-transform: none;
		transform: none;
	}

	.program__item:nth-child(even)::after {
		right: 100%;
	}

	.speakers__item {
		--padding-value: 40px;
	}

	.speakers__item:nth-child(odd) {
		padding-right: 28px;
	}

	.speakers__item:nth-child(even) {
		padding-left: 28px;
	}

	.info {
		padding: 64px 0;
	}

	.info__wrapper {
		flex-direction: column;
		gap: 20px;
		padding: 64px 0;
	}

	.info__title {
		max-width: none;
	}

	.info__content {
		max-width: none;
	}

	.entrance__subtitle {
		font-size: 32px;
		line-height: 100%;
	}
}

@media screen and (max-width: 991px) {
	.contacts__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.topics__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 40px;
		margin: 0;
	}

	.topics__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 24px;
	}

	.topics__line {
		height: 578px;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}

	.topics__item {
		max-width: 230px;
	}

	.speakers_row .speakers__wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.speakers_row .speakers__item:nth-child(n) {
		padding: 0;
		border: none;
	}

	.speakers_row .speakers__item:not(:last-child) {
		padding-bottom: 40px;
		border-bottom: 1px solid #FFFFFF4D;
	}

	.organizers__wrapper {
		display: flex;
		flex-direction: column;
	}
}

@media screen and (max-width: 768px) {
	.about__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
	}

	.speakers__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 40px;
	}

	.speakers__wrapper::after {
		width: 160%;
		height: 60%;
		left: 80%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.speakers__item:nth-child(n) {
		padding: 0 !important;
	}

	.speakers__item:nth-child(n)::before {
		display: none !important;
	}

	.speakers__item:nth-child(n)::after {
		display: none !important;
	}

	.speakers__item:not(:last-child) {
		padding: 0 0 40px !important;
		border-bottom: 1px solid #ffffff4d;
	}

	.speakers__name {
		margin-bottom: 8px;
	}

	.speakers__desc {
		margin-top: 18px;
	}
}

@media screen and (max-width: 570px) {
	.container {
		padding: 0px 20px;
	}

	.section {
		padding: 40px 0;
	}

	.text-20 {
		font-size: 16px;
		line-height: 140%;
	}

	.text-18 {
		font-size: 16px;
	}

	.title {
		font-size: 24px;
		line-height: 120%;
		margin-bottom: 36px;
	}

	.header__menu-btn {
		width: 36px;
		min-width: 36px;
		height: 36px;
	}

	.header .nav {
		height: 100vh;
	}

	.header .btn__wrapper {
		padding: 8px 18px;
	}

	.footer {
		padding-top: 40px;
	}

	.entrance__title {
		font-size: 30px;
		line-height: 110%;
		/* margin-bottom: auto; */
	}

	.entrance__subtitle {
		font-size: 24px;
		line-height: 100%;
		margin-top: 24px;
	}

	.entrance__tag {
		margin-bottom: 30px;
	}

	.entrance__img {
		width: 100vw;
		margin-bottom: 0;
		margin-top: 20px;
	}

	.entrance__img::before {
		display: none;
	}

	/* .entrance__img::after {
		width: 80vw;
		height: 80vw;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		top: 0px;
		-webkit-filter: blur(70px);
		filter: blur(70px);
	} */

	.entrance__btn {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
		margin-top: 5px;
		margin-bottom: 0;
	}

	.entrance__wrapper {
		/* min-height: 500px; */
		height: calc(100vh - 82px);
		padding-bottom: 30px;
	}

	.entrance__bg img {
		/* object-position: center bottom !important; */
	}

	.contacts__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		border-radius: 20px;
	}

	.contacts__item-img {
		width: 100%;
	}

	.contacts__item-body {
		padding: 20px;
	}

	.advantages__card {
		min-height: 0;
		padding: 66px 20px;
		border-radius: 20px;
	}

	.advantages__wrapper {
		gap: 20px;
	}

	.advantages__card-title {
		font-size: 14px;
	}

	.program__name {
		font-size: 14px;
		line-height: 24px;
	}

	.program__item {
		padding: 20px;
		border-radius: 20px;
	}

	.program__item:nth-child(1)::after {
		display: none;
	}

	.program__item:nth-child(2)::after {
		right: 10%;
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
		height: 800px;
		aspect-ratio: unset;
	}

	.program__item:nth-child(3)::after {
		display: block;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: -40%;
	}

	.program__speaker {
		margin-top: 30px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.speakers__name {
		font-size: 14px;
		line-height: 130%;
	}

	.popup {
		padding: 20px;
	}

	.popup .f-button.is-close-btn {
		width: 15px;
		height: 15px;
	}


	.info {
		padding: 40px 0;
	}

	.info__wrapper {
		padding: 44px 0;
		gap: 24px;
	}

	.organizers__card {
		flex-direction: column;
		gap: 32px;
		border-radius: 20px;
	}

	.organizers__info {
		padding: 0 12px 16px;
	}

	.organizers__photo {
		width: 100%;
		border-radius: 20px;
	}

	.entrance__wrapper_center {
		padding-bottom: 140px;
	}
}