<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

:root {
	--black: #000;
	--white: #fff;
	--blue-1: #005efe;
	--blue-2: #0077ff;
	--light-blue: #eef5fb;
	--grey: #f1f1f1;
}

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

body {
	font-family: "VK Sans Display";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%;
}

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

.h2 {
	font-family: "VK Sans Display Expanded";
	font-size: 48px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: 0.96px;
}

.text-36 {
	font-family: "VK Sans Display Expanded";
	font-size: 36px;
	line-height: 120%;
	font-weight: 500;
}

.text-28 {
	font-family: "VK Sans Display Expanded";
	font-size: 28px;
	line-height: 110%;
}

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

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

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

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

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

.pt-160 {
	padding-top: 160px;
}

.pt-100 {
	padding-top: 100px;
}

.pb-160 {
	padding-bottom: 160px;
}

.pb-100 {
	padding-bottom: 100px;
}

@media screen and (max-width: 1024px) {
	.h2 {
		font-size: 40px;
		line-height: 120%;
	}

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

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

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

@media screen and (max-width: 768px) {
	.pt-160 {
		padding-top: 100px;
	}

	.pt-100 {
		padding-top: 60px;
	}

	.pb-160 {
		padding-bottom: 100px;
	}

	.pb-100 {
		padding-bottom: 60px;
	}

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

	.h2 {
		font-size: 32px;
		line-height: 120%;
	}
}

@media screen and (max-width: 570px) {
	.pt-160 {
		padding-top: 60px;
	}

	.pb-160 {
		padding-bottom: 60px;
	}

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

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

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

.content ul {
	padding-left: 25px;
}

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

.content ul&gt;li {
	list-style-type: "— ";
}

.btn {
	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;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 12px 23px;
	border-radius: 16px;
	background: var(--blue-1);
	cursor: pointer;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	color: var(--white);
	gap: 13px;
	font-size: 22px;
	line-height: 150%;
	font-weight: 500;
	border: 1px solid transparent;
}

.btn:hover {
	background-color: var(--white);
	color: var(--blue-1);
	border-color: var(--blue-1);
}

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

.btn_white:hover {
	background-color: var(--blue-1);
	color: var(--white);
	border-color: var(--white);
}

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

.header {
	/* padding-top: 36px; */
	padding: 20px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 10;
	color: var(--white);
	background-color: var(--blue-1);
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: 110px;
}

.header__body {
	margin-left: auto;
}

.header__menu-btn {
	display: none;
}

.header__nav-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: 70px;
}

.header .nav__link {
	position: relative;
}

.header .nav__link::after {
	display: block;
	content: '';
	width: 0;
	height: 1px;
	background-color: currentColor;
	transition: all ease 0.5s;
	position: absolute;
	top: calc(100% + 2px);
	left: 50%;
	transform: translateX(-50%);
}

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

.entrance {
	padding: 135px 0 60px;
	background-color: var(--blue-1);
	color: var(--white);
	position: relative;
}

.entrance__btn {
	display: none;
}

.entrance__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

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

.entrance__title {
	font-size: 218px;
	font-style: italic;
	font-weight: 700;
	line-height: 90%;
	text-transform: uppercase;
}

.entrance__desc {
	font-family: "VK Sans Display Expanded";
	width: 100%;
	max-width: 345px;
	line-height: 110%;
	position: absolute;
	top: 58px;
	left: 715px;
}

.entrance__wrapper {
	position: relative;
}

.entrance__tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 19px 12px;
	border-radius: 22px;
	border: 1px solid var(--white);
}

.entrance__tags {
	font-family: "VK Sans Display Expanded";
	width: 100%;
	max-width: 415px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
	position: absolute;
	top: 30px;
	left: 960px;
}

.entrance__info {
	font-family: "VK Sans Display Expanded";
	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;
	position: absolute;
	bottom: 0px;
	right: 0;
	max-width: 400px;
}

.entrance__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 260px;
	height: auto;
	position: absolute;
	top: 0;
	left: 1115px;
	pointer-events: none;
}

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

.about {
	background-image: url(../img/about/bg.svg);
	background-repeat: no-repeat;
	background-position: left 0 bottom 100px;
	background-size: auto 440px;
}

.about__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 7fr 10fr;
	grid-template-columns: 7fr 10fr;
	-ms-grid-rows: 115px auto;
	grid-template-rows: 115px auto;
	gap: 20px;
}

.about__title {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

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

.about__desc {
	margin-top: 10px;
	line-height: 110%;
}

.about__list {
	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: 20px;
	position: relative;
	grid-row: span 2;
	font-size: 22px;
	line-height: 130%;
	font-weight: 500;
}

.about__list::after {
	display: block;
	content: "";
	width: 524px;
	height: 100%;
	background-image: url(../img/about/right.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left center;
	position: absolute;
	top: 0;
	left: 570px;
}

.about__list-item {
	padding: 20px;
	background-color: var(--light-blue);
	min-height: 210px;
}

.about__list-item-text {
	width: 100%;
	max-width: 480px;
}

.slider-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.slider-prev,
.slider-next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
}

.speakers {
	background-color: var(--light-blue);
}

.speakers__heading {
	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;
	margin-bottom: 45px;
}

.speakers__slide {
	width: 100%;
	max-width: 340px;
	height: auto;
}

.speaker-card {
	background-color: var(--white);
	padding: 20px;
	height: 100%;
	/* min-height: 300px; */
}

.speaker-card__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}

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

.speaker-card__photo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 100px;
	width: 100px;
	height: 100px;
}

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

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

.speaker-card__position {
	/* margin-top: auto; */
	opacity: 0.6;
}

.speaker-card__desc {
	margin-top: 20px;
}

.speaker-card__tags {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 5px;
}

.speaker-card__tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 8px 12px;
	border-radius: 14px;
	border: 1px solid var(--black);
}

.footer {
	padding-bottom: 70px;
}

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

.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-left {
	opacity: 0.5;
	max-width: 50%;
	width: 100%;
}

.program {
	background-color: var(--light-blue);
}

.program__title {
	margin-bottom: 45px;
}

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

.program__btn {
	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;
	gap: 20px;
}

.program__btn-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.program__btn-caret {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	min-width: 35px;
}

.program__text {
	padding: 20px;
	background-color: var(--white);
	margin-bottom: 30px;
}

.program__body::before {
	display: block;
	content: "";
	width: 100%;
	height: 30px;
}

.program__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.program-card {
	padding: 30px 20px;
	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;
	background-color: var(--white);
}

.program-card__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;
	gap: 20px;
}

.program-card__tag {
	padding: 6px 16px 8px;
	border-radius: 100px;
	border: 1px solid var(--black);
}

.program-card__photo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 50px;
	width: 50px;
	height: 50px;
}

.program-card__author {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	margin-top: auto;
}

.program-card__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: 5px;
}

.program-card__position {
	opacity: 0.6;
}

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

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

.location__subtitle {
	font-family: "VK Sans Display Expanded";
	width: 100%;
	max-width: 460px;
	margin-left: auto;
	margin-top: auto;
}

.location__desc {
	width: 100%;
	max-width: 460px;
	margin-left: auto;
}

.location__heading {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 788px auto;
	grid-template-columns: 788px auto;
	margin-bottom: 30px;
	gap: 20px;
}

.location__title {
	grid-row: span 2;
}

.location__map {
	width: auto;
	margin-right: 205px;
	/* max-width: 1310px; */
	height: 470px;
	margin-left: -130px;
	position: relative;
}

@media screen and (min-width: 1460px) {
	.location__map {
		margin-left: calc((100vw - 1420px) / -2);
	}
}

.location__map::after {
	display: block;
	content: "";
	width: 460px;
	height: 910px;
	background-image: url(../img/location/bg.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left top;
	position: absolute;
	top: 0;
	left: 100%;
	pointer-events: none;
}

.join {
	position: relative;
}

.join::after {
	display: block;
	content: "";
	width: 370px;
	height: 720px;
	background-image: url(../img/join/bg.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right center;
	position: absolute;
	bottom: 0;
	left: -45px;
	pointer-events: none;
}

.join__wrapper {
	padding: 60px 40px;
	background-color: var(--light-blue);
	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: 50px;
}

.join__title {
	width: 100%;
	max-width: 1000px;
	text-align: center;
}

.faq__title {
	margin-bottom: 40px;
}

.faq__item {
	padding: 35px 30px;
	border: 1px solid var(--black);
	border-width: 1px 0 0;
}

.faq__item:last-child {
	border-width: 1px 0
}

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

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

.faq__body {
	width: 100%;
	max-width: 800px;
	opacity: 0.5;
}

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

.popup__success {
	padding-top: 20px;
	height: 755px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.popup__success-top {
	font-family: "VK Sans Display Expanded";
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.popup__success-top-text:nth-child(2) {
	text-align: right;
}

.popup__success-body {
	margin: auto 0;
}

.popup__success-btn {
	margin-top: 20px;
}

.popup__success-text {
	width: 100%;
	max-width: 570px;
	text-align: center;
}

.popup__success-body {
	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__success-bottom {
	margin-top: 125px;
	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__success-btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.popup_bg {
	background-image: url(../img/popup/bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: var(--white);
}

.popup_bg .f-button.is-close-btn {
	--f-button-color: var(--white) !important;
}

.popup[data-text="1"] .popup__success-text[data-text="2"] {
	display: none;
}

.popup[data-text="2"] .popup__success-text[data-text="1"] {
	display: none;
}

@media screen and (max-width: 1400px) {
	.entrance {
		padding-bottom: 22px;
	}

	.entrance__tags {
		position: static;
		margin-top: 80px;
		max-width: 605px;
	}

	.entrance__desc {
		max-width: 610px;
		margin-top: 20px;
	}

	.entrance__img {
		bottom: 0px;
		left: 582px;
		width: 240px;
		top: unset;
		right: unset;
	}

	.entrance__info {
		position: absolute;
		top: 30px;
		left: 690px;
	}

	.entrance__desc {
		position: static;
	}

	.speakers__slider {
		overflow: visible;
	}

	.location__map {
		margin-left: -20px;
		max-width: 1130px;
	}
}

@media screen and (max-width: 1200px) {
	.about__wrapper {
		-ms-grid-rows: auto;
		grid-template-rows: auto;
	}

	.about__title {
		grid-column: span 2;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.about__desc {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		margin: 0;
	}

	.about__list {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
}

@media screen and (max-width: 1100px) {
	.location__desc {
		grid-column: span 2;
		max-width: none;
		margin-top: 30px;
	}

	.location__heading {
		row-gap: 0;
		-ms-grid-columns: auto 245px;
		grid-template-columns: auto 245px;
	}

	.location__map {
		margin: 0 -20px;
		width: auto;
	}

	.location__map::after {
		left: unset;
		right: -190px;
	}

	.join::after {
		left: -90px;
	}
}

@media screen and (max-width: 1024px) {
	.location__heading {
		-ms-grid-columns: auto 175px;
		grid-template-columns: auto 175px;
	}

	.location__subtitle {
		margin-left: auto;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
}

@media screen and (max-width: 1000px) {
	.header {
		padding-top: 20px;
	}

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

	.header__logo {
		margin: 0;
	}

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

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

	.header__nav-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
	}

	.header .nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: var(--white);
		background-image: url(../img/header/bg.svg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: bottom center;
		color: var(--black);
		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;
		padding: 170px 20px 100px;
		z-index: -1;
		-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: 36px;
		font-size: 26px;
		font-family: "VK Sans Display Expanded";
		font-weight: 500;
	}

	.header-open .header__btn {
		display: none;
	}

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

	.header-open .header__menu-btn svg:nth-child(2) {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

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

	.entrance {
		padding-bottom: 50px;
	}

	.entrance__title {
		font-size: 150px;
	}

	.entrance__desc {
		margin-top: 10px;
		max-width: 317px;
	}

	.entrance__tags {
		margin-top: 30px;
		max-width: 335px;
	}

	.entrance__info {
		left: 485px;
		top: 20px;
	}

	.entrance__img {
		width: 200px;
		left: 440px;
		bottom: 0px;
	}

	.about__wrapper {
		-ms-grid-columns: 3fr 4fr;
		grid-template-columns: 3fr 4fr;
	}

	.about__list::after {
		left: 290px;
	}

	.speakers__heading {
		margin-bottom: 25px;
	}

	.program__title {
		margin-bottom: 25px;
	}

	.program__list {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}

	.faq__title {
		margin-bottom: 25px;
	}
}

@media screen and (max-width: 900px) {
	.join::after {
		height: 640px;
		width: 290px;
		left: -50px;
	}

	.location__map::after {
		z-index: -1;
	}
}

@media screen and (max-width: 750px) {
	.entrance {
		padding-top: 110px;
		padding-bottom: 30px;
	}

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

	.entrance__info {
		position: static;
		margin-bottom: 40px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.entrance__title {
		font-size: 93px;
	}

	.entrance__desc {
		margin-top: 15px;
		max-width: 240px;
	}

	.entrance__tags {
		margin-top: 60px;
		gap: 5px;
	}

	.entrance__tag {
		padding: 10px 13px 10px;
	}

	.entrance__btn {
		margin-top: 20px;
	}

	.entrance__img {
		width: 155px;
		left: 230px;
		bottom: 70px;
	}

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

@media screen and (max-width: 700px) {
	.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;
	}

	.about__list-item {
		min-width: 180px;
	}

	.location__map::after {
		height: 640px;
		width: 310px;
	}

	.join::after {
		height: 410px;
		width: 185px;
		left: -45px;
		bottom: 40px;
	}
}

@media screen and (max-width: 570px) {
	.header__btn {
		display: none;
	}

	.entrance__btn {
		width: 100%;
	}

	.location__map {
		height: 350px;
	}

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

	.location__subtitle {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
		margin: 0;
		margin-bottom: 15px;
	}

	.join__wrapper {
		padding: 60px 30px;
	}

	.faq__item {
		padding: 35px 0;
	}
}

.video {
	background-color: var(--light-blue);
}

.video__wrapper {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	height: auto;
	aspect-ratio: 16/9;
}

.video__title {
	margin: 0 auto;
	text-align: center;
	margin-bottom: 45px;
}

.video__wrapper iframe {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 570px) {
	.video__title {
		margin-bottom: 25px;
	}
}</pre></body></html>