@font-face {
    font-family: 'Stem';
    src: url('../fonts/Stem-Bold.eot');
    src: url('../fonts/Stem-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Stem-Bold.woff2') format('woff2'),
        url('../fonts/Stem-Bold.woff') format('woff'),
        url('../fonts/Stem-Bold.ttf') format('truetype'),
        url('../fonts/Stem-Bold.svg#Stem-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stem';
    src: url('../fonts/Stem-ExtraLight.eot');
    src: url('../fonts/Stem-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Stem-ExtraLight.woff2') format('woff2'),
        url('../fonts/Stem-ExtraLight.woff') format('woff'),
        url('../fonts/Stem-ExtraLight.ttf') format('truetype'),
        url('../fonts/Stem-ExtraLight.svg#Stem-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stem';
    src: url('../fonts/Stem-Regular.eot');
    src: url('../fonts/Stem-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Stem-Regular.woff2') format('woff2'),
        url('../fonts/Stem-Regular.woff') format('woff'),
        url('../fonts/Stem-Regular.ttf') format('truetype'),
        url('../fonts/Stem-Regular.svg#Stem-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stem';
    src: url('../fonts/Stem-Medium.eot');
    src: url('../fonts/Stem-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Stem-Medium.woff2') format('woff2'),
        url('../fonts/Stem-Medium.woff') format('woff'),
        url('../fonts/Stem-Medium.ttf') format('truetype'),
        url('../fonts/Stem-Medium.svg#Stem-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stem';
    src: url('../fonts/Stem-SemiLight.eot');
    src: url('../fonts/Stem-SemiLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Stem-SemiLight.woff2') format('woff2'),
        url('../fonts/Stem-SemiLight.woff') format('woff'),
        url('../fonts/Stem-SemiLight.ttf') format('truetype'),
        url('../fonts/Stem-SemiLight.svg#Stem-SemiLight') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stem';
    src: url('../fonts/Stem-Thin.eot');
    src: url('../fonts/Stem-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Stem-Thin.woff2') format('woff2'),
        url('../fonts/Stem-Thin.woff') format('woff'),
        url('../fonts/Stem-Thin.ttf') format('truetype'),
        url('../fonts/Stem-Thin.svg#Stem-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

:root {
	--bg: #F5F5F5;
	--orange: #FF4F18;
	--black: #252525;
	--white: #ffffff;
	--light-blue: #C3DEEF;
	--blue: #7A85DE;
	--dark-blue: #3099ED;
	--yellow: #FFA100;
	--error: #FF5824;
	--valid: #86E8A0;
}

html {
	scroll-behavior: smooth;
}

body {
	padding: 0;
	margin: 0;
	font-family: 'Stem';
	font-weight: normal;
	font-size: 1.875vw;
	line-height: 1em;
	background: var(--bg);
	color: var(--black);
}

* {
	box-sizing: border-box;
}

ul,
li,
span {
	display: block;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	font-family: 'Stem';
}

h1, .h1 {
	font-size: 4.166vw;
	line-height: 1em;
	font-weight: bold;
}
@media (max-width: 1023px) {
	h1, .h1 {
		font-size: 7.5vw;
	}
}

a {
	text-decoration: none;
	font-family: 'Stem';
}

p {
	margin: 0;
	padding: 0;
}

img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

button {
	font-family: 'Stem';
	margin: 0;
	padding: 0;
	border: none;
	cursor: pointer;
	background: transparent;
}

button:active,
button:focus {
	outline: none;
}

input, textarea {
	background: var(--white);
	border-radius: 0.521vw;
	width: 100%;
	font-family: 'Stem';
	font-size: 1.667vw;
	font-weight: 300;
	line-height: normal;
	color: var(--black);
	border: 0.104vw solid var(--white);
}
@media (max-width: 1023px) {
	input, textarea {
		border-radius: 3.125vw;
		font-size: 7.5vw;
	}
}

input.no-valid, textarea.no-valid {
	border: 0.104vw solid var(--error);
}

input.valid, textarea.valid {
	border: 0.104vw solid var(--valid);
}

input {
	padding: 0 1.458vw;
	height: 3.125vw;
}
@media (max-width: 1023px) {
	input {
		padding: 0 6.25vw;
		height: 18.75vw;
	}
}
textarea {
	padding: 0.99vw 1.458vw;
	height: 100%;
    border: 0.104vw solid var(--white);
}
@media (max-width: 1023px) {
	textarea {
		padding: 7.813vw 6.25vw;
		height: 68.75vw;
		font-size: 5vw;
	}


}

input,
select,
textarea {
	outline: none;
	border: none;
}

input::placeholder,
textarea::placeholder {
	color: var(--black);
}

:focus {
	outline: none;
}

button::-moz-focus-inner {
	border: 0;
}

.text-orange {
	color: var(--orange);
}

.text-blue {
	color: var(--blue);
}

.text-dark-blue {
	color: var(--dark-blue);
}

.text-yellow {
	color: var(--yellow);
}

.text-light-blue {
	color: var(--light-blue);
}

.text-black {
	color: var(--black);
}

.text-bold {
	font-weight: bold;
}

.text-light {
	font-weight: 300;
}

.mobile-br {
	display: none;
}

.upper {
	text-transform: uppercase;
}

.container {
	width: 90.625vw;
	margin: 0 auto;
	position: relative;
}
.container.container-90 {
	padding: 0 4.688vw;
}
@media (max-width: 1023px) {
	.container {
		width: 100%;
		padding: 0 6.25vw;
	}
	.container.container-90 {
		padding: 0 6.25vw;
	}
	.mobile-br {
		display: block;
	}
	.desktop-br {
		display: none;
	}
}

.btn {
	position: relative;
	width: 26.771vw;
	height: 26.771vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.042vw;
	cursor: pointer;
}
@media (max-width: 1023px) {
	.btn {
		width: 62.5vw;
		height: 62.5vw;
		gap: 5vw;
	}
}

.btn img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.btn span {
	position: relative;
	z-index: 1;
	font-weight: bold;
	text-transform: uppercase;
}

.btn span:first-of-type {
	color: var(--white);
	font-size: 3.333vw;
	letter-spacing: -0.03em;
}
@media (max-width: 1023px) {
	.btn span:first-of-type {
		font-size: 7.813vw;
		margin: 3vw 0 -2vw 0;
	}
}

.btn span:last-of-type {
	font-size: 2.5vw;
}
@media (max-width: 1023px) {
	.btn span:last-of-type {
		font-size: 5.938vw;
		line-height: 5vw;
	}
}

.section-heading {
	display: flex;
	flex-direction: column;
	gap: 3.021vw;
}
@media (max-width: 1023px) {
	.section-heading {
		gap: 6.563vw;
	}
}

.section-heading .subtitle {
	font-weight: 300;
	font-size: 3.333vw;
	line-height: 1.5em;
}

.section-heading .title {
	font-size: 5vw;
	font-weight: bold;
}

@media (max-width: 1023px) {
	.section-heading .subtitle {
		font-size: 5vw;
		line-height: normal;
	}
	.section-heading .title {
		font-size: 7.5vw;
		line-height: 7.5vw;
	}
}

.section {
	padding: 5.573vw 0 3.802vw;
}
@media (max-width: 1023px) {
	.section {
		padding: 8.125vw 0 14.688vw;
	}
}


/* HERO */
.hero {
	position: relative;
	height: 51.042vw;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #191e53 url("../img/hero/bg.png") no-repeat center top / 100% 100%;
	border-radius: 0 0 0 13.021vw;
	z-index: 0;
	pointer-events: none;
}

.hero .header-logo {
	position: absolute;
	left: 4.688vw;
	top: 3.854vw;
	width: 13.646vw;
	z-index: 2;
	cursor: pointer;
}

.hero .header-logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.header-text__meta {
	position: absolute;
	left: 22.865vw;
	top: 3.438vw;
	width: 27.656vw;
	z-index: 2;
	color: var(--white);
	font-size: 1.667vw;
	font-weight: 400;
	line-height: 2.083vw;
}

.header-text__meta p span {
	display: inline;
	color: #CDD9FF;
	font-weight: 300;
}

.header-text__meta strong {
	font-weight: 700;
	color: var(--white);
}

.header-text__lector {
	position: absolute;
	left: 47.344vw;
	top: 5.547vw;
	width: 13.438vw;
	z-index: 2;
	color: #CDD9FF;
	font-size: 1.667vw;
	font-weight: 300;
	line-height: 2.083vw;
}

.header-text__lector p span {
	display: inline;
	font-weight: 300;
}

.header-text__lector p:last-child {
	color: var(--white);
	font-weight: 700;
}

.hero-sechenov {
	position: absolute;
	left: 44.635vw;
	top: 25.365vw;
	width: 10.677vw;
	z-index: 2;
}

.hero-sechenov img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.offer-top {
	position: absolute;
	left: 28.49vw;
	top: 11.51vw;
	width: 31.146vw;
	z-index: 2;
	color: var(--white);
	font-weight: 300;
	font-size: 1.667vw;
	line-height: 1.667vw;
}

.offer-top span {
	display: inline;
}

.offer-top .text-bold {
	font-weight: 700;
}

.offer-top span.offer-top__mobile {
	display: none;
}

.offer-title {
	position: absolute;
	left: 7.031vw;
	top: 17.708vw;
	z-index: 2;
	color: #E8EEF2;
	font-size: 5vw;
	line-height: 5vw;
}

.offer-title span {
	display: inline;
}

.offer-title span.offer-title__mobile {
	display: none;
}

.offer-slogan {
	position: absolute;
	left: 11.198vw;
	top: 32.396vw;
	z-index: 2;
	color: var(--white);
	font-size: 2.5vw;
	line-height: 2.5vw;
	font-weight: 700;
}

.offer-desc {
	position: absolute;
	left: 11.198vw;
	top: 36.146vw;
	width: 30.313vw;
	z-index: 2;
	color: var(--white);
	font-size: 1.25vw;
	line-height: normal;
	font-weight: 300;
}

.hero-line {
	position: absolute;
	left: 50.938vw;
	top: 21.771vw;
	width: 13.438vw;
	height: 0.208vw;
	background: var(--blue);
	border-radius: 0.104vw;
	z-index: 2;
}

.hero-btn {
	position: absolute;
	bottom: -13.385vw;
	left: 50.313vw;
	transform: translateX(-50%);
	z-index: 3;
	text-align: center;
	isolation: isolate;
	overflow: visible;
	gap: 0.313vw;
}

.hero-btn img {
	z-index: 0;
	object-fit: fill;
}

.hero-btn span {
	max-width: 15.052vw;
	text-align: center;
	white-space: nowrap;
}

.hero-btn span:last-of-type {
	font-size: 1.979vw;
	font-weight: 700;
	line-height: 1;
	color: var(--black);
}

@media (max-width: 1023px) {
	.hero {
		height: 279.688vw;
	}

	.hero::before {
		background-image: url("../img/hero/bg-mobile.png");
		border-radius: 0 0 0 15.625vw;
	}

	.hero .header-logo {
		left: auto;
		right: 6.25vw;
		top: 14.688vw;
		width: 31.75vw;
	}

	.header-text__meta {
		left: 6.25vw;
		top: 5.313vw;
		width: 65.313vw;
		font-size: 5vw;
		line-height: 5vw;
	}

	.header-text__meta p span {
		display: inline;
		color: #CDD9FF;
		font-weight: 300;
	}

	.header-text__meta strong {
		font-weight: 700;
		color: var(--white);
	}

	.header-text__lector {
		left: 6.25vw;
		top: 25vw;
		width: 83.75vw;
		font-size: 5vw;
		line-height: 5vw;
	}

	.hero-sechenov {
		left: 69.781vw;
		top: 30.313vw;
		width: 23.76vw;
	}

	.offer-top {
		left: 6.25vw;
		top: 39.688vw;
		width: 62.188vw;
		font-size: 3.75vw;
		line-height: 3.75vw;
		font-weight: 300;
	}

	.offer-top span.offer-top__desktop {
		display: none;
	}

	.offer-top span.offer-top__mobile {
		display: inline;
	}

	.offer-title {
		left: 6.25vw;
		top: 58.75vw;
		font-size: 16.875vw;
		line-height: 15vw;
	}

	.offer-title span.offer-title__desktop {
		display: none;
	}

	.offer-title span.offer-title__mobile {
		display: inline;
	}

	.offer-title__orth {
		font-size: 12.5vw;
		line-height: 12.5vw;
		position: relative;
        top: -2vw;
	}

	.offer-slogan {
		left: 6.25vw;
		top: 108.688vw;
		font-size: 7.5vw;
		line-height: 7.5vw;
	}

	.offer-desc {
		left: 6.25vw;
		top: 119.375vw;
		width: 90.313vw;
		font-size: 3.75vw;
		line-height: 4.688vw;
	}

	.hero-line {
		left: 50%;
		top: 146.25vw;
		width: 80.625vw;
		transform: translateX(-50%);
	}

	.hero-btn {
		left: 50%;
		bottom: -30.938vw;
		width: 61.875vw;
		height: 61.875vw;
		gap: 1.25vw;
	}

	.hero-btn span {
		max-width: 35vw;
	}

	.hero-btn span:first-of-type {
		margin: 1.8vw;
		font-size: 7.5vw;
	}

	.hero-btn span:last-of-type {
		font-size: 4.375vw;
		font-weight: 700;
		line-height: 1.15;
	}
}

/* ABOUT-SEMINAR */

.about-seminar {
	position: relative;
	padding: 5.573vw 0 5.573vw;
	background: url("../img/about-seminar/about-seminar-dots.svg") no-repeat top 11.615vw right 7.292vw / 12.5vw;
}

.about-seminar .section-heading {
	margin-left: 4.635vw;
}

.about-seminar .section-heading .subtitle {
	font-weight: 200;
}

.about-seminar .section-heading .title span {
	display: inline;
}

.about-seminar-main {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	padding-left: 9.115vw;
	margin-top: 2.865vw;
}

.about-seminar-main__left {
	width: 51.875vw;
	flex-shrink: 0;
	order: 1;
	font-size: 2.083vw;
	font-weight: 300;
	line-height: normal;
}

.about-seminar-main__left ul {
	margin-bottom: 2.083vw;
}

.about-seminar-main__left li {
	font-weight: bold;
	position: relative;
	padding-left: 3.125vw;
}

.about-seminar-main__left li:before {
	content: "";
	background: var(--black);
	width: 0.417vw;
	height: 0.417vw;
	border-radius: 50%;
	position: absolute;
	top: 0.833vw;
	left: 1.042vw;
}

.about-seminar-main__left p + p {
	margin-top: 2.083vw;
}

.about-seminar-main__right {
	width: 28.281vw;
	flex-shrink: 0;
	order: 2;
	border-left: 0.052vw solid rgba(0, 0, 0, 0.5);
	padding-left: 2.188vw;
	box-sizing: border-box;
}

.about-seminar-concept {
	width: 63.958vw;
	height: 18.854vw;
	order: 3;
	margin-top: 5.573vw;
	padding: 2.917vw 1.302vw 0 4.167vw;
	background: url("../img/about-seminar/about-seminar-text-bg2.svg") no-repeat center center / 100% 100%;
	font-size: 1.667vw;
	font-weight: 300;
	line-height: normal;
}

.about-seminar-concept__title {
	font-size: 2.083vw;
	font-weight: bold;
	margin-bottom: 0.521vw;
}

.about-seminar-main__alert {
	width: 100%;
	height: 12.917vw;
	background: url("../img/about-seminar/about-seminar-text-bg.svg") no-repeat center center / 100% 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--white);
	font-weight: 700;
	font-size: 2.083vw;
	line-height: normal;
}

.about-seminar-main__right > p {
	width: 22.969vw;
	margin-left: 3.125vw;
	margin-top: 2.76vw;
	font-size: 1.667vw;
	font-weight: bold;
	line-height: normal;
}

@media (max-width: 1023px) {
	.about-seminar {
		background: url("../img/about-seminar/about-seminar-dots.svg") no-repeat top 6.25vw right 6.25vw / 28.125vw;
		padding: 24.063vw 0 13.75vw;
	}

	.about-seminar .section-heading {
		margin-left: 0;
	}

	.about-seminar-main {
		flex-direction: column;
		padding-left: 0;
		margin-top: 5vw;
	}

	.about-seminar-main__left {
		width: 100%;
		padding-left: 2.813vw;
		font-size: 3.75vw;
	}

	.about-seminar-main__left ul {
		margin-bottom: 3.75vw;
	}

	.about-seminar-main__left li {
		text-transform: uppercase;
		padding-left: 4.688vw;
	}

	.about-seminar-main__left li:before {
		width: 0.938vw;
		height: 0.938vw;
		top: 1.406vw;
		left: 0;
	}

	.about-seminar-main__left p + p {
		margin-top: 3.75vw;
	}

	.about-seminar-concept {
		display: block;
		width: 100%;
		height: 65.313vw;
		order: 2;
		margin-top: 6.25vw;
		padding: 5.313vw 7.5vw 0;
		background: url("../img/about-seminar/about-seminar-text-bg2-mobile.svg") no-repeat center center / 100% 100%;
		font-size: 3.75vw;
		font-weight: 300;
		line-height: normal;
	}

	.about-seminar-concept__title {
		font-size: 5vw;
		font-weight: bold;
		margin-bottom: 5vw;
	}

	.about-seminar-main__right {
		width: 100%;
		border-left: none;
		padding-left: 0;
		margin-top: 6.25vw;
		order: 3;
	}

	.about-seminar-main__alert {
		width: 100%;
		height: 30.313vw;
		background: url("../img/about-seminar/about-seminar-text-bg-mobile.svg") no-repeat center center / 100% 100%;
		font-size: 5vw;
	}

	.about-seminar-main__right > p {
		width: 100%;
		margin-left: 0;
		margin-top: 4.688vw;
		padding: 0 7.5vw;
		font-size: 3.75vw;
		font-weight: 300;
	}
}

/*GALLERY*/

.gallery {
	border-top: 0.208vw solid var(--blue);
	border-bottom: 0.208vw solid var(--blue);
	padding: 1.042vw 0;
}

.gallery .container {
	width: 100%;
	padding: 0;
}

.gallery-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 14.323vw;
	gap: 0.208vw;
}

.gallery-wrap-item {
	display: block;
	overflow: hidden;
	height: 14.323vw;
}

.gallery-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1023px) {
	.gallery {
		border: none;
		padding: 0;
	}

	.gallery-wrap {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: auto;
		gap: 0.625vw;
	}

	.gallery-wrap-item {
		height: 68.75vw;
		grid-column: 1 / -1;
	}

	.gallery-wrap-item:nth-child(1),
	.gallery-wrap-item:nth-child(3),
	.gallery-wrap-item:nth-child(9),
	.gallery-wrap-item:nth-child(10),
	.gallery-wrap-item:nth-child(11) {
		display: none;
	}

	.gallery-wrap-item:nth-child(5) {
		order: 1;
	}

	.gallery-wrap-item:nth-child(6) {
		order: 2;
		grid-column: 1;
		height: 62.813vw;
	}

	.gallery-wrap-item:nth-child(2) {
		order: 3;
		grid-column: 2;
		height: 62.813vw;
	}

	.gallery-wrap-item:nth-child(4) {
		order: 4;
	}

	.gallery-wrap-item:nth-child(7) {
		order: 5;
	}

	.gallery-wrap-item:nth-child(12) {
		order: 6;
	}

	.gallery-wrap-item:nth-child(8) {
		order: 7;
	}
}

/* TARGET */

.target {
	position: relative;
	background: url("../img/target/target-bg.webp") no-repeat top center / cover;
	padding: 6.146vw 0 0;
	min-height: 54.271vw;
	color: #f5f5f5;
}

.target .section-heading {
	margin-left: 24.167vw;
}

.target .section-heading .subtitle {
	font-weight: 300;
	color: #f5f5f5;
}

.target .section-heading .title {
	margin-left: 5.729vw;
	width: 61.771vw;
	color: #f5f5f5;
}

.target .section-heading .title span {
	display: inline;
}

.target-main {
	width: 50vw;
	margin: 2.813vw 0 0 39.583vw;
	font-size: 2.083vw;
	line-height: normal;
}

.target-main__lead {
	font-weight: bold;
	margin-bottom: 2.083vw;
}

.target-main p:last-child {
	font-weight: 300;
}

.target-alert {
	position: absolute;
	left: 10vw;
	top: auto;
	bottom: -19.483vw;
	z-index: 2;
	width: 73.438vw;
	height: 16.667vw;
	padding: 2.917vw 2vw 1.917vw 4.167vw;
	background: url("../img/target/target-text-bg.svg") no-repeat center center / 100% 100%;
	font-size: 2.083vw;
	font-weight: bold;
	line-height: normal;
	color: var(--black);
}

.for-whom.section {
	padding-top: 20.156vw;
}

@media (max-width: 1023px) {
	.target {
		background: url("../img/target/target-bg-mobile.webp") no-repeat top center / 100% auto;
		padding: 9.375vw 0 37.813vw;
		min-height: 218.75vw;
	}

	.target .wrap {
		display: flex;
		flex-direction: column;
		min-height: 209.375vw;
	}

	.target .section-heading {
		margin-left: 0;
	}

	.target .section-heading .title {
		margin-left: 0;
		width: auto;
	}

	.target-main {
		width: auto;
		margin: auto 0 7.5vw;
		padding: 0 7.5vw;
		font-size: 3.75vw;
	}

	.target-main__lead {
		font-size: 5vw;
		margin-bottom: 3.75vw;
	}

	.target-alert {
		position: relative;
		left: auto;
		top: auto;
		bottom: auto;
		width: 100%;
		height: auto;
		min-height: 44.063vw;
		margin: 0 0 -37.813vw;
		padding: 5.313vw 7.5vw;
		background: url("../img/target/target-text-bg-mobile.svg") no-repeat center center / 100% 100%;
		font-size: 3.75vw;
	}
}

/* FOR-WHOM */
.for-whom {
	position: relative;
	padding-bottom: 4.729vw;
	background: url("../img/for-whom/for-whom-bg.svg") no-repeat 0 0.26vw / 51.042vw 51.042vw;
}

.for-whom .section-heading {
	margin-left: 4.635vw;
}

.for-whom .section-heading .subtitle {
	font-weight: 200;
}

.for-whom .title {
	text-transform: uppercase;
}

.for-whom .title span {
	display: inline;
}

.for-whom__intro {
	width: 67.083vw;
	margin: 2.813vw 0 0 9.115vw;
	font-size: 2.083vw;
	font-weight: bold;
	line-height: normal;
}

.for-whom__cards {
	display: grid;
	grid-template-columns: 36.823vw minmax(0, 1fr);
	row-gap: 4.292vw;
	margin: 3.575vw 0 0 8.75vw;
}

.for-whom__card {
	display: flex;
	align-items: flex-start;
	gap: 2.083vw;
}

.for-whom__card--wide {
	grid-column: 1 / -1;
}

.for-whom__card .card__bullitt {
	width: 3.646vw;
	height: 3.646vw;
	min-width: 3.646vw;
}

.for-whom__card .card__text {
	padding-top: 0.469vw;
}

.for-whom__card .card__title {
	font-size: 2.083vw;
	font-weight: bold;
	text-transform: uppercase;
	line-height: normal;
}

.for-whom__card .card__desc {
	max-width: 27.188vw;
	margin-top: 1.042vw;
	font-size: 1.667vw;
	font-weight: 300;
	line-height: normal;
}

.for-whom__card--wide .card__desc {
	max-width: 66.771vw;
}

@media (max-width: 1023px) {
	/* FOR-WHOM */
	.for-whom {
		background: url("../img/for-whom/for-whom-bg.svg") no-repeat top left / 100vw 100vw;
	}

	.for-whom.section {
		padding: 8.125vw 0 18vw 0;
	}

	.for-whom .section-heading {
		margin-left: 0;
	}

	.for-whom__intro {
		width: 68.75vw;
		margin: 6.875vw 0 0 7.5vw;
		font-size: 3.75vw;
	}

	.for-whom__cards {
		display: flex;
		flex-direction: column;
		grid-template-columns: none;
		row-gap: 0;
		margin: 11.25vw 0 0;
	}

	.for-whom__card {
		gap: 4.688vw;
	}

	.for-whom__card:not(:last-child) {
		margin-bottom: 7.5vw;
	}

	.for-whom__card .card__bullitt {
		width: 10.938vw;
		height: 10.938vw;
		min-width: 10.938vw;
		position: relative;
        top: -1.4vw;
	}

	.for-whom__card .card__text {
		padding-top: 0.938vw;
	}

	.for-whom__card .card__title {
		font-size: 5vw;
	}

	.for-whom__card .card__desc,
	.for-whom__card--wide .card__desc {
		max-width: 65vw;
		margin-top: 5vw;
		font-size: 3.75vw;
	}
}

/* FORMAT */
.format {
	position: relative;
	border-radius: 0 13.021vw 0 0;
	padding-bottom: 6.771vw;
	background: url("../img/format/format-bg.svg") no-repeat top right / 51.042vw 51.042vw;
}

.format .wrap {
	position: relative;
}

.format__head {
	display: block;
}

.format .section-heading {
	margin-left: 4.688vw;
	max-width: 48.698vw;
}

.format .section-heading .title {
	text-transform: uppercase;
}

.format .section-heading .title span {
	display: inline;
}

.format__accent {
	color: var(--blue);
}

.format__course-mobile {
	display: none;
}

.format .section-heading .title .format__course-mobile {
	display: none;
}

.format__nmo {
	position: absolute;
	top: 12.292vw;
	right: 9.115vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 23.49vw;
	height: 10.365vw;
	background: url("../img/format/format-text-bg1.svg") no-repeat center center / 100% 100%;
	text-align: center;
	text-transform: uppercase;
	z-index: 1;
}

.format__nmo-num {
	color: #f5f5f5;
	font-size: 5vw;
	font-weight: bold;
	line-height: 3.8vw;
}

.format__nmo-label {
	color: var(--black);
	font-size: 2.5vw;
	font-weight: bold;
	line-height: 2.5vw;
}

.format__info {
	margin: 9.01vw 0 0 15.104vw;
}

.format__info-head {
	margin-bottom: 2.448vw;
	font-size: 2.083vw;
	font-weight: 350;
	line-height: normal;
}

.format__list {
	display: flex;
	flex-direction: column;
	gap: 1.8vw;
}

.format__item {
	display: flex;
	align-items: flex-start;
	gap: 1.458vw;
}

.format__bullit {
	width: 2.604vw;
	height: 2.604vw;
	min-width: 2.604vw;
	margin-top: 0.313vw;
}

.format__bullit-desktop {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.format__bullit-mobile {
	display: none;
}

.format__item-text {
	font-size: 2.5vw;
	font-weight: bold;
	line-height: normal;
	text-transform: uppercase;
}

.format__cert {
	display: flex;
	align-items: center;
	gap: 6.042vw;
	margin: 4.74vw 0 0 11.719vw;
}

.format__cert-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52.031vw;
	height: 10.365vw;
	background: url("../img/format/format-text-bg2.svg") no-repeat center center / 100% 100%;
	text-align: center;
}

.format__cert-text {
	font-size: 1.667vw;
	font-weight: bold;
	line-height: normal;
	text-transform: uppercase;
}

.format__cert-text-mobile {
	display: none;
}

.format__cert-logo {
	width: 10.677vw;
	height: 14.219vw;
	flex-shrink: 0;
}

.format__cert-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 1023px) {
	/* FORMAT */
	.format {
		border-radius: 0 15.625vw 0 0;
		padding-bottom: 15.5vw;
		background: linear-gradient(109deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%) no-repeat right top / 100vw 291.875vw;
	}

	.format__head {
		display: flex;
		flex-direction: column;
		gap: 5.313vw;
	}

	.format__nmo {
		position: relative;
		top: auto;
		right: auto;
		width: 87.5vw;
		height: 27.5vw;
		margin: 0 auto;
		background-image: url("../img/format/format-text-bg1-mobile.svg");
	}

	.format .section-heading {
		margin-left: 0;
		max-width: none;
	}

	.format__accent {
		color: var(--dark-blue);
	}

	.format__course-desktop {
		display: none;
	}

	.format .section-heading .title .format__course-desktop {
		display: none;
	}

	.format__course-mobile {
		display: inline;
	}

	.format .section-heading .title .format__course-mobile {
		display: inline;
	}

	.format__nmo-num {
		font-size: 10vw;
		line-height: 10vw;
	}

	.format__nmo-label {
		font-size: 10vw;
		line-height: 10vw;
	}

	.format__info {
		margin: 8.125vw 0 0;
	}

	.format__info-head {
		margin-bottom: 4.688vw;
		padding-left: 11.563vw;
		font-size: 5vw;
	}

	.format__list {
		gap: 4.375vw;
	}

	.format__item {
		align-items: flex-start;
		gap: 4.688vw;
	}

	.format__bullit {
		width: 8.438vw;
		height: 8.438vw;
		min-width: 8.438vw;
		margin-top: 0;
	}

	.format__bullit-desktop {
		display: none;
	}

	.format__bullit-mobile {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: fill;
	}

	.format__item-text {
		font-size: 5vw;
	}

	.format__cert {
		position: relative;
		display: block;
		width: 87.5vw;
		height: 43.438vw;
		margin: 6.25vw 0 0;
		gap: 0;
	}

	.format__cert-box {
		width: 100%;
		height: 100%;
		padding: 5.313vw 28vw 0 7.5vw;
		box-sizing: border-box;
		align-items: flex-start;
		justify-content: flex-start;
		text-align: left;
		background-image: url("../img/format/format-text-bg2-mobile.svg");
	}

	.format__cert-text {
		font-size: 5vw;
	}

	.format__cert-text-desktop {
		display: none;
	}

	.format__cert-text-mobile {
		display: block;
	}

	.format__cert-logo {
		position: absolute;
		right: 4.375vw;
		top: 50%;
		width: 22.813vw;
		height: 34.688vw;
		transform: translateY(-50%);
	}
}

/* WHY */
.why {
	position: relative;
	padding-bottom: 6.771vw;
	background: url("../img/why/why-bg.svg") no-repeat top left / 51.042vw 51.042vw;
}

.why .section-heading {
	margin-left: 6.927vw;
}

.why .section-heading .title span {
	display: inline;
}

.why__lead {
	width: 79.635vw;
	margin: 1.667vw 0 0 6.927vw;
	font-size: 2.5vw;
	font-weight: bold;
	line-height: normal;
}

.why__lead span {
	display: inline;
}

.why__text {
	width: 54.792vw;
	margin: 2.344vw 0 0 14.271vw;
	font-size: 1.667vw;
	font-weight: 300;
	line-height: normal;
}

.why__alert {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74.167vw;
	height: 8.542vw;
	margin: 2.917vw auto 0;
	background: url("../img/why/why-text-bg.svg") no-repeat center center / 100% 100%;
	font-size: 2.083vw;
	font-weight: bold;
	line-height: normal;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

.why__text-bottom {
	margin-top: 2.813vw;
}

.why__text-bottom p + p {
	margin-top: 1.667vw;
}

@media (max-width: 1023px) {
	/* WHY */
	.why {
		padding-bottom: 14.5vw;
		background: linear-gradient(130deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%) no-repeat right top / 100vw 118.75vw;
		border-radius: 0 15.625vw 0 0;
	}

	.why .section-heading {
		margin-left: 0;
	}

	.why__lead {
		width: 100%;
		margin: 5vw 0 0;
		font-size: 4vw;
	}

	.why__text {
		width: 100%;
		margin: 5vw 0 0;
		font-size: 3.75vw;
	}

	.why__alert {
		width: 87.5vw;
		height: 23.75vw;
		margin: 5vw auto 0;
		background-image: url("../img/why/why-text-bg-mobile.svg");
		font-size: 5vw;
		white-space: normal;
	}

	.why__text-bottom {
		margin-top: 5vw;
	}

	.why__text-bottom p + p {
		margin-top: 5vw;
	}
}

/* WHAT */
.what {
	position: relative;
	overflow: hidden;
	border-radius: 13.021vw 0 0 0;
	padding: 5.573vw 0 5.208vw;
	background: url("../img/what/what-bg.svg") no-repeat top left / 51.042vw 51.042vw;
}

.what .section-heading {
	margin-left: 6.927vw;
}

.what .title {
	text-transform: uppercase;
}

.what .title span {
	display: inline;
}

.what__subtitle-mobile {
	display: none;
}

.what__cards {
	position: relative;
	margin-top: 5.521vw;
	min-height: 55.208vw;
}

.what__line {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.what__line--desktop {
    left: 1.583vw;
    top: -14.01vw;
    width: 95.56vw;
    height: 65.26vw;
}

.what__line--desktop img {
	object-fit: fill;
}

.what__line--mobile {
	display: none;
}

.what__card {
	position: absolute;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	gap: 2.135vw;
}

.what__card .card__bullitt {
	width: 4.299vw;
	min-width: 4.299vw;
	height: 4.063vw;
}

.what__card .card__bullitt img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.what__card .card__content {
	padding-top: 0.365vw;
}

.what__card .card__content .content__title {
	font-size: 1.667vw;
	font-weight: bold;
	line-height: normal;
	text-transform: uppercase;
}

.what__card--1 {
	left: 2.344vw;
	top: 0;
}

.what__card--1 .content__title {
	width: 33.542vw;
}

.what__card--2 {
	left: 46.979vw;
	top: 0;
}

.what__card--2 .content__title {
	width: 33.333vw;
}

.what__card--3 {
	left: 5.469vw;
	top: 9.427vw;
}

.what__card--3 .content__title {
	width: 29.063vw;
}

.what__card--4 {
	left: 43.854vw;
	top: 9.427vw;
}

.what__card--4 .content__title {
	width: 32.24vw;
}

.what__card--5 {
	left: 8.594vw;
	top: 18.854vw;
}

.what__card--5 .content__title {
	width: 33.125vw;
}

.what__card--6 {
	left: 11.719vw;
	top: 28.281vw;
}

.what__card--6 .content__title {
	width: 28.021vw;
}

.what__card--7 {
	left: 49.323vw;
	top: 24.583vw;
}

.what__card--7 .content__title {
	width: 31.25vw;
}

.what__card--8 {
	left: 46.198vw;
	top: 37.708vw;
}

.what__card--8 .content__title {
	width: 35.365vw;
}

.what__card--9 {
	left: 11.719vw;
	top: 49.271vw;
}

.what__card--9 .content__title {
	width: 49.115vw;
}

@media (max-width: 1023px) {
	/* WHAT */
	.what {
		overflow: visible;
		padding: 8.125vw 0 11vw;
		border-radius: 0 15.625vw 0 0;
		background: url("../img/what/what-bg-mobile.svg") no-repeat top right / 100vw 141.25vw;
	}

	.what .section-heading {
		margin-left: 0;
	}

	.what__subtitle-desktop {
		display: none;
	}

	.what__subtitle-mobile {
		display: block;
	}

	.what__cards {
		margin-top: 9.125vw;
		min-height: 0;
		display: flex;
		flex-direction: column;
		gap: 9vw;
	}

	.what__line--desktop {
		display: none;
	}

	.what__line--mobile {
		display: block;
		left: 4.375vw;
		top: 4.531vw;
		bottom: 4.531vw;
		width: 0.625vw;
		height: 316vw;
		background: url("../img/what/line-mobile.svg") repeat-y top center / 0.625vw auto;
	}

	.what__line--mobile img {
		display: none;
	}

	.what__card,
	.what__card--1,
	.what__card--2,
	.what__card--3,
	.what__card--4,
	.what__card--5,
	.what__card--6,
	.what__card--7,
	.what__card--8,
	.what__card--9 {
		position: relative;
		left: auto;
		top: auto;
		width: 100%;
		gap: 2.813vw;
	}

	.what__card .card__bullitt {
		width: 9.063vw;
		min-width: 9.063vw;
		height: 9.063vw;
	}

	.what__card .card__content {
		padding-top: 1.25vw;
	}

	.what__card .card__content .content__title,
	.what__card--1 .content__title,
	.what__card--2 .content__title,
	.what__card--3 .content__title,
	.what__card--4 .content__title,
	.what__card--5 .content__title,
	.what__card--6 .content__title,
	.what__card--7 .content__title,
	.what__card--8 .content__title,
	.what__card--9 .content__title {
		width: 75.625vw;
		font-size: 5vw;
	}
}

/* FUND */
.fund {
	position: relative;
	overflow: hidden;
	padding-bottom: 6.771vw;
	border-radius: 0 13.021vw 0 0;
	background: linear-gradient(225deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%) no-repeat right top / 51.042vw 51.042vw;
}

.fund .section-heading {
	margin-left: 4.688vw;
}

.fund .section-heading .subtitle {
	font-weight: 300;
}

.fund .title span {
	display: inline;
}

.fund__items {
	position: relative;
	margin: 4.479vw 0 0 9.896vw;
}

.fund__line {
    position: absolute;
    z-index: 0;
    left: 2.992vw;
    top: 2.828vw;
    width: 4.95vw;
    height: 75.969vw;
    pointer-events: none;
}

.fund__line-desktop {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.fund__line-mobile {
	display: none;
}

.fund__item {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	gap: 2.083vw;
}

.fund__item:nth-child(odd) {
	margin-left: 3.125vw;
}

.fund__item + .fund__item {
	margin-top: 3.333vw;
}

.fund__item-num {
	width: 7.656vw;
	height: 7.656vw;
	min-width: 7.656vw;
}

.fund__item-num img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.fund__item-body {
	padding-top: 2.24vw;
}

.fund__item-title {
	font-size: 2.5vw;
	font-weight: bold;
	line-height: normal;
	text-transform: uppercase;
}

.fund__item-body ul {
	max-width: 65.625vw;
	margin: 1.719vw 0 0;
	padding: 0;
	list-style: none;
}

.fund__item-body li {
	position: relative;
	padding-left: 1.667vw;
	margin-left: 0.833vw;
	font-size: 1.667vw;
	font-weight: bold;
	line-height: normal;
}

.fund__item-body li + li {
	margin-top: 0.417vw;
}

.fund__item-body li:before {
	content: "";
	position: absolute;
	top: 0.729vw;
	left: 0;
	width: 0.417vw;
	height: 0.417vw;
	border-radius: 50%;
	background: var(--black);
}

@media (max-width: 1023px) {
	/* FUND */
	.fund {
		padding-bottom: 0;
		border-radius: 0 15.625vw 0 0;
		background: linear-gradient(225deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%) no-repeat right top / 100vw 118.75vw;
	}

	.fund .section-heading {
		margin-left: 0;
	}

	.fund__items {
		margin: 11.25vw 0 0;
	}

	.fund__line {
        left: 9.6vw;
        top: -51.375vw;
        width: 1.763vw;
        height: auto;
        bottom: 0;
	}

	.fund__line-desktop {
		display: none;
	}

	.fund__line-mobile {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: fill;
	}

	.fund__item:nth-child(odd) {
		margin-left: 0;
	}

	.fund__item + .fund__item {
		margin-top: 1.25vw;
	}

	.fund__item {
		gap: 6.25vw;
	}

	.fund__item-num {
		width: 21.25vw;
		height: 21.25vw;
		min-width: 21.25vw;
	}

	.fund__item-body {
		padding-top: 7.813vw;
	}

	.fund__item-title {
		font-size: 5vw;
	}

	.fund__item-body ul {
		max-width: 60vw;
		margin-top: 5vw;
	}

	.fund__item-body li {
		padding-left: 4.375vw;
		margin-left: 1.563vw;
		font-size: 3.75vw;
	}

	.fund__item-body li + li {
		margin-top: 1.25vw;
	}

	.fund__item-body li:before {
		top: 1.563vw;
		width: 1.25vw;
		height: 1.25vw;
	}

	.fund__item:last-child:before {
		content: "";
		position: absolute;
		z-index: 1;
		left: 0;
		top: 21.25vw;
		bottom: 0;
		width: 21.25vw;
		background: var(--bg);
	}

	.fund__item:last-child .fund__item-num {
		position: relative;
		z-index: 2;
	}
}

/* PROGRAM */
.program {
	position: relative;
	padding-bottom: 8.333vw;
	background: url("../img/program/program-bg.svg") no-repeat top right / 51.042vw auto;
}

.program .wrap {
	position: relative;
	padding: 0 0 6.479vw 4.063vw;
}

.program .section-heading .title {
	text-transform: uppercase;
}

.program .section-heading .title span {
	display: inline;
	color: #EE741D;
}

.program__subtitle-mobile {
	display: none;
}

.program-days {
	display: flex;
	align-items: flex-start;
	gap: 0;
	margin: 2.5vw 0 0;
	overflow: visible;
}

.program-days-item {
	flex: 1;
	min-width: 0;
}

.program-days-item:first-child {
	width: 38.76vw;
	flex: 0 0 38.76vw;
}

.program-days-item:last-child {
	position: relative;
	width: 44.563vw;
	flex: 0 0 44.563vw;
	left: -2vw;
}

.program-days-item-head {
	display: flex;
	align-items: center;
	gap: 1.042vw;
	margin-bottom: 2.083vw;
	font-size: 2.5vw;
	font-weight: bold;
	line-height: normal;
	text-transform: uppercase;
}

.program-days-item-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5vw;
	height: 5vw;
	min-width: 5vw;
	border-radius: 50%;
	background: var(--blue);
	color: #f5f5f5;
	font-size: 3.333vw;
	font-weight: bold;
	line-height: 1;
	text-transform: uppercase;
}

.program-days-item:last-child .program-days-item-num {
	background: #EE741D;
}

.program-module {
	padding-left: 6.042vw;
}

.program-module + .program-module {
	margin-top: 2.604vw;
}

.program-module-label {
	display: flex;
	align-items: center;
	gap: 1.042vw;
	margin-bottom: 1.667vw;
	font-size: 1.667vw;
	font-weight: bold;
	line-height: normal;
	text-transform: uppercase;
	color: var(--blue);
}

.program-module-label:after {
	content: "";
	flex: 1;
	height: 0.104vw;
	max-width: 17.969vw;
	background: currentColor;
	top: 0.3vw;
    position: relative;
}

.program-days-item:last-child .program-module-label {
	color: #EE741D;
}

.program-module-lead,
.program-module-title {
	font-size: 1.667vw;
	font-weight: bold;
	line-height: normal;
	text-transform: uppercase;
}

.program-module-lead {
	margin-bottom: 1.667vw;
}

.program-module-title + .program-module-title {
	margin-top: 0vw;
}

.program-module ul {
	margin: 1.667vw 0 0;
	padding: 0;
	list-style: none;
}

.program-module li {
	position: relative;
	padding-left: 1.458vw;
	margin-left: 0.833vw;
	font-size: 1.25vw;
	font-weight: 300;
	line-height: normal;
}

.program-module li + li {
	margin-top: 0.417vw;
}

.program-module li:before {
	content: "";
	position: absolute;
	top: 0.625vw;
	left: 0;
	width: 0.313vw;
	height: 0.313vw;
	border-radius: 50%;
	background: var(--black);
}

.program-btn {
	position: absolute;
    right: 5vw;
    bottom: -30.479vw;
	z-index: 2;
	isolation: isolate;
	overflow: visible;
	gap: 0.313vw;
}

.program-btn img {
	z-index: 0;
	object-fit: fill;
}

.program-btn span {
	z-index: 1;
	max-width: 15.052vw;
	text-align: center;
	white-space: nowrap;
}

.program-btn span:first-of-type {
	font-size: 3.333vw;
	line-height: 1;
	letter-spacing: -0.03em;
}

.program-btn span:last-of-type {
	font-size: 1.667vw;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--black);
}

@media (max-width: 1023px) {
	/* PROGRAM */
	.program {
		padding-bottom: 6.25vw;
        background: url(../img/program/program-bg.svg) no-repeat top right / 100% auto;
        border-radius: 15.625vw 0 0 0;
        margin-top: -7vw;
        padding-top: 11vw;
	}

	.program .wrap {
		padding: 0 0 6.25vw;
	}

	.program__subtitle-mobile {
		display: block;
		font-weight: 200;
	}

	.program-days {
		flex-direction: column;
		gap: 9.375vw;
		margin: 8.125vw 0 0;
	}

	.program-days-item:last-child,
	.program-days-item:first-child {
		width: 100%;
		flex: none;
		left: 0;
	}

	.program-days-item-head {
		gap: 4.688vw;
		margin-bottom: 8.125vw;
		font-size: 5vw;
	}

	.program-days-item-num {
		width: 16.875vw;
		height: 16.875vw;
		min-width: 16.875vw;
		font-size: 10vw;
	}

	.program-module {
		padding-left: 0;
	}

	.program-module + .program-module {
		margin-top: 7.5vw;
	}

	.program-module-label {
		gap: 2.5vw;
		margin-bottom: 5vw;
		font-size: 5vw;
	}

	.program-module-label:after {
		height: 0.313vw;
		max-width: none;
		top: 1.2vw;
	}

	.program-module-lead {
		margin-bottom: 5vw;
		font-size: 5vw;
	}

	.program-module-title {
		font-size: 3.75vw;
	}

	.program-module ul {
		margin-top: 5vw;
	}

	.program-module li {
		padding-left: 4.375vw;
		margin-left: 1.563vw;
		font-size: 3.75vw;
	}

	.program-module li + li {
		margin-top: 1.25vw;
	}

	.program-module li:before {
		top: 1.563vw;
		width: 1.25vw;
		height: 1.25vw;
	}

	.program-btn {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		width: 61.875vw;
		height: 61.875vw;
		margin: 9.375vw auto 0;
		gap: 1.25vw;
	}

	.program-btn span {
		max-width: 35vw;
	}

	.program-btn span:first-of-type {
		font-size: 7.5vw;
		margin: 0;
	}

	.program-btn span:last-of-type {
		font-size: 4.375vw;
		line-height: 1.15;
		font-weight: 700;
	}
}

/* SPEAKER */
.speaker {
	overflow: hidden;
	border-radius: 0 13.021vw 0 0;
	padding-bottom: 11.458vw;
	background: linear-gradient(225deg, rgba(48, 153, 237, .2) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 100%) no-repeat right top / 50%;
}

.speaker .wrap {
	position: relative;
}

.speaker .section-heading {
	margin-left: 4.927vw;
}

.speaker .section-heading .subtitle {
	font-weight: 200;
}

.speaker .section-heading .title {
	text-transform: uppercase;
	white-space: nowrap;
}

.speaker__photo {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	width: 31.927vw;
	height: 47.865vw;
}

.speaker__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 7.813vw 7.813vw 0 0;
}

.speaker__photo:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-bottom: 0.208vw dashed #3099ED;
}

.speaker__btn {
	position: absolute;
	z-index: 2;
	top: 0.26vw;
	left: 53.802vw;
	display: flex;
	align-items: center;
	gap: 1.379vw;
	font-size: 3.333vw;
	font-weight: 400;
	letter-spacing: -0.03em;
	cursor: pointer;
	text-transform: uppercase;
}

.speaker__btn div {
	width: 11.771vw;
	min-width: 11.771vw;
	height: 11.771vw;
}

.speaker__btn div img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.speaker__btn p {
	font-weight: 700;
}

.speaker__more {
	margin: 3.958vw 0 0 9.896vw;
	width: 44.333vw;
	font-size: 1.667vw;
	font-weight: 300;
	line-height: normal;
}

.speaker__more li {
	font-size: 1.667vw;
	line-height: normal;
	display: block;
	position: relative;
	padding-left: 1.667vw;
	margin-left: 1.302vw;
	font-weight: 350;
}

.speaker__more li:before {
	content: "";
	background: var(--black);
	width: 0.26vw;
	height: 0.26vw;
	border-radius: 50%;
	position: absolute;
	top: 0.938vw;
	left: 0.156vw;
}

.speaker__more .more__title {
	font-weight: bold;
	margin-bottom: 1.667vw;
}

.speaker__more .more__title:not(:first-child) {
	margin-top: 2.604vw;
}

@media (max-width: 1023px) {
	/* SPEAKER */
	.speaker {
		border-radius: 0 15.625vw 0 0;
		padding-bottom: 15vw;
		background: linear-gradient(225deg, rgba(48, 153, 237, .3) 0%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 100%) no-repeat right top;
	}

	.speaker .section-heading {
		margin-left: 0;
	}

	.speaker .section-heading .title {
		white-space: normal;
	}

	.speaker__photo {
		position: relative;
		left: auto;
		bottom: auto;
		z-index: 1;
		width: 100vw;
		height: 149.688vw;
		display: block;
		margin-top: 5vw;
		right: 6.25vw;
	}

	.speaker__photo img {
		border-radius: 15.625vw 15.625vw 0 0;
	}

	.speaker__photo:after {
		border-bottom-width: 0.313vw;
	}

	.speaker__btn {
		position: relative;
		z-index: 1;
		top: auto;
		left: auto;
		gap: 3vw;
		font-size: 7.5vw;
		font-weight: 400;
		margin: 9.375vw auto 0;
		justify-content: center;
	}

	.speaker__btn div {
		width: 29.063vw;
		min-width: 29.063vw;
		height: 29.063vw;
	}

	.speaker__more .more__title {
		margin-bottom: 3.75vw;
	}

	.speaker__more {
		margin: 7.5vw 0 0;
		font-size: 3.75vw;
		width: 100%;
		max-width: 100%;
	}

	.speaker__more li {
		font-size: 3.75vw;
		padding-left: 3.75vw;
	}

	.speaker__more li:before {
		width: 0.625vw;
		height: 0.625vw;
		top: 1.875vw;
		left: 1.25vw;
	}
}

/* PRICE */
.price {
	position: relative;
}

.price:before {
	content: "";
	background: url("../img/price/price-bg.svg") no-repeat top right / 100%;
	width: 51.042vw;
	height: 51.042vw;
	position: absolute;
	top: 0;
	right: 0;
}

.price .section-heading {
	margin-left: 6.927vw;
}

.price .title span {
	display: inline;
}

.price__word-mobile {
	display: none;
}

.price .title .price__word-mobile {
	display: none;
}

.price-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 6.51vw;
}

.price-main-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 68.187vw;
}

.price-main-item:before {
	content: "";
	width: 51.187vw;
	height: 10.593vw;
	transform: translateX(-50%) rotate(1.522deg);
	border-radius: 5.296vw;
	background: #FFF;
	position: absolute;
	left: 50%;
	top: 0;
}

.price-main-item span {
	display: inline;
}

.price-main-item:not(:last-child) {
	margin-bottom: 7.135vw;
}

.price-main-item:nth-child(1) .price-main-item__value span {
	color: #EE741D;
}

.price-main-item:nth-child(2) .price-main-item__value span {
	color: var(--blue);
}

.price-main-item:nth-child(3) .price-main-item__value span {
	color: #EECB1D;
}

.price-main-item__head {
	font-size: 2.5vw;
	font-weight: 700;
	line-height: 2.5vw;
	text-transform: uppercase;
	position: relative;
	z-index: 3;
	margin-top: 1.442vw;
	text-align: center;
}

.price-main-item__value {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 10.593vw;
	font-size: 6.667vw;
	font-weight: 700;
	line-height: 5vw;
	text-transform: uppercase;
}

.price-note {
	width: 44.063vw;
	margin: 4.427vw auto 0;
	font-size: 1.25vw;
	font-weight: 300;
	line-height: normal;
	text-align: center;
}

@media (max-width: 1023px) {
	/* PRICE */
	.price {
		padding: 8.125vw 0 15.625vw;
		border-radius: 0 15.625vw 0 0;
		overflow: hidden;
	}

	.price:before {
		width: 100vw;
	}

	.price .section-heading {
		margin: 0;
	}

	.price-main {
		padding: 10vw 0 0;
	}

	.price .title .price__word-desktop {
		display: none;
	}

	.price__word-mobile {
		display: inline;
	}

	.price .title .price__word-mobile {
		display: inline;
	}

	.price-main-item {
		width: 87.5vw;
		justify-content: center;
		gap: 0;
	}

	.price-main-item__head {
		width: 100%;
		text-align: center;
		font-size: 4.375vw;
		line-height: 5vw;
		margin-top: 2.188vw;
	}

	.price-main-item:not(:last-child) {
		margin-bottom: 7.5vw;
	}

	.price-main-item:before {
		border-radius: 31.778vw;
		background: #FFF;
		width: 87.541vw;
		height: 18.123vw;
		transform: translateX(-50%) rotate(1.522deg);
		left: 50%;
		right: auto;
		top: 0;
	}

	.price-main-item__value {
		height: 18.123vw;
		font-size: 15vw;
		line-height: normal;
	}

	.price-note {
		width: 87.5vw;
		margin: 6.25vw auto 0;
		font-size: 3.75vw;
	}
}

/* FOOTER */
.footer {
	position: relative;
	padding: 6.042vw 0 8.594vw;
}

.footer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 51.042vw;
	height: 51.042vw;
	background: url("../img/footer/footer-bg.svg") no-repeat top left / 100%;
	pointer-events: none;
	z-index: 0;
}

.footer .wrap {
	position: relative;
	z-index: 1;
}

.footer .section-heading {
	margin-left: 6.875vw;
}

.footer .section-heading .title span {
	display: inline;
}

.footer__location {
	position: absolute;
	right: 0;
	top: 11.51vw;
	left: auto;
	display: flex;
	flex-direction: column;
	gap: 2.344vw;
	z-index: 1;
	font-size: 1.667vw;
	line-height: normal;
	width: 30.365vw;
	font-weight: 350;
}

.footer__location p:first-child {
	text-transform: uppercase;
	font-weight: bold;
}

.footer__location strong {
	font-weight: 700;
}

.footer-btn {
	margin: 2.656vw auto 0;
	isolation: isolate;
	overflow: visible;
	gap: 0.313vw;
}

.footer-btn img {
	z-index: 0;
	object-fit: fill;
}

.footer-btn span {
	z-index: 1;
	max-width: 14.01vw;
	text-align: center;
	white-space: nowrap;
}

.footer-btn span:last-of-type {
	font-size: 2.083vw;
	font-weight: 400;
	line-height: 1;
	color: var(--black);
}

.footer__text {
	position: absolute;
	left: 4.688vw;
	top: 14.01vw;
	right: auto;
	width: 29.323vw;
	font-size: 1.667vw;
	font-weight: 350;
	line-height: normal;
}

.footer__lead {
	margin-bottom: 1.667vw;
	font-weight: bold;
}

.footer .header-logo {
	width: 11.458vw;
	margin: 4.167vw auto 0;
}

.footer .header-logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (max-width: 1023px) {
	/* FOOTER */
	.footer {
		background: linear-gradient(225deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.05) 5%, rgba(255, 255, 255, 0.1) 40%) no-repeat right top;
		padding: 8.125vw 0 13.75vw;
	}

	.footer .wrap {
		display: flex;
		flex-direction: column;
	}

	.footer .section-heading {
		margin-left: 0;
	}

	.footer .section-heading .title {
		text-align: center;
		order: 1;
	}

	.footer .section-heading .title span {
		display: block;
		margin-left: 0;
	}

	.footer__location {
		display: flex;
		position: relative;
		right: auto;
		top: auto;
		left: auto;
		width: 87.5vw;
		margin: 3.375vw auto 0;
		font-size: 3.75vw;
		text-align: center;
		gap: 3.75vw;
		order: 4;
	}

	.footer-btn {
		margin: 6.25vw auto 0;
		order: 3;
		width: 61.875vw;
		height: 61.875vw;
		gap: 1.25vw;
	}

	.footer-btn span {
		max-width: 35vw;
	}

	.footer-btn span:first-of-type {
		margin: 1.5vw;
		font-size: 7.5vw;
	}

	.footer-btn span:last-of-type {
		font-size: 4.375vw;
		font-weight: 700;
		line-height: 1.15;
	}

	.footer__text {
		position: relative;
		left: auto;
		top: auto;
		width: 87.5vw;
		font-size: 5vw;
		text-align: center;
		margin-top: 9.375vw;
		order: 2;
	}

	.footer__lead {
		margin-bottom: 5vw;
		font-size: 5vw;
	}

	.footer .header-logo {
		position: relative;
		top: auto;
		transform: none;
		order: 5;
		width: 31.875vw;
		margin-top: 10.938vw;
	}
}

/* MODAL */
.modal {
	position: relative;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: .5s ease;
	z-index: -1;
}

.modal.active {
	opacity: 1;
	z-index: 97;
	transition: .5s ease;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 98;
	background: rgba(0, 0, 0, 0.2);
}

.modal .wrap {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 51.042vw;
	border-radius: 1.563vw;
	z-index: 99;
	background: linear-gradient(180deg, #ffffff 0%, #2d3470 100%);
	padding: 3.125vw 3.646vw;
}

.modal-close {
	position: absolute;
	top: 1.042vw;
	right: 1.042vw;
	width: 1.042vw;
	height: 1.042vw;
	z-index: 1;
}

.modal .send-form .top {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.083vw;
}

.modal .send-form .top .input-group {
	display: grid;
	gap: 1.042vw;
}

.label-policy {
	margin-top: 1.042vw;
	font-size: 1.042vw;
	color: var(--white);
	font-weight: 300;
	line-height: normal;
}

.label-policy a {
	font-size: 1.042vw;
	color: var(--white);
	font-weight: 300;
	line-height: normal;
	text-decoration: underline;
}

.checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.checkbox+label {
	display: inline-flex;
	align-items: start;
	user-select: none;
}

.checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1.146vw;
    height: 1.146vw;
	min-width: 1.146vw;
    border: 0.052vw solid var(--white);
	border-radius: 0.208vw;
    margin-right: 0.521vw;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70% 70%;
}

.backcall-form-check.no-valid .checkbox+label::before {
	border: 0.052vw solid var(--error);
}

.checkbox:checked+label::before {
	background-color: var(--white);
	background-image: url("../img/modal/check-icon.svg");
}

.button {
	width: 15.625vw;
	height: 5.208vw;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2.604vw;
	color: var(--white);
	text-transform: uppercase;
	line-height: normal;
	font-size: 1.667vw;
	font-weight: bold;
	background: linear-gradient(180deg, #FF7246, #FF4F18) no-repeat center top;
}

.modal .send-form .button {
	margin: 2.083vw auto 0;
	position: relative;
}

.modal .send-form .button::after {
	content: '';
	position: absolute;
	top: 105%;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5.677vw 5.677vw 0 0;
	width: 15.625vw;
	height: 2.865vw;
	opacity: 0.5;
	background: linear-gradient(180deg, #FF7347, rgba(255, 115, 71, 0)) no-repeat center top;
}

#modal-thx .wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

#modal-thx .wrap .header-logo {
	width: 11.458vw;
	margin: 0 auto;
}

#modal-thx .wrap .header-logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

#modal-thx .wrap .title {
	font-size: 3.333vw;
	font-weight: bold;
	line-height: normal;
	margin-top: 1.458vw;
}

#modal-thx .wrap .desc {
	font-size: 1.875vw;
	font-weight: 300;
	margin-top: 0.521vw;
}

#modal-thx .wrap .bullitt {
	margin-top: 3.542vw;
	width: 7.396vw;
	height: 7.396vw;
}

@media (max-width: 1023px) {
	/* MODAL */
	.modal .wrap {
		width: 100vw;
		height: 100%;
		border-radius: 9.375vw;
		padding: 15.625vw 6.25vw 12.5vw;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.modal-close {
		top: 6.25vw;
		right: 6.25vw;
		width: 6.25vw;
		height: 6.25vw;
	}

	.modal .send-form .top {
		grid-template-columns: 1fr;
		gap: 3.125vw;
	}

	.modal .send-form .top .input-group {
		gap: 3.125vw;
	}

	.label-policy {
		margin-top: 8.438vw;
		font-size: 3.75vw;
	}

	.label-policy a {
		font-size: 3.75vw;
	}

	.checkbox+label::before {
		width: 5vw;
		height: 5vw;
		min-width: 5vw;
		border: 0.313vw solid var(--white);
		margin-right: 3.125vw;
	}

	.button {
		width: 68.438vw;
		height: 22.813vw;
		border-radius: 15.625vw;
		font-size: 7.5vw;
	}

	.modal .send-form .button {
		margin: 8.438vw auto 0;
	}

	.modal .send-form .button::after {
		border-radius: 34.063vw 34.063vw 0 0;
		width: 68.438vw;
		height: 11.25vw;
	}

	#modal-thx .wrap .header-logo {
		position: relative;
		transform: none;
		top: 0;
		order: 4;
		margin-top: 51.875vw;
		width: 56.25vw;
	}

	#modal-thx .wrap .title {
		font-size: 12.5vw;
		line-height: 11.25vw;
		margin-top: 0;
	}

	#modal-thx .wrap .desc {
		font-size: 7.5vw;
		line-height: 7.5vw;
		margin-top: 6.875vw;
	}

	#modal-thx .wrap .bullitt {
		margin-top: 25.313vw;
		width: 44.375vw;
		height: 44.375vw;
	}
}

.date-select {
    position: relative;
    z-index: 4;
}
.date-select-button {
    border-radius: 0.521vw;
    background: var(--white);
    padding: 0 1.458vw;
    display: flex;
    align-items: center;
    gap: 0.938vw;
	height: 3.125vw;
    font-size: 1vw;
	font-weight: 300;
	line-height: 1vw;
    cursor: pointer;
    color: var(--black);
    border: 0.104vw solid var(--white);
}
.date-select.no-valid .date-select-button {
    border: 0.104vw solid var(--error);
}
.date-select-list {
    position: absolute;
    top: 100%;
    background: #fff;
    border-radius: 0 0 0.521vw 0.521vw;
    padding: 1.042vw 1.458vw;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}
.date-select-button.active + .date-select-list {
    opacity: 1;
    pointer-events: initial;
}
.date-select-list .item {
    display: block;
    font-size: 1vw;
	line-height: 1vw;
	font-weight: 300;
    color: var(--black);
}
.date-select-list .item input {
    display: none;
}
.date-select-list .item:not(:last-child) {
    margin-bottom: 1vw;
}
@media (max-width: 1023px) {
    .date-select-button {
		border-radius: 3.125vw;
        font-size: 4.5vw;
		line-height: 5vw;
		padding: 0 6.25vw;
        height: 18.75vw;
        gap: 3.125vw;
        border: 0.625vw solid transparent;
    }
    .date-select-button svg {
        height: auto;
        width: 3.125vw;
    }
    .date-select.no-valid .date-select-button {
        border: 0.625vw solid #F00;
    }
    .date-select-list {
        border-radius: 0 0 3.125vw 3.125vw;
        padding: 3.125vw 4.688vw;
    }
    .date-select-list .item {
        font-size: 4.5vw;
		line-height: 8vw;
    }
    .date-select-list .item:not(:last-child) {
        margin-bottom: 12.5vw;
    }
}