@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400;800&display=swap');
@font-face {
    font-family: 'Steelfish Rg';
    src: url('../assets4/fonts/SteelfishRg-Bold.eot');
    src: url('../assets4/fonts/SteelfishRg-Bold.eot?#iefix') format('embedded-opentype'),
        url('../assets4/fonts/SteelfishRg-Bold.woff2') format('woff2'),
        url('../assets4/fonts/SteelfishRg-Bold.woff') format('woff'),
        url('../assets4/fonts/SteelfishRg-Bold.ttf') format('truetype'),
        url('../assets4/fonts/SteelfishRg-Bold.svg#SteelfishRg-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
	--font-wix: 'Wix Madefor Display', sans-serif;
	--font-fish: 'Steelfish Rg', sans-serif;
	
	--black: #0D0F1A;
	--white: #FFFFFF;
	--red: #d8282f;
	--gray50: #F6F8F9;
	--gray100: #EEF0F1;
	--gray200: #E3E7EA;
	--gray300: #BFC5C8;
	--gray400: #5A6168;
	
}

body {
	font-family: var(--font-wix);
	font-size: 16px;
	line-height: 26px;
	color: var(--black);
}

a {
	text-decoration: none;
}

.page {
	min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
/*     overflow-x: hidden; */
}

.site-main {
	flex: 1;
	overflow: hidden;
}

.container {
	max-width: 1848px;
	margin-inline: auto;
	padding: 0 24px;
	width: 100%;
}

h1, .page-title {
	font-size: clamp(3.75rem, 2.8750rem + 4.3750vw, 8.125rem);
	font-weight: 800;
	line-height: 120%;
	text-transform: uppercase;
}

h2, .section-title {
	font-size: clamp(1.3125rem, 0.9rem + 2.0625vw, 3.375rem);
	font-weight: 800;
	line-height: 120%;
	text-transform: uppercase;
}

h3, .block-title {
	font-size: clamp(1.625rem, 1.5250rem + 0.5000vw, 2.125rem);
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -1.36px;
	text-transform: uppercase;
}

.section-subtitle {
	font-family: var(--font-fish);
	font-size: clamp(1.25rem, 1.0000rem + 1.2500vw, 2.5rem);
	font-weight: 700;
	line-height: 100%;
	letter-spacing: 8px;
	text-transform: uppercase;
	margin-bottom: 24px;
	color: var(--pink);
}

.button {
	background: var(--red);
	width: 100%;
	padding: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: 0.4s ease;
	font-size: 20px;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--white);
	cursor: pointer;
	border: none;
	margin: 0;
	border-radius: 10px;
}

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

.button--white {
	border: 1px solid var(--black);
	background: var(--white);
	color: var(--black);
}

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

.button--white:hover svg path {
	fill: var(--white);
}

/* =====
 * FOOTER 
 * ===== */

.footer {
	padding-top: 5rem;
	background: var(--black);
}

.footer .footer-title {
	margin-bottom: 5rem;
	color: var(--white);
}

.footer-subtitle {
	font-size: 18px;
	font-weight: 700;
	line-height: 130%;
	letter-spacing: -0.72px;
	margin-bottom: 18px;
	color: var(--white);
}

.footer-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 50px;
	gap: 1rem;
}

.footer-copyright {
	border-top: 1px solid var(--gray300);
	padding: 50px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-copyright a {
	font-size: 18px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -0.72px;
	text-decoration: none;
	color: var(--gray300);
}

.footer-copyright__logo {
	max-width: 12.5rem;
}

.footer-copyright__logo img {
	width: 100%	;
}

.footer-contacts {
	display: flex;
	gap: 72px;
	align-items: center;
}

.socials-list {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-address,
.footer-worktime {
	display: flex;
	flex-direction: column;
}

.footer-phone__wrapper {
	display: flex;
	align-items: center;
}

.footer-line {
	display: inline-block;
	width: 1px;
	height: 36px;
	background: var(--gray300);
	margin: 0 14px;
}

.footer-text {
	font-size: 24px;
	line-height: 150%;
	letter-spacing: -0.96px;
	color: var(--gray300);
}

/* =====
 * HEADER
 * ===== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--white);
	border-bottom: 1px solid var(--gray100);
	z-index: 100;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.header-logo {
	padding: clamp(1.015625rem, 0.8438rem + 0.8594vw, 1.875rem) clamp(1.375rem, 1.1500rem + 1.1250vw, 2.5rem);
	background: var(--black);
	position: relative;
}

.header-logo a {
	display: inline-block;
	max-width: clamp(6.875rem, 5.7500rem + 5.6250vw, 12.5rem);
	width: 100%;
}

.header-logo a img {
	width: 100%;
}

.header-logo::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	height: 27px;
	width: 100%;
	background: url(../summit/img/decor.svg) center/cover no-repeat;
}

.header-left,
.header-right {
	width: calc(50% - 130px);
}

.header-left {
	padding-right: 100px;
}

.header-right {
	padding-left: 100px;
}

.header-right .menu-list {
	justify-content: flex-start;
	gap: 100px;
}

.menu-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.menu-link {
	font-size: clamp(0.875rem, 0.5887rem + 0.4469vw, 1.125rem);
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -0.72px;
	color: var(--black);
} 

.header-lang {
	display: flex;
	align-items: center;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.header-lang a {
	font-size: 18px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -0.72px;
	text-transform: uppercase;
	color: var(--black);
}

.header-lang a:first-child {
	padding-right: 8px;
	border-right: 1px solid var(--lgray);
}

.header-lang a:last-child {
	padding-left: 8px;
}

.header-lang a.current-lang {
	color: var(--pink);
}

/* =====
 * MAIN
 * ===== */

.site-main {
	overflow-x: hidden;
}

.hero-inner {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 26% 23% 51%;
	gap: 10px;	
	padding-top: 150px;
	padding-bottom: 160px;
}

.hero-title {
	font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
}

.hero-left {
	display: flex;
	flex-direction: column;
	grid-column: span 2;
}

.hero .button {
	height: 120px;
	padding-inline: 20px;
}

.hero-button--cost {
	grid-column: 1;
	grid-row: 2;
	column-gap: 10px;	
}

.hero-button--callback {
	grid-column: 2;
	grid-row: 2;
	column-gap: 10px;
	background: var(--white);
	border: 1px solid #1a1919;
	color: #1a1919;
}

.hero-info {
	display: flex;
	flex-direction: column;
}

.hero-partner {
	display: flex;
	align-items: center;
	column-gap: 80px;
}

.hero-partner__title {
	font-size: clamp(1.125rem, 0.95rem + 0.875vw, 2rem);
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.04em;
	display: flex;
	align-items: center;
}

.hero-partner__logo {
	max-width: 82px;
}

.hero-partner__logo img {
	width: 100%;
}

.hero-list {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	width: 100%;
	border-top: 1px solid var(--gray100);
	margin-top: auto;
}

.hero-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 75px 32px 48px;
	border-bottom: 1px solid var(--gray100);
	position: relative;
}

.hero-item__text {
	font-size: clamp(0.75rem, 0.3333rem + 0.5556vw, 1rem);
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -0.64px;
	background: var(--gray200);
	padding: 10px;
	position: absolute;
	top: 14px;
	left: 14px;
}

.hero-item img {
	object-fit: contain;
	max-width: 140px;
	width: 100%;
	margin: 0 auto;
}

.hero-right {
	grid-column: 3;
	grid-row: 1 / 4;
}

.hero-item:last-child {
	border-right: 0;
}

.hero-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px;
}

.hero-gallery__item {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.hero-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video {
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
    overflow: hidden;
}

.hero-video__preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video__button {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 1.5rem;
	background: transparent;
	border: none;
	font-size: var(--fs-24);
	color: var(--white);
	font-weight: 700;
	line-height: 100%;
	letter-spacing: 3.12px;
	text-transform: uppercase;
}

.hero-video__button::before {
	content: "";
	width: 6.875rem;
	height: 6.875rem;
	flex: 0 0 6.875rem;
	background: url(../summit/img/icon_play.svg) center no-repeat;
}

.hero-video__player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video__player.is-visible {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hero-title {
	margin-bottom: 20px;
	color: var(--black);
}

.hero-title span {
	color: var(--red);
}

.hero-subtitle {
	font-size: clamp(1.125rem, -0.3333rem + 1.9444vw, 2rem);
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.04em;
	color:  #1a1919;
	max-width: 46.1rem;
	margin-bottom: 43px;
}

.hero-text {
	font-size: clamp(1.125rem, -0.3333rem + 1.9444vw, 2rem);
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.04em;
	color:  #1a1919;
	max-width: 46.1rem;
}

.hero-benefits {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.hero-benefits__item {
	border-radius: 5px;
	background: #f2f2f7;
	padding: 10px;
	display: inline-flex;
	align-items: center;
	column-gap: 8px;
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: -0.04em;
	color: #1a1919;
}

.hero-advantages {
	grid-column: 1 / 3;
	grid-row: 3;
	display: flex;
	gap: 24px;
}

.hero-advantages__item {
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
}

.hero-advantages__item-title {
	font-weight: 700;
	font-size: clamp(2.625rem, 2.475rem + 0.75vw, 3.375rem);
	line-height: 130%;
	letter-spacing: -0.04em;
	color: rgba(26, 25, 25, 0.7);
	white-space: nowrap;
}

.hero-advantages__item-text {
	font-weight: 500;
	font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
	line-height: 120%;
	letter-spacing: -0.04em;
	color: rgba(26, 25, 25, 0.7);
}

/* SECTION PARTNERS TOP */

.partners {
	margin-bottom: 10rem;
	border: 1px solid var(--gray100);
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}

.partners-title {
	display: flex;
	align-items: center;
	padding: 6.25rem 3.125rem;
	max-width: 36.375rem;
}

.partners-day__title {
	border-top: 1px solid var(--gray100);
	padding: 3.125rem;
}

.partners-general {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6.25rem 3.125rem;
	border-left: 1px solid var(--gray100);
}

.partners-general img {
	object-fit: contain;
}

.partners-day__list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	border-top: 1px solid var(--gray100);
	border-left: 1px solid var(--gray100);
}

.partners-day__item {
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid var(--gray100);
	padding: 30px;
}

.partners-day__item img {
	object-fit: contain;
}

.partners-day__item:last-child {
	border-right: none;
}

/* END SECTION PARTNERS TOP */
/* SECTION ADVANTAGES */


.advantages {
	margin-bottom: 160px;
}

.title-advantages {
	margin-bottom: 80px;
}

.advantages-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid var(--gray100);
	border-left: 1px solid var(--gray100);
	margin-bottom: 80px;
}

.advantages-item {
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-right: 1px solid var(--gray100);
	border-bottom: 1px solid var(--gray100);
	transition: 0.4s ease;
	cursor: pointer;
}

.advantages-icon {
	width: 66px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--gray100);
	margin-bottom: 80px;
	transition: 0.4s ease;
}

.advantages-title {
	font-size: 30px;
	font-weight: 700;
	line-height: 120%;
	text-transform: uppercase;
	color: var(--black);
	margin-bottom: 24px;
	transition: 0.4s ease;
}

.advantages-text {
	font-size: 18px;
	line-height: 130%;
	letter-spacing: -0.72px;
	color: var(--gray400);
	transition: 0.4s ease;
}

/* END SECTION ADVANTAGES */

/* SECTION INVEST YOURSELF */
.invest {
	margin-bottom: 160px;
}

.title-invest {
	margin-bottom: 80px;
}

.invest-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 80px;
}

.invest-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px;
	min-height: 440px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.invest-item--image {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}

.invest-title {
	font-size: 34px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -1.36px;
	text-transform: uppercase;
	color: var(--white);
	margin-top: auto;
}

.invest-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--pink);
	padding: 40px;
	font-size: 24px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.96px;
	color: var(--black);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transform: translateY(-100%);
	transition: transform 0.4s ease;
}

.invest-text p {
	margin-bottom: 1rem;
}

.invest-text p:last-child {
	margin-bottom: 0;
}

.invest-item:hover .invest-text {
	transform: translateY(0);
}

.invest-item--image .result-title {
	color: var(--white);
}

/* END SECTION INVEST YOURSELF */

/* SECTION ORGANIZERS */
.organizers {
	margin-bottom: 160px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 20px;
}

.title-organizers {
	margin-bottom: 30px;
}

.organizers-block {
	order: 2;
}

.organizers-text {
	font-size: 24px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.96px;
	color: var(--gray400);
}

.organizers-numbers {
	padding: 40px;
	background: var(--black);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	order: 1;
	grid-row-start: 1;
	grid-row-end: 3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.organizers-numbers__title {
	font-size: 90px;
	font-weight: 800;
	line-height: 100%;
	letter-spacing: -3.6px;
	text-transform: uppercase;
	color: var(--pink);
	padding: 50px 50px 20px;
	background: var(--white);
}

.organizers-numbers__text {
	color: var(--black);
	font-size: 24px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -0.96px;
	background: var(--white);
	padding: 0 50px 50px;
}

.organizers-list {
	grid-column-start: 2;
	display: grid;
	order: 3;
}

.organizers-item {
	background: var(--white);
	padding: 30px 40px;
	border: 1px solid var(--gray200);
	border-bottom: none;
}

.organizers-item:last-child {
	border-bottom: 1px solid var(--gray200);
}

.organizers-number {
	display: inline-flex;
	column-gap: 20px;
	align-items: center;
	font-size: 60px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -2.4px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.organizers-icon {
	background: var(--gray100);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
}

/* END ORGANIZERS */

/* SECTION ABOUT */
.about {
	margin-bottom: 160px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.title-about {
	margin-bottom: 20px;
}

.about-text {
	font-weight: 500;
	font-size: clamp(1.125rem, 0.95rem + 0.875vw, 2rem);
	line-height: 130%;
	letter-spacing: -0.04em;
	color: #1a1919;
}

.about-text p {
	margin-bottom: 1rem;
}

.about-text p:last-child {
	margin-bottom: 0;
}

.about-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px;
}

.about-item {
	aspect-ratio: 16 / 13;
	border-radius: 10px;
	overflow: hidden;
}

.about-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* END SECTION ABOUT */

/* SECTION PROGRAMS */

.program {
	padding-bottom: 160px;
}

.program-header {
	text-align: center;
	margin-bottom: 80px;
}

.title-program span {
	color: var(--pink);
}

.program-body {
	position: relative;
	display: flex;
	flex-direction: column;
	row-gap: 0;
}

.program-body::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 48px; 
	bottom: 0;
	width: 2px;
	background:  #f6f8f9;
	transform: translateX(-50%);
	z-index: 0;
}

.program__item-speaker:only-child {
  grid-column: 1 / -1;
}

.program__row {
	display: grid;
	grid-template-columns: 1fr 80px 1fr;
	align-items: center;
	margin-bottom: 40px;
	position: relative;
}

.program__left {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	justify-content: flex-end;
	padding-right: 40px;
}

.program__right {
	grid-column: 3;
	grid-row: 1;
	display: flex;
	justify-content: flex-start;
	padding-left: 40px;
}

.program__icon-cell {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.program__item-content {
	background: #f6f8f9;
	padding: 30px;
	display: flex;
	flex-direction: column;
	row-gap: 30px;
	max-width: 810px;
	width: 100%;
}

.program__item-time {
	display: inline-flex;
	align-items: center;
	column-gap: 20px;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #000;
}

.program__item-title {
	font-weight: 800;
	font-size: 38px;
	line-height: 120%;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #000;
}

.program__item:has(.program__item-subtitle) .program__item-title {
	margin-bottom: 20px;
}

.program__item-subtitle {
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	letter-spacing: -0.04em;
	color: #8e8e93;
}

.program__item-speakers {
	padding-top: 30px;
	border-top: 1px solid #d8dadb;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.program__item-speaker {
	display: flex;
	align-items: center;
	column-gap: 30px;
}

.program__item-speaker-image {
	flex: 0 0 96px;
}

.program__item-speaker-text {
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	letter-spacing: -0.04em;
	color: #000;
}

.program__item-speaker-text span {
	font-weight: 400;
	color: #8e8e93;
}

/* END SECTION PROGRAMS */

/* SECTION TIME */
.time {
	margin-bottom: 160px;
}

.title-time {
	margin-bottom: 80px;
}

.time-list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin-bottom: 80px;
}

.time-image {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
	height: 300px;
}

.time-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.time-image .hero-video__button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.time-title {
	font-size: 34px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -1.36px;
	text-transform: uppercase;
}

/* END SECTION TIME /

/* SECTION BRANDS */

.brands-subtitle {
	text-align: center;
}

.title-brands {
	text-align: center;
	max-width: 59.5625rem;
	margin: 0 auto 80px;;
}

.title-brands span {
	color: var(--pink);
}

.brands-subtitle {
	text-align: center;
}

.brands-block__image {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 68px;
	border-left: 1px solid var(--gray200);
	border-right: 1px solid var(--gray200);
}

.brands-block__image img {
	max-height: 175px;
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.brands-day__list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	border-left: 1px solid var(--gray200);
}

.brands-day__item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
	border-right: 1px solid var(--gray200);
}

.brands-block__title {
	padding: 60px;
	text-align: center;
	background: var(--gray50);
	font-size: 34px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -1.36px;
	text-transform: uppercase;
	border: 1px solid var(--gray200);
}

.brands-list {
	display: grid;
	grid-template-columns: repeat(6,1fr);
	border-top: 1px solid var(--gray100);
	border-left: 1px solid var(--gray100);
	margin-bottom: 80px;
}

.brands-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	border-right: 1px solid var(--gray100);
	border-bottom: 1px solid var(--gray100);
}

.brands-item img {
	object-fit: contain;
}


.coaches {
	margin-bottom: 160px;
}

.coaches-list {
	margin-bottom: 80px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.coaches-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0 10px;
	margin-bottom: 20px;
}

.coaches-item.hidden {
	display: none;
	visibility: hidden;
	opacity: 0;
}

.coaches-image {
	margin-bottom: 26px;
	height: 430px;
	overflow: hidden;
}

.coaches-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.coaches-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 80px;
	gap: 1rem;
}

.coaches-title {
	font-size: 34px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -1.36px;
	text-transform: uppercase;
}

.coaches-arrows {
	display: flex;
	align-items: center;
	gap: 2px;
}

.slick-arrow { 
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	background: var(--hgray);
	transition: 0.4s ease;
}

.slick-arrow:hover {
	background: var(--black);
}

.slick-arrow:hover svg path {
	stroke: var(--white);
}

.team {
	margin-bottom: 160px;
}

.team-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 80px;
}

.title-team {
	margin-bottom: 20px;
}

.team-arrows {
	display: flex;
	align-items: center;
	gap: 2px;
}

.team-list {
	margin: 0 -10px;
	width: calc(100% + 20px);
}

.team-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0 10px;
}

.team-image {
	margin-bottom: 20px;
}

.team-image img {
	width: 100%;
	object-fit: cover;
}

.team-title {
	font-size: 34px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -1.36px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.team-text {
	font-size: 24px;
	line-height: 150%;
	letter-spacing: -0.96px;
	color: var(--gray);
}

.tariff {
	margin-bottom: 160px;
}

.tariff-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.tariff-info {
	border: 1px solid var(--lgray);
}

.tariff-header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--lgray);
}

.tariff-header__titles {
	padding: 34px 110px 34px 50px;
	border-right: 1px solid var(--lgray);
}

.tariff-header__price {
	padding: 0 26px;
	font-size: 40px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2.8px;
	color: var(--black);
}

.tariff-header__price span {
	font-size: 20px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -1.4px;
}

del {
	position: relative;
	color: var(--gray-300);
	text-decoration: none;
	margin-right: 8px;
}

del:before {
	content: "";
	border-bottom: 3px solid red;
	position: absolute;
	width: 100%;
	height: 50%;
	transform: rotate(-12deg);
}

.tariff-body {
	padding: 80px 160px 80px 50px;
}

.tariff-body__content h3 {
	margin-bottom: 40px;
}

.tariff-body__content ul {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.tariff-body__content ul li {
	padding-left: 42px;
	position: relative;
	color: var(--gray);
	font-size: 18px;
	line-height: 130%;
	letter-spacing: -0.72px;
}

	.tariff-body__content ul li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 26px;
	height: 26px;
	border-radius: 4px;
	background: var(--pink) url(../assets3/img/icon_check.svg) center no-repeat;
}

.tariff-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.members {
	margin-bottom: 160px;
}

.members-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 80px;
	gap: 1rem;
}

.members-arrows {
	display: flex;
	align-items: center;
	gap: 2px;
}

.members-list {
	width: calc(100% + 20px);
	margin: 0 -10px 20px;
}

.members-item {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
	background: var(--elgray);
	padding: 60px;
	margin: 0 10px;
}

.members-image {
	width: 176px;
	height: 176px;
	border-radius: 100%;
	overflow: hidden;
	margin-bottom: 50px;
	border: 2px solid var(--white);
}

.members-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.members-name {
	font-size: 30px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -1.36px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.members-state {
	font-size: 24px;
	line-height: 150%;
	letter-spacing: -0.96px;
	color: var(--gray);
}

.members-all {
	background: var(--elgray);
	padding: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.members-all .button {
	margin-top: 40px;
}

.members-all__title {
	font-size: 34px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -1.36px;
	text-transform: uppercase;
	margin-bottom: 60px;
}

.members-all__list {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 16px;
}

.members-all__image {
	width: 148px;
	height: 148px;
	border-radius: 100%;
	overflow: hidden;
	margin-bottom: 50px;
	border: 4px solid var(--white);
	display: block;
}

.members-all__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.calendar {
	padding: 0 0 160px;
}

.title-calendar span {
	color: var(--pink);
}

.calendar-header {
	text-align: center;
	margin-bottom: 80px;
}

.calendar-body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}

.calendar-item {
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	min-height: 406px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.calendar-item__header {
	display: flex;
	align-items: start;
	justify-content: space-between;
}

.calendar-item__logo {
	flex: 0 0 100px;
}

.calendar-item__number {
	font-weight: 700;
	font-size: 68px;
	line-height: 1.2;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.1);
}

.calendar-item__footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.calendar-item__title {
	font-weight: 800;
	font-size: clamp(2rem, -2.5058rem + 7.2674vw, 5.125rem);
	line-height: 1.2;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #fff;
}

.calendar-item__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1 1 auto;
	column-gap: 30px;
}

.calendar-item:has(.calendar-item__title) .calendar-item__info {
	justify-content: end;
}

.calendar-item__info-value {
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
	font-weight: 700;
	font-size: clamp(1.5rem, 0.2384rem + 2.0349vw, 2.375rem);
	line-height: 1.2;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #fff;
}

.calendar-item__info-value svg {
	flex: 0 0 40px;
}

.calendar-item:last-child {
	grid-column: 1 / 4;
}

.one-place {
	background: #0a0a0b;
	padding: 120px 60px;
	margin-bottom: 160px;
}

.one-place__header {
	text-align: center;
	margin-bottom: 80px;
}

.title-one-place {
	color: var(--white);
}

.title-one-place span{
	color: var(--pink);
}

.one-place__body {
	display: grid;
	grid-template-columns: 518px 1fr 518px;
	gap: 32px;
}

.one-place__item {
	padding: 30px;
	display: flex;
	align-items: end;
	min-height: 205px;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.one-place__content {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

.one-place__title {
	font-weight: 800;
	font-size: 38px;
	line-height: 120%;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #fff;
}

.one-place__item:nth-child(1) {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
	min-height: 721px;
}

.one-place__item:nth-child(2) {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
	background: #ff5e65;
}

.one-place__item:nth-child(3) {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
	min-height: 484px;
}

.one-place__item:nth-child(4) {
	grid-column: 1 / 2;
	grid-row: 3 / 4;
	background: #fff;
}

.one-place__item:nth-child(5) {
	grid-column: 2 / 4;
	grid-row: 3 / 4;
	background: #1e1e1f;
}

.one-place__item:nth-child(1) .one-place__title {
	font-size: 82px;
}

.one-place__item:nth-child(4) .one-place__title {
	color: #000;
}

.video-image {
	position: relative;
	width: 176px;
	height: 176px;
}

.video-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

.video-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../assets3/img/icon_play.svg) center/44px no-repeat;
}

.site-header .container {
	z-index: 10;
	position: relative;
}

.reviews-text {
	font-size: 24px;
	line-height: 150%;
	letter-spacing: -0.96px;
	color: var(--gray);
}

.burger-menu {
	background: transparent;
	border: none;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	padding: 0;
	background: var(--white);
	padding: 10px;
	row-gap: 10px;
}

.burger-menu__line {
	height: 1px;
	background: var(--black);
	width: 24px;
	display: block;
	transition: 0.4s ease;
}

.burger-active .burger-menu__line:nth-child(1) { 
	transform: rotate(45deg);
    transform-origin: 0px 0px;
}

.burger-active .burger-menu__line:nth-child(2) {
	opacity: 0;
	visibility: hidden;
}

.burger-active .burger-menu__line:nth-child(3) { 
	transform: rotate(-45deg);
    transform-origin: -7px 0px;
}

.mobile-menu {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow-y: scroll;
	background: var(--white);
	z-index: 9999;
	transition: 0.4s ease;
	transform: translateX(-100%);
	padding: 150px 24px 40px 24px;
	z-index: 1;
}

.mobile-menu.active {
	transform: translateX(0%);
}

.mobile-list {
	display: flex;
	flex-direction: column;
}

.mobile-link {
	padding: 26px 0;
	border-bottom: 1px solid var(--lgray);
	font-size: 18px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -0.72px;
	display: block;
	color: var(--black);
}

.mobile-active {
	overflow: hidden;
}

.popup {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
	background: rgba(13, 15, 26, 0.78);
	z-index: 100;
}

.popup.active {
	display: block;
}

.wpcf7-not-valid-tip {
	position: absolute;
	top: -26px;
	left: 30px;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 0;
	right: 0;
	margin: 0 auto;
    transform: translateY(-50%);
	max-width: 1276px;
	padding: 80px;
	background: var(--white);
}

.popup-video .modal-content {
	max-width: 860px;
	padding: 0;
	background: rgba(0,0,0,0.5);
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup-video .popup-content {
	width: 100%;
}

.popup-video .popup-close {
	background: #FFF;
}

.popup-video iframe {
	width: 100%;
}

.modal-video {
	padding: 0;
	max-width: 480px
}

.modal-video .mejs-container,
.modal-video .wp-video-shortcode video, 
.modal-video video.wp-video-shortcode {
	height: 560px !important;
}

.modal-video .popup-close {
	background: var(--white);
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
}

.wp-video,
.mejs-container {
	width: 100% !important;
}

.popup-title {
	color: var(--black);
	margin-bottom: 40px;
}

.popup-subtitle {
	font-size: 24px;
	font-weight: 600;
	line-height: 100%;
	color: var(--black);
	margin-bottom: 20px;
}

.popup-text {
	font-size: 18px;
	line-height: 130%;
	letter-spacing: -0.72px;
	color: var(--gray);
}

.popup-close {
    position: absolute;
	top: 24px;
	right: 24px;
    text-align: center;
    cursor: pointer;
	z-index: 10;
	padding: 0;
	background: transparent;
	border: none;
}

.mejs-container {
  width: 100% !important;
  height: auto !important;
  padding-top: 57%;
}
.mejs-overlay, .mejs-poster {
  width: 100% !important;
  height: 100% !important;
}
.mejs-mediaelement video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100% !important;
  height: 100% !important;
}

.icon_close  { 
	display: inline-flex;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	background: url(img/close.svg) center no-repeat;
}

.modal-content .wpcf7-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.form-field label span {
	display: flex;
}

.form-field input,
.form-field select {
	border: 1px solid var(--gray200);
	padding: 30px;
	font-size: 24px;
	line-height: 150%;
	letter-spacing: -0.96px;
	color: var(--black);
	display: flex;
	width: 100%;
	flex: 1;
}

.form-field__company,
.form-field__submit {
	grid-column: 1 / -1;
}

.form-field__submit {
	margin-top: 50px;
}

.form-field input::placeholder {
	color: var(--gray);
}

.wpcf7-submit {
	border: none;
}

.body--lock {
	overflow: hidden;
}

.title-tickets {
	margin-bottom: 24px;
}

.tickets-timer__text {
	margin-bottom: 26px;
}

.countdown-timer {
	display: flex;
	align-items: center;
	justify-content: center;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--white, #FFF);
	background: var(--pink, #F9DB4E);
	padding: 14px 30px;
	max-width: 170px;
	width: 100%;
}

.countdown-item span:first-child {
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -2.8px;
}

.countdown-item span {
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -1.4px;
}

.works {
	padding-bottom: 160px;
}

.title-works {
	margin-bottom: 40px;
}

.works-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 11px;
}

.works-item {
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
}

.works-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.costs {
	padding-bottom: 160px;
}

.title-costs {
	margin-bottom: 40px;
}

.costs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px;
}

.costs-item {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 40px;
	display: flex;
	flex-direction: column;
	row-gap: 76px;
	align-items: start;
	border-radius: 10px;
}

.costs-item__title {
	font-size: clamp(1.125rem, 0.8rem + 1.625vw, 2.75rem);
	font-weight: 700;
	line-height: 130%;
	letter-spacing: -0.04em;
	color: #1a1919;
}

.costs-item__box {
	background: #fff;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: start;
	row-gap: 25px;
}

.costs-item__box-title {
	font-weight: 500;
	font-size: clamp(0.875rem, 0.65rem + 1.125vw, 2rem);
	line-height: 130%;
	letter-spacing: -0.04em;
	color: #1a1919;
}

.costs-item__price {
	font-weight: 700;
	font-size: clamp(1.125rem, 0.8rem + 1.625vw, 2.75rem);
	line-height: 130%;
	letter-spacing: -0.04em;
	color: #d8282f;
}

.costs-blocks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px;
}

.costs-block {
	padding: 40px;
	border-radius: 10px;
	margin-top: 11px;
}

.costs-block__title {
	font-weight: 700;
	font-size: clamp(1.125rem, 0.8rem + 1.625vw, 2.75rem);
	line-height: 130%;
	letter-spacing: -0.04em;	
}

.costs-block__text {
	font-weight: 500;
	font-size: clamp(0.75rem, 0.5rem + 1.25vw, 2rem);
	line-height: 130%;
	letter-spacing: -0.04em;
}

.costs-block--fix-price {
	background: #0d0f1a;
	display: grid;
	grid-template-columns: 1fr 44px;
	gap: 20px;
}

.costs-block--fix-price .costs-block__title {
	color: #fff;
}

.costs-block--fix-price .costs-block__text {
	color: rgba(255, 255, 255, 0.7);
	grid-column: 1;
}

.costs-block--fix-price .costs-block__icon {
	grid-column: 2;
	grid-row: 1;
}

.costs-block--material {
	display: grid;
	grid-template-columns: 1fr 78px;
	gap: 20px;
	background: #f5b325;
}

.costs-block--material .costs-block__title {
	color: #1a1919;
	grid-column: 1 / 3;
}

.costs-block--material .costs-block__text {
	color: #1a1919;
	grid-column: 1;
	color: rgba(26, 25, 25, 0.7);
}

.button--costs {
	column-gap: 10px;
}

.button--costs-callback {
	column-gap: 10px;
}

.reviews {
	padding-bottom: 160px;
}

.title-reviews {
	margin-bottom: 40px;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 11px;
}

.reviews-item {
	border-radius: 10px;
	background: #f2f2f7;
	padding: 30px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.reviews-item__title {
	font-weight: 700;
	font-size: clamp(1.125rem, 0.95rem + 0.875vw, 2rem);
	line-height: 110%;
	color: #151515;
	margin-bottom: 12px;
}

.reviews-item__text {
	font-weight: 500;
	font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
	line-height: 130%;
	letter-spacing: -0.02em;
	color: rgba(21, 21, 21, 0.8);
}

.calculation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px;
	padding-bottom: 160px;
}

.calculation-info {
	background: #d8282f;
	border-radius: 10px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: start;
	background-image: url('data:image/svg+xml,<svg width="314" height="324" viewBox="0 0 314 324" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_14_434)"><path d="M190.907 323.814C216.986 323.814 241.535 318.823 264.555 308.84C287.577 298.859 307.884 285.071 325.477 267.477C343.071 249.884 356.859 229.577 366.84 206.555C376.823 183.535 381.814 158.986 381.814 132.907C381.814 106.829 376.823 82.279 366.84 59.2579C356.859 36.2369 343.071 15.9296 325.477 -1.66383C307.884 -19.2572 287.546 -33.0449 264.462 -43.0269C241.379 -53.009 216.798 -58 190.72 -58C164.642 -58 140.092 -53.009 117.071 -43.0269C94.0497 -33.0449 73.7736 -19.2572 56.2426 -1.66383C38.7117 15.9296 24.9551 36.2369 14.9731 59.2579C4.99103 82.279 0 106.829 0 132.907C0 158.986 4.99103 183.535 14.9731 206.555C24.9551 229.577 38.7428 249.884 56.3362 267.477C73.9296 285.071 94.2369 298.859 117.258 308.84C140.279 318.823 164.829 323.814 190.907 323.814Z" fill="%23CE1E25" /><path d="M116.604 151.625C116.604 149.005 117.509 146.79 119.318 144.981C121.127 143.171 123.404 142.267 126.149 142.267H255.48C258.224 142.267 260.47 143.171 262.217 144.981C263.964 146.79 264.838 149.005 264.838 151.625C264.838 158.113 261.719 161.357 255.48 161.357H166.203C163.333 163.355 161.211 165.881 159.839 168.937C158.466 171.995 157.78 175.021 157.78 178.016C157.78 186.251 161.087 192.458 167.7 196.637C174.313 200.818 182.111 202.908 191.095 202.908C198.207 202.908 204.758 201.348 210.747 198.228C216.736 195.109 220.979 190.368 223.475 184.005C224.848 180.76 226.47 178.545 228.341 177.361C230.212 176.175 232.396 175.582 234.892 175.582C238.635 175.582 241.504 176.705 243.501 178.951C245.497 181.198 246.433 184.005 246.309 187.373C246.184 192.114 244.624 196.731 241.629 201.224C236.638 209.584 229.651 215.791 220.668 219.847C211.683 223.902 202.012 225.93 191.657 225.93C181.051 225.93 171.318 224.089 162.459 220.408C153.6 216.727 146.519 211.362 141.216 204.311C135.913 197.262 133.262 188.809 133.262 178.951C133.262 176.082 133.761 173.118 134.759 170.061C135.757 167.004 137.13 164.103 138.876 161.357H126.149C123.404 161.357 121.127 160.453 119.318 158.644C117.509 156.834 116.604 154.495 116.604 151.625ZM117.166 113.069C117.166 106.706 120.285 103.524 126.524 103.524H215.614C218.609 101.403 220.792 98.8139 222.164 95.7569C223.537 92.6998 224.223 89.674 224.223 86.6795C224.223 78.4443 220.916 72.2367 214.303 68.0567C207.691 63.8767 199.892 61.7867 190.908 61.7867C183.796 61.7867 177.276 63.3464 171.349 66.4658C165.423 69.5852 161.087 74.3267 158.342 80.6903C157.094 83.9343 155.503 86.1491 153.569 87.3346C151.635 88.5199 149.482 89.1126 147.112 89.1126C143.368 89.1126 140.499 87.9896 138.502 85.7436C136.506 83.4977 135.57 80.7526 135.695 77.5084C135.695 72.6421 137.192 68.0255 140.187 63.6584C145.427 55.2984 152.477 49.0596 161.336 44.9419C170.195 40.8244 179.865 38.7656 190.346 38.7656C200.952 38.7656 210.654 40.6373 219.451 44.3806C228.248 48.1238 235.297 53.4892 240.6 60.4765C245.903 67.4641 248.555 75.8864 248.555 85.7436C248.555 88.6135 248.087 91.5769 247.15 94.634C246.215 97.6909 244.874 100.654 243.126 103.524H255.854C258.599 103.524 260.877 104.398 262.686 106.144C264.495 107.891 265.4 110.2 265.4 113.069C265.4 115.69 264.495 117.905 262.686 119.714C260.877 121.523 258.599 122.428 255.854 122.428H126.524C123.779 122.428 121.533 121.523 119.786 119.714C118.039 117.905 117.166 115.69 117.166 113.069Z" fill="white" fill-opacity="0.1" /></g><defs><clipPath id="clip0_14_434"><rect width="381.814" height="382" fill="white" transform="translate(0 -58)" /></clipPath></defs></svg>');
	background-position: top right;
	background-repeat: no-repeat;
}

.calculation-info__uptitle {
	font-weight: 600;
	font-size: clamp(0.875rem, 0.65rem + 1.125vw, 2rem);
	line-height: 130%;
	letter-spacing: -0.04em;
	color: #fff;
	background: #c4141b;
	border-radius: 5px;
	padding: 10px;
	margin-bottom: 110px;
}

.calculation-info__title {
	font-weight: 700;
	font-size: clamp(1.875rem, 1.3125rem + 2.8125vw, 4.6875rem);
	line-height: 130%;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
}

.calculation-info__title span {
	color: #f5b325;
}

.calculation-info__text {
	font-weight: 500;
	font-size: clamp(0.875rem, 0.65rem + 1.125vw, 2rem);
	line-height: 130%;
	letter-spacing: -0.04em;
	color: #fff;
}

.calculation-form {
	padding: 40px;
	border-radius: 10px;
	background: #0d0f1a;
}

.form-field__title {
	font-weight: 500;
	font-size: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
	line-height: 130%;
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.7);
	margin: 20px 0 10px;
}

.calculation-form .form-field__submit .button {
	background: #f5b325;
	min-height: 184px;
	column-gap: 20px;
}

.wpcf7-checkbox {
	display: flex;
	column-gap: 20px;
}

.wpcf7-checkbox input[type="checkbox"] {
	opacity: 0;
	visibility: hidden;
	display: none;
}

.calculation-form .wpcf7-checkbox .wpcf7-list-item {
	width: auto;
	margin: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label {
	padding-left: 32px;
	position: relative;
	font-weight: 400;
	font-size: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
	line-height: 140%;
	color: #d1d5db;
	background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_14_366)"><path d="M19 5V19H5V5H19ZM19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3Z" fill="%23D1D5DB" /></g><defs><clipPath id="clip0_14_366"><rect width="24" height="24" fill="white" /></clipPath></defs></svg>');
	background-position: left center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.wpcf7-checkbox input[type="checkbox"]:checked ~ .wpcf7-list-item-label {
	background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_14_354)"><path d="M19 3H5C3.89 3 3 3.9 3 5V19C3 20.1 3.89 21 5 21H19C20.11 21 21 20.1 21 19V5C21 3.9 20.11 3 19 3ZM10 17L5 12L6.41 10.59L10 14.17L17.59 6.58L19 8L10 17Z" fill="%23F5B325" /></g><defs><clipPath id="clip0_14_354"><rect width="24" height="24" fill="white" /></clipPath></defs></svg>');
}

.calculation-form .form-field {
	margin-bottom: 10px;
}

.calculation-form .form-field input[type="text"],
.calculation-form .form-field input[type="tel"] {
	background: #242631;
	border-color: #242631;
	color: var(--white);
	border-radius: 10px;
	padding: 40px 30px;
}

.calculation-form .form-field input[type="text"]::placeholder,
.calculation-form .form-field input[type="tel"]::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1600px) {
	.container { padding: 0 1.5rem; }
	.header-right { padding-left: 50px;}
	.hero-advantages { gap: 12px; }
	.hero-inner { padding-top: 110px; }
}

@media (max-width: 1440px) {
	.header-right .menu-list { gap: 50px; }
	.footer-text { font-size: 22px; }
	.footer-contacts { gap: 30px; }
	.hero-action__item { padding: 1rem; gap: 0.5rem; }
}

@media (max-width: 1280px) {
	.header-logo { padding-block: 16px; }
	.hero-subtitle { margin-bottom: 20px; }
	.hero-inner { grid-template-columns: 1fr 1fr; }
	.hero-right { grid-column: 1 / 3; grid-row: 3; }
	.hero-advantages { grid-row: 4; }
}

@media (max-width: 1024px) {
	.burger-menu { display: flex; order: 3; }
	.header-right, .header-left { display: none; }
	.header-lang { order: 1; position: static; transform: none; }
	.header-logo { order: 2; }
	.advantages-list { grid-template-columns: repeat(2, 1fr); }
	.advantages-item { padding: 30px; }
	.footer-info { flex-direction: column; align-items: flex-start; }
	.footer-contacts { flex-direction: column; align-items: flex-start; }
	.coaches-list { grid-template-columns: 1fr 1fr; row-gap: 1rem; }
}

@media(max-width: 991px) {
	.hero-inner { grid-template-columns: 1fr; }
	.hero-button--callback { grid-row: 5; grid-column: 1 / 2; }
}

@media(max-width: 767px) {
	.hero-inner { padding: 50px 0; }
	.hero-advantages { grid-column: 1; flex-direction: column; align-items: start; gap: 10px; }
	.hero .button { height: 80px; padding: 30px 24px; }
	.hero-right, .hero-left { grid-column: 1; } 
	.hero-benefits { gap: 4px; }
	.hero-partner__logo { max-width: 46px; }
	.hero-partner { gap: 20px; }
	.works { padding-bottom: 50px; }
	.works-grid { grid-template-columns: 1fr 1fr; }
	.title-works { margin-bottom: 20px; }
	.costs { padding-bottom: 50px; }
	.title-costs { margin-bottom: 20px; }
	.costs-grid { grid-template-columns: 1fr; gap: 5px; }
	.costs-blocks { grid-template-columns: 1fr; margin-top: 5px; gap: 6px; }
	.costs-block { margin: 0; padding: 16px; border-radius: 4px; gap: 6px; }
	.costs-block--material { grid-template-columns: 1fr 72px; }
	.costs-block--material .costs-block__title { grid-column: 1; }
	.costs-block--material .costs-block__icon { grid-column: 2; grid-row: 1 / 3; }
	.button--costs{ margin-top: 20px; }
	.about { grid-template-columns: 1fr; row-gap: 20px; margin-bottom: 50px; }
	.about-gallery { gap: 4px; }
	.reviews { padding-bottom: 50px; }
	.reviews-grid { grid-template-columns: 1fr 1fr; }
	.calculation { padding-bottom: 50px; grid-template-columns: 1fr; }
}

@media(max-width: 640px) {
	.hero-benefits__item { font-size: 14px; }
	.works-grid { gap: 4px; }
	.button { font-size: 16px; padding: 30px 18px; }
	.hero .button { padding: 30px 18px; }
	.costs-item { padding: 16px; row-gap: 27px; border-radius: 4px; }
	.costs-item__box { row-gap: 10px; padding: 8px; min-width: 132px; }
	.costs-item__box svg { width: 16px; height: 16px; }
	.reviews-grid { grid-template-columns: 1fr; }
	.reviews-item { padding: 18px; border-radius: 6px; }
	.reviews-item__title { margin-bottom: 8px; }
	.calculation-info { padding: 16px; border-radius: 4px; background-size: 140px; }
	.calculation-form { padding: 16px; border-radius: 4px; }
	.calculation-form .form-field input[type="text"], 
	.calculation-form .form-field input[type="tel"] { padding: 20px; border-radius: 4px; }
	.calculation-form .form-field__submit .button { min-height: inherit; font-size: 12px; column-gap: 8px; padding-inline: 12px; }
	.calculation-form .form-field { margin-bottom: 4px; }
	.calculation-form .form-field__submit .button svg { width: 12px; height: 12px; }
	.calculation-info__uptitle{ margin-bottom: 28px; }
	.wpcf7-checkbox { column-gap: 5px; flex-wrap: wrap; }
	.form-field__title { font-size: 16px; }
	.wpcf7-checkbox .wpcf7-list-item-label { padding-left: 15px; background-size: 14px; font-size: 16px; }
	.reviews-navigation { display: flex; justify-content: center; column-gap: 4px; margin-top: 20px; }
	.reviews-navigation button { background: none; padding: 0; border: none; width: 40px; height: 40px; border-radius: 100%; }
	.header-logo { padding: 16px 20px 10px 20px; line-height: 1; }
	.header-logo a { max-width: 110px; }
	.header-logo::after { border-width: 16px 70px 0 70px; }
	.plus-minus { height: 40px; flex: 0 0 40px; }
	.footer .footer-title { margin-bottom: 40px; }
	.footer-phone__wrapper { flex-direction: column; align-items: flex-start; }
	.footer-text { font-size: 18px; letter-spacing: -0.72px; }
	.footer-subtitle { font-size: 16px; letter-spacing: -0.64px; }
	.footer-line { display: none; }
	.footer-copyright { padding: 30px 0; flex-direction: column; align-items: flex-start; gap: 20px; }
	.modal-content { padding: 30px 24px; margin: 0 12px; }
	.popup-subtitle { font-size: 18px; }
	.popup-text { font-size: 16px; }
	.wpcf7-form-control-wrap { display: flex; }
	.form-input { display: flex; flex: 1; padding: 20px 18px; font-size: 18px; letter-spacing: -0.72px; width: 100%; }
	.modal-video { padding: 0; }
	.modal-video .popup-close { width: 40px; height: 40px; top: 20px; right: 20px; }
	.modal-video .mejs-container, .modal-video .wp-video-shortcode video,  .modal-video video.wp-video-shortcode { height: 480px !important; }
	.site-header::before { width: 100%; }
	.modal-content .wpcf7-form { grid-template-columns: 1fr; }
	.form-field__submit { margin-top: 20px; }
	.form-field input, .form-field select { font-size: 16px; line-height: 26px; padding: 16px; }
	.popup-title { margin-bottom: 20px; font-size: 20px; }
}