@media (min-width: 1600px) { @font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
	--column-width: 1280px;
	--column-width-sm: 1000px;
	--offset: calc(50% - (var(--column-width) / 2));
	--color-main: #BEAD74;
	--color-main-hover: #9a8b58;
	--color-bg: #F7F6EE;
	--color-font: #2B2A29;
	--color-white: #FEFEFE;
	--color-grey: #AAAAAA;
    --color-link: #2E78C3;
	--color-grey-light: #676565;
    --color-gray-text: #828282;
    --color-black: #151515;
    --color-font-black: #414042;
}

body {
	font-family: 'Gotham Pro', sans-serif;
	font-size: 14px;
	-webkit-text-size-adjust: none;
	color: var(--color-font);
}

input, textarea, select {
    font-family: 'Gotham Pro', sans-serif;
	font-size: 12px;
    line-height: 19px;
	-webkit-text-size-adjust: none;
	color: var(--color-black);
    font-weight: 500;
}

input::placeholder, textarea::placeholder, select::placeholder {
    color: var(--color-gray-text);
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	/* -webkit-appearance: none; */
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}


/* MODALS */


.modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000;
}

.container-modal {
    border-radius: 8px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}
/*
#loader path {
    fill: var(--color-second);
}
*/

.mb {
	margin-bottom: 100px;
}

.mt {
    margin-top: 50px;
}

.btn {
	user-select: none;
	transition: 0.3s;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	position: relative;
	white-space: nowrap;
	text-transform: uppercase;
}

.h1,
.content h1 {
	font-size: 30px;
	line-height: 42px;
	font-weight: 800;
	text-transform: uppercase;
}

.h1 > span {
	color: var(--color-main);
}

.h2,
.content h2 {
	font-size: 28px;
	line-height: 38px;
	font-weight: 900;
	text-transform: uppercase;
}

.h3,
.content h3 {
	font-size: 20px;
	line-height: 26px;
	font-weight: 600;
	text-transform: uppercase;
}

.h4,
.content h4 {
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.content p, 
.content li {
	font-size: 14px;
	line-height: 24px;
	margin: 2.5px 0;
}

.content blockquote {
    font-size: 14px;
	line-height: 24px;
    margin: 16px 0;
    padding-left: 16px;
    border-left: 4px solid var(--color-main);
}

.content blockquote h4 {
    color: var(--brown, #BEAD74);
    font-family: "Gotham Pro";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 166.667% */
    text-transform: uppercase;
}

.content a {
    font-size: 14px;
	line-height: 24px;
    color: var(--color-link);
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.mobile {
	display: none !important;
}

.iti {
	width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
	background: none !important;
}

.btn-primary {
	display: flex;
	padding: 18px 32px 15px 32px;
	justify-content: center;
	align-items: center;
	gap: 8px;	
	border-radius: 4px;
	background: var(--color-main);
	text-decoration: none;
	border: none;
	color: var(--color-white);
	text-align: center;
	font-family: "Gotham Pro";
	font-size: 13px;
	font-style: normal;
	font-weight: 700;
	line-height: 21px; /* 161.538% */
	text-transform: uppercase;
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.closemodal svg {
    width: 16px;
    height: 16px;
}

.no-scroll {
    overflow: hidden;
}

select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 40px !important;
}

.select-wrapper {
    position: relative;
}

.select-wrapper:after {
    content: '';
    position: absolute;
    bottom: 17px;
    right: 16px; /* Position it 10px from the right */
    pointer-events: none; /* Ensure it doesn't block select interaction */
    background: url('/images/arrow-down.svg') no-repeat;
    background-size: 16px 16px; /* Adjust size of the arrow */
    width: 16px;
    height: 16px;
}

.iti__selected-flag {
    padding-left: 16px !important;
    padding-right: 8px !important;
}

.iti__selected-dial-code {
    color: var(--color-gray-text);
    font-family: "Gotham Pro";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 19px; /* 158.333% */
}

.logo-svg {
    width: fit-content;
    height: 45px;
}

.logo-svg path {
    stroke: #BDAC72; 
    stroke-width: 2;
    fill: none;
}

.logo-svg path {
    fill: #BDAC72; 
    animation: fillUp 3s ease-in-out infinite;
}

@keyframes fillUp {
    0% {
        fill-opacity: 0;
        transform: translateY(100%);
    }
    100% {
        fill-opacity: 1;
        transform: translateY(0);
    }
} 
.slider-arrow {
	width: 40px;
	height: 40px;
	background-color: var(--color-main);
	border-radius: 50px;
	position: absolute;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	transform: translate(0, -50%);
}

.slider-arrow.left {
	left: 15px;
	transform: translate(0, -50%) rotate(180deg);
}

.slider-arrow.right {
	right: 15px;
}

.slider-arrow-img {
	width: 20px;
	height: 20px;
}

 
.home-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.home-top-content {
	width: 550px;
	margin-top: 25px;
}

.home-top-slider {
	width: 696px;
	height: 620px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	margin-right: -60px;
}

.home-top-slider-image {
	width: 696px;
	height: 620px;
	object-fit: cover;
	object-position: center;
}

.home-top-slider .tns-outer {
	position: relative;
}

.home-top-slider .tns-nav {
	position: absolute;
    bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
}

.home-top-slider .tns-nav button {
	width: 12px;
	height: 2px;
	border-radius: 4px;
	background: var(--white, #FEFEFE);
	border: none;
}

.home-top-slider .tns-nav-active {
	width: 35px !important;
}

 
.preview-program-cat {
	position: relative;
	padding: 20px 35px 25px;
	border-radius: 6px;
	overflow: hidden;
	height: 400px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.preview-program-cat:hover .preview-program-cat-img {
	filter: grayscale(0);
}

.preview-program-cat-img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-position: center;
	object-fit: cover;
	filter: grayscale(1);
	width: 100%;
    height: 100%;
}

.preview-program-cat-gradient {
	background-image: linear-gradient(180deg, rgba(43, 42, 41, 0) 40.25%, rgba(43, 42, 41, 0.8) 78.75%),
					linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.preview-program-cat-tags {
	position: relative;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	width: 400px;
	flex-grow: 1;
	align-content: flex-start;
}

.preview-program-cat-tag {
	padding: 5px 8px;
	font-size: 11px;
	line-height: 13px;
	font-weight: 500;
	background-color: var(--color-white);
	border-radius: 4px;
	color: var(--color-font);
	text-decoration: none;
}

.preview-program-cat-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 18px;
	text-transform: uppercase;
	position: relative;
	color: var(--color-white);
	text-decoration: none;
}

.preview-program-cat-text {
	font-size: 13px;
	line-height: 21px;
	position: relative;
	color: var(--color-white);
}

.preview-program-cat-more {
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	text-decoration: underline;
	color: var(--color-white);
	display: flex;
	align-items: center;
	margin-top: 0px;
	transition: 0.3s;
	height: 0;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	text-underline-offset: 2px;
}

.preview-program-cat-more-img {
	width: 16px;
	height: 16px;
	margin-left: 5px;
	filter: brightness(5);
    margin-top: 4px;
}

.preview-program-cat:hover > .preview-program-cat-more {
	margin-top: 18px;
	height: 16px;
}

 
.col-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

 
.wide-bg-link {
	background-color: var(--color-bg);
	border-radius: 30px;
	padding-top: 90px;
	padding-bottom: 100px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.wide-bg-link-title {
	order: -1;
	margin-bottom: 40px;
}

.wide-bg-link-more {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	text-decoration: underline;
	text-transform: uppercase;
	color: var(--color-main);
	gap: 5px;
	order: -1;
	margin-bottom: 40px;
}

.wide-bg-link-more-img {
	width: 16px;
	height: 16px;
}

 
.values-slide {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 90px;
	background-color: var(--color-bg);
	flex-shrink: 0;
	height: 100%;
	padding: 70px 100px;
	transform: translate(calc(-100% * (var(--curr-slide) - 1)));
	flex-shrink: 0;
	transition: 0.3s;
}

.values-slide-img {
	width: 300px;
	height: 300px;
}

.values-slide-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.values-slide-text {
	font-size: 13px;
	font-weight: 400;
	line-height: 21px;
	margin-bottom: 35px;
	font-weight: 500;
}

.values-slide-btns {
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08) inset;
	display: flex;
	align-items: center;
	height: 43px;
	width: 160px;
	margin-bottom: 20px;
	background-color: var(--color-white);
	border-radius: 12px;
	border: 1px solid transparent;
}

.values-slide-btns.error {
	border: 1px solid red;
}

.values-slide-btn {
	cursor: pointer;
	width: 80px;
	height: 100%;
	color: var(--color-grey);
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
	font-weight: 500;
}

.values-slide-btn.active,
.values-slide-btn:hover {
	background-color: var(--color-main);
	color: var(--color-white);
}

.values-slide-next {
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	align-items: center;
	text-decoration: underline;
}

.values-slide-next-img {
	margin-left: 5px;
	width: 16px;
	height: 16px;
	filter: brightness(0);
	margin-top: 4px;
}

 
.values-slider {
	width: 1090px;
	overflow: hidden;
	border-radius: 12px;
	height: 440px;
	display: flex;
	position: relative;
}

.values-slider-slides {
	width: 100%;
	overflow: hidden;
	display: flex;
}

.values-slider-steps {
	position: absolute;
	left: 378px;
	bottom: 10px;
	display: flex;
	border-radius: 14px;
	background-color: var(--color-white);
	overflow: hidden;
}

.values-slider-step {
	position: relative;
	font-size: 12px;
	width: 54px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.values-slider-step.active {
	color: var(--color-white);
}

.values-slider-steps-line {
	width: calc((100% / 6) * var(--curr-slide));
	position: absolute;
	height: 100%;
	transition: 0.3s;
	border-radius: 14px;
	background-color: var(--color-main);
}

.values-slider-answer {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 90px;
	transition: 0.3s;
	transform: translate(calc(-100% * (var(--curr-slide) - 1)));
	flex-shrink: 0;
}

.values-slider-answer-count {
	background-color: white;
	border-radius: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 130px;
	font-weight: 700;
	font-size: 40px;
}

.values-slider-answer-count-and {
	font-size: 30px;
}

.values-slider-answer-content {
	width: 530px;
}

.values-slider-answer-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
	margin-bottom: 20px;
	color: var(--color-white);
	text-transform: uppercase;
}

.values-slider-answer-text {
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	color: var(--color-white);
}

.values-slider-answer-count-and {
	margin: 4px 7px 0;
}

 
.block {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.block-title {
	width: 800px;
	font-size: 28px;
	line-height: 38px;
	text-align: center;
	margin-bottom: 20px;
}

.block-subtitle {
	width: 800px;
	text-align: center;
	margin-bottom: 40px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}

 
.partners-slider-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	height: 230px;
	overflow: hidden;
	position: relative;
}

.partners-slider {
	position: absolute;
	width: 2250px;
	height: 230px;
	overflow: hidden;
}

.partners-slide-wrapper {
	padding: 0 10px;
	width: 250px;
}

.partners-slide {
	background-color: var(--color-bg);
	width: 230px;
	height: 230px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed #E7E7E7;
}

.partners-slide-wrapper:nth-child(even) > .partners-slide {
	border-radius: 1000px;
}

.partners-slide-wrapper:nth-child(odd) > .partners-slide {
	border-radius: 25px;
}

.partners-slide-img {
	width: 168px;
	height: 168px;
	object-fit: contain;
	object-position: center;
}

.partners-slider-wrapper .slider-arrow {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.partners-slider-wrapper:hover .slider-arrow {
	opacity: 1;
	visibility: visible;
}


 

    .content figure {
        overflow: auto;
        width: 100% !important;
    }

    .content li strong {
        display: contents;
    }

    .content ol li {
        margin-left: 15px;
        padding-left: 6px;
    }

    .content ol li::marker {
        font-style: normal;
        font-weight: 700;
        font-size: 11px;
        line-height: 14px;
        color: black;
    } 

    .content ul li {
        align-items: flex-start;
    }

    .content p span,
	.content li span {
		display: inline-block;
	}

	.content li {
        margin-left: 15px;
	}

    .content ul li::before {
        color: black;
    }

    .content ul, 
    .content ol {
        margin: 9px 0;
        display: flex;
        flex-direction: column;
    }

    .content img {
        margin: 20px 0;
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .content figure {
        margin: 0;
    }

    .content p:first-child {
        margin-top: 0;
    }

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

    .content table {
        border-collapse: collapse;
        border-spacing: 0;
        border: 1px double var(--color-stroke);
    }

    .content table td {
        min-width: 2em;
        padding: 0.4em;
        border: 1px solid var(--color-stroke);
    }


 
	.reviews-read-more {
		display: none;
		align-items: center;
		gap: 3px;
		color: var(--black, #2B2A29);
		font-family: "Gotham Pro";
		font-size: 10px;
		font-style: normal;
		font-weight: 700;
		line-height: 14px; /* 140% */
		text-transform: uppercase;
		background: transparent;
        border: none;
		cursor: pointer;
		margin-bottom: 10px;
	}

	.reviews-slide-wrapper.wide .reviews-read-more {
		display: flex;
	}

	.reviews-slide-wrapper.narrow .reviews-read-more {
		display: flex;
	}

	.reviews-read-more span {
		border-bottom: 1px solid var(--black, #2B2A29);
	}

	.reviews-slider-wrapper {
		width: 100%;
		display: flex;
		justify-content: center;
		height: 500px;
		overflow: hidden;
		position: relative;
		margin-bottom: 100px;
	}

	#reviews-slider {
		padding: 20px 0;
	}

	.reviews-slider {
		/*position: absolute;
		width: 2160px;*/
		/*height: 409px;*/
		overflow: hidden;
	}

	.reviews-slide-wrapper {
		padding: 0 20px;
		width: 440px;
	}

	.reviews-slide-wrapper.wide {
		width: 620px;
	}

	.reviews-slide-wrapper.narrow {
		width: 335px;
	}

	.reviews-slide {
		background-color: #FEFEFE;
		width: 100%;
		height: 450px;
		border-radius: 12px;
		box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.07);
		padding: 25px;
		user-select: none;
	}

	.reviews-slide-title {
		font-size: 15px;
		font-weight: 700;
		line-height: 21px;
		text-transform: uppercase;
		margin-bottom: 4px;
	}

	.reviews-slide-position {
		font-size: 12px;
		font-weight: 500;
		line-height: 18px;
		padding-bottom: 16px;
		border-bottom: 1px dashed #DBDBDB;
		margin-bottom: 16px;
	}

	.reviews-slide-content {
		font-size: 13px;
		line-height: 20px;
		margin-bottom: 13px;
		overflow: hidden;
	}

	.reviews-slide-content .content p,li {
		color: var(--black, #2B2A29);
		font-family: "Gotham Pro";
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 21px; /* 161.538% */
	}

	.reviews-slide-wrapper.wide .reviews-slide-content {
		max-height: 245px;
	}

	.reviews-slide-wrapper.narrow .reviews-slide-content {
		max-height: 245px;
	}

	.reviews-slide-link {
		padding: 15px;
		display: flex;
		background-color: var(--color-bg);
		text-decoration: none;
		border-radius: 8px;
	}

	.reviews-slide-link-ico {
		width: 18px;
		height: 18px;
		margin-right: 12px;
		flex-shrink: 0;
	}

	.reviews-slide-link-text {
		font-size: 11px;
		font-weight: 700;
		line-height: 16px;
		color: var(--color-main);
		text-transform: uppercase;
		text-decoration-line: underline;
		text-decoration-thickness: 0.11px;
		text-underline-offset: 2px;
	}

	.reviews-slider-wrapper .slider-arrow {
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.reviews-slider-wrapper:hover .slider-arrow {
		opacity: 1;
		visibility: visible;
	}

 
.form-group {
	display: block;
	width: 100%;
}

.form-group-title {
	color: #828282;
	font-size: 11px;
	line-height: 13px;
	margin-bottom: 6px;
	font-weight: 500;
}

.form-group-input {
	height: 51px;
	border-radius: 8px;
	border: 1px solid #E7E7E7;
	background-color: white;
	padding: 0 16px;
	width: 100%;
}

.input-error {
	color: #aa0e0e;
	font-family: "Gotham Pro";
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 19px; /* 158.333% */
}

 
.btn-main {
	border: 0;
	font-size: 13px;
	font-weight: 700;
	line-height: 21px;
	padding: 16px 42px;
	color: var(--color-white);
	border-radius: 4px;
	background-color: var(--color-main);
	font-family: 'Gotham Pro', sans-serif;
}

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

 
	.form-contact {
		background-color: var(--color-bg);
		border-radius: 12px;
		padding: 80px 98px;
		background-image: url('/images/contact-form.png'); /* Add your image path here */
		background-repeat: no-repeat; /* Ensures the image doesn't repeat */
		background-position: top right; /* Positions the image at the top-right corner */
		background-size: auto;
	}

	.form-contact-title {
		margin-bottom: 20px;
	}

	.form-contact-subtitle {
		margin-bottom: 40px;
		font-size: 14px;
		font-weight: 400;
		line-height: 24px;
		font-weight: 500;
	}

	.form-contact-form {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 18px;
	}

	.form-contact-form > .btn {
		width: 100%;
		grid-column: 1 / 4;
	}

	.form-contact-policy {
		grid-column: 1 / 4;
		font-size: 11px !important;
		font-weight: 500 !important;
		line-height: 17px !important;
	}

	.contact-form-answer {
		display: none;
		text-align: center;
        margin-top: 20px;
		font-size: 14px;
		font-weight: 400;
		line-height: 24px;
		font-weight: 500;
	}

	.contact-form-answer.error {
		color: #d31717;
	}

	.contact-form-answer.success {
		color: #35c172;
	}	

 
	.socials {
		display: flex;
		gap: 16px;
	}

	.social-img {
		height: 22px;
		width: 22px;
	}

	.social-img.width-32 {
		height: 32px;
		width: 32px;
	}

 	
	.header {
		padding: 8px 12px 20px;
		position: sticky;
        top: 0px;
        z-index: 9999;
        background: white;
	}

	.header-bg {
		padding-left: var(--offset);
		padding-right: var(--offset);
		background-color: var(--color-bg);
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 69px;
		border-radius: 16px;
	}

	.header-logo-container {
		position: relative;
		height: 45px;
		width: 128px;
		overflow: hidden;
	}

	.header-logo-img {
		height: 45px;
		width: 128px;
		object-fit: contain;
		object-position: center;
	}

	.header-logo-scroll {
		height: 45px;
		width: 128px;
	}

	.header-menu {
		display: flex;
		align-items: center;
		gap: 42px;
	}

	.header-menu-item {
		color: var(--color-font);
		text-decoration: none;
		font-size: 13px;
		line-height: 21px;
		font-weight: 500;
		position: relative;	
	}

	.submenu-container {
		position: relative;
		display: flex;
		align-items: center;
		gap: 5px;
	}

	/* Submenu styles */
	.submenu {
		display: none; /* Initially hide the submenu */
		position: absolute;
		top: 100%; /* Position submenu below the parent */
		left: 0;
		background-color: var(--color-bg);
		padding: 10px;
		box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
		z-index: 1;
		width: 250px;
		border-radius: 12px;
	}

	.submenu-item {
		display: block;
		padding: 8px 16px;
		text-decoration: none;
	}

	/* Show submenu on hover */
	.submenu-container:hover .submenu {
		display: block;
	}

	.submenu-container:hover .header-menu-item-arrow {
		transform: rotate('180deg');
	}

	.header-menu-item-arrow {
		width: 12px;
		height: 12px;
	}

	.header-menu-item:hover {
		text-decoration: underline;
	}

	.header-search-img {
		height: 22px;
		width: 23.3px;
		cursor: pointer;
	}

 
    .container-modal-teammember {
        width: 965px;
        border-radius: 12px;
        background: var(--white, #FEFEFE);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 35px;
        padding: 40px;
    }

    .modal-teammember-img {
        width: 231px;
        height: 270px;
        border-radius: 10px;
        object-fit: contain;
    }

    .modal-teammember-content {
        display: flex;
        flex-direction: column;
    }

    .modal-teammember-name {
        color: var(--color-font);
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
        line-height: 21px; /* 140% */
        text-transform: uppercase;
    }

    .modal-teammember-position {
        margin-top: 6px;
        color: var(--color-font);
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px; /* 153.846% */
    }

    .modal-teammember-desc {
        margin-top: 25px;
    }

 
    .container-modal-review {
        width: 965px;
        border-radius: 12px;
        background: var(--white, #FEFEFE);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 35px;
        padding: 40px;
    }

    .modal-review-img {
        width: 231px;
        height: 270px;
        border-radius: 10px;
        object-fit: contain;
    }

    .modal-review-content {
        display: flex;
        flex-direction: column;
    }

    .modal-review-name {
        color: var(--color-font);
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
        line-height: 21px; /* 140% */
        text-transform: uppercase;
    }

    .modal-review-position {
        margin-top: 4px;
        color: var(--color-font);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; /* 153.846% */
    }

    .modal-review-desc {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px dashed #DBDBDB;
        color: var(--black, #2B2A29);
        font-family: "Gotham Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 171.429% */
    }

    .modal-review-desc .content {
        max-height: 70vh;
        overflow: auto;
    }

 
    .nothing-found {
        color: var(--color-black);
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 16px; /* 133.333% */
        text-transform: uppercase;
    }

    .container-modal-search {
        height: 100vh;
        width: 820px;
        right: 0;
        top: 0 !important;
        left: initial;
        transform: none;
        border-radius: 0;
        padding: 40px 80px 20px 60px;
        align-items: flex-start;
    }

    .search-modal-title {
        color: var(--color-black);
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px; /* 108.333% */
        text-transform: uppercase;
    }

    .search-modal-input-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 16px;
        border-radius: 8px;
        background: #F7F6EE;
        width: 100%;
        margin-top: 30px;
    }

    .search-modal-input {
        flex: 1;
        color: var(--color-black);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 157.143% */
        background: #F7F6EE;
        border: none;
    }

    .search-modal-results-wrapper {
        height: 75vh;
        overflow-y: auto;
        padding-right: 15px;
        margin-top: 45px;
    }

    .search-modal-results-wrapper::-webkit-scrollbar {
        width: 4px;
    }

    .search-modal-results-wrapper::-webkit-scrollbar-thumb {
        background-color: var(--color-main);
        border-radius: 10px;
    }

    .search-modal-results-wrapper::-webkit-scrollbar-thumb:hover {
        background-color: var(--color-main-hover);
    }

    .search-modal-results-wrapper::-webkit-scrollbar-track {
        background: var(--color-bg);
        border-radius: 10px;
    }

    .search-modal-results {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .search-modal-results-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .search-modal-results-title {
        color: var(--color-black);
        font-size: 17px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px; /* 117.647% */
        text-transform: uppercase;
    }

    .search-modal-results-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 60px; /* Gap between columns */
        row-gap: 16px;
    }

    .search-modal-results-item {
        display: flex;
        gap: 16px;
        align-items: center;
        padding-bottom: 16px;
        border-bottom: 1px solid #C8CAD5;
        text-decoration: none;
    }

    .search-modal-results-item-img {
        width: 80px;
        height: 60px;
        border-radius: 6px;
        object-fit: cover;
    }

    .search-modal-results-item-title {
        color: var(--color-black);
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px; /* 150% */
        text-transform: uppercase;
        text-decoration: none;
    }

    .search-modal-link {
        display: flex;
        align-items: center;
        margin-top: 45px;
        color: var(--color-black);
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 16px; /* 133.333% */
        text-transform: uppercase;
    }

    .search-modal-input-close-icon {
        display: none;
        cursor: pointer;
    }

    .search-modal-input-close-icon.active {
        display: block;
    }

 
	.footer {
		background-color: var(--color-bg);
		display: flex;
		justify-content: space-between;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.footer-left {
		width: 245px;
	}

	.footer-logo {
		width: 136px;
		height: 48px;
		display: block;
		margin-bottom: 15px;
	}

	.footer-logo-img {
		width: 136px;
		height: 48px;
		display: block;
		object-fit: contain;
		object-position: center;
	}

	.footer-copyright {
		font-size: 12px;
		font-weight: 500;
		line-height: 18px;
		color: #868686;
	}

	.footer-right {
		width: 899px;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 90px;
	}

	.footer-col {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.footer-col-title {
		font-size: 12px;
		font-weight: 500;
		line-height: 16px;
		color: #868686;
		text-transform: uppercase;
	}

	.footer-menu {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	.footer-menu-item {
		font-size: 14px;
		font-weight: 500;
		line-height: 18px;
		color: var(--color-font);
		text-decoration: none;
	}

	.footer-menu-item:hover {
		text-decoration: underline;
	}

	.footer-schedule {
		display: flex;
		flex-direction: column;
		gap: 8px;
		width: 170px;
	}

 }@media (max-width: 1600px) and (min-width: 1000px) { @font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
	--column-width: 88.8889vw;
	--column-width-sm: 69.4444vw;
	--offset: calc(50% - (var(--column-width) / 2));
	--color-main: #BEAD74;
	--color-main-hover: #9a8b58;
	--color-bg: #F7F6EE;
	--color-font: #2B2A29;
	--color-white: #FEFEFE;
	--color-grey: #AAAAAA;
    --color-link: #2E78C3;
	--color-grey-light: #676565;
    --color-gray-text: #828282;
    --color-black: #151515;
    --color-font-black: #414042;
}

body {
	font-family: 'Gotham Pro', sans-serif;
	font-size: 0.9722vw;
	-webkit-text-size-adjust: none;
	color: var(--color-font);
}

input, textarea, select {
    font-family: 'Gotham Pro', sans-serif;
	font-size: 0.8333vw;
    line-height: 1.3194vw;
	-webkit-text-size-adjust: none;
	color: var(--color-black);
    font-weight: 500;
}

input::placeholder, textarea::placeholder, select::placeholder {
    color: var(--color-gray-text);
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	/* -webkit-appearance: none; */
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}


/* MODALS */


.modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000;
}

.container-modal {
    border-radius: 0.5556vw;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.0833vw;
    position: absolute;
    top: 4.1667vw;
    left: 50%;
    transform: translateX(-50%);
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}
/*
#loader path {
    fill: var(--color-second);
}
*/

.mb {
	margin-bottom: 6.9444vw;
}

.mt {
    margin-top: 3.4722vw;
}

.btn {
	user-select: none;
	transition: 0.3s;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5556vw;
	text-decoration: none;
	position: relative;
	white-space: nowrap;
	text-transform: uppercase;
}

.h1,
.content h1 {
	font-size: 2.0833vw;
	line-height: 2.9167vw;
	font-weight: 800;
	text-transform: uppercase;
}

.h1 > span {
	color: var(--color-main);
}

.h2,
.content h2 {
	font-size: 1.9444vw;
	line-height: 2.6389vw;
	font-weight: 900;
	text-transform: uppercase;
}

.h3,
.content h3 {
	font-size: 1.3889vw;
	line-height: 1.8056vw;
	font-weight: 600;
	text-transform: uppercase;
}

.h4,
.content h4 {
	font-size: 1.1111vw;
	line-height: 1.3889vw;
	font-weight: 600;
	text-transform: uppercase;
}

.content p, 
.content li {
	font-size: 0.9722vw;
	line-height: 1.6667vw;
	margin: 0.1736vw 0;
}

.content blockquote {
    font-size: 0.9722vw;
	line-height: 1.6667vw;
    margin: 1.1111vw 0;
    padding-left: 1.1111vw;
    border-left: 0.2778vw solid var(--color-main);
}

.content blockquote h4 {
    color: var(--brown, #BEAD74);
    font-family: "Gotham Pro";
    font-size: 0.8333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3889vw; /* 166.667% */
    text-transform: uppercase;
}

.content a {
    font-size: 0.9722vw;
	line-height: 1.6667vw;
    color: var(--color-link);
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.mobile {
	display: none !important;
}

.iti {
	width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
	background: none !important;
}

.btn-primary {
	display: flex;
	padding: 1.25vw 2.2222vw 1.0417vw 2.2222vw;
	justify-content: center;
	align-items: center;
	gap: 0.5556vw;	
	border-radius: 0.2778vw;
	background: var(--color-main);
	text-decoration: none;
	border: none;
	color: var(--color-white);
	text-align: center;
	font-family: "Gotham Pro";
	font-size: 0.9028vw;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4583vw; /* 161.538% */
	text-transform: uppercase;
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: 1.0417vw;
    right: 1.0417vw;
}

.closemodal svg {
    width: 1.1111vw;
    height: 1.1111vw;
}

.no-scroll {
    overflow: hidden;
}

select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 2.7778vw !important;
}

.select-wrapper {
    position: relative;
}

.select-wrapper:after {
    content: '';
    position: absolute;
    bottom: 1.1806vw;
    right: 1.1111vw; /* Position it 0.6944vw from the right */
    pointer-events: none; /* Ensure it doesn't block select interaction */
    background: url('/images/arrow-down.svg') no-repeat;
    background-size: 1.1111vw 1.1111vw; /* Adjust size of the arrow */
    width: 1.1111vw;
    height: 1.1111vw;
}

.iti__selected-flag {
    padding-left: 1.1111vw !important;
    padding-right: 0.5556vw !important;
}

.iti__selected-dial-code {
    color: var(--color-gray-text);
    font-family: "Gotham Pro";
    font-size: 0.8333vw;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3194vw; /* 158.333% */
}

.logo-svg {
    width: fit-content;
    height: 3.125vw;
}

.logo-svg path {
    stroke: #BDAC72; 
    stroke-width: 2;
    fill: none;
}

.logo-svg path {
    fill: #BDAC72; 
    animation: fillUp 3s ease-in-out infinite;
}

@keyframes fillUp {
    0% {
        fill-opacity: 0;
        transform: translateY(100%);
    }
    100% {
        fill-opacity: 1;
        transform: translateY(0);
    }
} 
.slider-arrow {
	width: 2.7778vw;
	height: 2.7778vw;
	background-color: var(--color-main);
	border-radius: 3.4722vw;
	position: absolute;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	transform: translate(0, -50%);
}

.slider-arrow.left {
	left: 1.0417vw;
	transform: translate(0, -50%) rotate(180deg);
}

.slider-arrow.right {
	right: 1.0417vw;
}

.slider-arrow-img {
	width: 1.3889vw;
	height: 1.3889vw;
}

 
.home-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.home-top-content {
	width: 38.1944vw;
	margin-top: 1.7361vw;
}

.home-top-slider {
	width: 48.3333vw;
	height: 43.0556vw;
	position: relative;
	border-radius: 0.8333vw;
	overflow: hidden;
	margin-right: -4.1667vw;
}

.home-top-slider-image {
	width: 48.3333vw;
	height: 43.0556vw;
	object-fit: cover;
	object-position: center;
}

.home-top-slider .tns-outer {
	position: relative;
}

.home-top-slider .tns-nav {
	position: absolute;
    bottom: 0.6944vw;
    display: flex;
    flex-direction: row;
    gap: 1.0417vw;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
}

.home-top-slider .tns-nav button {
	width: 0.8333vw;
	height: 2px;
	border-radius: 0.2778vw;
	background: var(--white, #FEFEFE);
	border: none;
}

.home-top-slider .tns-nav-active {
	width: 2.4306vw !important;
}

 
.preview-program-cat {
	position: relative;
	padding: 1.3889vw 2.4306vw 1.7361vw;
	border-radius: 0.4167vw;
	overflow: hidden;
	height: 27.7778vw;
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.preview-program-cat:hover .preview-program-cat-img {
	filter: grayscale(0);
}

.preview-program-cat-img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-position: center;
	object-fit: cover;
	filter: grayscale(1);
	width: 100%;
    height: 100%;
}

.preview-program-cat-gradient {
	background-image: linear-gradient(180deg, rgba(43, 42, 41, 0) 40.25%, rgba(43, 42, 41, 0.8) 78.75%),
					linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.preview-program-cat-tags {
	position: relative;
	display: flex;
	gap: 0.6944vw;
	flex-wrap: wrap;
	width: 27.7778vw;
	flex-grow: 1;
	align-content: flex-start;
}

.preview-program-cat-tag {
	padding: 0.3472vw 0.5556vw;
	font-size: 0.7639vw;
	line-height: 0.9028vw;
	font-weight: 500;
	background-color: var(--color-white);
	border-radius: 0.2778vw;
	color: var(--color-font);
	text-decoration: none;
}

.preview-program-cat-title {
	font-size: 1.6667vw;
	font-weight: 700;
	line-height: 1.9444vw;
	margin-bottom: 1.25vw;
	text-transform: uppercase;
	position: relative;
	color: var(--color-white);
	text-decoration: none;
}

.preview-program-cat-text {
	font-size: 0.9028vw;
	line-height: 1.4583vw;
	position: relative;
	color: var(--color-white);
}

.preview-program-cat-more {
	font-size: 0.8333vw;
	font-weight: 700;
	line-height: 1.1111vw;
	text-decoration: underline;
	color: var(--color-white);
	display: flex;
	align-items: center;
	margin-top: 0vw;
	transition: 0.3s;
	height: 0;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	text-underline-offset: 2px;
}

.preview-program-cat-more-img {
	width: 1.1111vw;
	height: 1.1111vw;
	margin-left: 0.3472vw;
	filter: brightness(5);
    margin-top: 0.2778vw;
}

.preview-program-cat:hover > .preview-program-cat-more {
	margin-top: 1.25vw;
	height: 1.1111vw;
}

 
.col-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.7778vw;
}

 
.wide-bg-link {
	background-color: var(--color-bg);
	border-radius: 2.0833vw;
	padding-top: 6.25vw;
	padding-bottom: 6.9444vw;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.wide-bg-link-title {
	order: -1;
	margin-bottom: 2.7778vw;
}

.wide-bg-link-more {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 0.8333vw;
	line-height: 1.1111vw;
	text-decoration: underline;
	text-transform: uppercase;
	color: var(--color-main);
	gap: 0.3472vw;
	order: -1;
	margin-bottom: 2.7778vw;
}

.wide-bg-link-more-img {
	width: 1.1111vw;
	height: 1.1111vw;
}

 
.values-slide {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6.25vw;
	background-color: var(--color-bg);
	flex-shrink: 0;
	height: 100%;
	padding: 4.8611vw 6.9444vw;
	transform: translate(calc(-100% * (var(--curr-slide) - 1)));
	flex-shrink: 0;
	transition: 0.3s;
}

.values-slide-img {
	width: 20.8333vw;
	height: 20.8333vw;
}

.values-slide-title {
	font-size: 1.25vw;
	font-weight: 700;
	line-height: 1.6667vw;
	margin-bottom: 1.3889vw;
	text-transform: uppercase;
}

.values-slide-text {
	font-size: 0.9028vw;
	font-weight: 400;
	line-height: 1.4583vw;
	margin-bottom: 2.4306vw;
	font-weight: 500;
}

.values-slide-btns {
	box-shadow: 0vw 0vw 0.5556vw 0vw rgba(0, 0, 0, 0.08) inset;
	display: flex;
	align-items: center;
	height: 2.9861vw;
	width: 11.1111vw;
	margin-bottom: 1.3889vw;
	background-color: var(--color-white);
	border-radius: 0.8333vw;
	border: 1px solid transparent;
}

.values-slide-btns.error {
	border: 1px solid red;
}

.values-slide-btn {
	cursor: pointer;
	width: 5.5556vw;
	height: 100%;
	color: var(--color-grey);
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.8333vw;
	font-weight: 500;
}

.values-slide-btn.active,
.values-slide-btn:hover {
	background-color: var(--color-main);
	color: var(--color-white);
}

.values-slide-next {
	font-size: 0.8333vw;
	font-weight: 700;
	line-height: 1.1111vw;
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	align-items: center;
	text-decoration: underline;
}

.values-slide-next-img {
	margin-left: 0.3472vw;
	width: 1.1111vw;
	height: 1.1111vw;
	filter: brightness(0);
	margin-top: 0.2778vw;
}

 
.values-slider {
	width: 75.6944vw;
	overflow: hidden;
	border-radius: 0.8333vw;
	height: 30.5556vw;
	display: flex;
	position: relative;
}

.values-slider-slides {
	width: 100%;
	overflow: hidden;
	display: flex;
}

.values-slider-steps {
	position: absolute;
	left: 26.25vw;
	bottom: 0.6944vw;
	display: flex;
	border-radius: 0.9722vw;
	background-color: var(--color-white);
	overflow: hidden;
}

.values-slider-step {
	position: relative;
	font-size: 0.8333vw;
	width: 3.75vw;
	height: 2.2222vw;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.values-slider-step.active {
	color: var(--color-white);
}

.values-slider-steps-line {
	width: calc((100% / 6) * var(--curr-slide));
	position: absolute;
	height: 100%;
	transition: 0.3s;
	border-radius: 0.9722vw;
	background-color: var(--color-main);
}

.values-slider-answer {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6.25vw;
	transition: 0.3s;
	transform: translate(calc(-100% * (var(--curr-slide) - 1)));
	flex-shrink: 0;
}

.values-slider-answer-count {
	background-color: white;
	border-radius: 2.4306vw;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 13.8889vw;
	height: 9.0278vw;
	font-weight: 700;
	font-size: 2.7778vw;
}

.values-slider-answer-count-and {
	font-size: 2.0833vw;
}

.values-slider-answer-content {
	width: 36.8056vw;
}

.values-slider-answer-title {
	font-size: 1.6667vw;
	font-weight: 700;
	line-height: 2.3611vw;
	margin-bottom: 1.3889vw;
	color: var(--color-white);
	text-transform: uppercase;
}

.values-slider-answer-text {
	font-size: 0.9722vw;
	line-height: 1.6667vw;
	font-weight: 700;
	color: var(--color-white);
}

.values-slider-answer-count-and {
	margin: 0.2778vw 0.4861vw 0;
}

 
.block {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.block-title {
	width: 55.5556vw;
	font-size: 1.9444vw;
	line-height: 2.6389vw;
	text-align: center;
	margin-bottom: 1.3889vw;
}

.block-subtitle {
	width: 55.5556vw;
	text-align: center;
	margin-bottom: 2.7778vw;
	font-size: 0.9722vw;
	line-height: 1.6667vw;
	font-weight: 500;
}

 
.partners-slider-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	height: 15.9722vw;
	overflow: hidden;
	position: relative;
}

.partners-slider {
	position: absolute;
	width: 156.25vw;
	height: 15.9722vw;
	overflow: hidden;
}

.partners-slide-wrapper {
	padding: 0 0.6944vw;
	width: 17.3611vw;
}

.partners-slide {
	background-color: var(--color-bg);
	width: 15.9722vw;
	height: 15.9722vw;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed #E7E7E7;
}

.partners-slide-wrapper:nth-child(even) > .partners-slide {
	border-radius: 69.4444vw;
}

.partners-slide-wrapper:nth-child(odd) > .partners-slide {
	border-radius: 1.7361vw;
}

.partners-slide-img {
	width: 11.6667vw;
	height: 11.6667vw;
	object-fit: contain;
	object-position: center;
}

.partners-slider-wrapper .slider-arrow {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.partners-slider-wrapper:hover .slider-arrow {
	opacity: 1;
	visibility: visible;
}


 

    .content figure {
        overflow: auto;
        width: 100% !important;
    }

    .content li strong {
        display: contents;
    }

    .content ol li {
        margin-left: 1.0417vw;
        padding-left: 0.4167vw;
    }

    .content ol li::marker {
        font-style: normal;
        font-weight: 700;
        font-size: 0.7639vw;
        line-height: 0.9722vw;
        color: black;
    } 

    .content ul li {
        align-items: flex-start;
    }

    .content p span,
	.content li span {
		display: inline-block;
	}

	.content li {
        margin-left: 1.0417vw;
	}

    .content ul li::before {
        color: black;
    }

    .content ul, 
    .content ol {
        margin: 0.625vw 0;
        display: flex;
        flex-direction: column;
    }

    .content img {
        margin: 1.3889vw 0;
        width: 100%;
        height: auto;
        border-radius: 0.5556vw;
    }

    .content figure {
        margin: 0;
    }

    .content p:first-child {
        margin-top: 0;
    }

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

    .content table {
        border-collapse: collapse;
        border-spacing: 0;
        border: 1px double var(--color-stroke);
    }

    .content table td {
        min-width: 2em;
        padding: 0.4em;
        border: 1px solid var(--color-stroke);
    }


 
	.reviews-read-more {
		display: none;
		align-items: center;
		gap: 3px;
		color: var(--black, #2B2A29);
		font-family: "Gotham Pro";
		font-size: 0.6944vw;
		font-style: normal;
		font-weight: 700;
		line-height: 0.9722vw; /* 140% */
		text-transform: uppercase;
		background: transparent;
        border: none;
		cursor: pointer;
		margin-bottom: 0.6944vw;
	}

	.reviews-slide-wrapper.wide .reviews-read-more {
		display: flex;
	}

	.reviews-slide-wrapper.narrow .reviews-read-more {
		display: flex;
	}

	.reviews-read-more span {
		border-bottom: 1px solid var(--black, #2B2A29);
	}

	.reviews-slider-wrapper {
		width: 100%;
		display: flex;
		justify-content: center;
		height: 34.7222vw;
		overflow: hidden;
		position: relative;
		margin-bottom: 6.9444vw;
	}

	#reviews-slider {
		padding: 1.3889vw 0;
	}

	.reviews-slider {
		/*position: absolute;
		width: 150vw;*/
		/*height: 28.4028vw;*/
		overflow: hidden;
	}

	.reviews-slide-wrapper {
		padding: 0 1.3889vw;
		width: 30.5556vw;
	}

	.reviews-slide-wrapper.wide {
		width: 43.0556vw;
	}

	.reviews-slide-wrapper.narrow {
		width: 23.2639vw;
	}

	.reviews-slide {
		background-color: #FEFEFE;
		width: 100%;
		height: 31.25vw;
		border-radius: 0.8333vw;
		box-shadow: 0vw 0vw 2.5vw 0vw rgba(0, 0, 0, 0.07);
		padding: 1.7361vw;
		user-select: none;
	}

	.reviews-slide-title {
		font-size: 1.0417vw;
		font-weight: 700;
		line-height: 1.4583vw;
		text-transform: uppercase;
		margin-bottom: 0.2778vw;
	}

	.reviews-slide-position {
		font-size: 0.8333vw;
		font-weight: 500;
		line-height: 1.25vw;
		padding-bottom: 1.1111vw;
		border-bottom: 1px dashed #DBDBDB;
		margin-bottom: 1.1111vw;
	}

	.reviews-slide-content {
		font-size: 0.9028vw;
		line-height: 1.3889vw;
		margin-bottom: 0.9028vw;
		overflow: hidden;
	}

	.reviews-slide-content .content p,li {
		color: var(--black, #2B2A29);
		font-family: "Gotham Pro";
		font-size: 0.9028vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.4583vw; /* 161.538% */
	}

	.reviews-slide-wrapper.wide .reviews-slide-content {
		max-height: 17.0139vw;
	}

	.reviews-slide-wrapper.narrow .reviews-slide-content {
		max-height: 17.0139vw;
	}

	.reviews-slide-link {
		padding: 1.0417vw;
		display: flex;
		background-color: var(--color-bg);
		text-decoration: none;
		border-radius: 0.5556vw;
	}

	.reviews-slide-link-ico {
		width: 1.25vw;
		height: 1.25vw;
		margin-right: 0.8333vw;
		flex-shrink: 0;
	}

	.reviews-slide-link-text {
		font-size: 0.7639vw;
		font-weight: 700;
		line-height: 1.1111vw;
		color: var(--color-main);
		text-transform: uppercase;
		text-decoration-line: underline;
		text-decoration-thickness: 0.0076vw;
		text-underline-offset: 2px;
	}

	.reviews-slider-wrapper .slider-arrow {
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.reviews-slider-wrapper:hover .slider-arrow {
		opacity: 1;
		visibility: visible;
	}

 
.form-group {
	display: block;
	width: 100%;
}

.form-group-title {
	color: #828282;
	font-size: 0.7639vw;
	line-height: 0.9028vw;
	margin-bottom: 0.4167vw;
	font-weight: 500;
}

.form-group-input {
	height: 3.5417vw;
	border-radius: 0.5556vw;
	border: 1px solid #E7E7E7;
	background-color: white;
	padding: 0 1.1111vw;
	width: 100%;
}

.input-error {
	color: #aa0e0e;
	font-family: "Gotham Pro";
	font-size: 0.8333vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.3194vw; /* 158.333% */
}

 
.btn-main {
	border: 0;
	font-size: 0.9028vw;
	font-weight: 700;
	line-height: 1.4583vw;
	padding: 1.1111vw 2.9167vw;
	color: var(--color-white);
	border-radius: 0.2778vw;
	background-color: var(--color-main);
	font-family: 'Gotham Pro', sans-serif;
}

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

 
	.form-contact {
		background-color: var(--color-bg);
		border-radius: 0.8333vw;
		padding: 5.5556vw 6.8056vw;
		background-image: url('/images/contact-form.png'); /* Add your image path here */
		background-repeat: no-repeat; /* Ensures the image doesn't repeat */
		background-position: top right; /* Positions the image at the top-right corner */
		background-size: auto;
	}

	.form-contact-title {
		margin-bottom: 1.3889vw;
	}

	.form-contact-subtitle {
		margin-bottom: 2.7778vw;
		font-size: 0.9722vw;
		font-weight: 400;
		line-height: 1.6667vw;
		font-weight: 500;
	}

	.form-contact-form {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 1.25vw;
	}

	.form-contact-form > .btn {
		width: 100%;
		grid-column: 1 / 4;
	}

	.form-contact-policy {
		grid-column: 1 / 4;
		font-size: 0.7639vw !important;
		font-weight: 500 !important;
		line-height: 1.1806vw !important;
	}

	.contact-form-answer {
		display: none;
		text-align: center;
        margin-top: 1.3889vw;
		font-size: 0.9722vw;
		font-weight: 400;
		line-height: 1.6667vw;
		font-weight: 500;
	}

	.contact-form-answer.error {
		color: #d31717;
	}

	.contact-form-answer.success {
		color: #35c172;
	}	

 
	.socials {
		display: flex;
		gap: 1.1111vw;
	}

	.social-img {
		height: 1.5278vw;
		width: 1.5278vw;
	}

	.social-img.width-32 {
		height: 2.2222vw;
		width: 2.2222vw;
	}

 	
	.header {
		padding: 0.5556vw 0.8333vw 1.3889vw;
		position: sticky;
        top: 0vw;
        z-index: 9999;
        background: white;
	}

	.header-bg {
		padding-left: var(--offset);
		padding-right: var(--offset);
		background-color: var(--color-bg);
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 4.7917vw;
		border-radius: 1.1111vw;
	}

	.header-logo-container {
		position: relative;
		height: 3.125vw;
		width: 8.8889vw;
		overflow: hidden;
	}

	.header-logo-img {
		height: 3.125vw;
		width: 8.8889vw;
		object-fit: contain;
		object-position: center;
	}

	.header-logo-scroll {
		height: 3.125vw;
		width: 8.8889vw;
	}

	.header-menu {
		display: flex;
		align-items: center;
		gap: 2.9167vw;
	}

	.header-menu-item {
		color: var(--color-font);
		text-decoration: none;
		font-size: 0.9028vw;
		line-height: 1.4583vw;
		font-weight: 500;
		position: relative;	
	}

	.submenu-container {
		position: relative;
		display: flex;
		align-items: center;
		gap: 0.3472vw;
	}

	/* Submenu styles */
	.submenu {
		display: none; /* Initially hide the submenu */
		position: absolute;
		top: 100%; /* Position submenu below the parent */
		left: 0;
		background-color: var(--color-bg);
		padding: 0.6944vw;
		box-shadow: 0vw 0.5556vw 1.1111vw rgba(0, 0, 0, 0.2);
		z-index: 1;
		width: 17.3611vw;
		border-radius: 0.8333vw;
	}

	.submenu-item {
		display: block;
		padding: 0.5556vw 1.1111vw;
		text-decoration: none;
	}

	/* Show submenu on hover */
	.submenu-container:hover .submenu {
		display: block;
	}

	.submenu-container:hover .header-menu-item-arrow {
		transform: rotate('180deg');
	}

	.header-menu-item-arrow {
		width: 0.8333vw;
		height: 0.8333vw;
	}

	.header-menu-item:hover {
		text-decoration: underline;
	}

	.header-search-img {
		height: 1.5278vw;
		width: 1.6181vw;
		cursor: pointer;
	}

 
    .container-modal-teammember {
        width: 67.0139vw;
        border-radius: 0.8333vw;
        background: var(--white, #FEFEFE);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 2.4306vw;
        padding: 2.7778vw;
    }

    .modal-teammember-img {
        width: 16.0417vw;
        height: 18.75vw;
        border-radius: 0.6944vw;
        object-fit: contain;
    }

    .modal-teammember-content {
        display: flex;
        flex-direction: column;
    }

    .modal-teammember-name {
        color: var(--color-font);
        font-size: 1.0417vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.4583vw; /* 140% */
        text-transform: uppercase;
    }

    .modal-teammember-position {
        margin-top: 0.4167vw;
        color: var(--color-font);
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.3889vw; /* 153.846% */
    }

    .modal-teammember-desc {
        margin-top: 1.7361vw;
    }

 
    .container-modal-review {
        width: 67.0139vw;
        border-radius: 0.8333vw;
        background: var(--white, #FEFEFE);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 2.4306vw;
        padding: 2.7778vw;
    }

    .modal-review-img {
        width: 16.0417vw;
        height: 18.75vw;
        border-radius: 0.6944vw;
        object-fit: contain;
    }

    .modal-review-content {
        display: flex;
        flex-direction: column;
    }

    .modal-review-name {
        color: var(--color-font);
        font-size: 1.0417vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.4583vw; /* 140% */
        text-transform: uppercase;
    }

    .modal-review-position {
        margin-top: 0.2778vw;
        color: var(--color-font);
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.25vw; /* 153.846% */
    }

    .modal-review-desc {
        margin-top: 1.3889vw;
        padding-top: 1.3889vw;
        border-top: 1px dashed #DBDBDB;
        color: var(--black, #2B2A29);
        font-family: "Gotham Pro";
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.6667vw; /* 171.429% */
    }

    .modal-review-desc .content {
        max-height: 70vh;
        overflow: auto;
    }

 
    .nothing-found {
        color: var(--color-black);
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.1111vw; /* 133.333% */
        text-transform: uppercase;
    }

    .container-modal-search {
        height: 100vh;
        width: 56.9444vw;
        right: 0;
        top: 0 !important;
        left: initial;
        transform: none;
        border-radius: 0;
        padding: 2.7778vw 5.5556vw 1.3889vw 4.1667vw;
        align-items: flex-start;
    }

    .search-modal-title {
        color: var(--color-black);
        font-size: 1.6667vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.8056vw; /* 108.333% */
        text-transform: uppercase;
    }

    .search-modal-input-wrapper {
        display: flex;
        align-items: center;
        gap: 1.0417vw;
        padding: 1.1111vw;
        border-radius: 0.5556vw;
        background: #F7F6EE;
        width: 100%;
        margin-top: 2.0833vw;
    }

    .search-modal-input {
        flex: 1;
        color: var(--color-black);
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5278vw; /* 157.143% */
        background: #F7F6EE;
        border: none;
    }

    .search-modal-results-wrapper {
        height: 75vh;
        overflow-y: auto;
        padding-right: 1.0417vw;
        margin-top: 3.125vw;
    }

    .search-modal-results-wrapper::-webkit-scrollbar {
        width: 0.2778vw;
    }

    .search-modal-results-wrapper::-webkit-scrollbar-thumb {
        background-color: var(--color-main);
        border-radius: 0.6944vw;
    }

    .search-modal-results-wrapper::-webkit-scrollbar-thumb:hover {
        background-color: var(--color-main-hover);
    }

    .search-modal-results-wrapper::-webkit-scrollbar-track {
        background: var(--color-bg);
        border-radius: 0.6944vw;
    }

    .search-modal-results {
        display: flex;
        flex-direction: column;
        gap: 2.4306vw;
    }

    .search-modal-results-block {
        display: flex;
        flex-direction: column;
        gap: 1.3889vw;
    }

    .search-modal-results-title {
        color: var(--color-black);
        font-size: 1.1806vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.3889vw; /* 117.647% */
        text-transform: uppercase;
    }

    .search-modal-results-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 4.1667vw; /* Gap between columns */
        row-gap: 1.1111vw;
    }

    .search-modal-results-item {
        display: flex;
        gap: 1.1111vw;
        align-items: center;
        padding-bottom: 1.1111vw;
        border-bottom: 1px solid #C8CAD5;
        text-decoration: none;
    }

    .search-modal-results-item-img {
        width: 5.5556vw;
        height: 4.1667vw;
        border-radius: 0.4167vw;
        object-fit: cover;
    }

    .search-modal-results-item-title {
        color: var(--color-black);
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.25vw; /* 150% */
        text-transform: uppercase;
        text-decoration: none;
    }

    .search-modal-link {
        display: flex;
        align-items: center;
        margin-top: 3.125vw;
        color: var(--color-black);
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.1111vw; /* 133.333% */
        text-transform: uppercase;
    }

    .search-modal-input-close-icon {
        display: none;
        cursor: pointer;
    }

    .search-modal-input-close-icon.active {
        display: block;
    }

 
	.footer {
		background-color: var(--color-bg);
		display: flex;
		justify-content: space-between;
		padding-top: 4.1667vw;
		padding-bottom: 4.1667vw;
	}

	.footer-left {
		width: 17.0139vw;
	}

	.footer-logo {
		width: 9.4444vw;
		height: 3.3333vw;
		display: block;
		margin-bottom: 1.0417vw;
	}

	.footer-logo-img {
		width: 9.4444vw;
		height: 3.3333vw;
		display: block;
		object-fit: contain;
		object-position: center;
	}

	.footer-copyright {
		font-size: 0.8333vw;
		font-weight: 500;
		line-height: 1.25vw;
		color: #868686;
	}

	.footer-right {
		width: 62.4306vw;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 6.25vw;
	}

	.footer-col {
		display: flex;
		flex-direction: column;
		gap: 1.3889vw;
	}

	.footer-col-title {
		font-size: 0.8333vw;
		font-weight: 500;
		line-height: 1.1111vw;
		color: #868686;
		text-transform: uppercase;
	}

	.footer-menu {
		display: flex;
		flex-direction: column;
		gap: 1.25vw;
	}

	.footer-menu-item {
		font-size: 0.9722vw;
		font-weight: 500;
		line-height: 1.25vw;
		color: var(--color-font);
		text-decoration: none;
	}

	.footer-menu-item:hover {
		text-decoration: underline;
	}

	.footer-schedule {
		display: flex;
		flex-direction: column;
		gap: 0.5556vw;
		width: 11.8056vw;
	}

 }@media (min-width: calc(494px)) and (max-width: calc(1000px)) {
            body {
                --coef-w: calc(var(--width) / -910 + 1.3771);
                --offset: calc(4.6875vw * ((320 - 320 * var(--coef-w) + 30 * var(--coef-w)) / 30));
                --column-width: calc( (1px * var(--width)) - (2 * var(--offset)) );
            }
        }

        @media (max-width: calc(494px)) {
            body {
                --coef-w: 1;
                --column-width: 90.625vw;
                --offset: calc(50% - (var(--column-width) / 2));
            }
        }
        @media (max-width: 1000px) { @font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('/fonts/GothamPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
	--column-width: calc(90.625vw * var(--coef-w));
	--offset: calc(4.6875vw * var(--coef-w));
	--color-main: #BEAD74;
	--color-main-hover: #9a8b58;
	--color-bg: #F7F6EE;
	--color-font: #2B2A29;
	--color-white: #FEFEFE;
	--color-grey: #AAAAAA;
    --color-link: #2E78C3;
	--color-grey-light: #676565;
    --color-gray-text: #828282;
    --color-black: #151515;
    --color-font-black: #414042;
}

body {
	font-family: 'Gotham Pro', sans-serif;
	font-size: calc(3.75vw * var(--coef-w));
	-webkit-text-size-adjust: none;
	color: var(--color-font);
}

input, textarea, select {
    font-family: 'Gotham Pro', sans-serif;
	font-size: calc(3.4375vw * var(--coef-w));
    line-height: calc(5.3125vw * var(--coef-w));
	-webkit-text-size-adjust: none;
	color: var(--color-black);
    font-weight: 500;
}

input::placeholder, textarea::placeholder, select::placeholder {
    color: var(--color-gray-text);
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}


/* MODALS */

.modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000;
}

.container-modal {
    border-radius: calc(2.5vw * var(--coef-w));
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(6.25vw * var(--coef-w)) var(--offset);
    position: absolute;
    top: calc(18.75vw * var(--coef-w));
    left: 50%;
    transform: translateX(-50%);
    width: var(--column-width);
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: calc(3.75vw * var(--coef-w));
    right: calc(3.75vw * var(--coef-w));
}

.closemodal svg {
    width: calc(3.75vw * var(--coef-w));
    height: calc(3.75vw * var(--coef-w));
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.no-scroll {
    overflow: hidden;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}
/*
#loader path {
    fill: var(--color-second);
}*/

.desktop {
	display: none !important;
}

.btn {
	user-select: none;
	transition: 0.3s;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: calc(2.5vw * var(--coef-w));
	text-decoration: none;
	position: relative;
	white-space: nowrap;
	text-transform: uppercase;
}

.h1,
.content h1 {
	font-size: calc(6.25vw * var(--coef-w));
	line-height: calc(9.375vw * var(--coef-w));
	font-weight: 800;
	text-transform: uppercase;
}

.h1 > span {
	color: var(--color-main);
}

.h2,
.content h2 {
	font-size: calc(5.3125vw * var(--coef-w));
	line-height: calc(7.5vw * var(--coef-w));
	font-weight: 800;
	text-transform: uppercase;
}

.h3,
.content h3 {
	font-size: calc(5.625vw * var(--coef-w));
	line-height: calc(6.25vw * var(--coef-w));
	font-weight: 800;
	text-transform: uppercase;
}

.h4,
.content h4 {
	font-size: calc(4.6875vw * var(--coef-w));
	line-height: calc(5.625vw * var(--coef-w));
	font-weight: 600;
	text-transform: uppercase;
}

.content p, 
.content li {
	font-size: calc(4.0625vw * var(--coef-w));
	line-height: calc(6.875vw * var(--coef-w));
	margin: 2px 0;
}

.content blockquote {
    font-size: calc(4.0625vw * var(--coef-w));
	line-height: calc(6.875vw * var(--coef-w));
    margin: calc(5vw * var(--coef-w)) 0;
    padding-left: calc(5vw * var(--coef-w));
    border-left: calc(1.25vw * var(--coef-w)) solid var(--color-main);
}

.content blockquote h4 {
    color: var(--brown, #BEAD74);
    font-family: "Gotham Pro";
    font-size: calc(3.75vw * var(--coef-w));
    font-style: normal;
    font-weight: 400;
    line-height: calc(6.25vw * var(--coef-w)); /* 166.667% */
    text-transform: uppercase;
}

.content a {
    font-size: calc(4.0625vw * var(--coef-w));
	line-height: calc(6.875vw * var(--coef-w));
    color: var(--color-link);
    text-decoration: underline;
}

.iti {
	width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
	background: none !important;
}

.btn-primary {
	display: flex;
	padding: calc(5vw * var(--coef-w)) calc(2.5vw * var(--coef-w)) calc(4.0625vw * var(--coef-w)) calc(2.5vw * var(--coef-w));
	justify-content: center;
	align-items: center;
	gap: calc(2.5vw * var(--coef-w));	
	border-radius: calc(1.25vw * var(--coef-w));
	background: var(--color-main);
	text-decoration: none;
	border: none;
	color: var(--color-white);
	text-align: center;
	font-family: "Gotham Pro";
	font-size: calc(3.4375vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(5.3125vw * var(--coef-w)); /* 161.538% */
	text-transform: uppercase;
}

.mb {
	margin-bottom: calc(18.75vw * var(--coef-w));
}

.iti__selected-flag {
    padding-left: calc(3.75vw * var(--coef-w)) !important;
    padding-right: calc(2.5vw * var(--coef-w)) !important;
}

.iti__selected-dial-code {
    color: var(--color-gray-text);
    font-family: "Gotham Pro";
    font-size: calc(3.4375vw * var(--coef-w));
    font-style: normal;
    font-weight: 500;
    line-height: calc(5.3125vw * var(--coef-w)); /* 158.333% */
}

.no-scroll {
    overflow: hidden;
}

select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: calc(12.5vw * var(--coef-w)) !important;
}

.select-wrapper {
    position: relative;
}

.select-wrapper:after {
    content: '';
    position: absolute;
    bottom: calc(5.3125vw * var(--coef-w));
    right: calc(5vw * var(--coef-w)); /* Position it calc(3.125vw * var(--coef-w)) from the right */
    pointer-events: none; /* Ensure it doesn't block select interaction */
    background: url('/images/arrow-down.svg') no-repeat;
    background-size: calc(5vw * var(--coef-w)) calc(5vw * var(--coef-w)); /* Adjust size of the arrow */
    width: calc(5vw * var(--coef-w));
    height: calc(5vw * var(--coef-w));
}

.logo-svg {
    width: fit-content;
    height: calc(14.0625vw * var(--coef-w));
}

.logo-svg path {
    stroke: #BDAC72; 
    stroke-width: 2;
    fill: none;
}

.logo-svg path {
    fill: #BDAC72; 
    animation: fillUp 3s ease-in-out infinite;
}

@keyframes fillUp {
    0% {
        fill-opacity: 0;
        transform: translateY(100%);
    }
    100% {
        fill-opacity: 1;
        transform: translateY(0);
    }
} 
.slider-arrow {
	width: calc(10vw * var(--coef-w));
	height: calc(10vw * var(--coef-w));
	background-color: var(--color-main);
	border-radius: calc(15.625vw * var(--coef-w));
	position: absolute;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	transform: translate(0, -50%);
}

.slider-arrow.left {
	left: calc(2.5vw * var(--coef-w));
	transform: translate(0, -50%) rotate(180deg);
}

.slider-arrow.right {
	right: calc(2.5vw * var(--coef-w));
}

.slider-arrow-img {
	width: calc(5vw * var(--coef-w));
	height: calc(5vw * var(--coef-w));
}

 
.home-top-content {
	margin-bottom: calc(7.8125vw * var(--coef-w));
}

.home-top-title {
	margin: calc(9.375vw * var(--coef-w)) 0 calc(4.6875vw * var(--coef-w));
}

.home-top-slider {
	width: 100%;
	height: calc(87.5vw * var(--coef-w));
	position: relative;
}

.home-top-slider-image {
	height: calc(87.5vw * var(--coef-w));
	object-fit: cover;
	object-position: center;
	border-radius: calc(3.75vw * var(--coef-w));
}

.home-top-slider .tns-outer {
	position: relative;
}

.home-top-slider .tns-nav {
	position: absolute;
    bottom: calc(3.125vw * var(--coef-w));
    display: flex;
    flex-direction: row;
    gap: calc(4.6875vw * var(--coef-w));
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
}

.home-top-slider .tns-nav button {
	width: calc(3.75vw * var(--coef-w));
	height: 2px;
	border-radius: calc(1.25vw * var(--coef-w));
	background: var(--white, #FEFEFE);
	border: none;
}

.home-top-slider .tns-nav-active {
	width: calc(10.9375vw * var(--coef-w)) !important;
}

 
.preview-program-cat {
	position: relative;
	padding: calc(3.75vw * var(--coef-w));
	border-radius: calc(1.875vw * var(--coef-w));
	overflow: hidden;
	height: calc(95.3125vw * var(--coef-w));
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.preview-program-cat:hover .preview-program-cat-img {
	filter: grayscale(0);
}

.preview-program-cat-img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-position: center;
	object-fit: cover;
	filter: grayscale(1);
	width: 100%;
    height: 100%;
}

.preview-program-cat-gradient {
	background-image: linear-gradient(180deg, rgba(43, 42, 41, 0) 40.25%, rgba(43, 42, 41, 0.8) 78.75%),
					linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.preview-program-cat-tags {
	position: relative;
	display: flex;
	gap: calc(1.875vw * var(--coef-w));
	flex-wrap: wrap;
	flex-grow: 1;
	align-content: flex-start;
}

.preview-program-cat-tag {
	padding: calc(1.25vw * var(--coef-w));
	font-size: calc(2.8125vw * var(--coef-w));
	line-height: calc(2.8125vw * var(--coef-w));
	font-weight: 500;
	background-color: var(--color-white);
	border-radius: calc(1.25vw * var(--coef-w));
	color: var(--color-font);
	text-decoration: none;
}

.preview-program-cat-title {
	font-size: calc(4.375vw * var(--coef-w));
	font-weight: 700;
	line-height: calc(6.25vw * var(--coef-w));
	margin-bottom: calc(2.5vw * var(--coef-w));
	text-transform: uppercase;
	position: relative;
	color: var(--color-white);
	text-decoration: none;
}

.preview-program-cat-text {
	font-size: calc(3.125vw * var(--coef-w));
	line-height: calc(5vw * var(--coef-w));
	position: relative;
	color: var(--color-white);
	/*display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;*/
}

.preview-program-cat-more {
	font-size: calc(3.125vw * var(--coef-w));
	font-weight: 700;
	line-height: calc(5vw * var(--coef-w));
	text-decoration: underline;
	color: var(--color-white);
	display: flex;
	align-items: center;
	margin-top: calc(0vw * var(--coef-w));
	transition: 0.3s;
	height: 0;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	text-underline-offset: 2px;
}

.preview-program-cat-more-img {
	width: calc(5vw * var(--coef-w));
	height: calc(5vw * var(--coef-w));
	margin-left: calc(1.5625vw * var(--coef-w));
	filter: brightness(5);
    margin-top: calc(1.25vw * var(--coef-w));
}

.preview-program-cat:hover > .preview-program-cat-more {
	margin-top: calc(5.625vw * var(--coef-w));
	height: calc(5vw * var(--coef-w));
}

 
.col-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(7.8125vw * var(--coef-w));
}

 
.wide-bg-link {
	background-color: var(--color-bg);
	border-radius: calc(9.375vw * var(--coef-w));
	padding-top: calc(12.5vw * var(--coef-w));
	padding-bottom: calc(12.5vw * var(--coef-w));
	display: flex;
	flex-direction: column;
}

.wide-bg-link-title {
	order: -1;
	margin-bottom: calc(7.8125vw * var(--coef-w));
}

.wide-bg-link-more {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: calc(3.4375vw * var(--coef-w));
	line-height: calc(5vw * var(--coef-w));
	text-decoration: underline;
	text-transform: uppercase;
	color: var(--color-main);
	gap: calc(1.5625vw * var(--coef-w));
	order: 1;
	margin-top: calc(7.8125vw * var(--coef-w));
}

.wide-bg-link-more-img {
	width: calc(4.375vw * var(--coef-w));
	height: calc(4.375vw * var(--coef-w));
}

 
.values-slide {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: calc(6.25vw * var(--coef-w));
	background-color: var(--color-bg);
	flex-shrink: 0;
	height: 100%;
	padding: calc(9.375vw * var(--coef-w)) calc(4.6875vw * var(--coef-w)) calc(9.375vw * var(--coef-w)) calc(4.6875vw * var(--coef-w));
	transform: translate(calc(-100% * (var(--curr-slide) - 1)));
	flex-shrink: 0;
	transition: 0.3s;
}

.values-slide-img {
	width: calc(40.625vw * var(--coef-w));
	height: calc(40.625vw * var(--coef-w));
}

.values-slide-title {
	font-size: calc(4.375vw * var(--coef-w));
	font-weight: 700;
	line-height: calc(6.25vw * var(--coef-w));
	margin-bottom: calc(1.5625vw * var(--coef-w));
	text-transform: uppercase;
}

.values-slide-text {
	font-size: calc(3.4375vw * var(--coef-w));
	font-weight: 400;
	line-height: calc(5.625vw * var(--coef-w));
	margin-bottom: calc(6.25vw * var(--coef-w));
	font-weight: 500;
}

.values-slide-btns {
	box-shadow: calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(2.5vw * var(--coef-w)) calc(0vw * var(--coef-w)) rgba(0, 0, 0, 0.08) inset;
	display: flex;
	align-items: center;
	height: calc(13.4375vw * var(--coef-w));
	width: calc(50vw * var(--coef-w));
	margin-bottom: calc(5vw * var(--coef-w));
	background-color: var(--color-white);
	border-radius: calc(3.75vw * var(--coef-w));
	border: 1px solid transparent;
}

.values-slide-btns.error {
	border: 1px solid red;
}

.values-slide-btn {
	cursor: pointer;
	width: calc(25vw * var(--coef-w));
	height: 100%;
	color: var(--color-grey);
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: calc(3.75vw * var(--coef-w));
	font-weight: 500;
}

.values-slide-btn.active,
.values-slide-btn:hover {
	background-color: var(--color-main);
	color: var(--color-white);
}

.values-slide-next {
	font-size: calc(3.75vw * var(--coef-w));
	font-weight: 700;
	line-height: calc(5vw * var(--coef-w));
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	align-items: center;
	text-decoration: underline;
}

.values-slide-next-img {
	margin-left: calc(1.5625vw * var(--coef-w));
	width: calc(5vw * var(--coef-w));
	height: calc(5vw * var(--coef-w));
	filter: brightness(0);
	margin-top: calc(1.25vw * var(--coef-w));
}

.values-slider > .slider-arrow {
	top: calc(29.6875vw * var(--coef-w));
}

 
.values-slider {
	overflow: hidden;
	border-radius: calc(3.75vw * var(--coef-w));
	display: flex;
	position: relative;
	flex-direction: column;
	background-color: var(--color-bg);
	margin-bottom: 0;
}

.values-slider-slides {
	width: calc(90.625vw * var(--coef-w));
	overflow: hidden;
	display: flex;
}

.values-slider-steps {
	display: flex;
	border-radius: calc(4.375vw * var(--coef-w));
	background-color: var(--color-white);
	overflow: hidden;
	position: relative;
	width: calc(80.625vw * var(--coef-w));
	margin: 0 auto calc(6.25vw * var(--coef-w));
}

.values-slider-step {
	position: relative;
	font-size: calc(3.75vw * var(--coef-w));
	width: calc(13.4375vw * var(--coef-w));
	height: calc(9.375vw * var(--coef-w));
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.values-slider-step.active {
	color: var(--color-white);
}

.values-slider-steps-line {
	width: calc((100% / 6) * var(--curr-slide));
	position: absolute;
	height: 100%;
	transition: 0.3s;
	border-radius: calc(4.375vw * var(--coef-w));
	background-color: var(--color-main);
}

.values-slider-answer {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: calc(6.25vw * var(--coef-w));
	transition: 0.3s;
	transform: translate(calc(-100% * (var(--curr-slide) - 1)));
	flex-shrink: 0;
	flex-direction: column;
}

.values-slider-answer-count {
	background-color: white;
	border-radius: calc(10.9375vw * var(--coef-w));
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(62.5vw * var(--coef-w));
	height: calc(40.625vw * var(--coef-w));
	font-weight: 700;
	font-size: calc(12.5vw * var(--coef-w));
}

.values-slider-answer-count-and {
	font-size: calc(9.375vw * var(--coef-w));
}

.values-slider-answer-content {
	padding: 0 calc(4.6875vw * var(--coef-w));
	text-align: center;
}

.values-slider-answer-title {
	font-size: calc(5.625vw * var(--coef-w));
	font-weight: 700;
	line-height: calc(7.8125vw * var(--coef-w));
	margin-bottom: calc(6.25vw * var(--coef-w));
	color: var(--color-white);
	text-transform: uppercase;
}

.values-slider-answer-text {
	font-size: calc(4.0625vw * var(--coef-w));
	line-height: calc(6.875vw * var(--coef-w));
	font-weight: 700;
	color: var(--color-white);
}

.values-slider-answer-count-and {
	margin: calc(1.25vw * var(--coef-w)) calc(2.1875vw * var(--coef-w)) 0;
}

 
.block {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.block-title {
	font-size: calc(5.3125vw * var(--coef-w));
	line-height: calc(7.5vw * var(--coef-w));
	text-align: center;
	margin-bottom: calc(3.75vw * var(--coef-w));
	padding: 0 calc(4.6875vw * var(--coef-w));
}

.block-subtitle {
	text-align: center;
	margin-bottom: calc(7.8125vw * var(--coef-w));
	font-size: calc(3.75vw * var(--coef-w));
	line-height: calc(5.9375vw * var(--coef-w));
	padding: 0 calc(4.6875vw * var(--coef-w));
	font-weight: 500;
}

 
.partners-slider-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	height: calc(46.875vw * var(--coef-w));
	overflow: hidden;
	position: relative;
}

.partners-slider {
	position: absolute;
	width: calc(478.125vw * var(--coef-w));
	height: calc(46.875vw * var(--coef-w));
	overflow: hidden;
}

.partners-slide-wrapper {
	padding: 0 calc(3.125vw * var(--coef-w));
	width: calc(53.125vw * var(--coef-w));
}

.partners-slide {
	background-color: var(--color-bg);
	width: calc(46.875vw * var(--coef-w));
	height: calc(46.875vw * var(--coef-w));
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed #E7E7E7;
}

.partners-slide-wrapper:nth-child(even) > .partners-slide {
	border-radius: calc(312.5vw * var(--coef-w));
}

.partners-slide-wrapper:nth-child(odd) > .partners-slide {
	border-radius: calc(7.8125vw * var(--coef-w));
}

.partners-slide-img {
	width: calc(34.375vw * var(--coef-w));
	height: calc(34.375vw * var(--coef-w));
	object-fit: contain;
	object-position: center;
}

 
    .content figure {
        overflow: auto;
        width: 100% !important;
    }

    .content figure::-webkit-scrollbar {
        height: calc(2.5vw * var(--coef-w)); /* Adjust the height of the scrollbar */
    }

    .content li strong {
        display: contents;
    }

    .content h2 {
        font-style: normal;
        font-weight: 800;
        font-size: calc(4.0625vw * var(--coef-w));
        line-height: calc(5.625vw * var(--coef-w));
        margin: calc(3.75vw * var(--coef-w)) 0;
        margin-top: calc(7.8125vw * var(--coef-w));
        text-transform: uppercase;
    }

    .content h2:first-child {
        margin-top: 0;
    }

    .content h3 {
        font-style: normal;
        font-weight: 600;
        font-size: calc(5vw * var(--coef-w));
        line-height: calc(6.875vw * var(--coef-w));
        margin-bottom: calc(3.125vw * var(--coef-w));
        margin-top: calc(7.8125vw * var(--coef-w));
        text-transform: uppercase;
    }

    .content p, 
    .content li {
        font-style: normal;
        font-weight: 400;
        font-size: calc(3.75vw * var(--coef-w));
        line-height: calc(5.9375vw * var(--coef-w));
        margin: calc(0.7813vw * var(--coef-w)) 0;
    }

    .content ol li {
        margin-left: calc(3.75vw * var(--coef-w));
        padding-left: calc(2.5vw * var(--coef-w));
    }

    .content ol li::marker {
        font-style: normal;
        font-weight: 400;
        font-size: calc(3.75vw * var(--coef-w));
        line-height: calc(6.25vw * var(--coef-w));
        color: black;
    } 

    .content ul li {
        align-items: flex-start;
    }

    .content li {
        margin: 2px;
        margin-left: calc(3.125vw * var(--coef-w));
	}

    .content ul li::marker {
        color: black;
    }

    .content ul, 
    .content ol {
        margin: calc(2.1875vw * var(--coef-w)) 0;
        display: flex;
        flex-direction: column;
    }

    .content img {
        margin: calc(4.6875vw * var(--coef-w)) 0;
        width: 100%;
        height: auto;
        border-radius: calc(6.25vw * var(--coef-w));
    }

    .content figure {
        margin: 0;
    }

    .content p:first-child {
        margin-top: 0;
    }


 
	.reviews-read-more {
		display: none;
		align-items: center;
		gap: 3px;
		color: var(--black, #2B2A29);
		font-family: "Gotham Pro";
		font-size: calc(2.5vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(3.75vw * var(--coef-w)); /* 140% */
		text-transform: uppercase;
		background: transparent;
        border: none;
		cursor: pointer;
		margin-bottom: calc(3.125vw * var(--coef-w));
	}

	.reviews-slide-wrapper.wide .reviews-read-more {
		display: flex;
	}

	.reviews-read-more span {
		border-bottom: 1px solid var(--black, #2B2A29);
	}

	.reviews-slider-wrapper {
		width: 100%;
		overflow: hidden;
		position: relative;
		margin-bottom: calc(6.25vw * var(--coef-w));
		width: calc(90.625vw * var(--coef-w));
		margin: 0 auto
	}

	.reviews-slide-wrapper.wide .reviews-slide-content {
		max-height: calc(76.5625vw * var(--coef-w));
		overflow: hidden;
	}

	#reviews-slider {
		padding: calc(6.25vw * var(--coef-w)) 0;
	}

	.reviews-slider {
		overflow: hidden;
	}

	.reviews-slide-wrapper {
		padding: 0 calc(1.5625vw * var(--coef-w));
		width: calc(90.625vw * var(--coef-w)) !important;
	}

	.reviews-slide {
		background-color: #FEFEFE;
		width: 100%;
		border-radius: calc(3.75vw * var(--coef-w));
		box-shadow: calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(7.5vw * var(--coef-w)) calc(0vw * var(--coef-w)) rgba(0, 0, 0, 0.05);
		user-select: none;
		padding: calc(6.25vw * var(--coef-w)) calc(4.6875vw * var(--coef-w));
	}

	.reviews-slide-title {
		font-size: calc(4.0625vw * var(--coef-w));
		font-weight: 700;
		line-height: calc(5.625vw * var(--coef-w));
		text-transform: uppercase;
		margin-bottom: calc(1.25vw * var(--coef-w));
	}

	.reviews-slide-position {
		font-size: calc(3.125vw * var(--coef-w));
		font-weight: 500;
		line-height: calc(5vw * var(--coef-w));
		padding-bottom: calc(3.75vw * var(--coef-w));
		border-bottom: 1px dashed #DBDBDB;
		margin-bottom: calc(3.75vw * var(--coef-w));
	}

	.reviews-slide-content {
		font-size: calc(3.75vw * var(--coef-w));
		line-height: calc(5.9375vw * var(--coef-w));
		margin-bottom: calc(4.0625vw * var(--coef-w));
	}

	.reviews-slide-link {
		padding: calc(3.125vw * var(--coef-w));
		display: flex;
		background-color: var(--color-bg);
		text-decoration: none;
		border-radius: calc(2.5vw * var(--coef-w));
	}

	.reviews-slide-link-ico {
		width: calc(4.375vw * var(--coef-w));
		height: calc(4.375vw * var(--coef-w));
		margin-right: calc(3.125vw * var(--coef-w));
		flex-shrink: 0;
	}

	.reviews-slide-link-text {
		font-size: calc(2.8125vw * var(--coef-w));
		font-weight: 700;
		line-height: calc(4.6875vw * var(--coef-w));
		color: var(--color-main);
		text-transform: uppercase;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-skip-ink: none;
		text-decoration-thickness: auto;
		text-underline-offset: auto;
		text-underline-position: from-font;
	}

	.reviews-slider-arrows {
		display: flex;
		justify-content: space-between;
		margin-top: calc(3.125vw * var(--coef-w));
	}

	.reviews-slider-wrapper .slider-arrow {
		position: relative;
		top: auto;
	}

 
.form-group {
	display: block;
	width: 100%;
}

.form-group-title {
	color: #828282;
	font-size: calc(3.4375vw * var(--coef-w));
	line-height: calc(4.0625vw * var(--coef-w));
	margin-bottom: calc(1.875vw * var(--coef-w));
	font-weight: 500;
}

.form-group-input {
	font-size: calc(3.4375vw * var(--coef-w));
	height: calc(14.0625vw * var(--coef-w));
	border-radius: calc(2.5vw * var(--coef-w));
	border: 1px solid #E7E7E7;
	background-color: white;
	padding: 0 calc(3.75vw * var(--coef-w));
	width: 100%;
}

 
.btn-main {
	border: 0;
	font-size: calc(3.75vw * var(--coef-w));
	font-weight: 700;
	line-height: calc(6.5625vw * var(--coef-w));
	padding: calc(4.375vw * var(--coef-w)) calc(6.25vw * var(--coef-w));
	color: var(--color-white);
	border-radius: calc(1.25vw * var(--coef-w));
	background-color: var(--color-main);
	font-family: 'Gotham Pro', sans-serif;
}

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

 
.form-contact {
	background-color: var(--color-bg);
	border-radius: calc(3.75vw * var(--coef-w));
	padding: calc(12.5vw * var(--coef-w)) calc(4.6875vw * var(--coef-w));
	background-image: url('/images/contact-form.png'); /* Add your image path here */
	background-repeat: no-repeat; /* Ensures the image doesn't repeat */
	background-position: top right; /* Positions the image at the top-right corner */
	background-size: calc(33.125vw * var(--coef-w)) calc(53.75vw * var(--coef-w));
}

.form-contact-title {
	margin-bottom: calc(3.75vw * var(--coef-w));
}

.form-contact-subtitle {
	margin-bottom: calc(5.9375vw * var(--coef-w));
	font-size: calc(3.75vw * var(--coef-w));
	font-weight: 400;
	line-height: calc(5.9375vw * var(--coef-w));
	font-weight: 500;
}

.form-contact-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(3.75vw * var(--coef-w));
}

.form-contact-form > .btn {
	width: 100%;
}

.form-contact-policy {
	font-size: calc(3.125vw * var(--coef-w)) !important;
	font-weight: 500 !important;
	line-height: calc(5vw * var(--coef-w)) !important;
}

.contact-form-answer {
	display: none;
	text-align: center;
	margin-top: calc(6.25vw * var(--coef-w));
	font-size: calc(4.375vw * var(--coef-w));
	font-weight: 400;
	line-height: calc(7.5vw * var(--coef-w));
	font-weight: 500;
}

.contact-form-answer.error {
	color: #d31717;
}

.contact-form-answer.success {
	color: #35c172;
}	

 
	.socials {
		display: flex;
		gap: calc(3.75vw * var(--coef-w));
	}

	.social-img {
		height: calc(6.875vw * var(--coef-w));
		width: calc(6.875vw * var(--coef-w));
	}

	.social-img.width-32 {
		height: calc(9.375vw * var(--coef-w));
		width: calc(9.375vw * var(--coef-w));
	}

 
	.header {
		padding: calc(1.5625vw * var(--coef-w));
	}

	.header-bg {
		padding-left: var(--offset);
		padding-right: var(--offset);
		background-color: var(--color-bg, #F7F6EE);
		display: flex;
		justify-content: space-between;
		align-items: center;
		min-height: calc(17.5vw * var(--coef-w));
		border-radius: calc(3.75vw * var(--coef-w));
		flex-wrap: wrap;
		transition: 0.3s;
	}

	.header-logo {
		height: calc(17.5vw * var(--coef-w));
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.header-logo-img {
		height: calc(14.0625vw * var(--coef-w));
		width: calc(29.375vw * var(--coef-w));
		object-fit: contain;
		object-position: center;
	}

	.header-menu {
		display: flex;
		flex-direction: column;
		gap: calc(3.75vw * var(--coef-w));
	}

	.header-menu-item {
		color: var(--color-font);
		text-decoration: none;
		font-size: calc(4.0625vw * var(--coef-w));
		line-height: calc(5.3125vw * var(--coef-w));
		font-weight: 600;
	}

	.header-menu-item.submenu-container {
		display: flex;
		flex-wrap: wrap;
	}

	.header-menu-item > .submenu {
		margin-top: calc(3.75vw * var(--coef-w));
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: calc(3.75vw * var(--coef-w));
		padding-left: calc(4.6875vw * var(--coef-w));
	}

	.header-menu-item-arrow {
		transform: rotate(180deg);
		width: calc(3.75vw * var(--coef-w));
		height: calc(3.75vw * var(--coef-w));
		margin-left: calc(1.5625vw * var(--coef-w));
		margin-top: calc(0.9688vw * var(--coef-w));
	}

	.header-search-img {
		height: calc(6.875vw * var(--coef-w));
		width: calc(7.2813vw * var(--coef-w));
	}

	.burger-menu {
		width: calc(9.375vw * var(--coef-w));
		height: calc(9.375vw * var(--coef-w));
		margin-top: calc(3.75vw * var(--coef-w));
		cursor: pointer;
		position: relative;
	}

	.burger-menu span {
		background-color: #BEAD74;
		height: 2px;
		position: absolute;
		width: 100%;
		left: 0;
		transition: all 0.3s ease;
		border-radius: calc(3.125vw * var(--coef-w));
	}

	.burger-menu span:first-child {
		top: 0;
	}

	.burger-menu span:nth-child(2) {
		top: calc(2.5vw * var(--coef-w));
	}

	.burger-menu span:last-child {
		top: calc(5vw * var(--coef-w));
	}

	.burger-menu.active span:nth-child(2) {
		opacity: 0;
	}

	.burger-menu.active span:first-child,
	.burger-menu.active span:last-child {
		top: calc(1.875vw * var(--coef-w));
		background-color: #BEAD74;
	}

	.burger-menu.active span:first-child {
		transform: rotate(45deg);
	}

	.burger-menu.active span:last-child {
		transform: rotate(-45deg);
	}

	.menu-mobile {
		transition: 0.3s;
		overflow: hidden;
		max-height: 0;
		width: 100%;
		padding-bottom: calc(0vw * var(--coef-w));
	}

	.menu-mobile.active {
		padding-bottom: calc(6.25vw * var(--coef-w));
		max-height: calc(312.5vw * var(--coef-w));
	}

	.menu-mobile-top {
		display: flex;
		justify-content: space-between;
		margin: calc(9.375vw * var(--coef-w)) 0;
	}

 
    .container-modal-teammember {
        border-radius: calc(3.75vw * var(--coef-w));
        background: var(--white, #FEFEFE);
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: calc(4.6875vw * var(--coef-w));
        padding: calc(4.6875vw * var(--coef-w));
    }

    .modal-teammember-img {
        width: 100%;
        height: calc(87.5vw * var(--coef-w));
        border-radius: calc(3.125vw * var(--coef-w));
        object-fit: contain;
    }

    .modal-teammember-content {
        display: flex;
        flex-direction: column;
    }

    .modal-teammember-name {
        color: var(--color-font);
        font-size: calc(4.0625vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(4.6875vw * var(--coef-w)); /* 140% */
        text-transform: uppercase;
    }

    .modal-teammember-position {
        margin-top: calc(1.5625vw * var(--coef-w));
        color: var(--color-font);
        font-size: calc(3.4375vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(4.375vw * var(--coef-w)); /* 153.846% */
    }

    .modal-teammember-desc {
        margin-top: calc(6.25vw * var(--coef-w));
    }

 
    .container-modal-review {
        border-radius: calc(3.75vw * var(--coef-w));
        background: var(--white, #FEFEFE);
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: calc(4.6875vw * var(--coef-w));
        padding: calc(4.6875vw * var(--coef-w));
    }

    .modal-review-img {
        width: 100%;
        height: calc(87.5vw * var(--coef-w));
        border-radius: calc(3.125vw * var(--coef-w));
        object-fit: contain;
    }

    .modal-review-content {
        display: flex;
        flex-direction: column;
    }

    .modal-review-name {
        color: var(--color-font);
        font-size: calc(4.0625vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(4.6875vw * var(--coef-w)); /* 140% */
        text-transform: uppercase;
    }

    .modal-review-position {
        margin-top: calc(1.5625vw * var(--coef-w));
        color: var(--color-font);
        font-size: calc(3.4375vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(4.375vw * var(--coef-w)); /* 153.846% */
    }

    .modal-review-desc {
        margin-top: calc(6.25vw * var(--coef-w));
        padding-top: calc(6.25vw * var(--coef-w));
        border-top: 1px dashed #DBDBDB;
        color: var(--black, #2B2A29);
        font-family: "Gotham Pro";
        font-size: calc(3.4375vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(4.375vw * var(--coef-w)); /* 171.429% */
        max-height: 55vh;
        overflow: auto;
    }

 
    .nothing-found {
        color: var(--color-black);
        font-size: calc(3.125vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(4.375vw * var(--coef-w)); /* 133.333% */
        text-transform: uppercase;
    }

    .container-modal-search {
        height: 100vh;
        width: 100%;
        right: 0;
        top: 0 !important;
        left: 0;
        transform: none;
        border-radius: 0;
        padding: calc(4.6875vw * var(--coef-w));
        align-items: flex-start;
    }

    .search-modal-title {
        color: var(--color-black);
        font-size: calc(6.25vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(8.125vw * var(--coef-w)); /* 108.333% */
        text-transform: uppercase;
    }

    .search-modal-input-wrapper {
        display: flex;
        align-items: center;
        gap: calc(3.125vw * var(--coef-w));
        padding: calc(3.75vw * var(--coef-w));
        border-radius: calc(2.5vw * var(--coef-w));
        background: #F7F6EE;
        width: 100%;
        margin-top: calc(7.8125vw * var(--coef-w));
    }

    .search-modal-input {
        flex: 1;
        color: var(--color-black);
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(5.625vw * var(--coef-w)); /* 157.143% */
        background: #F7F6EE;
        border: none;
    }

    .search-modal-results-wrapper {
        height: 75vh;
        overflow-y: auto;
        padding-right: calc(4.6875vw * var(--coef-w));
        margin-top: calc(7.8125vw * var(--coef-w));
    }

    .search-modal-results-wrapper::-webkit-scrollbar {
        width: calc(1.25vw * var(--coef-w));
    }

    .search-modal-results-wrapper::-webkit-scrollbar-thumb {
        background-color: var(--color-main);
        border-radius: calc(3.125vw * var(--coef-w));
    }

    .search-modal-results-wrapper::-webkit-scrollbar-thumb:hover {
        background-color: var(--color-main-hover);
    }

    .search-modal-results-wrapper::-webkit-scrollbar-track {
        background: var(--color-bg);
        border-radius: calc(3.125vw * var(--coef-w));
    }

    .search-modal-results {
        display: flex;
        flex-direction: column;
        gap: calc(7.8125vw * var(--coef-w));
    }

    .search-modal-results-block {
        display: flex;
        flex-direction: column;
        gap: calc(3.75vw * var(--coef-w));
    }

    .search-modal-results-title {
        color: var(--color-black);
        font-size: calc(4.375vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(5.625vw * var(--coef-w)); /* 117.647% */
        text-transform: uppercase;
    }

    .search-modal-results-list {
        display: flex;
        flex-direction: column;
        gap: calc(3.75vw * var(--coef-w));
    }

    .search-modal-results-item {
        display: flex;
        gap: calc(3.75vw * var(--coef-w));
        align-items: center;
        padding-bottom: calc(3.125vw * var(--coef-w));
        border-bottom: 1px solid #C8CAD5;
        text-decoration: none;
    }

    .search-modal-results-item-img {
        width: calc(18.75vw * var(--coef-w));
        height: calc(14.0625vw * var(--coef-w));
        border-radius: calc(1.875vw * var(--coef-w));
        object-fit: cover;
    }

    .search-modal-results-item-title {
        color: var(--color-black);
        font-size: calc(3.4375vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(5.3125vw * var(--coef-w)); /* 150% */
        text-transform: uppercase;
    }

    .search-modal-link {
        display: flex;
        align-items: center;
        margin-top: calc(9.375vw * var(--coef-w));
        color: var(--color-black);
        font-size: calc(3.125vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(4.375vw * var(--coef-w)); /* 133.333% */
        text-transform: uppercase;
    }

 
	.footer {
		background-color: var(--color-bg);
		display: flex;
		flex-direction: column;
		gap: calc(9.375vw * var(--coef-w));
		padding-top: calc(10.9375vw * var(--coef-w));
		padding-bottom: calc(5.625vw * var(--coef-w));
	}

	.footer-left {
		width: 100%;
	}

	.footer-logo {
		width: calc(35.3125vw * var(--coef-w));
		height: calc(12.5vw * var(--coef-w));
		display: block;
	}

	.footer-logo-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		display: block;
		object-fit: contain;
		object-position: center;
	}

	.footer-copyright {
		font-size: calc(3.125vw * var(--coef-w));
		font-weight: 500;
		line-height: calc(5vw * var(--coef-w));
		color: #868686;
	}

	.footer-right {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
        column-gap: calc(9.375vw * var(--coef-w)); /* Gap between columns */
	}

	.footer-right-column {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: calc(9.375vw * var(--coef-w));
	}

	.footer-col {
		display: flex;
		flex-direction: column;
		gap: calc(4.0625vw * var(--coef-w));
	}

	.footer-col-title {
		font-size: calc(3.4375vw * var(--coef-w));
		font-weight: 500;
		line-height: calc(4.6875vw * var(--coef-w));
		color: #868686;
		text-transform: uppercase;
	}

	.footer-menu {
		display: flex;
		flex-direction: column;
		gap: calc(3.125vw * var(--coef-w));
	}

	.footer-menu-item {
		font-size: calc(4.0625vw * var(--coef-w));
		font-weight: 500;
		line-height: calc(5.3125vw * var(--coef-w));
		color: var(--color-font);
		text-decoration: none;
	}

	.footer-schedule {
		display: flex;
		flex-direction: column;
		gap: calc(2.5vw * var(--coef-w));
		width: calc(53.125vw * var(--coef-w));
		margin-top: calc(6.25vw * var(--coef-w));
	}

	.footer-bottom {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: calc(6.25vw * var(--coef-w));
	}

 }