:root {
	--white: #fff;
	--black: #000;
	--black-2: #202020;
	--blue-1: #0077ff;
	--blue-2: #005eff;
	--gray-1: #e8ecf5;
	--gray-2: #7c8a9a;
	--gray-3: rgba(237, 243, 252, 0.86);
	--gray-4: #f8fafe;
	--gray-5: rgba(10, 20, 40, 0.08);
	--red: #ff6c6c;
}

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

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

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

.main {
	padding-top: 80px;
}

.section {
	padding: 72px 0;
}

.page-title {
	font-size: 176px;
	font-style: normal;
	font-weight: 600;
	line-height: 90%;
	text-transform: uppercase;
}

.text-48 {
	font-size: 48px;
	line-height: 120%;
}

.text-44 {
	font-size: 44px;
	line-height: 120%;
}

.text-32 {
	font-size: 32px;
	line-height: 125%;
}

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

.text-24 {
	font-size: 24px;
	line-height: 120%;
}

.text-22 {
	font-size: 22px;
	line-height: 130%;
}

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

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

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

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

.gray-text {
	color: var(--gray-2);
}

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

.content ul li {
	padding-left: 30px;
	position: relative;
}

.content ul li::after {
	display: block;
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--black);
	position: absolute;
	left: 12px;
	top: 14px;
}

.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;
	padding: 12px 24px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	font-weight: 500;
}

.btn:hover {
	border-radius: 50px;
}

.btn_blue {
	color: var(--white);
	background-color: var(--blue-1);
}

.btn_blue:active {
	background-color: var(--blue-2);
}

.btn_white {
	background-color: var(--white);
	color: var(--black);
}

.btn_border {
	border: 1.6px solid var(--white);
}

.btn_small {
	padding: 10px 20px;
}

.btn_wide {
	width: 100%;
}

.checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	cursor: pointer;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.checkbox__checkmark {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 24px;
	height: 24px;
}

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

.checkbox__checkmark svg:nth-child(3) {
	display: none;
}

.checkbox__input {
	display: none;
}

.checkbox__input:checked~.checkbox__checkmark svg:nth-child(1) {
	display: none;
}

.checkbox__input:checked~.checkbox__checkmark svg:nth-child(2) {
	display: block;
}

.checkbox__text a {
	color: var(--blue-1);
}

.select {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	position: relative;
}

.select__btn {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
	padding: 12px 24px;
	padding-right: 16px;
	background-color: var(--black-2);
	border: 1px solid transparent;
	cursor: pointer;
}

.select__btn-text {
	width: 100%;
}

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

.select__field {
	display: none;
}

.select__body {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	width: 100%;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: var(--black-2);
	border: 1px solid transparent;
	opacity: 0;
	pointer-events: none;
}

.select__item {
	padding: 12px 20px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	cursor: pointer;
}

.select__item:hover {
	background-color: #181818;
}

.select__item_disabled {
	padding: 0;
	pointer-events: none;
}

.select_open .select__body {
	pointer-events: all;
	opacity: 1;
}

.select_open .select__caret {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.title {
	font-size: 62px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	margin-bottom: 60px;
	text-align: center;
}

.gray-bg {
	background-color: var(--gray-1);
}

.header {
	background-color: var(--black);
	position: fixed;
	z-index: 10;
	width: 100%;
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 48px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 18px 0;
	background-color: var(--black);
}

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

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

.header__body {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}

.header__menu-btn {
	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;
	width: 40px;
	height: 25px;
	cursor: pointer;
	display: none;
	position: relative;
}

.header__menu-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--white);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__menu-btn::after {
	content: "";
	display: block;
	width: 60%;
	height: 2px;
	background-color: var(--white);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	position: absolute;
	bottom: 0;
	left: 0;
}

.header__menu-btn::before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--white);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	position: absolute;
	top: 0;
	left: 0;
}

.header__menu-btn:hover::after {
	width: 100%;
}

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

.header .nav__bottom {
	display: none;
}

.header .nav__link {
	position: relative;
}

.header .nav__link::after {
	display: block;
	content: "";
	width: 0;
	height: 2px;
	background-color: var(--blue-1);
	position: absolute;
	top: calc(100% + 4px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	border-radius: 10px;
}

.header .nav__link:hover::after {
	width: 100%;
}

.footer__wrapper {
	padding: 32px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

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

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

.footer__social-link svg {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.slider-navigation {
	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;
	width: 100%;
	position: absolute;
	top: calc(50% - 17px);
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.swiper:hover .slider-navigation {
	opacity: 1;
}

.slider-prev,
.slider-next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--gray-5);
	cursor: pointer;
	background-image: url(../img/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	pointer-events: all;
}

.slider-next {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.slider-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}

.slider-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	opacity: 1;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	background-color: var(--black-2);
}

.slider-pagination .swiper-pagination-bullet-active {
	background-color: var(--blue-1);
}

.entrance {
	padding: 120px 0;
}

.entrance__wrapper {
	position: relative;
}

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

.entrance__title-icon {
	display: none;
}

.entrance__btn {
	padding: 12px 32px 14px;
}

.entrance__date {
	position: absolute;
	top: 0;
	left: 17%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.entrance__date-text {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(18.55%, #07f), color-stop(111.29%, #000));
	background: linear-gradient(180deg, #07f 18.55%, #000 111.29%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 300;
	text-align: justify;
	leading-trim: both;
	text-edge: cap;
}

.entrance__date-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 124px;
	width: auto;
}

.entrance__date-icon svg {
	width: 100%;
	height: 100%;
}

.entrance__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: -40px;
	right: -45px;
	width: auto;
	height: calc(100% + 80px);
	z-index: -1;
}

.entrance__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top left;
	object-position: top left;
}

.line {
	padding: 18px 0;
	border: solid var(--white);
	border-width: 1.6px 0;
}

.line__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	gap: 24px;
}

.line__text {
	white-space: nowrap;
}

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

.line__slider-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.line__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.panel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 48px;
	padding-right: 0;
	margin-top: 100px;
	background-color: var(--gray-2);
	color: var(--white);
	overflow: hidden;
	position: relative;
}

.panel::before {
	display: block;
	content: "";
	width: 660px;
	height: 660px;
	opacity: 0.4;
	background: var(--gray-1);
	-webkit-filter: blur(250px);
	filter: blur(250px);
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateX(-25%);
	transform: translateX(-25%);
	pointer-events: none;
}

.panel::after {
	display: block;
	content: "";
	width: 550px;
	height: 550px;
	opacity: 0.4;
	background: var(--gray-1);
	-webkit-filter: blur(250px);
	filter: blur(250px);
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
	pointer-events: none;
}

.panel__body {
	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: 710px;
}

.panel__title {
	background: linear-gradient(272deg, #e8ecf5 -2.73%, #7c8a9a -2.72%, #eee 46.02%, #d4dae6 72.35%, #7c8a9a 110.67%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 16px;
}

.panel__btn {
	margin-top: 48px;
}

.panel__tags {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 16px;
	row-gap: 28px;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	color: var(--gray-3);
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
}

.panel__tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 16px 35px;
	border-radius: 100px;
	background-color: var(--gray-5);
}

.panel__img {
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.panel__img svg {
	width: auto;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: right;
	object-position: right;
}

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

.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;
	gap: 12px;
}

.program__item {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 200px auto;
	grid-template-columns: 200px auto;
	gap: 24px;
}

.program__item_marker .program__body {
	padding-left: 28px;
	border-left: 8px solid var(--blue-1);
}

.program__time {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 36px;
}

.program__body {
	padding: 36px;
	background-color: var(--black-2);
}

.program__speaker {
	margin-top: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	padding-right: 30px;
}

.program__speaker-photo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 50%;
	min-width: 60px;
	width: 60px;
	height: 60px;
}

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

.program__speaker-position {
	margin-top: 4px;
}

.program .accordion__body {
	overflow: hidden;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	width: 100%;
	max-width: 836px;
	padding-right: 30px;
}

.program .accordion__body::before {
	display: block;
	content: "";
	height: 20px;
}

.program .accordion__btn {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	cursor: pointer;
	position: absolute;
	bottom: 0;
	right: 0;
}

.program .accordion__item {
	position: relative;
}

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

.program .accordion__caret {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.location__title {
	color: var(--blue-1);
	margin-bottom: 12px;
}

.location__wrapper {
	padding: 36px;
	padding-bottom: 176px;
	position: relative;
	overflow: hidden;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(-189.21%, #07f), color-stop(71.06%, #000)), #000;
	background: linear-gradient(180deg, #07f -189.21%, #000 71.06%), #000;
}

.location__wrapper-border {
	padding: 2px;
	background: linear-gradient(135deg, #07f -10%, #000 110%);
}

.location__body {
	width: 100%;
	max-width: 612px;
}

.location__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	width: 60%;
	height: 100%;
	bottom: 0;
	right: 0;
	pointer-events: none;
}

.location__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top left;
	object-position: top left;
}

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

.faq .accordion__item {
	background-color: var(--black-2);
	padding: 36px;
	padding-right: 64px;
	position: relative;
	cursor: pointer;
}

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

.faq .accordion__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.faq .accordion__btn-text {
	width: 100%;
	max-width: 960px;
}

.faq .accordion__caret {
	position: absolute;
	bottom: 24px;
	right: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 16px;
	height: 16px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.faq .accordion__caret svg {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.faq .accordion__body {
	overflow: hidden;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	cursor: auto;
	width: 100%;
	max-width: 960px;
}

.faq .accordion__body::before {
	display: block;
	content: "";
	width: 100%;
	height: 16px;
}

.contacts__slide {
	padding: 2px;
	background: linear-gradient(135deg, #07f -10%, #000 110%);
	height: auto;
}

.contacts__slide-wrapper {
	height: 100%;
	padding: 36px;
	overflow: hidden;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(-158.66%, #07f), color-stop(70.83%, #000));
	background: linear-gradient(180deg, #07f -158.66%, #000 70.83%);
}

.contacts__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 50px;
}

.contacts__desc {
	margin-top: 8px;
}

.contacts__pagination {
	display: none;
}

.about {
	padding-top: 144px;
}

.about__slide {
	padding: 2px;
	background: linear-gradient(135deg, #07f -10%, #000 110%);
	height: auto;
}

.about__slide-wrapper {
	height: 100%;
	padding: 36px;
	padding-bottom: 0;
	overflow: hidden;
	background-color: #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.about__desc {
	margin-top: 8px;
	margin-bottom: 36px;
}

.about__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: auto;
	height: auto;
	margin: 0 -36px;
	margin-top: auto;
}

.about__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top left;
	object-position: top left;
}

.about__pagination {
	display: none;
}

.popup {
	display: none;
	background-color: var(--black);
	color: var(--white);
	padding: 48px;
	width: 100%;
	max-width: 872px;
}

.popup__heading {
	text-align: center;
	margin-bottom: 48px;
}

.popup__subtitle {
	margin-top: 20px;
}

.popup__info {
	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;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: auto;
	aspect-ratio: 1.15;
	text-align: center;
}

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

.popup__info-btn {
	margin-top: 40px;
}

.popup__info-desc {
	margin-top: 8px;
}

.popup .f-button.is-close-btn {
	width: 36px;
	height: 36px;
	top: 16px !important;
	right: 16px !important;
	opacity: 1 !important;
	--f-button-color: var(--white) !important;
	--f-button-bg: rgba(0, 0, 0, 0) !important;
}

.popup .f-button.is-close-btn svg {
	width: 100%;
	height: 100%;
}

.popup .f-button svg {
	stroke-width: 1.2px;
}

.form__label {
	margin-bottom: 8px;
}

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

.form__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
	width: 100%;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.form__item {
	width: 100%;
}

.form__input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	padding: 12px 24px;
	background-color: var(--black-2);
	border: 1px solid transparent;
	border-radius: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.form__recaptcha {
	margin-top: 30px;
}

.form__input::-webkit-input-placeholder {
	color: #4D4D4D;
}

.form__input:-ms-input-placeholder {
	color: #4D4D4D;
}

.form__input::-ms-input-placeholder {
	color: #4D4D4D;
}

.form__input::placeholder {
	color: #4D4D4D;
}

.form__input_textarea {
	height: 135px;
	resize: none;
}

.form__submit {
	margin: 0 auto;
	margin-top: 40px;
}

.form__checkbox {
	margin-top: 40px;
}

.form__message {
	color: var(--red);
	margin-top: 28px;
	display: none;
}

.form_error .form__input:required:invalid {
	border-color: var(--red);
}

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

.form_error .checkbox__input:not(:checked):required~.checkbox__checkmark svg {
	display: none;
}

.form_error .checkbox__input:not(:checked):required~.checkbox__checkmark svg:nth-child(3) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.form_error .select__field:required:invalid~.select__btn {
	border-color: var(--red);
}

.fancybox__backdrop {
	background-color: rgba(255, 255, 255, 0.2);
}

.fancybox__slide {
	padding: 0;
}

@media screen and (max-width: 1350px) {
	.page-title {
		font-size: 11.35vw;
	}

	.entrance__date-icon {
		height: 9.5vw;
	}

	.panel__tags {
		min-width: 610px;
		gap: 12px;
		row-gap: 25px;
		margin-left: -190px;
	}

	.panel__tag {
		padding: 13px 24px;
	}

	.panel__tag:nth-child(1) {
		-webkit-box-ordinal-group: -4;
		-ms-flex-order: -5;
		order: -5;
	}

	.panel__tag:nth-child(2) {
		-webkit-box-ordinal-group: -2;
		-ms-flex-order: -3;
		order: -3;
	}

	.panel__tag:nth-child(3) {
		-webkit-box-ordinal-group: -3;
		-ms-flex-order: -4;
		order: -4;
	}
}

@media screen and (max-width: 1200px) {


	.entrance__img {
		height: 100%;
		bottom: 0;
		top: unset;
	}
}

@media screen and (max-width: 1024px) {
	body {
		font-size: 18px;
		line-height: 130%;
	}

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

	.text-32 {
		font-size: 24px;
		line-height: 125%;
	}

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

	.section {
		padding: 60px 0;
	}

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

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

	.header .nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: calc(100dvh - 80px);
		background-color: var(--black);
		font-size: 32px;
		line-height: 125%;
		color: var(--white);
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
		-webkit-transform: translateY(-110%);
		transform: translateY(-110%);
		z-index: -1;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 24px;
		/* padding-bottom: 100px; */
	}

	.header .nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 32px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin: auto 0;
	}

	.header-open {
		overflow: hidden;
	}

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

	.header-open .header__menu-btn span {
		width: 0;
		opacity: 0;
	}

	.header-open .header__menu-btn::before {
		-webkit-transform: translate(-50%, -50%) rotate(45deg);
		transform: translate(-50%, -50%) rotate(45deg);
		left: 50%;
		top: 50%;
	}

	.header-open .header__menu-btn::after {
		width: 100%;
		-webkit-transform: translate(-50%, 50%) rotate(-45deg);
		transform: translate(-50%, 50%) rotate(-45deg);
		left: 50%;
		bottom: 50%;
	}

	.line {
		padding: 15px 0;
	}

	.line__slide {
		gap: 20px;
	}

	.slider-pagination {
		margin-top: 20px;
	}

	.panel {
		padding: 40px;
		margin-top: 40px;
		padding-right: 0;
	}

	.panel__body {
		max-width: 600px;
	}

	.faq .accordion {
		gap: 10px;
	}

	.faq .accordion__item {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.faq .accordion__caret {
		width: 14px;
		height: 14px;
	}

	.faq .accordion__body::before {
		height: 8px;
	}

	.form__checkbox {
		margin-top: 32px;
	}

	.form__submit {
		margin-top: 32px;
	}

	.popup {
		padding: 40px 32px;
	}

	.popup__heading {
		margin-bottom: 32px;
	}

	.about {
		padding-top: 120px;
	}

	.entrance__btn {
		font-size: 20px;
	}

	.entrance__desc {
		font-size: 20px;
	}
}

@media screen and (max-width: 1023px) {
	.entrance__bottom {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 55px;
		margin-top: 40px;
	}


}

@media screen and (max-width: 950px) {
	.panel {
		padding: 30px;
		padding-right: 0;
	}

	.panel__title {
		margin-bottom: 12px;
	}

	.panel__btn {
		margin-top: 40px;
	}

	.panel__tags {
		min-width: 330px;
		margin: 0;
		row-gap: 18px;
		-webkit-transform: translateX(15px);
		transform: translateX(15px);
	}

	.panel__tag {
		font-size: 19px;
		line-height: 120%;
	}

	.panel__tag:nth-child(1) {
		-webkit-box-ordinal-group: -4;
		-ms-flex-order: -5;
		order: -5;
	}

	.panel__tag:nth-child(2) {
		-webkit-box-ordinal-group: -2;
		-ms-flex-order: -3;
		order: -3;
	}

	.panel__tag:nth-child(3) {
		-webkit-box-ordinal-group: -1;
		-ms-flex-order: -2;
		order: -2;
	}

	.panel__tag:nth-child(4) {
		-webkit-box-ordinal-group: -3;
		-ms-flex-order: -4;
		order: -4;
	}

	.location__img {
		width: 75%;
	}

	.location__desc {
		max-width: 540px;
	}
}

@media screen and (max-width: 900px) {
	.contacts__pagination {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

}

@media screen and (max-width: 768px) {

	.section {
		padding: 48px 0;
	}

	.slider-navigation {
		display: none;
	}

	.text-48 {
		font-size: 36px;
		line-height: 120%;
	}

	.text-44 {
		font-size: 36px;
		line-height: 120%;
	}

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

	.header__btn {
		display: none;
	}

	.header .nav__bottom {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
	}

	.footer__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.panel__btn {
		margin-top: 30px;
	}

	.panel__tag {
		padding: 11px 20px;
	}

	.faq .accordion__item {
		padding: 28px;
		padding-right: 64px;
	}

	.location__body {
		max-width: 388px;
	}

	.location__img {
		width: 100%;
	}

	.location__img img {
		-o-object-position: left -40px bottom 0;
		object-position: left -40px bottom 0;
	}

	.location__wrapper {
		padding-bottom: 230px;
	}

	.contacts__slider {
		overflow: visible;
	}

	.contacts__slide-wrapper {
		padding: 28px;
	}

	.contacts__icon {
		margin-bottom: 44px;
	}


	.about {
		padding-top: 96px;
	}

	.about__slide-wrapper {
		padding: 28px;
		padding-bottom: 0;
	}

	.about__img {
		margin: 0 -24px;
		margin-top: auto;
		margin-left: -20%;
	}
}

@media screen and (max-width: 700px) {
	.page-title {
		font-size: 16.8vw;
	}

	.container {
		padding: 0 24px;
	}

	.panel {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding: 24px;
		padding-top: 0;
		gap: 24px;
	}

	.panel__tags {
		width: calc(100% + 48px);
		min-width: 0;
		-webkit-transform: none;
		transform: none;
		margin: 0 -24px;
		gap: 6px;
		font-size: 14px;
		line-height: 120%;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
	}

	.panel__tag {
		-webkit-box-ordinal-group: unset !important;
		-ms-flex-order: unset !important;
		order: unset !important;
		padding: 7px 16px;
		position: relative;
	}

	.panel__tag:nth-child(1) {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}

	.panel__tag:nth-child(2) {
		margin-right: 100px;
	}

	.panel__tag:nth-child(2)::after {
		display: block;
		content: "";
		width: 100vw;
		height: 100%;
		border-radius: 100px;
		background-color: var(--gray-5);
		position: absolute;
		left: calc(100% + 6px);
	}

	.panel__tag:nth-child(3) {
		margin-left: auto;
	}

	.panel__tag:nth-child(3)::after {
		display: block;
		content: "";
		width: 100vw;
		height: 100%;
		border-radius: 100px;
		background-color: var(--gray-5);
		position: absolute;
		right: calc(100% + 6px);
	}

	.panel__tag:nth-child(5) {
		margin-right: 100px;
	}

	.panel__tag:nth-child(5)::after {
		display: block;
		content: "";
		width: 100vw;
		height: 100%;
		border-radius: 100px;
		background-color: var(--gray-5);
		position: absolute;
		left: calc(100% + 6px);
	}

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


	.entrance__date {
		position: static;
	}

	.entrance__date-icon {
		display: none;
	}

	.entrance__bottom {
		gap: 20px;
		margin-top: 48vw;
	}

	.entrance__btn {
		width: 100%;
	}

	.entrance__img {
		width: 110%;
		height: auto;
		bottom: 125px;
		right: -6%;
	}

	.entrance__title {
		position: relative;
	}

	.entrance__title-icon {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: absolute;
		top: 8%;
		right: 9%;
		width: auto;
		height: 10vw;
	}

	.entrance__title-icon svg {
		width: 100%;
		height: 100%;
	}
}

@media screen and (max-width: 570px) {
	body {
		font-size: 16px;
		line-height: 130%;
	}

	.section {
		padding: 40px 0;
	}

	.text-48 {
		font-size: 26px;
		line-height: 120%;
	}

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

	.text-32 {
		font-size: 22px;
		line-height: 125%;
	}

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

	.text-24 {
		font-size: 16px;
		line-height: 120%;
	}

	.btn {
		font-size: 18px;
		line-height: 120%;
	}

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

	.panel {
		margin-top: 36px;
	}

	.panel__tag {
		font-size: 14px;
		line-height: 120%;
	}

	.panel__btn {
		width: 100%;
		margin-top: 24px;
	}

	.panel__desc {
		margin: 12px 0;
	}

	.panel__title {
		margin-bottom: 0;
	}

	.panel__img {
		position: static;
		width: calc(100% + 48px);
		margin: 0 -24px;
	}

	.panel__img svg {
		width: 100%;
	}

	.panel__img svg:nth-child(1) {
		display: none;
	}

	.panel__img svg:nth-child(2) {
		display: block;
	}

	.program__wrapper {
		gap: 8px;
	}

	.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;
		padding: 20px;
		padding-left: 24px;
		background-color: var(--black-2);
		gap: 6px;
	}

	.program__item_marker {
		border-left: 6px solid var(--blue-1);
		padding-left: 18px;
	}

	.program__item_marker .program__body {
		padding: 0;
		border: none;
	}

	.program__name {
		border: none;
		padding: 0;
	}

	.program__body {
		padding: 0;
		border: none;
	}

	.program__time {
		color: var(--gray-2);
		font-size: 16px;
		line-height: 120%;
		padding: 0;
	}

	.popup {
		padding: 72px 24px 32px;
	}

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

	.form__submit {
		width: 100%;
	}

	.faq .accordion__item {
		padding: 20px 24px;
		padding-right: 64px;
	}

	.location__img {
		position: relative;
		margin-left: -34px;
		margin-right: -24px;
		width: auto;
	}

	.location__img img {
		-o-object-position: right bottom;
		object-position: right bottom;
	}

	.location__wrapper {
		padding: 24px;
		padding-bottom: 0;
	}

	.location__title {
		margin-bottom: 8px;
	}


	.about__slide-wrapper {
		padding: 24px;
		padding-bottom: 0;
	}

	.about {
		padding-top: 80px;
	}

	.entrance__desc {
		font-size: 24px;
	}

	.line__text {
		font-size: 16px;
	}

	.line__icon {
		width: 24px;
	}

	.line__item {
		gap: 12px;
	}

	.line__slide {
		gap: 12px;
	}

	.popup__subtitle {
		font-size: 16px;
	}

	.popup__title {
		font-size: 32px;
	}

	.popup__wrapper {
		min-height: calc(100dvh - 32px - 72px);
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

@media screen and (max-width: 450px) {
	.panel__tag:nth-child(2) {
		margin-right: 0px;
	}

	.panel__tag:nth-child(5) {
		margin-right: 0px;
	}
}