@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-Book.woff2') format('woff2'),
        url('../fonts/Campton-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-Black.woff2') format('woff2'),
        url('../fonts/Campton-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-Bold.woff2') format('woff2'),
        url('../fonts/Campton-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-SemiBold.woff2') format('woff2'),
        url('../fonts/Campton-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-Light.woff2') format('woff2'),
        url('../fonts/Campton-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-Thin.woff2') format('woff2'),
        url('../fonts/Campton-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-Medium.woff2') format('woff2'),
        url('../fonts/Campton-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-ExtraLight.woff2') format('woff2'),
        url('../fonts/Campton-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('../fonts/GreycliffCF-Medium.woff2') format('woff2'),
        url('../fonts/GreycliffCF-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('../fonts/GreycliffCF-DemiBold.woff2') format('woff2'),
        url('../fonts/GreycliffCF-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('../fonts/GreycliffCF-Regular.woff2') format('woff2'),
        url('../fonts/GreycliffCF-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
	--color: #0A1C2B;
	--c-blue: #609AD9;
	--c-yellow: #FFBE60;
	--c-black: #0A1C2B;
	--c-black-blue: #121628;
	--c-gray: #EDEDED;
	--c-gold: #DCBD7D;
	--c-green: #23F197;
	--akcent: #B32025;
	--campton: 'Campton', sans-serif;
	--greycliff: 'Greycliff CF', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	background: none;
	border: none;
	list-style: none;
}

body {
	font: 300 15.73px/1.4 var(--campton);
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	transition: all 0.3s;
}

h2.title {
	font-size: 70px;
	line-height: 1.05;
	font-weight: normal;
}
h2.title span {color: #DCBD7D;}

.tx-c {text-align: center;}
.tx-l {text-align: left;}
.tx-r {text-align: right;}
.before-subtitle {
	font-size: 17px;
	letter-spacing: 1px;
	color: var(--c-black);
}
.after-subtitle {
	font-size: 20px;
	color: var(--c-black);
}

.main-title {text-align: center;}
.main-title p {
	font-size: 17px;
	letter-spacing: 1px;
	margin-top: 10px;
}
.main-title h2 {
	font-size: 70px;
	font-weight: normal;
	line-height: 1;
	font-smoothing: auto;
	-webkit-font-smoothing: auto;
	margin-top: 30px;
}
.main-title h2 span {color: var(--c-gold)}

#main {overflow: hidden;}

.center {
	max-width: 1465px;
	margin: 0 auto;
	padding: 0 15px;
}
.max-center {
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
}

@media (min-width: 1921px) {
	.max-center:after,
	.max-center:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		width: 100px;
		z-index: 1;
	}
	.max-center:before {
		left: 0;
		background: linear-gradient(90deg, #fff, transparent);
	}
	.max-center:after {
		right: 0;
		background: linear-gradient(-90deg, #fff, transparent);
	}
}

.d-none {display: none !important;}

.c-blue {color: #4A8BB2 !important;}
.c-yellow {color: #F7AC53 !important;}

[data-src="crown"] {
	display: inline-block;
	width: 65px;
	height: 50px;
	line-height: 0;
}
[data-src="crown"].s-500 {display: inline-block !important;}

@media (max-width: 1600px) {
	body {font-size: 13px;}

	h2.title {font-size: 45px;}

	.before-subtitle {font-size: 14px;}
	.after-subtitle {font-size: 16px;}

	.center {max-width: 1200px;}
}

@media (max-width: 1200px) {
	h2.title {font-size: 40px;}
}

@media (max-width: 760px) {
	.h-760 {display: none !important;}
	.s-760 {display: block !important;}

	h2.title {font-size: 35px;}
}

@media (max-width: 550px) {
	body {
		font-size: 14.5px;
		font-smoothing: antialiased;
		-webkit-font-smoothing: antialiased;
	}

	.h-550 {display: none !important;}
	.s-550 {display: block !important;}

	.before-subtitle {
		font-size: 16px;
	    font-weight: 300;
	    margin-top: 5px;
	}
    
    #main > div > section.home > div.bg > i.icon.d-none.s-550 {
        width: 150%;
        right: 0;
        left: -20%;
    }

    .btn {
    	font-smoothing: auto;
    	-webkit-font-smoothing: auto;
    }
}

@media (max-width: 413px) {
	h2.title {font-size: 31px;}
}

/* ------------------ BUTTONS ------------------ */
.buttons {
	display: inline-block;
	text-align: center;
	max-width: 488px;
}
.buttons .group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.buttons .foot {
	font-size: 19px;
	margin-top: 25px;
	line-height: 1.4;
}
.buttons .btn-important {margin-top: 30px;}
.buttons .btn {animation: pulse 1.5s infinite;}
.buttons .btn:last-child {animation-delay: .5s;}

@keyframes pulse{0%{transform:scale(.95)}50%{transform:scale(1)}100%{transform:scale(.95)}}


.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-green);
	border-radius: 37px;
	min-height: 50px;
	font-size: 18px;
	font-weight: normal;
	color: var(--color);
	padding: 0 20px;
	gap: 8px;
	position: relative;
	overflow: hidden;
}
.btn:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	background: var(--c-gold);
	transition: all 0.3s;
}
.btn span {
	position: relative;
	z-index: 2;
}
.btn svg {
	fill: #151B2F;
	position: relative;
	z-index: 2;
}
.btn:hover:after {width: 100%;}

.btn-important {
	font-size: 13px;
	color: #0A1C2B;
	display: inline-block;
	text-decoration: underline;
}
.btn-important:hover {text-decoration: none;}

.btn-fix {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -100%;
	z-index: 99;
	background: #fff;
	display: flex;
	padding: 10px;
	box-shadow: 0 -4px 21px rgba(0,0,0,.08);
	transition: all 0.3s;
	display: none;
}
.btn-fix a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	height: 50px;
	background: #1D2749;
	border-radius: 8px;
	color: #fff;
	animation: pulse 1.5s infinite;
}
.btn-fix a svg {
	fill: #fff;
	width: 6px;
	height: 11px;
}
.btn-fix a:last-child {
	animation-delay: .5s;
	background: var(--c-green);
	color: #151B2F;
}
.btn-fix a:last-child svg {
	fill: #151B2F;
	width: 9px;
	height: 13px;
	position: relative;
	top: 2px;
}
.btn-fix a strong {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
}
.btn-fix a span {
	font-weight: 500;
	font-size: 18px;
	font-family: var(--greycliff);
	line-height: 1.2;
	-webkit-font-smoothing: auto;
	font-smoothing: auto;
}

@media (max-width: 1600px) {
	.buttons .foot {
	    font-size: 15px;
	    margin-top: 20px;
	}
	.buttons .btn-important {margin-top: 20px;}
}

@media (max-width: 1200px) {
	.buttons {max-width: 370px;}

	.btn {
		min-height: 45px;
	    font-size: 14px;
	    padding: 0 17px;
	    gap: 6px;
	}
	.btn svg {
		width: 7px;
    	height: 12px;
	}
}

@media (max-width: 550px) {
	.buttons {
	    max-width: inherit;
	    width: 100%;
	    padding: 0 15px;
	}
	.buttons .group {
		flex-direction: column;
		gap: 14px;
	}
	.buttons .foot {font-size: 16px;}

	.btn-fix.active {
		display: grid;
		bottom: 0;
		animation: bottomTop 0.5s forwards;
	}

	@keyframes bottomTop {
		0% {bottom: -100%;}
		100% {bottom: 0;}
	}
}

@media (max-width: 413px) {
	.buttons .foot {font-size: 13px;}
}

/* ------------------ TOASTER ------------------ */
.toaster {
	position: fixed;
	left: 20px;
	top: 100%;
	z-index: 103;
	max-width: 350px;
	width: 100%;
	display: none;
	opacity: 0;
	margin-top: -100px;
	transition: all 0.3s;
}
.toaster:hover {transform: translateY(-20px);}

.toaster .close {
	background: #f0f0f0;
	border-radius: 50px;
	position: absolute;
	top: 0;
	right: 0;
	width: 25px;
	height: 25px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	transition: all 0.3s;
	cursor: pointer;
	display: none;
	opacity: 0;
}
.toaster .close svg {transition: all 0.3s;}
.toaster .close:hover svg {fill: var(--akcent);}

.overflow .toaster {z-index: 10;}
.toaster.active {
	display: block;
	animation: opacity 0.5s forwards;
}
.toaster-item {
	position: absolute;
    top: 0;
    left: 0;
    transform: translateY(150%);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    height: 100px;
    padding: 10px;
    color: #000;
    width: 100%;
    background: #F0F0F0;
    gap: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    border-radius: 10px;
    visibility: hidden;
}
.toaster-item.show {
	position: relative;
	z-index: 1;
	transform: translateY(-20px);
	visibility: visible;
}
.toaster-item.opacity-null {transform: translateY(150%) !important;}
.toaster-item:hover .close {
	display: block;
	animation: opacity 0.5s forwards;
}

.toaster-item .image {
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
}
.toaster-item .image img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.toaster-item .content {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 10px 0;
}
.toaster-item h3 {
	font-size: 16px;
	line-height: 1;
	font-weight: normal;
}
.toaster-item h3 b {font-weight: 600;}
.toaster-item p {
	font-size: 12px;
	line-height: 1;
	margin-top: 7px;
}
.toaster-item p b {font-weight: 500;}
.toaster-item .foot {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 13px;
	font-size: 12px;
}
.toaster-item .foot .ic {
	width: 15px;
	height: 15px;
	background: #58AC00;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.toaster-item .foot .ic svg {
	width: 8px;
	height: 8px;
	fill: #fff !important;
	stroke: #fff !important;
}

@media (max-width: 500px) {
	.toaster {
		max-width: 300px;
		left: 15px;
	}
	.toaster-item {
		height: 80px;
		gap: 10px;
	}
	.toaster-item.show {transform: translateY(-70px);}
	.toaster-item .content {
		height: 100%;
		padding: 5px 0;
	}
	.toaster-item h3 {font-size: 14px;}
	.toaster-item p {
		font-size: 12px;
		margin-top: 5px;
	}
	.toaster-item .foot {
		font-size: 10px;
		margin-top: 6px;
	}
	.toaster .close {
		opacity: 1;
		display: block;
	}
}

/* ------------------ HEADER ------------------ */
#header {
    position: fixed;
    width: 100%;
    z-index: 99;
}
.head-bar {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	background-color: var(--c-black-blue);
	padding: 14px 0;
	display: block;
}
.head-bar .center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.head-bar .link {color: #fff;}
.head-bar span {
	display: inline-block;
	margin: 0 12px;
}

.head-main {
	padding: 10px 0;
	background: rgba(255,255,255,.6);
	box-shadow: 0 10px 60px rgba(38,45,118,.08);
	transition: all 3s;
}
.head-main .center {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: inline-block;
	line-height: 0;
    cursor:default;
}

#nav ul {
	display: flex;
	align-items: center;
	gap: 33px;
}
#nav ul a {
	color: var(--c-black);
	font-size: 14px;
}
#nav ul a:hover {color: var(--akcent);}

.btn-head {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 216px;
	height: 43px;
	background: #dcbd7d;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	letter-spacing: 0.7px;
}
.btn-head:before {
	content: '';
	display: block;
	width: 0;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--c-black);
	transition: all 0.3s;
}
.btn-head span,
.btn-head:after {
	position: relative;
	z-index: 2;
}
.btn-head span {top: 1px;}
.btn-head:hover:before {width: 100%;}
.btn-head svg {
	width: 7px;
	height: 13px;
	fill: #fff;
	margin-left: 10px;
	position: relative;
	z-index: 2;
	transition: all 0.3s;
}
.btn-head:hover svg {transform: translateX(5px);}

.current_promo_banner_a {
	-webkit-font-smoothing: auto;
	font-smoothing: auto;
}
div.current_promo_banner {background-color: #151d2f !important;}
div.current_promo_banner span {
	margin: 0 0 3px 0 !important;
}
div.current_promo_banner strong b {
	font-weight: 700 !important;
}
div.current_promo_banner p b {
	font-weight: 500;
	-webkit-font-smoothing: auto;
	font-smoothing: auto;
}

@media (max-width: 1600px) {
	#header .center {max-width: 1200px;}
	.logo svg {
		width: 130px;
		height: 36px;
	}

	.head-bar {
	    font-size: 13px;
	    padding: 9px 0;
	}

	#nav ul {gap: 20px;}
	#nav ul a {font-size: 14px;}

	.btn-head {
		width: 190px;
		height: 35px;
		font-size: 13px;
	}
}

@media (max-width: 1200px) {
	.head-bar {
	    font-size: 10px;
	    padding: 7px 0;
	}

	.head-main {padding: 15px 0;}

	.logo svg {
	    width: 90px;
	    height: 26px;
	}

	#nav ul {gap: 8px;}
	#nav ul a {font-size: 11px;}

	.btn-head {
	    width: 135px;
	    height: 27px;
	    font-size: 10px;
	}
	.btn-head svg {
		width: 5px;
		margin-left: 5px;
		top: 0;
	}
}

@media (max-width: 991px) {
	#nav ul a {font-size: 10px;}
}

@media (max-width: 768px) {
	div.current_promo_banner {padding: 4.5vw 0 4vw 0;}
	div.current_promo_banner i {margin-top: 0 !important;}
	div.current_promo_banner p {margin-bottom: 0 !important;}

	.header_menu .header_main_menu .menu_btn_started:before {
		height: 40px !important;
	}
}

@media (max-width: 760px) {
	.logo svg {
	    width: 120px;
	    height: 32px;
	}

	#nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 991;
		background: rgba(0,0,0,.8);
		display: flex;
		align-items: center;
		justify-content: center;
		display: none;
	}
	#nav ul {flex-direction: column;}
	#nav ul a {
	    font-size: 20px;
	    color: #fff;
	    font-weight: 500;
	    padding: 5px 0;
	    display: inline-block;
	}
	#nav .btn {
		min-width: 250px;
		background: #DCBD7D;
	}

	.open-menu #nav {
		display: flex;
		flex-direction: column;
		gap: 30px;
		animation: opacity 0.3s forwards;
	}

	.btn-nav {
		width: 27px;
		height: 21px;
		display: inline-block;
		position: relative;
		z-index: 992;
		margin-left: 15px;
		cursor: pointer;
	}
	.btn-nav span {
		display: block;
		height: 3px;
		width: 27px;
		background: #093E52;
		border-radius: 5px;
		transition: all 0.3s;
		transform-origin: center;
	}
	.btn-nav span + span {margin-top: 6px;}
	.open-menu .btn-nav span {
		position: absolute;
		top: 50%;
		left: 0;
		margin-top: -1.5px;
		background: #fff;
	}
	.open-menu .btn-nav span:nth-child(2) {display: none;}
	.open-menu .btn-nav span:nth-child(1) {transform: rotate(45deg);}
	.open-menu .btn-nav span:nth-child(3) {transform: rotate(-45deg);}

	.btn-head {margin-left: auto;}
}

@media (max-width: 500px) {
	div.current_promo_banner i {
		position: relative;
		top: 1px;
	}
	div.current_promo_banner p {
		top: 3.5px !important;
	}

	#header .center {
		display: block;
		text-align: center;
	}

	.head-bar {
	    font-size: 11px;
	    padding: 5px 0;
	    -webkit-font-smoothing: auto;
	    font-smoothing: auto;
	}
	.head-bar .link {display: inline-block;}
	.head-bar span {margin: 0 7px;}
	.head-bar .link:first-child {display: block;}
	.head-bar .link:first-child + span {display: none;}

	.head-main .center {display: flex !important;}
}

/* ------------------ HOME ------------------ */
.home {
	position: relative;
	padding: 60px 0 50px;
}
.home .bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
.home .bg .icon-svg {
	display: block;
	width: 100%;
}
.home:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	width: 1920px;
	height: 899px;
}
.home:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 200px;
	background: linear-gradient(0deg, #fff 20%, transparent);
	margin-bottom: -235px;
}
.home .inner {
	position: relative;
	z-index: 2;
}
.home h1 {
	font-weight: 600;
	font-size: 80px;
	line-height: 1.05;
	margin: 20px 0 10px 0;
	color: var(--c-black);
	-webkit-font-smoothing: antialiased;
}

.home .buttons {margin-top: 30px;}

@media (max-width: 1890px) {
	.home .bg .icon-svg {
	    width: 1950px;
	    position: absolute;
	    left: 50%;
	    transform: translateX(-50%);
	}
}

@media (max-width: 1600px) {
	.home {padding: 60px 0 60px;}
	.home:after {
		width: 1600px;
		height: 700px;
		background-size: 1600px;
	}
	.home h1 {
	    font-size: 60px;
	    margin: 15px 0;
	}

	.home .buttons {margin-top: 20px;}
}


@media (max-width: 1450px) {
	.home:after {
		width: 1450px;
		height: 700px;
		background-size: 1450px;
	}
}

@media (max-width: 1200px) {
	.home:after {
		width: 1200px;
		height: 700px;
		background-size: 1200px;
	}
	.home h1 {font-size: 45px;}
}

@media (max-width: 1100px) {
	.home .bg .icon-svg {
        width: 2656px;
        left: -70%;
    }
}

@media (max-width: 991px) {
	.home:after {
	    width: 1100px;
	    height: 700px;
	    background-size: 1100px;
	    margin-left: 15px;
	}
	.home:before {
		height: 100px;
		margin-bottom: -20px;
	}
	.home h1 {font-size: 35px;}
	.after-subtitle {font-size: 14px;}
}

@media (max-width: 768px) {
	.home .bg {top: 0}
	.home {padding-top: 60px;}
	.home:after {top: 20vw;}
}

@media (max-width: 550px) {
	.home {
		padding-bottom: 40px;
		padding-top: 45px;
	}
	.home .bg {top: 0}
	.home .bg .icon-svg {
	    width: inherit;
	    position: absolute;
	    left: initial;
	    right: 0;
        right: -18%;
	    transform: none;
	    width: 440px;
        min-width: 630px;
	}
	.home h1 {
		font-size: 41px;
	    margin-bottom: 10px;
	    margin-top: 20px;
	}
	.home .after-subtitle {
		font-size: 16px;
        -webkit-font-smoothing: auto;
		font-size: 16px;
	}
}

@media (max-width: 414px) {
	.home:after {
		width: 440px;
		background-size: 440px;
		margin-top: -121px;
	}
}

@media (max-width: 413px) {
	.home .bg .icon-svg {width: 400px}
	.home h1 {font-size: 38px;}
}

/* ------------------ HOME ------------------ */
.main-product {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 11px;
	margin-top: 55px;
    grid-template-columns: repeat(6, 1fr);
    gap: 11px;
    width: 90%;
    margin: 45px auto 0;
}
.main-product h3 {
	font-weight: 500;
	color: #151B2F;
	position: relative;
	z-index: 2;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
    font-family: var(--camptonmenu);
    font-size: clamp(0.75rem, 1.25vw, 18px);
}
.main-product h3.c-blue {color: #0067C6 !important;}
.main-product h3.c-green {color: #58A438;}
.main-product h3.c-blueblack {color: #2B607D;}
.main-product h3.c-black {color: #001D3A;}
.main-product h3.c-red {color: #B84D39;}
.main-product .prod {
	text-align: center;
	position: relative;
	padding-top: 15px;
	display: inline-flex;
    flex-direction: column;
    transition: all 0.3s;
}
.main-product .prod:after {
	content: '';
	display: block;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0px 8.799px 52.794px rgba(38, 45, 118, 0.08);
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
	transition: all 0.3s;
}
.main-product .prod:hover {transform: scale(1.02);}
.main-product .image {
	margin-top: auto;
	position: relative;
}
.main-product .prod:nth-child(1) .image {
	max-width: 230px;
}
.main-product .image img {display: block;}
.main-product .button {
	position: absolute;
	width: 27px;
	height: 27px;
	right: 16px;
	bottom: 12px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #151B2F;
	transition: all 0.3s;
}
.main-product .button:hover {background: #25f097;}
.main-product .button svg {
	fill: #fff;
	position: relative;
	right: -1px;
}

@media (max-width: 1450px) {
	.main-product .prod:nth-child(1) .image {right: 0;}
}

@media (max-width: 991px) {
    .main-product {
        width: 98%;
    }
	.main-product .prod {padding-top: 10px;}

	.main-product .button {
		width: 20px;
		height: 20px;
		right: 5px;
		bottom: 5px;
	}
}

@media (max-width: 767px) {

    .main-product h3 {
        font-weight:400;
        font-size: clamp(1rem,4vw,18pt);
    }
	.main-product {
		display: flex;
		flex-direction: column;
		gap: 30px;
		width: 85%;
	}
	.main-product .prod {
	    padding-top: 0;
	    align-items: center;
	    flex-direction: row;
	   	padding: 0 70px 0 17px;
        max-height:100px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.01);
        overflow:hidden;
	}
	.main-product .button {
	    width: 40px;
	    height: 40px;
	    right: 20px;
	    bottom: inherit;
	    top: 50%;
	    transform: translateY(-50%);
	}
	.main-product .button svg {
		width: 10px;
		height: 15px;
	}
	.main-product .image {
		margin-left: auto;
		min-height: 99px;
	}
	.main-product .prod:nth-child(1) .image img {content: url(/assets/home-page-3/img/main-product/mob/prod-1.png);}
	.main-product .prod:nth-child(3) .image img {content: url(/assets/home-page-3/img/main-product/mob/prod-3.png);}
	.main-product .prod:nth-child(4) .image img {content: url(/assets/home-page-3/img/main-product/mob/prod-5.png?1);}
	.main-product .prod:nth-child(1) .image {
        top: -3px;
        right: 21px;
        max-width: 147px;
	}
	.main-product .prod:nth-child(2) .image {
		max-width: 163px;
		right: 10px;
	}
	.main-product .prod:nth-child(3) .image {
        max-width: 130px;
        right: 25px;
        top: 10px;
	}
	.main-product .prod:nth-child(4) .image {
		max-width: 200px;
        right: -7px;
        top: -23px;
	}
	.main-product .prod:nth-child(5) .image {
        top: 1px;
        right: 4px;
        max-width: 171px;
	}
	.main-product .prod:nth-child(6) .image {
        top: -6px;
        right: -4px;
        max-width: 195px;
	}
	.main-product .prod:nth-child(7) .image {
        top: -16px;
        right: -11px;
        max-width: 199px;
	}
}

@media (max-width: 550px) {
    .main-product h3 {
        font-size: clamp(16pt, 7vw, 30pt);
    }
	.main-product {
		width: 100%;
		gap: 18px;
		margin-top: 35px;
	}
	.main-product .prod {zoom: 0.6;}
	.main-product h3 {
		font-weight: 500;
		-webkit-font-smoothing: antialiased;
	}
}

/* ------------------ SMOOTH SLIDER ------------------ */
.smooth-slider {
	position: relative;
	z-index: 2;
} 
.smooth-slider .slide-item {
	padding: 3px 0;
	position: relative;
}
.smooth-slider .slide-item > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
	border-radius: 35px;
}
.smooth-slider .slide-item:hover > img {transform: scale(1.005);}
.smooth-slider .content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 115px 15px 15px 15px;
	text-align: center;
	color: #fff;
}
.smooth-slider .content h3 {
	font-size: 57px;
	font-weight: normal;
	line-height: 1.2;
}
.smooth-slider .trustpilot {
	display: inline-block;
	width: 311px;
	height: 34.35px;
	margin-bottom: 35px;
}
.smooth-slider .slide-item ul {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 0 auto;
}
.smooth-slider .slide-item ul h4 {
	font-weight: normal;
	font-size: 51.87px;
}
.smooth-slider .slide-item ul p {
	font-weight: normal;
	font-size: 19.45px;
}

@media (max-width: 1600px) {
	.smooth-slider .slide-item > img {max-height: 450px;}
	.smooth-slider .content {padding: 85px 15px 15px 15px;}
	.smooth-slider .trustpilot {
		max-width: 250px;
        height: inherit;
        margin-bottom: 30px;
	}
	.smooth-slider .content h3 {font-size: 45px;}
	.smooth-slider .slide-item ul h4 {font-size: 40px;}
	.smooth-slider .slide-item ul p {font-size: 15px;}
}

@media (max-width: 1200px) {
	.smooth-slider .slide-item > img {max-height: 400px;}
	.smooth-slider .trustpilot {max-width: 200px;}
	.smooth-slider .content h3 {font-size: 35px;}
}

@media (max-width: 991px) {
	.smooth-slider .slide-item {border-radius: 25px;}
	.smooth-slider .slide-item > img {max-height: 300px;}
	.smooth-slider .trustpilot {max-width: 160px;}
	.smooth-slider .content {padding: 55px 15px 15px 15px;}
	.smooth-slider .content h3 {font-size: 25px;}
	.smooth-slider .slide-item ul {gap: 25px;}
	.smooth-slider .slide-item ul h4 {font-size: 25px;}
	.smooth-slider .slide-item ul p {font-size: 13px;}
}

@media (max-width: 550px) {
	.smooth-slider .slide-item > img {max-height: 450px;}
	.smooth-slider .slide-item > img.one {content: url(/assets/home-page-3/img/smooth-slider/mob/slide-1.jpg);}
	.smooth-slider .slide-item > img.two {content: url(/assets/home-page-3/img/smooth-slider/mob/slide-2.jpg);}
	.smooth-slider .slide-item > img.three {content: url(/assets/home-page-3/img/smooth-slider/mob/slide-3.jpg);}
	.smooth-slider .slide-item > img.four {content: url(/assets/home-page-3/img/smooth-slider/mob/slide-4.jpg?22);}
	.smooth-slider .slide-item > img.five {content: url(/assets/home-page-3/img/smooth-slider/mob/slide-5.jpg);}
	.smooth-slider .slide-item > img.six {content: url(/assets/home-page-3/img/smooth-slider/mob/slide-6.jpg);}
	.smooth-slider .slide-item > img.seven {content: url(/assets/home-page-3/img/smooth-slider/mob/slide-7.jpg);}

	.smooth-slider .slide-item {border-radius: 20px;}
	.smooth-slider .trustpilot {max-width: 200px;}
	.smooth-slider .content h3 {font-size: 32px;}
	.smooth-slider .slide-item ul {
		flex-direction: column;
		gap: 10px;
	}
	.smooth-slider .slide-item ul h4 {font-size: 35px;}
	.smooth-slider .slide-item ul p {font-size: 14px;}
}

/* ------------------ PRESCRIPTION ------------------ */
.prescription {
	padding: 44px 0 0 0;
	position: relative;
}
.prescription:after {
	content: '';
	display: block;
	width: 1920px;
	height: 3449px;
	position: absolute;
	top: -620px;
	right: 0;
	z-index: -1;
	background: url(/assets/home-page-3/img/lines/line-1.svg) no-repeat;
}
.prescription .form-tag {
	padding-top: 40px;
	margin: 0 auto 0 auto;
	max-width: 882px;
}

.form-tag {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px 9px;
}
.form-tag .checkbox:nth-child(1) {animation-delay: 0.2s;}
.form-tag .checkbox:nth-child(2) {animation-delay: 0.4s;}
.form-tag .checkbox:nth-child(3) {animation-delay: 0.6s;}
.form-tag .checkbox:nth-child(4) {animation-delay: 0.8s;}
.form-tag .checkbox:nth-child(5) {animation-delay: 1s;}
.form-tag .checkbox:nth-child(6) {animation-delay: 1.2s;}
.form-tag .checkbox:nth-child(7) {animation-delay: 1.4s;}
.form-tag .checkbox:nth-child(8) {animation-delay: 1.6s;}
.checkbox input {display: none;}
.checkbox .input {
	min-height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #151B2F;
	background: #fff;
	border-radius: 39px;
	border: 2px solid rgba(220, 189, 125, .14);
	box-shadow: 0px 6.35158px 38.1095px rgba(38, 45, 118, 0.08);
	transition: all 0.3s;
	cursor: pointer;
}
.checkbox .input p {
	font-size: 19.34px;
	font-weight: normal;
}
.checkbox input:checked + .input {
	border-color: rgba(220, 189, 125, .64);
}
.checkbox input:checked + .input p {
	text-shadow: 
        -0.5px -0.5px 0 rgba(220, 189, 125, 0.64),
        0.5px -0.5px 0 rgba(220, 189, 125, 0.64),
        -0.5px 0.5px 0 rgba(220, 189, 125, 0.64),
        0.5px 0.5px 0 rgba(220, 189, 125, 0.64);
}
.checkbox:hover .input {
	text-shadow: 
        -0.5px -0.5px 0 rgba(220, 189, 125, 0.64),
        0.5px -0.5px 0 rgba(220, 189, 125, 0.64),
        -0.5px 0.5px 0 rgba(220, 189, 125, 0.64),
        0.5px 0.5px 0 rgba(220, 189, 125, 0.64);
}

@media (max-width: 1600px) {
	.main-title p {font-size: 14px;}
	.main-title h2 {font-size: 60px;}

	.prescription .form-tag {max-width: 800px;}
	.checkbox .input {min-height: 53px;}
	.checkbox .input p {font-size: 16px;}
}

@media (max-width: 1200px) {
	.main-title h2 {font-size: 50px;}
	.prescription .form-tag {max-width: 700px;}
	.checkbox .input {min-height: 49px;}
	.checkbox .input p {font-size: 15px;}
}

@media (max-width: 991px) {
	.main-title h2 {font-size: 40px;}
	.prescription {padding: 35px 0 50px 0;}
	.prescription .form-tag {max-width: 600px;}
	.checkbox .input p {font-size: 13px;}
}

@media (max-width: 550px) {
	.prescription {padding: 50px 0 0;}
	.prescription:after {
		width: 550px;
        height: 1095px;
        background: linear-gradient(0, #fff 60%, transparent), url(/assets/home-page-3/img/lines/line-mob-2.svg);
        background-size: 100% 300px, 550px;
        background-repeat: no-repeat;
        background-position: bottom, right top;
        top: -170px;
	}

	.main-title p {
		font-size: 16px;
		margin-top: 6px;
	}
	.main-title h2 {
		font-size: 32px;
		margin-top: 10px;
		line-height: 1.2;
	}

	.prescription .form-tag {
		grid-template-columns: 1fr 1fr;
		gap: 18px 8px;
	}
	.checkbox .input {min-height: 50px;}
	.checkbox .input p {
		font-size: 18px;
	    -webkit-font-smoothing: auto;
	}
}

@media (max-width: 414px) {
	.prescription:after {
		width: 414px;
        background-size: 100% 300px, 414px;
        background-position: left bottom 200px, right top;
        top: -60px;
	}

	.main-title h2 {font-size: 27px;}
	.main-title p {font-size: 14px;}
}

/* ------------------ PRESCRIPTION SLIDER ------------------ */
.prescription-slider {
	position: relative;
	z-index: 2;
	padding-top: 77px;
}
/*.prescription-slider .splide__track {padding-left: 15px !important;}*/

.slide-enter {
    animation: slide-enter 0.3s linear;
}

@keyframes slide-enter {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.prescription-slider .slide {
	padding: 3px 0;
	position: relative;
	transition: all 0.3s;
}
.prescription-slider .splide__slide {transition: all 0.3s;}
.prescription-slider .splide__slide.active img {border: 3px solid var(--c-gold);}
.prescription-slider .slide > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 21px;
	transition: all 0.3s;
}
.prescription-slider .slide:hover {transform: scale(1.01);}
.prescription-slider .content {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	padding: 30px 20px 25px 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.prescription-slider .adventage {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	border-radius: 88px;
	background: rgba(237, 237, 237, .87);
	padding: 0 22px;
	color: var(--color);
	font-size: 18.65px;
	font-weight: normal;
	text-align: center;
}
.prescription-slider .foot {margin-top: auto;}
.prescription-slider h4 {
	font-weight: 500;
	font-size: 31px;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 20px;
}
.prescription-slider a {
	font-size: 16.52px;
	padding: 0 17.5px;
	min-height: 45px;
}

@media (max-width: 1600px) {
	.prescription-slider .adventage {
		min-height: 28px;
		padding: 0 15px;
		font-size: 14px;
	}
	.prescription-slider h4 {
		font-size: 25px;
		margin-bottom: 15px;
	}
	.prescription-slider a {
		font-size: 14px;
		padding: 0 15px;
	}
}

@media (max-width: 1200px) {
	.prescription-slider .content {padding: 20px 15px 20px 15px;}
	.prescription-slider .adventage {
	    min-height: 25px;
	    padding: 0 11px;
	    font-size: 12px;
	}
	.prescription-slider h4 {font-size: 20px;}
}

@media (max-width: 991px) {
	.prescription-slider a {
		font-size: 13px;
		padding: 0 13px;
		min-height: 40px;
	}
}

@media (max-width: 550px) {
	.prescription-slider {padding-top: 55px;}
	.prescription-slider .slide {border-radius: 15px;}
	.prescription-slider h4 {
	    font-size: 20px;
	    margin-bottom: 25px;
	}
	.prescription-slider a {
		font-size: 16px;
	    padding: 0 20px;
	    min-height: 37px;
	}
	.prescription-slider .splide__slide {padding: 0 10px;}
}


.brand-slider {
	padding: 70px 0 30px 0;
	text-align: center;
	position: relative;
	z-index: 2;
    line-height:1;
}
.brand-slider:before {
	content: '';
	display: block;
	width: 1101px;
	height: 100px;
	background: url(../img/bg-dots.png) no-repeat center;
	opacity: 0.4;
	position: absolute;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
}
.brand-slider h5 {
	font-size: 22px;
	font-weight: 500;
	color: #A9A9A9;
}
.brand-slider h5 b {font-weight: bold;}
.brand-slider .splide {
    margin-top: 10px;
    line-height:1;
}
.brand-slider .splide:not(.is-active) ul {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 20px;
    line-height:1;
}
.brand-slider li{
    display: flex;
    align-items: center;
}
.brand-slider .splide img {
    opacity: 0.4;
}
.brand-slider .splide .img-one {max-width: 126px;}
.brand-slider .splide .img-two {max-width: 80px;}
.brand-slider .splide .img-three {max-width: 109px;}
.brand-slider .splide .img-four {max-width: 146px;}
.brand-slider .splide .img-five {max-width: 123px;}
.brand-slider .splide .img-sex {max-width: 128px;}
.brand-slider .splide .img-seven {max-width: 50px;}
.brand-slider .splide .img-eight {max-width: 100px;}

@media (max-width: 1600px) {
	.brand-slider {
	    padding: 60px 0 15px 0;
	    text-align: center;
	}
	.brand-slider:before {top: 70px;}
	.brand-slider h5 {font-size: 19px;}
}

@media (max-width: 1200px) {
	.brand-slider {padding: 30px 0 0 0;}
	.brand-slider .splide img {
	    max-height: 23px;
	    object-fit: contain;
	}
}

@media (max-width: 500px) {
	.brand-slider {padding: 40px 0 0 0;margin-bottom:30px;}
	.brand-slider .splide img {max-height: 35px;}
	.brand-slider h5 {font-size: 4vw}
}


/* ------------------ LOGOS ------------------ */
.logos-slider {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	opacity: 0.4;
	padding: 20px 0 35px 0;
	margin-top: 50px;
}
.logos-slider:after {
	content: '';
	display: block;
	width: 1101px;
	height: 100px;
	background: url(/assets/home-page-3/img/logos/dots.png) no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
}
.logos-slider .splide.is-initialized:not(.is-active) .splide__list {
	display: flex;
    align-items: center;
    justify-content: center;
	gap: 20px;
}

@media (max-width: 767px) {
	.logos-slider {margin-top: 25px;}
	.logos-slider .splide {
		z-index: 10;
		position: relative;
	}
	.logos-slider .splide__slide {text-align: center;}
    .logos-slider .splide.is-initialized .splide__list {
        align-items: center;
        gap:10px;
    }
}
.brand-slider h3{
    color:#A9A9A9;
}
@media (max-width: 550px) {
	.logos-slider {
		flex-direction: column;
		margin-top: 20px;
	}
	.brand-slider h3 {
		font-weight: normal;
		font-smoothing: auto;
		-webkit-font-smoothing: auto;
		margin-bottom: 25px;
	}
	.brand-slider h3 strong {font-weight: bold;}
}

/* ------------------ REVIEWS SLIDER ------------------ */
.reviews-slider-first {margin-top: -80px;}
.reviews-slider .splide {
	position: relative;
	z-index: 2;
}
.reviews-slider .splide__track {padding: 80px 0 115px 0;}
.reviews-slider .inner {
	background: #fff;
	border-radius: 11px;
	box-shadow: 0 10px 60px rgba(38,45,118,.08);
	padding: 25px;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.reviews-slider .star {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}
.reviews-slider p {
	font-size: 13px;
	line-height: 1.5;
	font-family: var(--greycliff);
}
.reviews-slider p strong {font-weight: 600;}
.reviews-slider .inner > p {margin-bottom: 10px;}
.reviews-slider .foot {
	margin-top: auto;
	font-size: 13px;
	font-family: var(--greycliff);
	min-height: 50px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.reviews-slider .foot p:last-child {color: rgba(9,62,82,.52);}

@media (max-width: 1600px) {
	.reviews-slider .inner {padding: 18px;}
	.reviews-slider .star {margin-bottom: 10px;}
	.reviews-slider .foot {margin-top: auto;}
}

@media (max-width: 767px) {
	.reviews-slider-first {margin-top: -50px;}
	.reviews-slider .splide__track {padding: 45px 0 95px 0;}
}

@media (max-width: 550px) {
	.reviews-slider-first {
		margin-top: -45px;
		position: relative;
	}
	.reviews-slider-first:before {
		content: '';
	    display: block;
	    width: 550px;
	    height: 1011px;
	    background: url(/assets/home-page-3/img/lines/line-mob-3.svg) no-repeat;
	    background-size: 550px;
	    position: absolute;
	    top: -172px;
	    left: 0;
	    z-index: -1;
	}

	.reviews-slider .inner {padding: 25px;}
	.reviews-slider .star {gap: 3px;}
	.reviews-slider .star svg {
		width: 26px;
		height: 26px;
	}
	.reviews-slider p {font-size: 17px;}
	.reviews-slider .foot {font-size: 13px;}

	.reviews-slider-second {
		margin-top: 20px;
		position: relative;
	}
	.reviews-slider-second:after {
		content: '';
	    display: block;
	    width: 640px;
	    height: 1011px;
	    background: url(/assets/home-page-3/img/lines/line-mob-6.svg) no-repeat;
	    position: absolute;
	    left: 0;
	    bottom: 100%;
	    z-index: -2;
	    margin-bottom: -300px;
	}
}

@media (max-width: 414px) {
	.reviews-slider-first:before {
	    width: 414px;
	    height: 1011px;
	    background-size: 414px;
	    top: -165px;
	}

	.reviews-slider-second:after {
		width: 414px;
	    height: 770px;
	    background-size: 414px;
	    margin-bottom: -325px;
	}
}

/* ------------------ ADVENTAGES SLIDER ------------------ */
.adventages-slider {margin-top: -73px;}
.adventages-slider .main-title p {margin-top: 5px;}
.adventages-slider .main-title h2 {margin-top: 15px;}
.adventages-slider .splide {margin-top: 35px;}
.adventages-slider .splide {
	position: relative;
	z-index: 2;
}
.adventages-slider .splide__track {padding-left: 15px !important;}
.adventages-slider .splide__track {padding: 10px 0;}
.adventages-slider .inner {
	position: relative;
	height: 100%;
	display: block;
}
.adventages-slider .image {
	height: 100%;
	display: flex;
	border-radius: 36px;
	overflow: hidden;
	transition: all 0.3s;
}
.adventages-slider .inner:hover .image {
	transform: scale(1.02);
}
.adventages-slider .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.adventages-slider .content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 50px 0 50px 35px;
	color: #fff;
	-webkit-font-smoothing: antialiased;
}
.adventages-slider .content h5 {
	font-size: 19px;
	font-weight: 600;
	color: #DCBD7D;
}
.adventages-slider .content h3 {
	font-size: 33px;
	font-weight: 600;
	line-height: 1;
	margin-top: 25px;
	margin-bottom: 20px;
}
.adventages-slider .content p {
	font-size: 24px;
	font-weight: normal;
}
.adventages-slider .content button {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #0A1C2B;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 25px;
	bottom: 15px;
	gap: 10px;
	transition: all 0.3s;
	cursor: pointer;
}
.adventages-slider .content button:hover {
	background: #25f097;
	width: 130px;
	border-radius: 30px;
}
.adventages-slider .content button span {
	display: none;
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	white-space: nowrap;
	position: relative;
	top: 1px;
	opacity: 0;
}
.adventages-slider .content button:hover span {
	display: block;
	animation: opacity 0.3s 0.1s forwards;
}

@media (max-width: 1800px) {
	.adventages-slider .content h5 {font-size: 14px;}
	.adventages-slider .content h3 {font-size: 28px;}
	.adventages-slider .content p {font-size: 19px;}
}

@media (max-width: 1600px) {
	.adventages-slider .image {border-radius: 25px;}
	.adventages-slider .content {padding: 35px 0 35px 20px;}
	.adventages-slider .content h5 {font-size: 14px;}
	.adventages-slider .content h3 {
	    font-size: 20px;
	    line-height: 1;
	    margin-top: 15px;
	    margin-bottom: 15px;
	}
	.adventages-slider .content p {font-size: 16px;}
	.adventages-slider .content a {
		width: 40px;
		height: 40px;
		right: 20px;
		bottom: 15px;
	}
}

@media (max-width: 1200px) {
	.adventages-slider .content {padding: 25px 0 20px 20px;}
	.adventages-slider .content h5 {font-size: 13px;}
	.adventages-slider .content h3 {font-size: 15px;}
	.adventages-slider .content p {font-size: 14px;}
}

@media (max-width: 991px) {
	.adventages-slider .splide {padding-left: 0;}
}

@media (max-width: 550px) {
	.adventages-slider {
		position: relative;
		z-index: 90;
		margin-top: -30px;
	}
	.adventages-slider .main-title p {font-size: 16px;}
	.adventages-slider .main-title h2 {font-size: 32px;}
	.adventages-slider .splide {
		padding-left: 15px;
		margin-top: 20px;
	}
	.adventages-slider .splide__track {padding-left: 0 !important;}
	.adventages-slider .content {padding: 35px 15px 20px 20px;}
	.adventages-slider .content h5 {font-size: 16.5px;}
	.adventages-slider .content h3 {font-size: 25px;}
	.adventages-slider .content p {
		font-size: 18px;
		-webkit-font-smoothing: auto;
		font-smoothing: auto;
	}
}

@media (max-width: 413px) {
	.adventages-slider .main-title p {font-size: 15px;}
	.adventages-slider .main-title h2 {font-size: 29px;}
	.adventages-slider .splide {margin-top: 13px;}
	.adventages-slider .content h5 {font-size: 14px;}
	.adventages-slider .content h3 {font-size: 21px;}
	.adventages-slider .content p {font-size: 16px;}
}

/* ------------------ SECTION BANNER ------------------ */
.section-banner {
	position: relative;
	padding-top: 70px;
}
.section-banner:after {
	content: '';
	display: block;
	width: 1920px;
	height: 3449px;
	background: url(/assets/home-page-3/img/lines/line-2.svg);
	position: absolute;
	top: -970px;
	right: 0;
	z-index: -1;
}
.section-banner .main-title p {margin-top: 5px;}
.section-banner .main-title h2 {margin-top: 15px;}
.section-banner .center {
	min-height: 758px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 20px 20px 20px 100px;
	position: relative;
/*	background: url(/assets/home-page-3/img/bg-section-banner.jpg) no-repeat right center;*/
/*	background-size: cover;*/
	border-radius: 50px;
	z-index: 2;
	margin-top: 40px;
	-webkit-font-smoothing: antialiased;
}
.section-banner .center > video {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
	border-radius: 50px;
}
.section-banner .dots {
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: 100%;
    right: 100%;
    overflow: hidden;
    margin-bottom: -145px;
    margin-right: -70px;
}
.section-banner .logo {
	position: absolute;
	right: 35px;
	bottom: 40px;
	position: absolute;
	top: 70px;
	left: 100px;
}
.section-banner .center h4 {
	color: #D6AD60;
	font-weight: 600;
	font-size: 28px;
}
.section-banner .center h3 {
	color: #fff;
	font-size: 48px;
	font-weight: normal;
	line-height: 1.3;
	margin-bottom: 30px;
	margin-top: 30px;
}
.section-banner .center p {
	font-size: 29px;
	font-weight: normal;
	color: #fff;
	margin-bottom: 45px;
	z-index: 1;
}

.section-banner .video-mobile {
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translateY(-50%);
}

.video-mobile {
	position: relative;
	width: 320px;
	height: 645px;
}
.video-mobile img {
	position: relative;
	z-index: 2;
}
.video-mobile video {
	position: absolute;
	top: 15px;
	left: 14px;
	right: 0;
	bottom: 5px;
	z-index: 1;
	width: 100%;
	max-width: 290px;
	object-fit: cover;
	object-position: center;
	border-radius: 35px;
}

@media (max-width: 1700px) {
	.section-banner:after {top: -750px;}
}

@media (max-width: 1600px) {
	.section-banner .center {
		min-height: 550px;
		max-width: 1170px;
		padding: 20px 20px 20px 90px;
		border-radius: 35px;
	}
	.section-banner .center > video {border-radius: 35px;}
	.section-banner .center h4 {font-size: 18px;}
	.section-banner .center h3 {
	    font-size: 30px;
	    line-height: 1.25;
	    margin-bottom: 25px;
	    margin-top: 15px;
	}
	.section-banner .center p {
		font-size: 18px;
	    margin-bottom: 35px;
	}
	.section-banner .logo {
	    position: absolute;
	    top: 50px;
	    left: 90px;
	}

	.section-banner .dots {
		width: 250px;
		height: 250px;
		margin-bottom: -115px;
    	margin-right: -60px;
	}

	.video-mobile {
	    width: 235px;
	    height: 478px;
	}
	.video-mobile video {
	    top: 12px;
	    left: 11px;
	    right: 0px;
	    bottom: 5px;
	    max-width: 212px;
	    object-fit: cover;
	    object-position: center;
	    border-radius: 25px;
	}
}

@media (max-width: 1200px) {
	.section-banner {padding-top: 50px;}

	.section-banner .center h4 {font-size: 15px;}
	.section-banner .center h3 {
	    font-size: 25px;
	    line-height: 1.25;
	    margin-bottom: 25px;
	    margin-top: 10px;
	}
	.section-banner .center {
	    min-height: 400px;
	    max-width: 800px;
	    padding: 20px 20px 20px 30px;
	    position: relative;
	}

	.section-banner .logo {
		top: 30px;
		left: 30px;
	}

	.section-banner .dots {
		width: 150px;
		height: 150px;
		margin-bottom: -75px;
		margin-right: -23px;
	}

	.section-banner .video-mobile {right: 35px;}

	.video-mobile {
	    width: 165px;
        height: 335px;
	}
	.video-mobile video {
	    top: 8px;
	    left: 7px;
	    right: 0px;
	    bottom: 5px;
	    max-width: 150px;
	    border-radius: 15px;
	}
}

@media (max-width: 991px) {
	.section-banner {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 767px) {
	.section-banner {padding-top: 30px;}
	.section-banner .center {
		margin-top: 30px;
		padding: 20px 20px 20px 20px;
		min-height: 360px;
		border-radius: 25px;
	}
	.section-banner .center > video {border-radius: 25px;}
	.section-banner .dots {display: none;}
	.section-banner .logo {
		top: 20px;
		left: 20px;
	}
	.section-banner .center h4 {font-size: 13px;}
	.section-banner .center h3 {
	    font-size: 18px;
	    margin-bottom: 20px;
	    margin-top: 15px;
	}
	.section-banner .center p {
	    font-size: 13px;
	    margin-bottom: 25px;
	}
	.section-banner .video-mobile {
		width: 150px;
		height: 305px;
		right: 20px;
	}
	.video-mobile video {max-width: 135px;}
}

@media (max-width: 550px) {
	.section-banner {
		padding-left: 15px;
		padding-right: 15px;
		z-index: 3;
	}
	.section-banner .main-title h2 {font-size: 37px;}
	.section-banner:after {
		width: 550px;
		height: 1902px;
		background: url(/assets/home-page-3/img/lines/line-mob-4.svg) no-repeat;
		background-size: 550px;
		top: -898px;
		left: 0;
		z-index: -1;
	}
	.section-banner .center {
	    max-width: inherit;
	    border-radius: 13px;
		background: url(/assets/home-page-3/img/bg-banner-section-mob.jpg) no-repeat right center;
		background-size: cover;
		justify-content: start;
		padding: 100px 15px 40px 15px;
	}
	.section-banner .center > video {border-radius: 13px;}
	.section-banner .logo {left: 15px;}
	.section-banner .logo svg {
	    width: 80px;
	    height: 20px;
	}
	.section-banner .center h4 {
	    font-size: 18px;
	    margin-top: 0;
	}
	.section-banner .center h3 {
	    font-size: 24px;
	    margin-top: 10px;
	}
	.section-banner .center p {
		font-size: 19px;
		margin-bottom: 100px;
	}
	.section-banner .btn {
		max-width: 250px;
		width: 100%;
		border-radius: 10px;
		margin: 0 auto;
	}
	.section-banner .video-mobile {display: none;}
}

@media (max-width: 414px) {
	.section-banner:after {
	    width: 414px;
	    height: 1000px;
	    background-size: 414px;
	    top: -680px;
	}
}

@media (max-width: 413px) {
	.section-banner .center h4 {font-size: 16px;}
	.section-banner .center h3 {font-size: 21px;}
	.section-banner .center p {font-size: 17px;}
}

/* ------------------ FAQ ------------------ */
.faq {
	padding-top: 65px;
	position: relative;
}
.faq .accordeon {margin-top: 45px;}

.accordeon {list-style: none;}
.btn-accordeon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 26px;
	font-size: 24px;
	cursor: pointer;
}
.btn-accordeon:hover {color: #4d4d4d;}
.plus {
	width: 16px;
	min-width: 16px;
	height: 16px;
	display: inline-block;
	position: relative;
}
.plus:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #cdb179;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	transition: all 0.3s;
}
.plus:before {
	content: '';
	display: block;
	height: 100%;
	width: 2px;
	background: #cdb179;
	position: absolute;
	left: 50%;
	margin-left: -1px;
	transition: all 0.3s;
}
.item-accordeon {
	border-radius: 10px;
	border: 1px solid #E3E3E3;
	background: #fff;
}
.item-accordeon + .item-accordeon {margin-top: 23px;}

.item-accordeon.active .btn-accordeon .plus:after {
	transform-origin: center;
	transform: rotate(45deg);
}

.item-accordeon.active .btn-accordeon .plus:before {
	transform-origin: center;
	transform: rotate(45deg);
}
.inner-accordeon {
	padding: 0 23px 35px 23px;
	margin: 0 !important;
}
.inner-accordeon ul {
	list-style: none;
	font-size: 18px;
}
.inner-accordeon p {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 300;
}
.inner-accordeon a {
	color: #0F5C78;
	text-decoration: underline;
}
.inner-accordeon a:hover {text-decoration: none;}
.inner-accordeon p + p {margin-top: 20px;}
.inner-accordeon ul strong {font-weight: 600;}
.inner-accordeon ul li + li {margin-top: 35px;}
.inner-accordeon ul li {
	padding-left: 15px;
	position: relative;
}
.inner-accordeon ul li:before {
	content: '';
	display: block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	position: absolute;
	top: 11px;
	left: 0;
	background: #091938;
}
.content-accordeon {
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease;
} 

@media (max-width: 1600px) { 
	.btn-accordeon {font-size: 20px;}
}

@media (max-width: 1500px) {
	.btn-accordeon {
		padding: 18px;
		font-size: 20px;
	}
	.item-accordeon + .item-accordeon {margin-top: 15px;}
	.inner-accordeon ul {font-size: 16px;}
	.inner-accordeon ul li + li {margin-top: 20px;}
}

@media (max-width: 1200px) {
	.faq .center {max-width: 830px;}
}

@media (max-width: 991px) {
	.btn-accordeon {
	    padding: 15px;
	    font-size: 16px;
	}
	.inner-accordeon {padding: 0 15px 35px 15px;}
	.inner-accordeon p {font-size: 16px;}
}

@media (max-width: 767px) {
	.faq {padding-top: 30px;}
	.faq .accordeon {margin-top: 30px;}
	.btn-accordeon {
	    padding: 15px 18px;
	    font-size: 15px;
	}
	.item-accordeon {border-radius: 7px;}
	.inner-accordeon ul li + li {margin-top: 25px;}
	.inner-accordeon ul li,
	.inner-accordeon p {font-size: 15px;}

	.plus {
		width: 13px;
		min-width: 13px;
		height: 13px;
        margin-left:6px;
	}
    div.btn-accordeon > span {
        padding-right:4px;
    }
}

@media (max-width: 550px) {
	.faq {padding-top: 40px;}
	.faq:before {
		content: '';
		display: block;
		width: 640px;
		height: 1011px;
		background: url(/assets/home-page-3/img/lines/line-mob-5.svg) no-repeat;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.faq .accordeon {margin-top: 20px;}
	.btn-accordeon {
	    padding: 15px 13px;
	    font-size: 15px;
	}
}

@media (max-width: 414px) {
	.faq:before {
		width: 414px;
		background-size: 414px;
		top: -270px;
	}
}

/* ------------------ THERAPY ------------------ */
.therapy {
	padding-bottom: 88px;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
}
.therapy:after {
	content: '';
	display: block;
	width: 1920px;
	height: 1920px;
	background: url(/assets/home-page-3/img/lines/line-3.svg) no-repeat;
	position: absolute;
	top: -340px;
	right: 0;
	z-index: -1;
}
.therapy .center {
	border-radius: 35px;
	overflow: hidden;
	background: url(/assets/home-page-3/img/bg-therapy.jpg?1) no-repeat right bottom;
	background-size: cover;
	min-height: 789px;
	display: flex;
	gap: 25px;
	padding-left: 60px;
	max-width: 1653px;
}
.therapy .image {
	margin-top: auto;
	line-height: 0;
}
.therapy .content {
	padding-top: 140px;
	color: #fff;
}
.therapy .content h5 {
	font-size: 18.65px;
	font-weight: normal;
	letter-spacing: 1px;
}
.therapy .content h3 {
	font-size: 70px;
	line-height: 1.1;
	font-weight: normal;
	margin-top: 20px;
}
.therapy .content p {
	font-size: 22px;
	font-weight: normal;
	line-height: 1.7;
	margin-top: 20px;
}
.therapy .content .btn {
	margin-top: 35px;
	min-width: 220px;
	background: #fff;
}

@media (max-width: 1700px) {
	.therapy .center {max-width: 1465px;}
}

@media (max-width: 1600px) {
	.therapy .center {
        max-width: 1350px;
        min-height: 650px;
        padding-left: 40px;
    }
    .therapy .image {max-width: 360px;}
    .therapy .content {padding-top: 110px;}
    .therapy .content h5 {font-size: 13px;}
    .therapy .content h3 {font-size: 55px;}
    .therapy .content p {font-size: 19px;}
    .therapy .content .btn {min-width: 220px;}
}

@media (max-width: 1200px) {
	.therapy .center {
		min-height: 450px;
		padding-left: 25px;
	}
	.therapy .image {max-width: 245px;}
	.therapy .content {padding-top: 60px;}
	.therapy .content h5 {font-size: 11px;}
	.therapy .content h3 {font-size: 48px;}
	.therapy .content p {font-size: 17px;}
}

@media (max-width: 991px) {
	.therapy {
		margin-top: -50px;
		padding-bottom: 65px;
	}
	.therapy .center {
	    min-height: 360px;
	    padding-left: 15px;
	    gap: 15px;
	}
	.therapy .image {max-width: 200px;}
	.therapy .content h5 {font-size: 10px;}
	.therapy .content h3 {font-size: 35px;}
	.therapy .content p {
		font-size: 14px;
		margin-top: 15px;
	}
	.therapy .content .btn {
		min-width: 175px;
		margin-top: 25px;
	}
}

@media (max-width: 767px) {
	.therapy {padding-bottom: 50px;}
	.therapy .center {
	    min-height: 270px;
	    padding-left: 10px;
	    gap: 10px;
	}
	.therapy .image {max-width: 150px;}
	.therapy .content {padding-top: 30px;}
	.therapy .content h5 {font-size: 8px;}
	.therapy .content h3 {
	    font-size: 25px;
	    margin-top: 15px;
	}
	.therapy .content p {
	    font-size: 12px;
	    margin-top: 10px;
	}
	.therapy .content .btn {
	    min-width: 155px;
	    margin-top: 20px;
	}
}

@media (max-width: 550px) {
	.therapy .center {
		background: url(/assets/home-page-3/img/bg-therapy-mob.jpg?1) no-repeat right bottom;
		background-size: cover;
		border-radius: 15px;
		min-height: 565px;
		padding: 20px;
	}
	.therapy .image {display: none;}
	.therapy .content {padding-top: 0;}
	.therapy .content h5 {
	    font-size: 14px;
	    -webkit-font-smoothing: auto;
	}
	.therapy .content h3 {
	    font-size: 42px;
	    margin-top: 10px;
	    line-height: 1;
	}
	.therapy .content p {
	    font-size: 13px;
	    line-height: 1.2;
	    margin-top: 25px;
	    padding-left: 170px;
	}
	.therapy .content p br {display: none;}
	.therapy .content .btn {
		min-width: 150px;
	    margin-top: 20px;
	    float: right;
	    margin-right: 28px;
	}
}

@media (max-width: 414px) {
	.therapy .content p {
		font-size: 12px;
		padding-left: 146px;
	}
	.therapy .content .btn {margin-right: 29px;}
}

@media (max-width: 413px) {
	.therapy .content h3 {font-size: 39px;}
	.therapy .content p {padding-left: 140px;}
}

@media (max-width: 413px) {
	.therapy .content p {padding-left: 130px;}
}

@media (max-width: 385px) {
	.therapy .content p {padding-left: 110px;}
}

/* POPUP
-------------------------------------- */
.popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background: rgba(0,0,0,.8);
    z-index: 999;
    display: none;
}
.popup-overlay.active {
    display: block;
    animation: opacity 0.5s forwards;
}

@keyframes opacity {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.popup {
	position: fixed;
	top: 10vh;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9991;
	opacity: 0;
	transition: opacity 0.5s 0.5s;
	background: #fff;
	display: none;
	max-height: 90vh;
    height: auto;
    max-height: 70vh;
}
.popup.active {
	display: block;
	animation: opacity 0.5s forwards;
}
.popup.popup-category.active{
    height:100vh;
    max-height:100vh;
}
.popup-more .inner {
	padding: 50px 35px 15px 35px;
}
.popup-more p + p {
	margin-top: 15px;
}
.popup-more p small {
	font-size: 12px;
}
.popup .foot {
	padding: 15px;
	border-top: 1px solid #e9ecef;
}
.popup .foot .popup-close {
    padding: 15px 45px;
    background: #b21f24;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    transition: all .2s linear;
}
.popup .foot .popup-close:hover {background-color: #88171b;}

.popup-info {
    background: #fff;
    max-width: 80%;
    width: 100%;
}
.popup .head .popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:9000;
    background:transparent;
}
.popup .head .popup-close svg {
    fill: #fff;
    width: 25px;
    height: 25px;
}
.popup .head .popup-close:hover {
    background: #a10e20;
    border-color: #a10e20;
    transform: scale(0.95);
}
.popup-info .c-red,
.popup-info a.c-red  {color: #c60202;}
.modal-header {overflow: hidden;}
.modal-title {
    background: #151b2f;
    padding: 20px 60px 20px 30px;
    font-size: 24px;
    line-height:1.5;
    color: #fff;
    min-height: 65px;
    margin-right: -2px;
    margin-left: -2px;
}
.popup .wrap {
    padding: 30px;
    background: #fff;
}
.popup .wrap a {color: var(--akcent);}
.popup .wrap .btn {
	background: var(--akcent);
	text-transform: uppercase;
	color: #fff;
}
.popup .wrap h4 {margin: 30px 0;}
.popup .wrap h5 {
    font-size: 25px;
    line-height: 30px;
    padding: 20px 0 20px 0;
    margin-top: 30px;
}
.popup .wrap h4 {
    font-size: 35px;
}
.popup .wrap h3 {
    font-size: 45px;
    line-height: 50px;
    margin-top: 50px;
}
.popup .wrap ul {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 25px;
}
.popup .wrap ul li + li {margin-top: 10px;}
.popup .wrap ul li {
    position: relative;
    padding-left: 25px;
}
.popup .wrap ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #151a29;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 13px;
}

.popup .wrap .accordeon {margin-left: 0;}
.popup .wrap .item-accordeon {padding-left: 0;}
.popup .wrap .item-accordeon:before {display: none;}

.popup-video .head .popup-close {
    top: -40px;
    right: -40px;
}
.popup-video .inner {
	width: 800px;
	height: 450px;
}
.popup-video .inner iframe,
.popup-video .inner video {
	width: 100%;
	height: 100%;
	display: block;
}

div.popup.popup-info.active .drug-modal-header{
    max-height:80vh !important;
}
.popup-info .modal-header .wrap {
    height:60vh;
	max-height:60vh;
	overflow-y: auto;
}

.text-danger {
    color: #C70003 !important;
}

@media (max-width: 760px) {
	.popup .wrap {padding: 20px;}
	.popup-info {max-width: 90%;}
	.modal-title {
		font-size: 20px;
		line-height: 1.3;
	}
	.popup .wrap h5:first-child {margin-top: 0;}
	.popup .wrap h5 {
		font-size: 20px;
		margin-top: 0;
		padding: 15px 0 15px 0;
	}
	.popup .wrap h4 {
		font-size: 25px;
		margin: 20px 0;
	}
	.popup .wrap ul {
	    margin-top: 15px;
	    margin-left: 0;
	}
	.popup .wrap p + p,
	.popup .wrap ul + p {margin-top: 15px;}
	.popup .wrap ul li {padding-left: 17px;}
	.popup .wrap ul li:before {margin-top: 5px;}

	.mb0 {margin-bottom: 0 !important;}
    .toaster{
        display:none !important;
    }
}

/* ANIMATION
-------------------------------------- */
.animated {
    opacity: 0;
    transition: opacity 500ms;
}

.animated.show {
    animation: fade-bottom 0.6s ease-in-out both;
}

@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.zindex9{
    z-index:9999 !Important;
}
.accordeon a{
    text-decoration:none;
    color:inherit;
}
@media (max-width: 500px) {
    .smooth-slider li{
        max-width:90%;
    }
}
