:root {
	--white: #f8f2dd;
	--black: #000;
	--blue: #0077ff;
	--blue-2: #005eff;
	--pink: #ff3985;
}

body {
	background-color: var(--white);
	color: var(--blue-2);
	font-family: "VK Sans Display";
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
}

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

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

.container_wide {
	width: 1920px;
	padding: 0px 35px;
}

.section {
	padding: 160px 0;
}

.main {
	padding-top: 140px;
}

.text-60 {
	font-size: 60px;
	line-height: 90%;
}

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

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

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

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

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

@media screen and (max-width: 1440px) {
	.text-60 {
		font-size: 50px;
		line-height: 90%;
	}

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

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

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

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

@media screen and (max-width: 991px) {
	body {
		font-size: 12px;
		font-size: 14px;
		line-height: 120%;
	}

	.text-60 {
		font-size: 24px;
		font-size: 26px;
		line-height: 90%;
	}

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

	.text-30 {
		font-size: 16px;
		font-size: 18px;
		line-height: 90%;
	}

	.text-26 {
		font-size: 15px;
		font-size: 17px;
		line-height: 135%;
	}

	.text-16 {
		font-size: 11px;
		font-size: 13px;
		line-height: 135%;
	}
}

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

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

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

.content ul>li {
	position: relative;
}

.content ul>li::before {
	display: inline;
	margin-right: 5px;
	content: "-";
}

.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;
	position: relative;
	z-index: 1;
	color: var(--pink);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	padding: 0.8em 0.01em;
	font-family: "VK Sans Display Condensed";
	cursor: pointer;
	border-radius: 50%;
	transition: all ease 0.5s;
}

.btn__bg svg {
	filter: drop-shadow(8px 8px 0 var(--pink));
	transition: all ease 0.5s;
}

.btn__bg svg g ellipse {
	transition: all ease 0.5s;
}

.btn:hover {
	color: var(--white);
}

.btn:hover .btn__bg svg {
	filter: drop-shadow(0px 0px 0 var(--pink));
}

.btn:hover .btn__bg svg g ellipse {
	fill: var(--pink)
}



.btn__bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: auto;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
	border-radius: 50%;
}

.btn__text {
	-webkit-transform: rotate(-2.46deg);
	transform: rotate(-2.46deg);
}

.btn svg {
	display: block;
	height: 100%;
	height: 100%;
}

.header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	border-bottom: 4px dashed var(--blue-2);
	background-color: var(--white);
	color: var(--blue-2);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 70px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	flex: 0;
}

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

.header__logo svg {
	display: block;
	width: auto;
	height: 100%;
	flex: none;
}

.header__logo_partner {
	-webkit-box-ordinal-group: 6;
	-ms-flex-order: 5;
	order: 5;
}

.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;
	gap: 30px;
	padding: 35px 0;
}

.header__menu-btn {
	padding: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	z-index: 1;
	display: none;
	color: var(--pink);
}

.header__menu-btn img {
	width: 80px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.header__btn {
	opacity: 0;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	pointer-events: none;
}

.header .nav {
	font-family: "VK Sans Display Condensed";
}

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

.header .nav__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.header .nav__link:hover {
	border-bottom: 1px dashed currentColor
}

.header_scroll .header__logo {
	height: 48px;
}

.header_blue {
	border-color: var(--white);
	background-color: var(--blue-2);
	color: var(--white);
}

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

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

.footer {
	padding: 24px 0;
	background-color: var(--white);
}

.footer__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
}

.footer__col {
	margin-left: auto;
}

.footer__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 103px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	justify-content: flex-start;
}

.footer__logo svg {
	display: block;
	width: auto;
	height: 100%;
}

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

.footer__text span {
	font-family: "VK Sans Display Condensed";
}

.footer__col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.about {
	padding-top: 80px;
}

.about__heading {
	width: 100%;
	max-width: 804px;
	margin: 0 auto;
	margin-bottom: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	-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;
}

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

.about__schedule-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;
	width: 100%;
	padding: 12px 0;
	font-family: "VK Sans Display Condensed";
}

.about__schedule-item:first-child {
	border-right: 2px dashed var(--blue-2);
}

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

.about__schedule-name {
	margin-bottom: 24px;
}

.about__desc {
	font-family: "VK Sans Display Condensed";
	text-align: center;
	max-width: 750px;
	width: 100%;
}

.about__desc span {
	line-height: 100%;
	padding: 10px 8px 5px;
	border: 3px solid var(--pink);
	-webkit-box-shadow: 4px 4px 0 var(--pink);
	box-shadow: 4px 4px 0 var(--pink);
	border-radius: 12px;
	-webkit-transform: rotate(-3deg);
	transform: rotate(-3deg);
	display: inline-block;
	color: var(--pink);
	margin-right: 5px;
}

.about__card {
	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: 408px;

	-webkit-box-shadow: 8px 8px 0 var(--blue-2);
	box-shadow: 8px 8px 0 var(--blue-2);
	border-radius: 24px;
	padding: 30px;
	position: relative;
	z-index: 1;
	min-height: 408px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	background-color: var(--white);
	overflow: hidden;
}

.about__card::after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 0px;
	border: 6px solid var(--blue-2);
	border-radius: 24px;
}

.about__card:nth-child(2) {
	margin-top: 150px;
}

.about__card:nth-child(2) .about__card-bite {
	top: 0px;
	left: 43%;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: top left;
	transform-origin: top left;
}

.about__card:nth-child(3) {
	margin-top: 75px;
}

.about__card:nth-child(3) .about__card-bite {
	top: 30%;
}

.about__card:nth-child(4) .about__card-bite {
	top: 0px;
	left: unset;
	right: 5%;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: top left;
	transform-origin: top left;
}

.about__card:nth-child(odd) {
	-webkit-transform: rotate(-3.34deg);
	transform: rotate(-3.34deg);
}

.about__card:nth-child(even) {
	-webkit-transform: rotate(5.15deg);
	transform: rotate(5.15deg);
}

.about__card:nth-child(n + 2) {
	margin-left: -20px;
}

.about__card-num {
	padding: 10px 40px;
	border-radius: 50%;
	border: 3px solid var(--blue-2);
	font-family: "VK Sans Display Condensed";
	font-style: italic;
}

.about__card-name {
	font-family: "VK Sans Display Condensed";
	font-style: italic;
	margin-bottom: 20px;
	margin-top: auto;
}

.about__card-bite {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	position: absolute;
	z-index: 2;
	left: 0px;
	top: 19%;
}

.about__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.about__title {
	max-width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.about__title svg {
	max-width: 100%;
	height: auto;
}

.entrance {
	padding: 120px 0 80px;
	font-family: "VK Sans Display Condensed";
}

.entrance__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

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

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

.entrance__label {
	position: absolute;
	z-index: 1;
	top: 6%;
	right: 19%;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	font-size: 40px;
	line-height: 100%;
	text-transform: uppercase;
	-webkit-transform: rotate(-2.46deg);
	transform: rotate(-2.46deg);
}

.entrance__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 32px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 54px;
	line-height: 135%;
	-webkit-transform: rotate(-2.46deg);
	transform: rotate(-2.46deg);
	position: absolute;
	z-index: 2;
	top: 72%;
	left: 27%;
	text-transform: uppercase;
}

.entrance__info-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 35px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-animation: starAnim infinite linear 5s;
	animation: starAnim infinite linear 5s;
}

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

.entrance__btn {
	margin: 0 auto;
	margin-top: -60px;
}

.line {
	width: 100%;
	padding-bottom: 40px;
}

.line__slider {
	background: var(--blue-2);
	color: var(--white);
	padding: 15px 0;
	-webkit-transform: rotate(-2.2deg);
	transform: rotate(-2.2deg);
}

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

.line__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: fit-content;
	height: 40px;
	flex: 0;
}

.line__slide svg {
	display: block;
	width: auto;
	height: 100%;
	flex: none;
}

.line__text {
	margin-bottom: 30px;
}

.line_white {
	background: var(--blue-2);
}

.line_white .line__slider {
	background: var(--white);
	color: var(--blue-2);
}

.speakers {
	color: var(--white);
	background-color: var(--blue-2);
	position: relative;
	z-index: 1;
}

.speakers__title {
	width: 90%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0.1;
}

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

.speakers__wrapper {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 88px;
}

.speakers__card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	position: relative;
	z-index: 1;
	--accentColor: var(--blue-2);
}

.speakers__card:hover .speakers__card-photo {
	-webkit-transform: rotate(-2deg);
	transform: rotate(-2deg);
}

.speakers__card:hover .speakers__card-photo img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

.speakers__card_pink {
	--accentColor: var(--pink);
}

.speakers__card-tag {
	position: absolute;
	z-index: 3;
	top: -20px;
	left: -30px;
	font-family: "VK Sans Display Condensed";
	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: 100px;
	height: 53px;
	background-color: var(--accentColor);
	border-radius: 12px;
	border: 3px solid var(--white);
	-webkit-box-shadow: 4px 4px 0 var(--white);
	box-shadow: 4px 4px 0 var(--white);
	-webkit-animation: tagAnim 3s ease-in-out infinite;
	animation: tagAnim 3s ease-in-out infinite;
}

.speakers__card-photo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 394px;
	height: auto;
	aspect-ratio: 394 / 512;
	background-color: var(--accentColor);
	border: 6px solid var(--white);
	overflow: hidden;
	border-radius: 32px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.speakers__card-photo img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top center;
	object-position: top center;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.speakers__card-name {
	margin-bottom: 16px;
	font-style: italic;
	font-family: "VK Sans Display Condensed";
}

.speakers__card-position {
	margin-bottom: 24px;
	font-style: italic;
	font-family: "VK Sans Display Condensed";
}

.speakers__card-info {
	width: 100%;
	max-width: 395px;
}

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

.speakers__col:nth-child(2) {
	margin-top: 320px;
}

.program__tab-header {
	display: none;
}

.program__title {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	margin-bottom: 72px;
}

.program__btn {
	margin: 0 auto;
	margin-top: 72px;
}

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

.program__item {
	padding: 72px 32px;
	border-top: 2px dashed var(--blue-2);
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 170px auto;
	grid-template-columns: 170px auto;
	gap: 64px;
	position: relative;
	z-index: 1;
}

.program__item_bg {
	padding: 32px;
	background-color: #005eff1a;
	overflow: hidden;
}

.program__item_align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.program__item_center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.program__item-bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	width: auto;
	position: absolute;
	top: 0px;
	left: 550px;
	z-index: -1;
}

.program__item-title {
	font-family: "VK Sans Display Condensed";
}

.program__item-subtitle {
	font-family: "VK Sans Display Condensed";
}

.program__time {
	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;
	text-align: center;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 12px 10px;
	border-radius: 12px;
	border: 3px solid var(--blue-2);
	color: var(--blue-2);
	-webkit-box-shadow: 4px 4px 0 var(--blue-2);
	box-shadow: 4px 4px 0 var(--blue-2);
	background-color: var(--white);
	font-family: "VK Sans Display Condensed";
	white-space: nowrap;
}

.program__speaker {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 32px;
	gap: 12px;
	font-family: "VK Sans Display Condensed";
}

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

.program__speaker-position {
	font-style: italic;
}

.program__desc {
	max-width: 773px;
	margin-top: 24px;
}

.program__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	width: 100%;
	max-width: 318px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

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

.program__item-col:nth-child(2) {
	color: var(--pink);
}

.program__item-row {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
}

.program__item-col {
	width: 100%;
}

.fade-anim {
	opacity: 0;
	-webkit-transition: all ease 0.8s;
	transition: all ease 0.8s;
	-webkit-transform: translateY(300px);
	transform: translateY(300px);
}

.fade-anim_start {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.company {
	padding-top: 0;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.company__drop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
}

.company__drop-img {
	display: flex;
	position: absolute;
	top: -200px;
	left: 0px;
	will-change: transform;
	animation-name: drop;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	z-index: 2;
}


@keyframes drop {
	from {
		transform: translateY(-150px) rotate(0deg) scale(var(--scale));
	}

	to {
		transform: translateY(calc(100vh + 250px)) rotate(var(--rotate)) scale(var(--scale));
	}
}


.company__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 88px;
}

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

.company__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 345px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

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

.company__text {
	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: 1000px;
	font-family: "VK Sans Display Condensed";
	-webkit-transform: rotate(-2deg);
	transform: rotate(-2deg);
	line-height: 135%;
}

.faq {
	background-color: var(--blue-2);
	color: var(--white);
}

.faq__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 55px;
}

.faq__list {
	width: 100%;
	max-width: 530px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.faq .accordion__btn {
	padding: 32px 16px;
	border-top: 2px dashed var(--white);
	cursor: pointer;
	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;
	font-family: "VK Sans Display Condensed";
}

.faq .accordion__btn-caret {
	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;
	min-width: 32px;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	border: 2px solid var(--white);
	-webkit-box-shadow: 3px 3px 0 var(--white);
	box-shadow: 3px 3px 0 var(--white);
}

.faq .accordion__body {
	padding: 0 16px;
}

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

.location {
	background-color: var(--blue-2);
	color: var(--white);
}

.location__title {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 48px;
}

.location__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.location__wrapper-bite {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
}

.location__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 892px;
	height: auto;
	aspect-ratio: 892 / 610;
	border: 6px solid var(--white);
	border-radius: 24px;
	position: relative;
	z-index: 1;
}

.location__img img {
	border-radius: 18px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.location__img-bite {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	z-index: 2;
	bottom: 85px;
	right: -6px;
}

.location__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;
	text-align: center;
	width: 100%;
	max-width: 516px;
	border: 6px solid var(--white);
	border-radius: 24px;
	padding: 24px 62px 0;
	position: relative;
	z-index: 2;
}

.location__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 88px;
}

.location__name {
	font-family: "VK Sans Display Condensed";
	font-style: italic;
	margin-bottom: 32px;
}

.location__btn {
	margin-top: auto;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

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

@-webkit-keyframes starAnim {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes starAnim {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes tagAnim {
	0% {
		-webkit-transform: rotate(-2deg);
		transform: rotate(-2deg);
	}

	50% {
		-webkit-transform: rotate(2deg);
		transform: rotate(2deg);
	}

	100% {
		-webkit-transform: rotate(-2deg);
		transform: rotate(-2deg);
	}
}

@keyframes tagAnim {
	0% {
		-webkit-transform: rotate(-2deg);
		transform: rotate(-2deg);
	}

	50% {
		-webkit-transform: rotate(2deg);
		transform: rotate(2deg);
	}

	100% {
		-webkit-transform: rotate(-2deg);
		transform: rotate(-2deg);
	}
}

@media screen and (max-width: 1600px) {
	.about__list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		max-width: 1200px;
		margin: 0 auto;
		gap: 20px;
	}

	.about__card:nth-child(n) {
		margin: 0;
	}
}

@media screen and (max-width: 1548px) {
	.entrance__label {
		font-size: 2.5vw;
		line-height: 100%;
	}

	.entrance__info {
		font-size: 3.5vw;
		line-height: 100%;
		gap: 2vw;
	}

	.entrance__info-icon {
		height: 2.2vw;
	}
}

@media screen and (max-width: 1440px) {
	.speakers__card-tag {
		width: 82px;
	}
}

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

	.speakers__col:nth-child(2) {
		margin-top: 212px;
	}

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

	.company__img {
		max-width: 250px;
	}

	.faq__title {
		max-width: none;
		height: 240px;
	}

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

	.faq__list {
		max-width: none;
	}

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

	.location__wrapper {
		-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: 0;
		border: 6px solid var(--white);
		border-radius: 24px;
		padding-top: 24px;
	}

	.location__wrapper-bite {
		left: -6px;
	}

	.location__body {
		max-width: 384px;
		padding: 0 15px;
		border: none;
		border-radius: 0;
	}

	.location__img {
		max-width: none;
		border: none;
		overflow: hidden;
	}

	.location__img-bite {
		display: none;
	}

	.location__icon {
		margin-bottom: 48px;
	}

	.program__item {
		padding-left: 12px;
		padding-right: 12px;
		gap: 48px;
		-ms-grid-columns: 145px auto;
		grid-template-columns: 145px auto;
	}
}

@media screen and (max-width: 991px) {
	.main {
		padding-top: 70px;
	}

	.container {
		padding: 0px 12px;
	}

	.section {
		padding: 80px 0;
	}

	.header {
		border-width: 2px;
	}

	.header__logo {
		height: 32px !important;
	}

	.header__logo_partner {
		-webkit-box-ordinal-group: unset;
		-ms-flex-order: unset;
		order: unset;
	}

	.header__wrapper {
		padding: 15px 0;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		gap: 12px;
	}

	.header__menu-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-left: auto;
		font-size: 15px;
		line-height: 100%;
		text-transform: uppercase;
		min-width: 100px;
		font-family: "VK Sans Display Condensed";
	}

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

	.header .nav {
		position: fixed;
		width: 100vw;
		max-width: 100%;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		top: 0px;
		left: 0px;
		z-index: -1;
		background-color: var(--white);
		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%);
		border-bottom: 2px dashed var(--blue-2);
	}

	.header_blue .nav {
		border-color: var(--white);
		background-color: var(--blue-2);
	}

	.header .nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 32px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		font-size: 16px;
		padding: 100px 0 48px;
		-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-open {
		overflow: hidden;
	}

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

	.header-open .header__menu-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-left: auto;
	}

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

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

	.footer {
		padding: 16px 0;
	}

	.footer__wrapper {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr auto;
		grid-template-columns: 1fr auto;
	}

	.footer__logo {
		height: 32px;
	}

	.footer__text {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}

	.footer__col {
		grid-column: span 2;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		gap: 24px;
	}

	.social__item {
		width: 32px;
		height: 32px;
	}

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

	.about {
		padding-top: 42px;
	}

	.about__desc {
		max-width: 400px;
	}

	.about__card {
		padding: 20px;
		min-height: 230px;
		height: 230px;
		max-width: 280px;
		/* border-width: 3px; */
		-webkit-box-shadow: 3px 3px 0 var(--blue-2);
		box-shadow: 3px 3px 0 var(--blue-2);
	}

	.about__card-num {
		padding: 6px 40px;
	}

	.about__card-desc {
		font-size: 12px;
		line-height: 120%;
	}

	.about__card-bite svg {
		height: 60px;
		width: 10px;
	}

	.about__list {
		max-width: 700px;
		gap: 0px;
	}

	.about__schedule-name {
		margin-bottom: 12px;
	}

	.speakers__card-tag {
		top: -16px;
		left: -10px;
	}

	.speakers__title {
		width: 55%;
		position: static;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
		margin: 0 auto;
		margin-bottom: 48px;
	}

	.program__item-bg {
		left: 0;
	}

	.company {
		padding-top: 0;
	}

	.location__title {
		max-width: 100%;
		height: fit-content;
	}

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

	.about__card::after {
		border-width: 3px;
	}
}

@media screen and (max-width: 768px) {
	.speakers__wrapper {
		gap: 12px;
	}

	.speakers__card {
		gap: 16px;
	}

	.speakers__card-name {
		margin-bottom: 8px;
	}

	.speakers__card-position {
		margin-bottom: 10px;
	}

	.program__title {
		width: 70%;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
	}

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

	.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;
		gap: 32px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 32px 12px;
	}

	.program__item_bg {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 24px 12px;
	}

	.program__time {
		width: 100px;
		border-width: 2px;
		-webkit-box-shadow: 2px 2px 0 var(--blue-2);
		box-shadow: 2px 2px 0 var(--blue-2);
	}

	.about__title {
		width: 78%;
	}

	.entrance__btn {
		margin-top: 0;
	}

	.line__text {
		margin-bottom: 20px;
	}

	.company__title {
		width: 85%;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		margin-bottom: 32px;
	}

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

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

	.company__drop {
		display: none;
	}
}

@media screen and (max-width: 570px) {
	.speakers__card-tag {
		width: 50px;
		height: 35px;
		-webkit-box-shadow: 2px 2px 0 var(--white);
		box-shadow: 2px 2px 0 var(--white);
		border-width: 2px;
	}

	.speakers__card-photo {
		border-width: 3px;
		border-radius: 32px;
	}

	.speakers__col {
		gap: 40px;
	}

	.speakers__col:nth-child(2) {
		margin-top: 88px;
	}

	.line__slider {
		padding: 10px 0;
	}

	.line__slide {
		height: 35px;
	}

	.faq {
		padding-bottom: 48px;
	}

	.faq__wrapper {
		gap: 64px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.faq__title {
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		width: 25%;
	}

	.faq .accordion__btn {
		padding: 16px 8px;
	}

	.faq .accordion__btn-caret {
		width: 20px;
		height: 20px;
		min-width: 20px;
		border-width: 1px;
		-webkit-box-shadow: 1.5px 1.5px 0 var(--white);
		box-shadow: 1.5px 1.5px 0 var(--white);
		border-radius: 5px;
	}

	.faq .accordion__btn-caret svg {
		width: 9px;
		height: 9px;
	}

	.location__icon {
		margin-bottom: 32px;
	}

	.location__icon svg {
		width: 80px;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
	}

	.location__name {
		margin-bottom: 24px;
		font-size: 38px;
		line-height: 90%;
	}

	.program [data-tab="1"] *[data-tab="2"] {
		display: none;
	}

	.program [data-tab="2"] *[data-tab="1"] {
		display: none;
	}

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

	.program__tab-header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
	}

	.program__img {
		max-width: 75%;
	}

	.program__img svg {
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
	}

	.program .tab__btn {
		font-family: "VK Sans Display Condensed";
		font-size: 15px;
		line-height: 100%;
		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;
		text-align: center;
		width: 100%;
		padding: 16px;
		border-radius: 12px 12px 0 0;
		border: 1px dashed var(--blue-2);
		border-bottom: 1px solid var(--blue-2);
		background-color: var(--white);
		--accentColor: var(--blue-2);
		position: relative;
		z-index: 1;
	}

	.program .tab__btn:nth-child(2) {
		margin-left: -5px;
		--accentColor: var(--pink);
	}

	.program .tab__btn_active {
		color: var(--white);
		background-color: var(--accentColor);
		border-color: transparent;
		z-index: 2;
	}

	.program__desc {
		margin-top: 16px;
	}

	.program__speaker {
		margin-top: 16px;
	}

	.program__btn {
		margin-top: 48px;
	}

	.btn__bg svg {
		filter: drop-shadow(2px 2px 0 var(--pink));
	}

	.about__desc {
		max-width: 305px;
		max-width: 340px;
	}

	.program__item-hide-mob {
		display: none;
	}

	.program__speaker-position {
		font-size: 12px;
		line-height: 100%;
	}

	.about__schedule-icon svg {
		width: 16px;
		height: 16px;
	}

	.about__desc span {
		padding: 7px 7px 4px;
		margin-top: -2px;
		border-radius: 9px;
		transform: rotate(-3deg) translateY(-2px);
		box-shadow: 3px 3px 0 var(--pink);
	}

	.location__img img {
		border-radius: 0;
	}

	.location__img {
		border-radius: 0 0 18px 18px;
	}


	.fade-anim_start .speakers__card-photo img {
		filter: grayscale(0);
		transition-delay: 1s;
	}
}