/*@font-face {
	font-family: Manrope;
	src: url("assets/manrope-400.ttf") format("truetype");
	font-weight: 400;
	font-display: swap
}

@font-face {
	font-family: Manrope;
	src: url("assets/manrope-500.ttf") format("truetype");
	font-weight: 500;
	font-display: swap
}

@font-face {
	font-family: Manrope;
	src: url("assets/manrope-600.ttf") format("truetype");
	font-weight: 600;
	font-display: swap
}

@font-face {
	font-family: Manrope;
	src: url("assets/manrope-700.ttf") format("truetype");
	font-weight: 700;
	font-display: swap
}

@font-face {
	font-family: Manrope;
	src: url("assets/manrope-800.ttf") format("truetype");
	font-weight: 800;
	font-display: swap
}*/

:root {
	--navy: #0b1f3f;
	--gold: #dbbd84;
	--gold-dark: #a78a4c;
	--ivory: #f6f3ec;
	--paper: #f4f2ed;
	--ink: #0f0f0f
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	background: #fff;
	color: var(--ink);
	font-family: "Manrope", Calibri, sans-serif
}

img {
	display: block;
	max-width: 100%
}

a {
	color: inherit;
	text-decoration: none
}

button,
input {
	font: inherit;
	outline: none;
}

.container {
	position: relative;
	width: 1248px;
	margin: 0 auto;
}

.section {
	padding: 72px 0
}

.section h2 {
	margin: 0;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.23
}

.section .lead {
	margin: 28px 0 0;
	font-size: 18px;
	line-height: 1.25
}

.section-label {
	margin: 0 0 28px;
	color: #c0984c;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.23
}

.button {
	display: flex;
	width: 330px;
	height: 74px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 6px;
	background: var(--gold);
	color: #1d1f1f;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.18;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
}

@media (hover: hover) {
	.button:hover {
		background-color: #A68A4C;
	}
}

.hero {
	height: 712px;
	background: var(--navy);
	color: #fff
}

.header {
	display: grid;
	height: 101px;
	grid-template-columns: 236px 1fr 232px;
	column-gap: 35px;
	align-items: start;
	padding-top: 17px
}

.logo {
	width: 236px;
	height: 60px
}

.logo img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.header-center>p {
	width: 238px;
	margin: 0 0 17px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3
}

.header-center>p span {
	color: #c8c8c8;
	font-weight: 500
}

.header nav {
	display: flex;
	gap: 32px
}

.header nav a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: underline;
	text-decoration-color: transparent;
}

@media (hover: hover) {
	.header nav a:hover {
		text-decoration-color: #fff;
	}
}

.header-phone {
	max-width: 232px;
	width: 100%;
	position: relative;
	height: 52px;
	text-align: right;
	margin-left: auto;
}

.header-phone__tg {
	position: absolute;
	top: 3px;
	left: 0;
	width: 24px;
}

.header-phone strong {
	display: block;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
	white-space: nowrap
}

.header-phone span {
	display: block;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3
}

.hero-content {
	display: flex;
	gap: 72px;
	padding-top: 80px
}

.hero-copy {
	width: 656px
}

.hero-copy h1 {
	margin: 0 0 24px;
	color: #f9f6f0;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.18
}

.hero-copy h1 span {
	color: var(--gold)
}

.hero-stats {
	margin: 0 0 24px;
	color: #dfdfdf;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25
}

.hero-guarantee {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px
}

.hero-guarantee p {
	margin: 0;
	color: #edd9b0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.18
}

.award {
	position: relative;
	width: 24px;
	height: 24px;
	flex: 0 0 24px
}

.award img:first-child {
	position: absolute;
	top: 0;
	left: 3px;
	width: 17px;
	height: 18px
}

.award img:last-child {
	position: absolute;
	bottom: 0;
	left: 6px;
	width: 12px;
	height: 7px
}

.hero-image {
	position: relative;
	width: 520px;
	height: 438px;
	overflow: hidden;
	border: 1px solid rgba(219, 189, 133, .38);
	border-radius: 6px
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.guarantee {
	height: 674px;
	background: var(--ivory)
}

.guarantee h2 {
	color: #050b1f
}

.guarantee h2 span {
	color: var(--gold-dark)
}

.guarantee .lead {
	margin-top: 28px;
	color: #111
}

.guarantee-cards {
	display: flex;
	height: 195px;
	gap: 14px;
	margin-top: 28px
}

.guarantee-cards article {
	width: 390px;
	height: auto;
	padding: 20px;
	border-radius: 14px;
	background: #fefcf9;
	box-shadow: 0 8px 20px rgba(20, 20, 20, .06)
}

.guarantee-cards article.dark-card {
	background: var(--navy);
	color: #fff
}

.card-mark {
	display: flex;
	height: 28px;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: #ab8a4a;
	font-size: 14px;
	font-weight: 600
}

.card-mark img {
	width: 28px;
	height: 28px
}

.guarantee-cards h3 {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 700;
	line-height: 120%;
}

.guarantee-cards article>p {
	width: 327px;
	margin: 0;
	color: #4d5973;
	font-size: 15px;
	font-weight: 500;
	line-height: 22px
}

.guarantee-cards .dark-card>p {
	color: #fff;
	font-weight: 600
}

.guarantee-note {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 28px
}

.guarantee-note img {
	width: 28px;
	height: 28px
}

.guarantee-note p {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.18
}

.guarantee>.container>.button {
	margin-top: 28px
}

.risk {
	height: 553px;
	background: #fff
}

.risk h2 {
	width: 897px;
	color: #140f40;
	line-height: 1.25
}

.risk .lead {
	font-size: 19px
}

.risk-cards {
	display: flex;
	gap: 16px;
	margin-top: 28px
}

.risk-cards__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: linear-gradient(90deg, #050B1F 0%, #1F1257 100%), #2E3036;
	border-radius: 10px;
	margin-bottom: 12px;
}

.risk-cards article {
	width: 390px;
	height: 170px;
	padding: 22px;
	border-radius: 18px;
	background: var(--ivory)
}

.risk-cards h3 {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25
}

.risk-cards p {
	margin: 0;
	color: #4d5973;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.25
}

.eastern {
	height: 575px;
	background: var(--navy);
	color: #fff
}

.eastern .section-label {
	color: var(--gold)
}

.eastern h2 {
	width: 1000px;
	color: #fff;
	line-height: 1.25
}

.eastern h2 span {
	color: var(--gold)
}

.eastern .lead {
	font-size: 20px;
	font-weight: 500
}

.languages {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 28px
}

.languages span {
	padding: 10px 14px;
	border: 1px solid rgba(224, 191, 128, .26);
	border-radius: 999px;
	background: rgba(26, 28, 31, .72);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25
}

.languages a {
	width: 163px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: text-decoration 0.3s;
}

@media (hover: hover) {
	.languages a:hover {
		text-decoration-color: #fff;
	}
}

.eastern .button {
	margin-top: 28px
}

.eastern-visual {
	position: absolute;
	top: -19px;
	left: 958px;
	width: 260px;
	height: 330px
}

.cases {
	height: 683px;
	background: #fff
}

.cases .section-label {
	margin-bottom: 28px
}

.case-cards {
	display: flex;
	gap: 18px;
	margin-top: 28px
}

.case-cards article {
	width: 404px;
	height: 410px;
	padding: 26px 24px 24px;
	overflow: hidden;
	border-radius: 18px;
	background: var(--ivory)
}

.case-label {
	margin: 0 0 18px;
	color: #c0984c;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.23
}

.case-logo {
	position: relative;
	display: flex;
	width: 342px;
	height: 96px;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 9px;
	background: #fff;
	overflow: hidden
}

.case-logo img {
	object-fit: contain
}

/* .case-cards article:nth-child(1) .case-logo img {
	position: absolute;
	top: -78px;
	left: -97px;
	width: 434px;
	height: 245px;
	max-width: none
} */

.case-cards article:nth-child(2) .case-logo img {
	width: 178px;
	height: 46px
}

.case-cards article:nth-child(3) .case-logo img {
	width: 250px;
	height: 49px
}

.case-cards h3 {
	width: 319px;
	margin: 0 0 18px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3
}

.case-cards article>p:last-child {
	width: 319px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3
}

.jetclass {
	background: var(--paper)
}

.scroll-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(11, 31, 63, .97);
	color: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
	transition: opacity .25s ease, transform .25s ease, visibility .25s ease
}

.scroll-header.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.scroll-header__inner {
	display: grid;
	height: 76px;
	grid-template-columns: 190px 1fr auto;
	gap: 36px;
	align-items: center
}

.scroll-header__logo {
	display: block;
	width: 178px
}

.scroll-header__nav {
	display: flex;
	justify-content: center;
	gap: 32px
}

.scroll-header__nav a {
	font-size: 15px;
	font-weight: 600
}

.scroll-header__contacts {
	display: flex;
	align-items: center;
	gap: 18px
}

.scroll-header__telegram {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid rgba(219, 189, 132, .65);
	border-radius: 50%;
	color: var(--gold)
}

.scroll-header__telegram svg {
	width: 20px;
	height: 20px;
	fill: currentColor
}

.scroll-header__phone {
	font-size: 18px;
	font-weight: 800;
	white-space: nowrap
}

@media (hover: hover) {
	.scroll-header__nav a:hover,
	.scroll-header__phone:hover {
		color: var(--gold)
	}

	.scroll-header__telegram:hover {
		background: var(--gold);
		color: var(--navy)
	}
}

@media (max-width: 1024px) {
	.scroll-header__inner {
		height: 68px;
		grid-template-columns: 158px 1fr auto;
		gap: 20px
	}

	.scroll-header__logo {
		width: 150px
	}

	.scroll-header__nav {
		gap: 18px
	}

	.scroll-header__phone {
		font-size: 16px
	}
}

@media (max-width: 760px) {
	.scroll-header__inner {
		display: flex;
		height: 62px;
		justify-content: space-between
	}

	.scroll-header__logo {
		width: 132px
	}

	.scroll-header__nav {
		display: none
	}

	.scroll-header__contacts {
		gap: 12px
	}

	.scroll-header__telegram {
		width: 34px;
		height: 34px
	}

	.scroll-header__phone {
		font-size: 14px
	}
}

.jet-top {
	display: flex;
	gap: 50px
}

.jet-intro {
	display: flex;
	width: 535px;
	height: 380px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 22px;
	border-radius: 18px;
	background: #fff;
	text-align: center
}

.jet-intro>p {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.23
}

.jet-intro h2 {
	width: 510px;
	font-size: 32px;
	line-height: 1.23
}

.jet-intro .button {
	width: 428px;
	height: 52px;
	padding: 16px 24px;
	font-size: 16px
}

.jet-video {
	display: flex;
	width: 660px;
	height: 380px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: 0;
	border-radius: 22px;
	background: #483480;
	color: #fff;
	text-align: center;
	overflow: hidden
}

.jet-video img {
	width: 100%;
	object-fit: cover;
	object-position: center center
}

.jet-benefits {
	display: flex;
	gap: 24px;
	margin-top: 28px
}

.jet-benefits article {
	display: flex;
	width: 302px;
	height: 200px;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: 40px 27px;
	border-radius: 10px;
	background: #fff
}

.jet-benefits article:nth-child(2) {
	padding-inline: 20px
}

.jet-benefits h3 {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2
}

.jet-benefits p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5
}

.proof {
	height: 1398px;
	overflow: hidden;
	background: #fff
}

.proof h2 {
	font-size: 38px
}

.trusted-logos {
	display: flex;
	height: 73px;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px
}

.trusted-logos img:nth-child(1) {
	width: 111px;
	height: 44px
}

.trusted-logos img:nth-child(2) {
	width: 115px;
	height: 73px
}

.trusted-logos img:nth-child(3) {
	width: 96px;
	height: 57px
}

.trusted-logos img:nth-child(4) {
	width: 160px;
	height: 51px
}

.trusted-logos img:nth-child(5) {
	width: 140px;
	height: 73px
}

.trusted-logos img:nth-child(6) {
	width: 225px;
	height: 61px
}

.trusted-logos img {
	object-fit: contain
}

.reviews-track {
	display: flex;
	width: 1248px;
	gap: 16px;
	margin-top: 28px;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x mandatory
}

.reviews-track::-webkit-scrollbar {
	display: none
}

.reviews-track article {
	width: 405px;
	height: 369px;
	flex: 0 0 405px;
	padding: 24px 20px;
	overflow: hidden;
	border-radius: 16px;
	background: var(--paper);
	scroll-snap-align: start
}

.reviews-track h3 {
	margin: 0 0 10px;
	color: #8c6b2e;
	font-size: 18px;
	font-weight: 800;
	line-height: 18px
}

.reviews-track p {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px
}

.reviews-track .review-author {
	color: #4f5259;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px
}

.read-more {
	padding: 0;
	border: 0;
	background: transparent;
	color: #8c6b2e;
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
	text-align: left;
	cursor: pointer;
	transition: color 0.3s;
}

@media (hover: hover) {
	.read-more:hover {
		color: #6d5424;
	}
}

.review-controls {
	position: relative;
	width: 200px;
	height: 60px;
	margin-top: 28px
}

.review-controls img {
	position: absolute;
	inset: -7px -1px 0;
	width: 202px;
	height: 68px
}

.review-controls button {
	position: absolute;
	top: -28px;
	width: 100px;
	height: 60px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.review-controls button:first-of-type {
	left: 0
}

.review-controls button:last-of-type {
	right: 0
}

.teachers-title {
	margin: 28px 0;
	font-size: 25px;
	font-weight: 800;
	line-height: 1.23
}

.teachers-grid {
	display: grid;
	height: 534px;
	grid-template-columns: repeat(3, 402px);
	grid-template-rows: 256px 262px;
	gap: 16px
}

.teachers-grid article {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding-top: 18px;
	overflow: hidden;
	border-radius: 14px;
	background: var(--paper)
}

.teachers-grid article>img {
	width: 116px;
	height: 116px;
	flex: 0 0 116px
}

.teachers-grid article>div {
	width: 300px;
	height: 174px;
	padding: 0 18px 18px
}

.teachers-grid article p {
	margin: 0 0 8px;
	color: #a68a4c;
	font-size: 11px;
	font-weight: 600;
	line-height: 16px
}

.teachers-grid article h3 {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 600;
	line-height: 26px
}

.teachers-grid article span {
	color: #4f5259;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px
}

.cta {
	/* height: 421px; */
	padding: 72px 0;
	background: var(--navy);
	color: #fff
}

.cta h2 {
	width: 1100px;
	margin: 0;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.23
}

.cta>.container>p {
	margin: 28px 0 0;
	font-size: 18px;
	line-height: 1.23
}

.cta-phone {
	position: absolute;
	top: 9px;
	right: 51px;
	width: 232px;
	height: 58px;
	text-align: right
}

.cta-phone__tg {
	position: absolute;
	top: 4px;
	left: 0;
	width: 24px;
}

.cta-phone strong {
	display: block;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3
}

.cta-phone span {
	display: block;
	margin-top: 5px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	white-space: nowrap
}

.cta form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px
}

.cta input[type=text] {
	width: 400px;
	height: 58px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 12px;
	background: #fff;
	color: #140f3e;
	font-size: 15px
}

.cta form>.button {
	width: 252px;
	height: 58px;
	font-size: 15px;
	font-weight: 600
}

.cta form label {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 11px;
	margin-top: 14px;
	font-size: 12px;
	line-height: 1.23
}

.cta form label input {
	width: 16px;
	height: 16px;
	margin: 0;
	appearance: none;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 4px;
	background: #fff
}

.cta form label a {
	text-decoration: underline
}

.review-modal {
	width: min(680px, calc(100% - 32px));
	max-height: 80vh;
	padding: 36px;
	border: 0;
	border-radius: 0;
	background: var(--paper);
	color: var(--ink)
}

.review-modal::backdrop {
	background: rgba(11, 31, 63, .75)
}

.review-modal h2 {
	margin: 0 0 20px;
	font-size: 28px
}

.modal-copy {
	font-size: 14px;
	line-height: 1.6
}

.modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	border: 0;
	background: transparent;
	font-size: 28px;
	cursor: pointer;
}

@media(max-width:1279px) {
	.container {
		width: calc(100% - 64px);
		margin: 0 auto
	}

	.hero,
	.guarantee,
	.risk,
	.eastern,
	.cases,
	.jetclass,
	.proof,
	.cta {
		height: auto
	}

	.header {
		grid-template-columns: 210px 1fr 200px
	}

	.header nav {
		gap: 18px
	}

	.header-phone {
		max-width: 200px;
	}

	.header-phone__tg {
		top: 0;
	}

	.header-phone strong {
		font-size: 20px
	}

	.hero-content {
		padding: 80px 0 64px;
		gap: 40px
	}

	.hero-copy {
		width: 55%
	}

	.hero-copy h1 {
		font-size: 40px
	}

	.hero-image {
		width: 45%
	}

	.guarantee-cards article,
	.risk-cards article {
		width: calc((100% - 32px)/3)
	}

	.guarantee-cards article>p {
		width: auto
	}

	.eastern-visual {
		right: 0;
		left: auto
	}

	.case-cards article {
		width: calc((100% - 36px)/3)
	}

	.case-logo,
	.case-cards h3,
	.case-cards article>p:last-child {
		width: 100%
	}

	.jet-top {
		gap: 32px
	}

	.jet-intro {
		width: 44%
	}

	.jet-video {
		width: 56%
	}

	.jet-benefits article {
		width: calc((100% - 72px)/4)
	}

	.teachers-grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.cta input[type=text] {
		width: 34%
	}

	.cta form>.button {
		width: calc(32% - 24px)
	}
}

@media(max-width:900px) {
	.container {
		width: calc(100% - 48px)
	}

	.section {
		padding: 60px 0
	}

	.header {
		height: auto;
		grid-template-columns: 190px 1fr;
		padding-bottom: 20px
	}

	.header-center {
		grid-column: 1/-1;
		grid-row: 2
	}

	.header-center>p {
		display: none
	}

	.header nav {
		margin-top: 16px
	}

	.header-phone {
		grid-column: 2;
		grid-row: 1
	}

	.hero-content {
		flex-direction: column;
		padding-top: 60px
	}

	.hero-copy,
	.hero-image {
		width: 100%
	}

	.hero-image {
		height: 420px
	}

	.guarantee-cards,
	.risk-cards,
	.case-cards {
		height: auto;
		flex-wrap: wrap
	}

	.guarantee-cards article,
	.risk-cards article,
	.case-cards article {
		width: calc(50% - 9px)
	}

	.guarantee-cards article:last-child,
	.risk-cards article:last-child,
	.case-cards article:last-child {
		width: 100%
	}

	.risk h2,
	.eastern h2 {
		width: 100%
	}

	.eastern-visual {
		display: none
	}

	.jet-top {
		flex-direction: column
	}

	.jet-intro,
	.jet-video {
		width: 100%
	}

	.jet-benefits {
		flex-wrap: wrap
	}

	.jet-benefits article {
		width: calc(50% - 12px)
	}

	.trusted-logos {
		height: auto;
		flex-wrap: wrap;
		gap: 24px
	}

	.teachers-grid {
		height: auto;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto
	}

	.teachers-grid article {
		height: 256px
	}

	.cta h2 {
		width: 70%;
		font-size: 34px
	}

	.cta-phone {
		right: 0
	}

	.cta input[type=text] {
		width: calc(50% - 6px)
	}

	.cta form>.button {
		width: 100%
	}
}

@media(max-width:600px) {
	.container {
		width: calc(100% - 36px)
	}

	.section {
		padding: 48px 0
	}

	.section h2 {
		font-size: 24px;
	}

	.section h2 br {
		display: none
	}

	.button {
		width: 100%;
		height: 62px;
		font-size: 17px
	}

	.header {
		grid-template-columns: 145px 1fr
	}

	.logo {
		width: 145px;
		height: auto
	}

	.header-phone img,
	.header-phone span {
		display: none
	}

	.header-phone strong {
		font-size: 14px
	}

	.header nav {
		gap: 16px;
		overflow-x: auto
	}

	.header nav a {
		font-size: 13px;
		white-space: nowrap
	}

	.hero-content {
		padding-top: 44px
	}

	.hero-copy h1 {
		font-size: 28px;
	}

	.hero-copy h1 br {
		display: none
	}

	.hero-stats,
	.hero-guarantee p {
		font-size: 15px
	}

	.hero-image {
		height: 280px
	}

	.guarantee-cards article,
	.risk-cards article,
	.case-cards article,
	.guarantee-cards article:last-child,
	.risk-cards article:last-child,
	.case-cards article:last-child {
		width: 100%
	}

	.guarantee-note {
		align-items: flex-start
	}

	.languages {
		flex-wrap: wrap
	}

	.languages a {
		text-align: left
	}

	.case-cards article {
		height: auto;
		min-height: 410px
	}

	.jet-intro {
		height: 390px;
		padding: 24px
	}

	.jet-intro h2 {
		width: 100%;
		font-size: 28px
	}

	.jet-intro .button {
		width: 100%
	}

	.jet-video {
		height: 330px;
		padding: 24px
	}

	.jet-video p,
	.jet-video span {
		width: 100%
	}

	.jet-benefits article {
		width: 100%
	}

	.proof h2 {
		font-size: 30px
	}

	.trusted-logos {
		display: grid;
		grid-template-columns: 1fr 1fr
	}

	.trusted-logos img {
		max-width: 130px !important;
		max-height: 60px !important
	}

	.reviews-track {
		width: 100%
	}

	.reviews-track article {
		width: 86vw;
		flex-basis: 86vw
	}

	.teachers-grid {
		grid-template-columns: 1fr
	}

	.cta {
		padding: 48px 0
	}

	.cta h2 {
		width: 100%;
		font-size: 30px
	}

	.cta-phone {
		position: relative;
		top: auto;
		right: auto;
		margin-top: 28px;
		text-align: left
	}

	.cta-phone img {
		display: none
	}

	.cta form {
		margin-top: 28px
	}

	.cta input[type=text] {
		width: 100%
	}
}

.input-checkbox1 {
	display: none;
}

.label-checkbox1 {
	position: relative;
	padding-left: 27px;
	cursor: pointer;
}

.label-checkbox1__icon {
	position: absolute;
	top: -2px;
	left: 0;
	border-radius: 4px;
	background-color: #fff;
	width: 16px;
	height: 16px;
}

.label-checkbox1__icon::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 3px;
	width: 10px;
	height: 10px;
	background: url(assets/check1.svg) center / contain no-repeat;
	opacity: 0;
	transition: opacity 0.3s;
}

.btn-checkbox {
	background-color: #ccc;
	pointer-events: none;
}

.input-checkbox1:checked ~ .checkbox-form .btn-checkbox {
	background-color: #dbbd84;
	pointer-events: initial;
}

.input-checkbox1:checked ~ .checkbox-form .label-checkbox1__icon::after {
	opacity: 1;
}

@media (hover: hover) {
	.input-checkbox1:checked ~ .checkbox-form .btn-checkbox:hover {
		background-color: #d2ac64;
		pointer-events: initial;
	}
}

.box {
	margin: 0 auto;
	position: relative;
	padding: 0 15px;
	width: 100%;
	max-width: 1300px;
}

.main-footer {
	background-color: #02122b !important;
}

.main-footer-menu {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

/* Eastern languages pages: extensions to the existing DS Corporate components */
.inner-page .hero--inner {
	height: 680px;
}

.inner-page .hero--inner .hero-content {
	padding-top: 72px;
}

.inner-page .hero--inner .section-label {
	margin-bottom: 18px;
	color: var(--gold);
}

.inner-page .hero--inner .hero-copy h1 {
	font-size: 46px;
}

.language-page .hero-copy h1 {
	font-size: 39px;
	line-height: 1.2;
}

.language-directory {
	height: auto;
	min-height: 720px;
	background: #fff;
}

.language-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 32px;
}

.language-card {
	display: flex;
	min-height: 210px;
	flex-direction: column;
	padding: 26px;
	border: 1px solid rgba(167, 138, 76, .28);
	border-radius: 14px;
	background: var(--paper);
	transition: border-color .3s, transform .3s, background-color .3s;
}

.language-card>span {
	color: var(--gold-dark);
	font-size: 13px;
	font-weight: 700;
}

.language-card h3 {
	margin: 20px 0 8px;
	font-size: 25px;
	line-height: 1.2;
}

.language-card p {
	margin: 0 0 20px;
	color: #4f5259;
	font-size: 15px;
	line-height: 1.4;
}

.language-card b {
	margin-top: auto;
	color: var(--gold-dark);
	font-size: 14px;
}

@media (hover: hover) {
	.language-card:hover {
		transform: translateY(-3px);
		border-color: var(--gold-dark);
		background: #fff;
	}
}

.language-teacher {
	height: auto;
	min-height: 510px;
	overflow: visible;
	background: #fff;
}

.language-teacher .lead {
	max-width: 720px;
}

.teachers-grid--single {
	width: 404px;
	height: auto;
	grid-template-columns: 404px;
	grid-template-rows: 256px;
	margin-top: 32px;
}

.teacher-placeholder>span:first-child {
	display: flex;
	width: 116px;
	height: 116px;
	align-items: center;
	justify-content: center;
	flex: 0 0 116px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--gold);
	font-size: 34px;
	font-weight: 700;
}

.language-page .guarantee {
	height: auto;
	min-height: 600px;
}

.language-page .cases {
	height: auto;
	min-height: 620px;
}

.case-cards--two article {
	width: calc(50% - 9px);
}

.case-cards--one article {
	width: 610px;
}

.case-cards--two article h3,
.case-cards--two article>p:last-child,
.case-cards--one article h3,
.case-cards--one article>p:last-child {
	width: auto;
}

.case-placeholder {
	border: 1px dashed rgba(167, 138, 76, .55);
}

.inner-page footer {
	height: 420px;
	overflow: hidden;
	background: #171f32;
}

.inner-page footer img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 900px) {
	.inner-page .hero--inner {
		height: auto;
		min-height: 720px;
	}

	.inner-page .hero--inner .hero-content {
		padding-top: 52px;
	}

	.language-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.language-page .guarantee,
	.language-page .cases,
	.language-teacher {
		min-height: 0;
		height: auto;
	}

	.case-cards--one article,
	.case-cards--two article {
		width: calc(50% - 9px);
	}
}

@media (max-width: 600px) {
	.inner-page .hero--inner {
		min-height: 790px;
	}

	.inner-page .hero--inner .hero-copy h1,
	.language-page .hero-copy h1 {
		font-size: 31px;
	}

	.language-grid {
		grid-template-columns: 1fr;
	}

	.language-card {
		min-height: 185px;
	}

	.teachers-grid--single {
		width: 100%;
		grid-template-columns: 1fr;
	}

	.case-cards--one article,
	.case-cards--two article {
		width: 100%;
	}

	.inner-page footer {
		height: 260px;
	}
}

.institutional-partners h2 {
	font-size: 38px
}

.institutional-partners__logos {
	display: grid;
	min-height: 170px;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	gap: 28px;
	margin-top: 32px;
	padding: 34px 42px;
	border: 1px solid rgba(167, 138, 76, .28);
	border-radius: 16px;
	background: #fff
}

.institutional-partners__logos img {
	width: 100%;
	max-width: 230px;
	max-height: 88px;
	justify-self: center;
	object-fit: contain
}

@media(max-width:900px) {
	.institutional-partners__logos {
		grid-template-columns: 1fr 1fr
	}

	.teachers-grid {
		grid-template-rows: auto
	}

	.teachers-grid article {
		height: auto;
		min-height: 430px
	}
}

@media(max-width:600px) {
	.institutional-partners__logos {
		gap: 32px 20px;
		padding: 30px 22px
	}

	.institutional-partners__logos img {
		max-height: 64px
	}

	.teachers-grid article {
		min-height: 0
	}

	.teachers-grid article>div {
		padding: 0 22px 4px
	}
}

input#input-checkbox1:checked ~ form .notice {
    display: none;
}