:root {
	--white: #fff;
	--black: #000;
	--blue: #0077ff;
	--mint: #7cedf8;
	--red: #ff3985;
	--purple: #8024c0;
	--grey: rgba(255, 255, 255, 0.5);
}

body {
	background-color: var(--black);
	color: var(--white);
	font-family: "VK Sans Display Expanded";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	--zoomValue: 1;

	zoom: var(--zoomValue);
}

.body-wrapper {
	position: relative;
	overflow: hidden;
	padding: 0 40px;
	border-width: 0 1px;
}

.main {
	border: 1px solid var(--white);
	border-width: 0px 1px;
}

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

.section {
	padding: 75px 0px;
	position: relative;
}

.text-30 {
	font-size: 30px;
	line-height: 100%;
}

.text-40 {
	font-size: 40px;
	line-height: 100%;
}

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

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

.content ul {
	padding-left: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
}

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

.content ul>li {
	list-style: none;
	position: relative;
}

.content ul>li::before {
	display: block;
	content: "";
	width: 15px;
	height: 15px;
	background-color: var(--mint);
	position: absolute;
	top: 3px;
	left: -30px;
}

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

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

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

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

.accordion__body {
	overflow: hidden;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.accordion__btn {
	cursor: pointer;
}

.accordion__item_open .accordion__caret {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.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;
	cursor: pointer;
	border: 1px solid var(--white);
	border-radius: 100px;
	padding: 12px 25px;
	font-family: "VK Sans Display Condensed";
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	background-color: var(--black);
}

.btn:hover {
	background-color: var(--mint);
	border-color: var(--mint);
	color: var(--black);
}

.faq {
	padding-left: 40px;
	padding-right: 40px;
}

.faq__item {
	padding: 40px;
	border: 1px solid var(--white);
	cursor: pointer;
}

.faq__item:not(:last-child) {
	border-bottom: none;
}

.faq__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.faq__btn-caret {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	min-width: 35px;
	color: var(--mint);
}

.faq__btn-text {
	width: 100%;
	max-width: 800px;
}

.faq__body {
	width: 100%;
	max-width: 70%;
}

.faq__body a {
	color: var(--mint);
}

.faq__body::before {
	display: block;
	content: "";
	width: 100%;
	height: 24px;
}

.faq__title {
	text-align: center;
	margin-bottom: 40px;
}

.about__title {
	text-align: center;
	margin-bottom: 50px;
}

.about__desc {
	padding: 40px;
	/* padding-right: 100px; */
	padding-bottom: 55px;
}

.about__tags {
	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;
	font-family: "VK Sans Display Condensed";
}

.about__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.about__left-bot {
	padding: 40px 26px;
	border-top: 1px solid var(--white);
	margin-top: auto;
}

.about__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--white);
	border-width: 1px 0;
	position: relative;
}

.about__right {
	border-left: 1px solid var(--white);
}

.about__right-title {
	margin-bottom: 40px;
}

.about__right-col {
	padding: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
}

.about__right-col:first-child {
	border-right: 1px solid var(--white);
}

.about__right-top {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 2fr 3fr;
	grid-template-columns: 2fr 3fr;
	border-bottom: 1px solid var(--white);
}

.about__right-bot {
	padding: 40px;
}

.ymaps-2-1-79-copyrights-pane {
	display: none;
}

.ymaps-2-1-79-ground-pane {
	-webkit-filter: grayscale(1) invert(1);
	filter: grayscale(1) invert(1);
}

.location__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
}

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

.location__info {
	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%;
	max-width: 725px;
	margin-left: 40px;
	text-align: center;
}

.location__info-item {
	padding: 34px;
	border-left: 1px solid var(--white);
	border-top: 1px solid var(--white);
	position: relative;
}

.location__info-item .dot {
	display: none;
}

.location__info-item:last-child {
	border-bottom: 1px solid var(--white);
}

.location__map {
	width: 100%;
	height: 670px;
	border: 1px solid var(--white);
	border-right: none;
}

.footer {
	padding: 75px 40px 25px;
	font-family: "VK Sans Display";
	border: 1px solid var(--white);
	border-width: 0px 1px;
}

.footer__wrapper {
	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;
}

.footer__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 42px;
	height: 42px;
}

.footer__logo svg {
	width: 100%;
	height: 100%;
}

.footer__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
}

.footer__social-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 42px;
	height: 42px;
}

.footer__social-link svg {
	width: 100%;
	height: 100%;
}

.footer__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer__bottom-right {
	text-align: right;
}

.program__title {
	text-align: center;
	margin-bottom: 50px;
}

.program__bottom {
	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;
	text-align: center;
	width: 100%;
	max-width: 570px;
	padding: 40px 30px;
	margin: 0 auto;
	position: relative;
}

.program__line_mob {
	display: none;
}

.program__line_right {
	display: none;
}

.program__line_bottom {
	display: none;
}

.program__item {
	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;
	text-align: center;
	width: 100%;
	max-width: 590px;
	padding: 40px 30px;
	margin-top: 40px;
	position: relative;
}

.program__item:nth-child(6)>.dot {
	display: none;
}

.program__item::before {
	display: block;
	content: "";
	width: 1px;
	height: 40px;
	position: absolute;
	top: -40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: var(--white);
}

.program__item_left {
	text-align: left;
	max-width: 660px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin: 0;
}

.program__item_left .program__desc {
	margin-top: 40px;
}

.program__item_left .program__speaker {
	margin-top: 40px;
}

.program__item_left::before {
	display: none;
}

.program__item_right {
	text-align: left;
	max-width: 630px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin: 0;
	padding: 40px;
}

.program__item_right .program__desc {
	margin-top: 40px;
}

.program__item_right .program__speaker {
	margin-top: 40px;
}

.program__item_right::before {
	display: none;
}

.program__desc {
	margin-top: 20px;
}

.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;
}

.program__hall {
	padding: 40px;
	margin-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border: 1px solid var(--white);
	color: var(--red);
}

.program__hall::before {
	display: block;
	content: "";
	width: 1px;
	height: 40px;
	position: absolute;
	top: -40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: var(--white);
}

.program__speaker {
	margin-top: 20px;
}

.program__halls-heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 35px 0 55px;
	background-image: url(../img/program/line-1.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}

.program__halls-heading-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 40px 67px;
	border: 1px solid var(--white);
	border-left: none;
	position: relative;
	color: var(--mint);
}

.program__halls-heading-subtitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 40px;
	border-right: 1px solid var(--white);
	border-bottom: 1px solid var(--white);
	position: relative;
	color: var(--red);
}

.program__halls-heading-col {
	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: 56px;
}

.program__speaker-position {
	margin-top: 15px;
	color: var(--grey);
	line-height: 150%;
}

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

.program__name {
	color: var(--mint);
	margin-top: 40px;
}

.program__name~.program__desc {
	text-align: left;
}

.program__bottom-line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: auto;
	margin-top: -200px;
	margin-bottom: -80px;
	position: relative;
}

.program__bottom-line img {
	width: 100%;
	height: auto;
}

.program__col:nth-child(2) .program__halls-heading-title {
	border: 1px solid var(--white);
	border-right: none;
}

.program__col:nth-child(2) .program__halls-heading-subtitle {
	border-right: none;
	border-left: 1px solid var(--white);
}

.program__col:nth-child(2) .program__halls-heading-col {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.program__halls-img_bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: auto;
	margin-bottom: -235px;
}

.program__halls-img_bg img {
	width: 100%;
	height: auto;
}

.dot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	position: absolute;
	background-color: var(--white);
	z-index: 3;
}

.header {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 0 40px;
	z-index: 10;
	pointer-events: none;
}

.header .nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 55px;
	font-family: "VK Sans Display Condensed";
}

.header .nav__img {
	display: none;
}

.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;
	padding: 25px 40px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	border: solid var(--white);
	border-width: 0px 1px;
}

.header__body {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
	width: 512px;
	opacity: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	pointer-events: none;
}

.header__menu-btn {
	display: none;
}

.header__nav {
	pointer-events: all;
}

@media screen and (min-width: 769px) {
	.header_scroll .header__wrapper {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		background-color: rgba(0, 0, 0, 0.1);
	}

	.header_scroll .header__body {
		opacity: 1;
		pointer-events: all;
	}

	.nav__item_mob {
		display: none;
	}
}




.fancybox__slide {
	padding: 0 !important;
}

.form__submit {
	margin: 0;
	margin-left: 75px;
	margin-top: 50px;
}

.form__checkbox {
	margin-top: 20px;
}

.popup {
	max-width: 100%;
	width: 100%;
	height: 100%;
	padding: 0;

}

#popup-registration {
	background-image: url(../img/popup-bg.png);
	background-repeat: no-repeat;
	background-size: auto 780px;
	background-position: top calc(50% - 30px) center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#popup-registration .popup__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#popup-registration .popup__title {
	padding: 40px;
}

#popup-registration .popup__form {
	padding: 95px 40px 40px;
	max-width: 864px;
	position: relative;
}

#popup-registration .popup__form .f-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#popup-success {
	padding: 72px 47px;
	zoom: 1.33;

	background-image: url(../img/success-bg.png);
	background-repeat: no-repeat;
	background-size: 1440px auto;
	background-position: top left;
}

.popup__success .f-button.is-close-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	top: 30px !important;
	right: 10px !important;
}

#popup-success .popup__heading {
	display: none;
}

#popup-error {
	zoom: 1.33;

	background-image: url(../img/error-bg.png);
	background-repeat: no-repeat;
	background-size: 1440px auto;
	background-position: center;
}

#popup-error .popup__bg {
	display: none;
}

#popup-error .popup__wrapper {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#popup-error .popup__heading {
	display: none;
}

.popup__info-title {
	margin-bottom: 20px;
	color: #7CEDF8;
}

.popup__info {
	aspect-ratio: unset;
	padding: 115px 135px;
	width: fit-content;
	position: relative;
}

.popup__info .f-button.is-close-btn {
	display: flex;
	top: 35px !important;
	right: 35px !important;
}

.popup__success-top {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 80px;
}

.popup__success-img {
	display: none;
}

.popup__success {
	width: 100%;
	max-width: 690px;
	padding: 50px 36px;
	position: relative;
}

.popup__success-body-title {
	margin-bottom: 20px;
	color: #7CEDF8;
}

.popup__success-body {
	margin-bottom: 30px;
}

.f-button {
	display: none;
}


.entrance__top {
	display: flex;
	width: fit-content;
	font-family: "VK Sans Display Condensed";
	margin-bottom: 65px;
}

.entrance__title {
	margin-bottom: 4px;
	margin-top: auto;
}

.entrance__subtitle {
	margin-bottom: 20px;
	font-style: italic;
}

.entrance__btn {
	margin-top: 30px;
	padding: 14px 25px;
	margin-bottom: auto;
}

.entrance__body {
	padding: 40px;
	border-bottom: 1px solid var(--white);
	flex-grow: 1;
	flex-direction: column;
	display: flex;

	position: relative;
}

.entrance__wrapper {
	border-bottom: 1px solid var(--white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: calc(100dvh / var(--zoomValue));
	position: relative;
}

.entrance__left {
	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%;
	max-width: 830px;
	border-right: 1px solid var(--white);
	justify-content: center;
}

.entrance__tags {
	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;
	padding: 33px 40px;
	font-family: "VK Sans Display Condensed";
	position: relative;
}

.entrance__tag {
	color: var(--grey);
}

.entrance__tag_active {
	background-color: var(--mint);
	padding: 7px 14px;
	border-radius: 5px;
	color: var(--black);
}

.entrance__logo {
	padding: 40px;
	border-top: 1px solid var(--white);
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;

	position: relative;
}

.entrance__stack {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
	padding: 40px 65px;
	border-top: 1px solid var(--white);
	text-align: center;
	position: relative;
}

.entrance__right {
	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-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	justify-content: center;
}

.entrance__right-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	border-bottom: 1px solid var(--white);
	margin: auto 0;

	position: relative;
}

.entrance__right-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: -306px;
	padding-left: 74px;
	padding-right: 34px;
	width: 764px;

}

.entrance__right-img-container {
	/* border-left: 1px solid var(--white); */
	position: relative;
}

.entrance__right-img-container::after {
	display: block;
	content: '';
	width: 1px;
	height: 100vh;
	position: absolute;
	bottom: 0;
	left: -1px;
	background-color: #fff;
}

.entrance__right-img video {
	width: 100%;
	height: 100%;
}

.entrance__right-tags {
	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;
	font-style: italic;
	padding: 46px 40px;
	margin-top: 200px;
}

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

.speakers__decor {
	flex-grow: 1;
	display: flex;
}

.speakers__decor img {
	width: 100%;
	height: auto;
	object-position: center bottom;
}

.br-mobile {
	display: none;
}

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

	.body-wrapper {
		padding: 0;
		padding-left: 20px;
	}

	.btn {
		padding: 6px 25px;
	}

	.header {
		padding: 0 20px;
		background-color: var(--black);
	}

	.header .nav {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0px;
		left: 0px;
		z-index: -1;
		background-color: var(--black);
		padding-left: 20px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		overflow-y: auto;
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	.header .nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 40px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		justify-content: center;
		font-size: 16px;
		border-left: 1px solid var(--white);
		padding: 120px 0 60px;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}

	.header .nav__img {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-top: auto;
		width: 100%;
		height: auto;
	}

	.header .nav__img img {
		width: 100%;
		height: auto;
	}

	.header__wrapper {
		border-right: none;
		padding: 15px 0;
		padding-left: 10px;
		background-color: var(--black);
		position: relative;
	}

	.header__wrapper::after {
		display: block;
		content: "";
		width: calc(100% + 40px);
		height: 1px;
		background-color: var(--white);
		position: absolute;
		bottom: 0;
		left: -20px;
	}

	.header__body {
		-webkit-box-ordinal-group: unset;
		-ms-flex-order: unset;
		order: unset;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		opacity: 1;
		pointer-events: all;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 40px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.header__logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		height: 19px;
		width: 46px;
	}

	.header__logo img {
		width: 100%;
		height: 100%;
		-o-object-fit: contain;
		object-fit: contain;
	}

	.header__btn {
		font-size: 14px;
	}

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

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

	.header-open {
		overflow: hidden;
	}

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

	.main {
		border-right: none;
	}

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

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

	.program__item {
		padding: 20px;
		margin-top: 20px;
		position: relative;
	}

	.program__item::before {
		height: 20px;
		top: -20px;
	}

	.program__item_left {
		margin: 0;
	}

	.program__item_left .program__desc {
		margin-top: 15px;
	}

	.program__item_left .program__speaker {
		margin-top: 20px;
	}

	.program__item_right {
		padding: 20px;
	}

	.program__item_right .program__desc {
		margin-top: 20px;
	}

	.program__speaker-position {
		font-size: 12px;
	}

	.program__title {
		margin-bottom: 20px;
	}

	.program__name {
		margin-top: 15px;
		text-align: left;
	}

	.program__name~.program__desc {
		text-align: left;
	}

	.program__hall {
		padding: 20px 47px;
		margin-top: 20px;
		font-size: 14px;
	}

	.program__hall::before {
		height: 20px;
		top: -20px;
	}

	.program__desc {
		font-size: 12px;
	}

	.program__speaker {
		font-size: 12px;
	}

	.program__halls-heading-col {
		font-size: 14px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		margin: 0;
	}

	.program__halls-img {
		margin: 0;
		margin-bottom: -5px;
	}

	.program__2col {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 47px;
	}

	.program__halls-heading-title {
		padding: 20px;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}

	.program__halls-heading-subtitle {
		padding: 20px;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		border-top: 1px solid var(--white);
		border-right: none;
	}

	.program__bottom {
		padding: 20px;
	}

	.program__bottom-line {
		margin: 0;
	}

	.program__line {
		margin-top: -10px;
	}

	.program__line_mob {
		display: block;
		margin-top: -5px;
	}

	.program__line_right {
		display: block;
		position: absolute;
		top: 0px;
		right: 0px;
		margin: 0;
	}

	.program__line_bottom {
		display: block;
		position: absolute;
		bottom: -53px;
		right: 0px;
		margin: 0;
	}

	.program__line img {
		max-width: 100%;
	}

	.location__heading {
		gap: 15px;
		margin-bottom: 33px;
	}

	.location__subtitle {
		font-size: 12px;
	}

	.location__map {
		height: 400px;
		width: 100%;
		border: none;
	}

	.location__wrapper {
		position: relative;
		z-index: 1;
		border: 1px solid var(--white);
		border-width: 1px 0;
	}

	.location__info {
		margin: 0;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 2;
	}

	.location__info-item {
		padding: 20px;
		font-size: 12px;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		background-color: var(--black);
		max-width: 209px;
		border: 1px solid var(--white);
	}

	.location__info-item:nth-child(1) {
		border-left: none;
	}

	.location__info-item:nth-child(2) {
		margin-top: -0.5px;
		margin-left: 97px;
		border-bottom: none;
	}

	.about__title {
		margin-bottom: 20px;
	}

	.about__desc {
		padding: 20px;
		padding-top: 0;
		font-size: 12px;
	}

	.about__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		border: none;
	}

	.about__tags {
		font-size: 12px;
		gap: 19px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.about__left-bot {
		overflow: hidden;
		padding: 20px 0;
		border-bottom: 1px solid var(--white);
	}

	.about__right {
		font-size: 12px;
		border-left: none;
		border-top: 1px solid var(--white);
	}

	.about__right-col {
		padding: 20px;
	}

	.about__right-title {
		margin-bottom: 15px;
	}

	.about__right-bot {
		padding: 20px;
		border-bottom: 1px solid var(--white);
	}

	.about__right-bot .about__tags {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		row-gap: 15px;
	}

	.faq__item {
		border-right: none;
		padding: 20px;
	}

	.faq__btn-text {
		font-size: 14px;
	}

	.faq__body {
		max-width: 100%;
		font-size: 12px;
	}

	.faq__body::before {
		height: 20px;
	}

	.faq__btn-caret {
		min-width: 25px;
		width: 25px;
	}

	.footer {
		padding: 40px 20px 68px;
		border-right: none;
	}

	.footer__logo {
		width: 30px;
		height: 30px;
	}

	.footer__social-link {
		width: 30px;
		height: 30px;
	}

	.footer__bottom {
		font-size: 16px;
		margin-top: 25px;
	}


	.fancybox__backdrop {
		background: #000;
	}

	.popup {
		background-image: none !important;
		background: #000;
		padding: 0 20px;
		height: auto;
	}

	.popup__wrapper {
		border: 1px solid var(--white);
		/* border-width: 0px 1px; */
		height: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	#popup-registration .popup__title {
		padding: 20px;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		border-right: 1px solid var(--white);
	}

	.popup__heading {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		border-bottom: 1px solid var(--white);
		margin-bottom: 20px;
		justify-content: space-between;
		align-items: center;
	}

	.popup__heading .f-button {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: static;
		width: 60px !important;
		height: 60px !important;
		padding: 20px;
		border-left: 1px solid var(--white);
	}

	.popup__info {
		padding: 80px 20px;
		margin-bottom: 200px;
		border: 1px solid var(--white);
		border-width: 1px 0;
	}

	.popup__success-top {
		gap: 0;
		margin: 0;
		font-size: 14px;
	}

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

	.popup__info-desc {
		font-size: 12px;
	}

	#popup-error {
		zoom: 1;
	}

	#popup-error .popup__bg {
		display: flex;
		width: calc(100% + 40px);
		height: 100%;
		position: absolute;
		top: 2px;
		left: -22px;
	}

	#popup-error .popup__bg img {
		width: 100%;
		height: 100%;
	}

	#popup-error .popup__heading {
		display: flex;
		margin-bottom: 142px;
	}

	#popup-error .popup__wrapper {
		display: block;
		position: relative;
	}

	.popup__info .f-button.is-close-btn {
		display: none;
	}

	.popup__success-img {
		display: flex;
		width: 100%;
		height: auto;
		margin-top: auto;
		padding: 20px;
		padding-top: 40px;
	}

	.popup__success-img img {
		width: 100%;
		height: auto;
	}

	.popup__success-top-text {
		display: flex;
		width: fit-content;
		padding: 20px;

		border-top: 1px solid var(--white);
		border-right: 1px solid var(--white);
	}

	.popup__success-top-text:nth-child(2) {
		border-right: none;
		border-bottom: 1px solid var(--white);
	}

	.popup__title {
		font-size: 14px;
	}

	.popup__success-body-title {
		font-size: 14px;
	}

	.popup__success-text {
		font-size: 12px;
	}

	.popup__success {
		padding: 0;
	}

	.popup__success-body {
		padding: 20px;
		margin-bottom: 10px;
	}

	.popup__title {
		flex-grow: 1;
		text-align: center;
	}

	#popup-success .footer__social {
		padding: 0 20px;
	}

	#popup-registration .popup__form {
		padding: 0;
	}

	.popup__form .f-button {
		display: none !important;
	}

	.popup__success .f-button.is-close-btn {
		display: none !important;
	}

	.f-button {
		display: none;
	}

	#popup-success .popup__heading {
		display: flex;
	}

	#popup-success {
		zoom: 1;
		padding: 0 20px;
	}

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


	.form__row:nth-child(1),
	.form__row:nth-child(2) {
		flex-direction: row;
	}

	.form__row:nth-child(1) .form__item:nth-child(1),
	.form__row:nth-child(2) .form__item:nth-child(1) {
		border-right: 1px solid #fff;
	}

	.form__row:nth-child(1) .form__item:nth-child(2),
	.form__row:nth-child(2) .form__item:nth-child(2) {
		border-left: 1px solid #fff;
	}

	.form__input {
		border-width: 1px 0;
	}

	.form__inputs {
		gap: 20px;
	}

	.form__submit {
		margin: 34px 20px 20px;
		width: calc(100% - 40px);
	}

	.form__checkbox {
		padding-left: 10px;
		padding-right: 20px;
	}

	.select__btn {
		border-width: 1px 0;
	}

	.entrance {
		padding-top: 64px;
	}

	.entrance__top {
		display: none;
	}

	.entrance__body {
		padding: 20px;
		padding-bottom: 0;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		border: none;
	}

	.entrance__btn {
		display: none;
	}

	.entrance__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		position: relative;
		min-height: 0;
	}

	.entrance__left {
		display: contents;
	}

	.entrance__right {
		display: contents;
	}

	.entrance__right-top {
		display: contents;
	}

	.entrance__stack {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding: 0px 20px;
		margin-top: 15px;
		border: none;
		font-size: 10px;
		margin-bottom: 20px;
	}

	.entrance__right-img-container {
		border: none;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}

	.entrance__right-img {
		padding: 0;
		margin: 0 auto;
		width: 190px;
		height: 190px;
	}

	.entrance__right-img img {
		width: 100%;
		height: auto;
	}

	.entrance__right-img video {
		width: 100%;
		height: auto;
	}

	.entrance__right-img canvas {
		width: 100%;
		height: 100%;
	}

	.entrance__logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		height: auto;
		padding: 20px;
		padding-bottom: 45px;
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
		margin-top: 20px;
		pointer-events: none;
	}

	.entrance__logo img {
		width: 100%;
		height: auto;
	}

	.entrance__tags {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
		padding: 15px;
		font-size: 12px;
		border-top: 1px solid var(--white);
	}

	.entrance__right-tags {
		display: none;
	}

	.entrance__desc {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		position: absolute;
		top: 356px;
		right: 0;
		text-align: right;
		padding-right: 20px;
		font-size: 11px;

		max-width: 200px;
	}

	.entrance__desc br {
		display: none;
	}

	.entrance__desc>span {
		display: block;
	}

	.entrance__desc>span:nth-child(1) {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		margin-top: 72px;
	}

	.entrance__desc>span:nth-child(4) {
		margin-right: 9px;
	}

	.entrance__subtitle {
		margin: 0;
	}

	.br-desktop {
		display: none;
	}

	.br-mobile {
		display: block;
	}

	.hide-mobile {
		display: none;
	}


	.entrance__stack>.dot:nth-child(1) {
		display: none;
	}

	.entrance__stack>.dot:nth-child(2) {
		top: 81px !important;
	}

	.entrance__wrapper>.dot {
		display: none;
	}

	.entrance__wrapper>.dot:nth-child(1) {
		display: block !important;
		top: -16px !important;
		background-color: #FF3985 !important;

		z-index: 10 !important;
	}

	.entrance__right-top>.dot {
		display: none;
	}

	.entrance__body>.dot {
		display: none;
	}

	.entrance__tags>.dot {
		display: none;
	}

	.entrance__logo>.dot:nth-child(1) {
		bottom: 68px !important;
		left: -3.5px !important;
		background-color: #fff !important;
	}

	.entrance__logo>.dot:nth-child(2) {
		display: none;
	}

	.program__item:nth-child(6)>.dot {
		display: block;
	}

	.location>.dot:nth-child(1) {
		background-color: #0077FF !important;
		top: 68px !important;
	}

	.location>.dot:nth-child(2) {
		top: 93px !important;
		left: -3.5px !important;
	}

	.location>.dot:nth-child(3) {
		display: none !important;
	}

	.location__info-item .dot {
		display: block;
	}

	.about__left {
		display: contents;
	}

	.about__left-bot {
		order: 2;
		border-top: none;
	}

	.form__recaptcha {
		padding: 0 10px;
	}

	.about__right-top {
		grid-template-columns: 3fr 2fr;
	}

	.about__right-col:nth-child(2) .about__right-item {
		display: none;
	}
}

.grecaptcha-badge {
	display: none;
}