@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/greycliff-cf/GreycliffCF-Medium.woff2') format('woff2'),
        url('/fonts/greycliff-cf/GreycliffCF-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

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

:root {
	--c-font: #0A1C2B;
	--c-blue: #609AD9;
	--c-golden: #DCBD7D;
	--c-yellow: #FFBE60;
	--c-black: #0A1C2B;
	--c-black-blue: #121628;
	--c-gray: #EDEDED;
	--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.6 var(--campton);
	color: var(--c-font);
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

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

a {
	text-decoration: none;
	transition: all 0.3s;
	color: var(--c-font);
}

h2.title {
	font-size: 70px;
	line-height: 1.05;
	font-weight: 600;
}
h2.title span {color: #DCBD7D;}
@font-face {
    font-family: 'Root-Campton';
    src: url('/assets/fonts/Campton-Light.eot');
    src: url('/assets/fonts/Campton-Light.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/Campton-Light.woff2') format('woff2'),
        url('/assets/fonts/Campton-Light.woff') format('woff'),
        url('/assets/fonts/Campton-Light.ttf') format('truetype'),
        url('/assets/fonts/Campton-Light.svg#Campton-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
.before-subtitle {
	font-size: 17px;
	letter-spacing: 1px;
    font-family:'Root-Campton';
    font-weight:300;
    color: #0A1C2B;

    -webkit-font-smoothing: subpixel-antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}
.after-subtitle {font-size: 19px;}

.tx-c {text-align: center;}
.tx-l {text-align: left;}
.tx-r {text-align: right;}

#main {overflow: hidden;}

.center {
	max-width: 1540px;
	margin: 0 auto;
	padding: 0 15px;
}
.max-center {
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
}
.max-center:before,
.max-center:after {
	content: '';
	display: block;
	width: 100px;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: -1;
	display: none;
}
.max-center:before {
	left: 0;
	background: linear-gradient(to right, #fff, transparent);
}
.max-center:after {
	right: 0;
	background: linear-gradient(to left, #fff, transparent);
}

@media (min-width: 1920px) {
	.max-center:before,
	.max-center:after {display: block;}
}

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

[data-src="crown"] {
	display: inline-block;
	width: 85px;
	height: 60px;
	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;}
	.after-subtitle {font-size: 15px;}
	.before-subtitle {font-size: 13px;}
}

@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: 500px) {
	body {font-size: 15px;}

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

	h2.title {
		font-size: 33px;
		line-height: 1.2;
	}

	.before-subtitle {
	    font-size: 18px;
	    letter-spacing: 0;
	    font-weight: normal;
	}
}

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

/* ------------------ BUTTONS ------------------ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 59px;
	border-radius: 12.12px;
	padding: 0 23px;
	background: #23F197;
	color: var(--c-font);
	font-size: 16.52px;
	font-weight: normal;
	font-smoothing: auto;
	-webkit-font-smoothing: auto;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
	animation: shadow-pulse 3s infinite;
}
.btn:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: var(--akcent);
	transition: all 0.3s;
}
.btn span {
	position: relative;
}
.btn svg {
	width: 7.12px;
	height: 12.12px;
	position: relative;
	top: -0.5px;
	margin-left: 9px;
	fill: var(--c-font);
	transition: all 0.3s;
}
.btn:hover {color: #fff;}
.btn:hover svg {fill: #fff;}
.btn:hover:before {width: 100%;}
.btn:hover svg {transform: translateX(10px);}

@keyframes shadow-pulse {
    0% {box-shadow: 0 0 0 0 rgba(0, 0, 0, .8)}
    50% {box-shadow: 0 0 0 0 rgba(0, 0, 0, .2)}
    100% {box-shadow: 0 0 0 20px transparent}
}

.btn-text .btn {
	padding: 0 58px;
	margin-bottom: 20px;
	min-width: 330px;
}
.btn-text p {
	font-size: 16px;
	line-height: 1.4;
}
.btn-text p strong {font-weight: 500;}

.btn-fix {
	position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 99;
    padding: 10px;
    background: #fff;
    box-shadow: 0 -2px 5px rgba(0,0,0,.1);
    visibility: hidden;
    transition: all 0.3s;
}
.btn-fix.show {
	visibility: visible;
	bottom: 0;
}
.btn-fix .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #23f197;
	color: #051C3A;
	padding: 8px 10px 11px 10px;
	animation: shadow-pulse 3s infinite;
	border-radius: 10px;
	text-align: center;
}
.btn-fix .inner strong {
	font-weight: 500;
	font-size: 17.5px;
	line-height: 1.2;
	-webkit-font-smoothing: auto;
	font-smoothing: auto;
}
.btn-fix .inner span {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	margin-top: 3px;
}

@media (max-width: 1600px) {
	.btn {
		height: 55px;
		padding: 0 20px;
		font-size: 14px;
	}
	.btn svg {
		width: 6px;
		height: 11px;
		top: -0.5px;
		margin-left: 5px;
	}
	.btn-text p {font-size: 15px;}
}

@media (max-width: 1300px) {
	.btn {
		height: 55px;
		padding: 0 15px;
		font-size: 13px;
	}
	.btn svg {
		width: 5px;
		height: 10px;
		top: -0.5px;
		margin-left: 5px;
	}
	.btn-text .btn {padding: 0 50px;}
	.btn-text p {font-size: 14px;}
}

@media (max-width: 500px) {
	.btn {
		font-size: 17px;
		border-radius: 10px;
	}
	.btn svg {
	    width: 8px;
	    height: 13px;
	    margin-left: 10px;
	}
	.btn-text .btn {
		margin-bottom: 15px;
		padding: 0 30px;
	}
	.btn-text p {
	    font-size: 13px;
	    line-height: 1.6;
	}
}

@media (max-width: 413px) {
	.btn {
		font-size: 15px;
		padding: 0 15px;
	}
	.btn svg {
	    width: 7px;
	    height: 12px;
	    top: 0;
	}
}


/* ------------------ HOME ------------------ */
.home {
	position: relative;
	padding: 60px 0 70px;
}
.home .bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -2;
}
.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);
}

.home .btn-text {margin-top: 25px;}

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

	.home .buttons {margin-top: 20px;}
	.home .bg .icon-svg {width: 110%;}
}


@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: 1250px;
	    position: absolute;
	    left: 50%;
	    transform: translateX(-50%);
	}
}

@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:after {top: 20vw;}
}

@media (max-width: 550px) {
	.home {padding-top: 40px;}
}
@media (max-width: 760px) {
	.home:before {margin-bottom: -75px;}
	.home h1 {font-size: 30px;}
	.after-subtitle {font-size: 13px;}
}

@media (max-width: 500px) {
	.home .bg {top: 0}
	.home .bg .icon-svg {
	    width: inherit;
	    position: absolute;
	    left: initial;
	    right: 0;
	    transform: none;
	    min-width: 475px;
	}

	.home:after {
		width: 500px;
		height: 1011px;
		margin-top: -75px;
	    left: inherit;
	    right: 0;
	    transform: none;
	}
	.home h1 {
		font-size: 41px;
		line-height: 1.05;
		margin-bottom: 10px;
		margin-top: 15px;
	}
	.home .before-subtitle {
		font-size: 16px;
		line-height: 1;
		letter-spacing: 0;
	}
	.home .after-subtitle {
		font-weight: normal;
		font-size: 14px;
		line-height: 1.3;
		letter-spacing: 0;
	}
	.home .btn-text {margin-top: 20px;}
	.home .btn-text .btn {padding: 0 30px;}
}

@media (max-width: 450px) {
	.home [data-src="crown"] {
		width: 65px;
		height: 50px;
	}
}

@media (max-width: 413px) {
	.home .bg .icon-svg {width: 400px}
}

@media (max-width: 375px) {
	.home h1 {font-size: 38px;}
}

/* ------------------ HOME SLIDER ------------------ */
.home-slider .wrap {position: relative;}
.home-slider .splide__track {padding: 10px 0;}
.home-slider .wrap > img {
	height: 708px;
	object-fit: cover;
	transition: all 0.3s;
	border-radius: 30px;
}
.home-slider .wrap:hover > img {transform: scale(1.005);}
.home-slider .content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 98px 100px;
	color: #fff;
}
.home-slider .content.mini {padding: 55px 39px;}
.home-slider .trust {
	line-height: 1;
	margin-bottom: 19px;
}
.home-slider h3 {
	font-size: 45px;
	line-height: 1.3;
	font-weight: 600;
}
.home-slider h5 {
	color: var(--c-golden);
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 19.15px;
}
.home-slider h4 {
	font-size: 33px;
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: 30px;
}
.home-slider p {
	font-size: 24px;
	line-height: 1.2;
	margin-top: 20px;
}
.home-slider .mini p {font-size: 24px;}
.home-slider .mini p:last-child{
    position:absolute;
    bottom:20px;
    width:72%;
    font-size:14px;
}
@media (max-width: 1600px) {
    .home-slider .mini p:last-child{
        font-size:11px;
        width:62%;
        bottom:14px;
    }
}
@media (max-width: 760px) {
    .home-slider .mini p:last-child{
        font-size:11px;
        width:72%;
        bottom:14apx;
    }
}
.home-slider .mini p a {color: #fff;}

.home-slider .link {
	font-size: 24px;
	line-height: 1.3;
	display: inline-flex;
	align-items: center;
	color: #fff;
	margin-top: 45px;
}
.home-slider .link strong {font-weight: 500;}
.home-slider .mini .link {
	font-size: 24px;
	margin-top: 30px;
}
.home-slider .link svg {
	width: 22px;
	height: 18px;
	fill: #fff;
	margin-left: 12px;
	transition: all 0.3s;
}
.home-slider .link:hover svg {transform: translateX(10px);}

.home-slider .link-arr {
	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;
	position: absolute;
	right: 20px;
	bottom: 15px;
}
/*.home-slider .link-arr:hover {
	background: var(--akcent);
	width: 130px;
	border-radius: 30px;
}*/
.home-slider .link-arr span {
	display: none;
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	white-space: nowrap;
	position: relative;
	top: 1px;
	opacity: 0;
}
.home-slider .link-arr svg {fill: #fff;}
/*.home-slider .link-arr:hover span {
	display: block;
	animation: opacity 0.3s 0.1s forwards;
}*/

.home-slider .content ul {
	font-size: 24px;
	line-height: 1.3;
	font-weight: normal;
}
.home-slider .content ul li {
	position: relative;
	padding-left: 24px;
}
.home-slider .content ul li:after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	position: absolute;
	top: 14px;
	left: 0;
	background: #fff;
}

@media (max-width: 1600px) {
	.home-slider .content {padding: 80px 90px;}
	.home-slider .wrap > img {height: 595px;}
	.home-slider h3 {font-size: 40px;}
	.home-slider h4 {font-size: 30px;}
	.home-slider p {font-size: 20px;}
	.home-slider .mini p {font-size: 20px;}
	.home-slider .link {
		font-size: 20px;
		margin-top: 35px;
	}

	.home-slider .content.mini {
		padding: 45px 30px;
	}
	.home-slider h4 {font-size: 27px;}
	.home-slider .mini .link {font-size: 20px;}
	.home-slider .content ul {font-size: 20px;}
	.home-slider .content ul li:after {top: 10px;}
}

@media (max-width: 1200px) {
	.home-slider .content {padding: 30px 15px 30px 40px;}
	.home-slider .trust {
		margin-bottom: 15px;
		max-width: 200px;
	}
	.home-slider h3 {font-size: 30px;}
	.home-slider p {font-size: 14px;}
	.home-slider .link {
	    font-size: 12px;
	    margin-top: 25px;
	}
	.home-slider .link svg {
		width: 15px;
		height: 15px;
		margin-left: 10px;
	}
	.home-slider .wrap {border-radius: 20px;}
	.home-slider .wrap > img {height: 370px;}
	.home-slider h5 {
		margin-bottom: 10px;
	    font-size: 14px;
	}
	.home-slider h4 {
	    font-size: 17px;
	    margin-bottom: 8px;
	}
	.home-slider .content.mini {
		padding: 20px 20px;
	}
	.home-slider .mini p {
	    font-size: 14px;
	}
	.home-slider .mini p br {display: none;}
	.home-slider .mini .link {
	    font-size: 12px;
	   	margin-top: 11px;
	}
	.home-slider .mini .link svg {
		position: relative;
	}
	.home-slider .content ul {font-size: 14px;}
	.home-slider .content ul li {padding-left: 15px;}
	.home-slider .content ul li:after {
		width: 4px;
		height: 4px;
		top: 7px;
	}
}

@media (max-width: 760px) {
	.home-slider .wrap {
		height: 100%;
		border-radius: 25px;
	}
	.home-slider .wrap > img {
		height: 100%;
		width: 100%;
		object-fit: cover;
		max-height: 480px;
	}
	.home-slider .content {padding: 35px 20px !important;}
	.home-slider .trust {margin-bottom: 20px;}
	.home-slider h4 {font-size: 25px;}
	.home-slider h4 br {display: none;}
	.home-slider h3 {font-size: 28px;}
	.home-slider p {
		font-size: 18px;
		margin-top: 20px;
		line-height: 1.5;
	}
	.home-slider p br {display: none;}
	.home-slider .mini p {
		font-size: 20px;
		margin-top: 25px;
	}
	.home-slider .link {
	    margin-top: 25px;
	    font-weight: 500;
	    font-size: 18px;
	}
	.home-slider .mini .link {
		font-size: 18px;
		margin-top: 15px;
	}
	.home-slider .content ul {
        font-size: 18px;
        margin-top: 15px;
    }
    .home-slider .content ul li:after {top: 10px;}
}

@media (max-width: 500px) {
	.home-slider .second .wrap > img {
		content: url(../img/home-slider/slide-mob-1.webp);
	}
}

@media (max-width: 413px) {
	.home-slider h3 {font-size: 25px;}
	.home-slider h4 {font-size: 22px;}
	.home-slider .content {padding: 25px 25px !important;}
	.home-slider .content ul {font-size: 16px;}
	.home-slider .mini .link {font-size: 15px;}
	.home-slider p {font-size: 16px;}
	.home-slider .mini p {font-size: 16px;}
}

/* ------------------ BRAND SLIDER ------------------ */
.brand-slider {
	padding: 70px 0 30px 0;
	text-align: center;
	position: relative;
	z-index: 2;
}
.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;}
.brand-slider .splide:not(.is-active) ul {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.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;}
	.brand-slider .splide img {max-height: 35px;}
	.brand-slider h5 {font-size: 4vw}
}

/* ------------------ SLIDER PREPARATION ------------------ */
.slider-preparation .splide.is-initialized:not(.is-active) .splide__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 34px;
}
.slider-preparation {
	padding: 45px 15px 0 15px;
	position: relative;
}
.slider-preparation .bg-line {
	display: block;
	width: 1920px;
	height: 1415px;
	background: url(../img/bg-line.svg) no-repeat;
	position: absolute;
	top: -600px;
	left: 0;
	z-index: -2;
}
.slider-preparation .bg-line:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(0, transparent, #fff);
}
.slider-preparation .bg-line-2 {
	width: 1920px;
	height: 1415px;
	background: url(../img/bg-line-2.svg) no-repeat;
	position: absolute;
	top: -600px;
	left: 0;
	z-index: -3;
}
.slider-preparation .bg-line-2:after {
	content: '';
	display: block;
	height: 100px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0, #fff, transparent);
}
.slider-preparation .splide {
	max-width: 1515px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 2;
}

.slider-preparation .splide__slide {
	border-radius: 26px;
	border: 2px solid transparent;
	transition: all 0.3s;
}
.slider-preparation .splide__slide:hover {border-color: #cdb179;}
.slider-preparation .slide {
	background: #fff;
	border-radius: 25px;
	box-shadow: 0 10px 60px rgba(38, 45, 118, 0.08);
	overflow: hidden;
	height: 100%;
	min-width: 370px;
	display: flex;
	flex-direction: column;
	font-family: var(--greycliff);
}

.slider-preparation .slide-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 30px 30px 30px 35px;
	margin-bottom: 15px;
}
.slider-preparation .slide-head img {max-width: 48px;}
.slider-preparation .slide-head h3 {
	font-size: 24.88px;
	font-weight: 500;
	line-height: 1;
	color: rgba(10,28,43,.6);
}
.slider-preparation .slide-head h4 {
	font-weight: 500;
	font-size: 31.85px;
	line-height: 1;
	margin-top: 5px;
	color: #00698B;
}

.slider-preparation .slide-body {
	display: grid;
	grid-template-columns: 41% 59%;
	margin-top: auto;
	position: relative;
}
.slider-preparation .slide-body img {
	display: inline-block;
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	max-width: 210px;
}
.slider-preparation .splide-one .slide-body img {max-width: 150px;}
.slider-preparation .splide-three .slide-body img {max-width: 185px;}
.slider-preparation .splide-four .slide-body img {max-width: 170px;}
.slider-preparation .splide-five .slide-body img {max-width: 210px;}
.slider-preparation .splide-sex .slide-body img {max-width: 210px;}
.slider-preparation .slide-body:after {
	content: '';
	display: block;
	width: 220px;
	height: 222px;
	border-radius: 50%;
	background: rgba(155,204,233,.20);
	position: absolute;
	left: -70px;
	bottom: -70px;
	z-index: 1;
}
.slider-preparation .slide-body.blue:after {background: #C8F1F0;}
.slider-preparation .slide-body.green:after {background: rgba(98,165,70,0.24);}
.slider-preparation .slide-body.red:after {background: rgba(243,62,53,0.19);}
.slider-preparation .slide-body.violet:after {background: rgba(80,79,161,0.19);}
.slider-preparation .slide-body .body {
	display: flex;
	flex-direction: column;
	padding-right: 20px;
}

.slider-preparation .tags {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}
.slider-preparation .tags .tag {
	background: #EDEDED;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 75px;
	font-size: 16px;
	font-weight: 500;
	color: #00698B;
	min-height: 30px;
	padding: 0 18px;
}
.slider-preparation .tags .tag span {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.slider-preparation .tags .tag:nth-child(2) {background: #F2F2F2;}
.slider-preparation .tags .tag:nth-child(3) {background: #E2F3F3;}
.slider-preparation .tags .tag:nth-child(4) {background: rgba(155,204,233,0.31);}
.slider-preparation .tags .ticket {
	width: 12px;
	height: 9px;
	fill: #096A8C;
	margin-left: 5px;
}
.slider-preparation .tags .plus {
	width: 15px;
	margin-left: 5px;
}
.slider-preparation .tags .plus:before,
.slider-preparation .tags .plus:after {display: none;}

.slider-preparation .text {
	font-size: 14.87px;
	line-height: 1.4;
	font-weight: 500;
	color: #00698B;
	min-height: 39px;
	margin: 20px 0 20px 10px;
}
.slider-preparation .text .c-red {color: #F7473C;}
.slider-preparation .text .c-blue {color: #12D8BF;}
.slider-preparation .text .c-green {color: #2B9C50;}
.slider-preparation .text .c-violet {color: #6753AA;}

.slider-preparation .group {
	margin-top: auto;
	text-align: center;
	padding-bottom: 35px;
	padding-left: 10px;
	padding-right: 10px;
	max-width: 225px;
}
.slider-preparation .btn {
	font-size: 18px;
    font-weight: 500;
    width: inherit;
    height: 35px;
    width: 100%;
    padding: 0 30px;
    border-radius: 70px;
    color: #fff;
    background: var(--c-golden);
    font-family: var(--greycliff);
}
.slider-preparation .group a:not(.btn) {
	font-size: 13px;
	color: #096A8C;
	text-decoration: underline;
	display: inline-block;
	margin-top: 10px;
}
.slider-preparation .group a:hover:not(.btn) {text-decoration: none;}

.slider-preparation__foot {padding: 35px 0 80px 0;}
.slider-preparation__foot p {
	font-size: 13px;
	line-height: 1.6;
}

.slider-preparation-second:before,
.slider-preparation-second .bg-line {display: none;}

.slider-preparation .splide__track {overflow: visible;}
.slider-preparation .slide {
	box-shadow: none;
	min-width: inherit;
}
.slider-preparation .splide__slide .slide {
	box-shadow: 0 10px 60px rgba(38, 45, 118, 0.08);
}
.slider-preparation .splide__pagination {bottom: -40px;}

@media (max-width: 1600px) {
	.slider-preparation .bg-line {
		width: 1600px;
		height: 1200px;
		top: -450px;
		left: 0;
		background-size: 1600px;
	}
	.slider-preparation .bg-line:after {background: linear-gradient(0, #fff 50%, transparent);}
	.slider-preparation .splide.is-initialized:not(.is-active) .splide__list {
		gap: 25px;
	}
	.slider-preparation .splide {max-width: 1200px;}
	.slider-preparation .slide-head {
		padding: 20px 25px 20px 25px;
		margin-bottom: 10px;
	}
	.slider-preparation .slide-head h3 {font-size: 20px;}
	.slider-preparation .slide-head h4 {font-size: 25px;}
	.slider-preparation .slide-head img {max-width: 40px;}
	.slider-preparation .tags .tag {
		font-size: 14px;
		min-height: 25px;
		padding: 0 15px;
	}
	.slider-preparation .text {
		font-size: 12px;
		min-height: 35px;
		margin: 15px 0 15px 0;
	}
	.slider-preparation .group {
		padding-bottom: 25px;
		max-width: 180px;
	}

	.slider-preparation .splide-one .slide-body img {max-width: 135px;}
	.slider-preparation .splide-two .slide-body img {max-width: 160px;}
	.slider-preparation .splide-three .slide-body img {max-width: 165px;}
	.slider-preparation .group a:not(.btn) {
		margin-top: 5px;
		font-size: 12px;
	}
	.slider-preparation .btn {
		height: 28px;
		font-size: 15px;
		padding: 0 20px;
	}
}

@media (max-width: 1500px) {
	.slider-preparation__foot {padding: 35px 0 60px 0;}
	.slider-preparation__foot p br {display: none;}
}

@media (max-width: 1200px) {
	.slider-preparation .splide {
		max-width: 500px;
		margin: 0 auto;
	}

	.slider-preparation .splide__track {overflow: visible;}
}

@media (max-width: 760px) {
	.slider-preparation .slide {min-width: inherit;}
	.slider-preparation .splide__pagination {
		bottom: initial;
		top: 100%;
		margin-top: 25px;
		display: flex;
	}
}

@media (max-width: 600px) {
	.slider-preparation-2 {padding-top: 40px;}
	.slider-preparation .splide__slide {
		border-radius: 0 !important;
		border: none !important;
		transition: none;
	}
	.slider-preparation .slide {
		min-width: inherit;
		max-height: 370px;
	}

	.slider-preparation .slide-body img {max-width: 200px;}
	.slider-preparation .splide-one .slide-body img {max-width: 145px;}
	.slider-preparation .splide-three .slide-body img {max-width: 180px;}
	.slider-preparation .splide-four .slide-body img {max-width: 165px;}
	.slider-preparation .splide-five .slide-body img {max-width: 200px;}
	.slider-preparation .splide-sex .slide-body img {max-width: 200px;}

	.slider-preparation .tags .tag {
		font-size: 14px;
		min-height: 28px;
		padding: 0 10px;
	}

	.slider-preparation .text {font-size: 13px;}

	.slider-preparation .btn {padding: 0 22px;}
	.slider-preparation .btn svg {
		width: 7px;
		height: 11px;
		margin-left: 8px;
		top: 0px;
	}

	.slider-preparation .splide__pagination {display: flex;}
	.gallery-calc__foot h3 {line-height: 1.3;}
	.slider-preparation .gallery-calc__foot .btn {
		height: 55px;
		border-radius: 10px;
	}

	.slider-preparation__foot {padding: 35px 0 40px 0;}
	.slider-preparation__foot .center {padding: 0;}
	.slider-preparation__foot p {
	    font-size: 11px;
	    line-height: 1.6;
	    text-align: justify;
	    color: #091938;
	}

	.slider-preparation .splide__slide {
		border-radius: 26px !important;
	}
}

@media (max-width: 500px) {
	.slider-preparation .bg-line-2 {
		background: url(../img/bg-line-mob-9.svg) no-repeat;
		width: 640px;
		height: 1902px;
		top: -645px;
		right: 0;
		left: initial;
	}
	.slider-preparation .bg-line {display: none;}
	.slider-preparation .slide-head h4 {font-size: 20px;}
	.slider-preparation .slide-head img {max-width: 35px;}
	.slider-preparation .text {font-size: 11px;}
	.slider-preparation .slide-body {grid-template-columns: 44% 72%;}
	.slider-preparation .tags .tag {font-size: 13px;}
}

@media (max-width: 413px) {
	.gallery-calc__foot h3 {font-size: 23px;}
	.slider-preparation .btn {font-size: 15px;}
	.slider-preparation .gallery-calc__foot .btn svg {
	    width: 6px;
	    height: 10px;
	    margin-left: 7px;
	    top: 2px;
	}
	.slider-preparation .slide-head h3 {font-size: 23px;}
	.slider-preparation .slide-head h4 {font-size: 14px;}
	.slider-preparation .slide-head img {max-width: 38px;}
	.slider-preparation .splide-one .slide-body img {max-width: 140px;}
	.slider-preparation .splide-two .slide-body img {max-width: 150px;}
	.slider-preparation .tags .tag {
	    font-size: 11px;
	    min-height: 22px;
	    padding: 0 7px;
	}
	.slider-preparation .text {
		font-size: 9px;
		min-height: 25px;
	}
	.slider-preparation .btn {
	    font-size: 12px;
	    height: 25px;
	    padding: 0 15px;
	}
	.slider-preparation .group {max-width: 150px;}
}

@media (max-width: 400px) {
	.slider-preparation .slide-head h3 {font-size: 26px;}
	.slider-preparation .slide-head h4 {
		font-size: 17px;
		margin-top: 3px;
	}
	.slider-preparation .slide-head h5 {
		font-size: 14px;
		margin-top: 1px;
	}
	.slider-preparation .slide-head img {max-width: 50px;}

	.slider-preparation .slide-body:after {
		width: 200px;
		height: 200px;
	}
	.slider-preparation .slide-body img {max-width: 180px;}
	.slider-preparation .splide-one .slide-body img {max-width: 130px;}
	.slider-preparation .splide-three .slide-body img {max-width: 160px;}
	.slider-preparation .splide-four .slide-body img {max-width: 145px;}
	.slider-preparation .splide-five .slide-body img {max-width: 175px;}
	.slider-preparation .splide-sex .slide-body img {max-width: 175px;}
	.slider-preparation .tags .ticket {
	    width: 10px;
	    height: 7px;
	    margin-left: 3px;
	}
	.slider-preparation .tags .plus {
	    width: 11px;
	    height: 12px;
	    margin-left: 3px;
	}

	.slider-preparation .btn-universal_popup {font-size: 11px;}
}

/* ------------------ IMPORTANT ------------------ */
.important {
	max-width: 1245px;
	margin: 65px auto 0 auto;
	padding: 0 15px;
	min-height: 144px;
}
.important .sticky {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	line-height: 16px;
	background: rgba(255,255,255,.89);
	padding: 15px 20px;
	border: 1px solid #E6E6E6;
	max-width: 1215px;
}
.important .sticky.fixed {
	position: fixed;
	bottom: 0;
	z-index: 9991;
}
.important .content {
	max-height: 114px;
	overflow: hidden;
}
.important .sticky.show .content {
	max-height: 197px;
	overflow-y: auto;
}
.important .sticky.show .content::-webkit-scrollbar {
  	width: 5px;
}
.important .sticky.show .content::-webkit-scrollbar-track {width: 5px;}
.important .sticky.show .content::-webkit-scrollbar-thumb {
	width: 5px;
	background: var(--c-font);
}
.important ul {margin-left: 10px;}
.important ul li {
	position: relative;
	padding-left: 10px;
}
.important ul li:before {
	content: '';
	display: block;
	width: 3px;
	height: 3px;
	background: var(--c-font);
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 0;
}
.important strong {font-weight: 500;}
.important .read-more {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 500;
	gap: 6px;
	transition: all 0.3s;
	cursor: pointer;
	position: relative;
	z-index: 2;
	background: #fff;
	padding: 0 0 0 10px;
}
.important .read-more .plus {
	width: 10px;
	min-width: 10px;
	height: 10px;
}
.important .read-more .plus:before,
.important .read-more .plus:after {background: #161616;}
.important .show .read-more .plus {display: none;}
.important .read-more:after {
	content: '';
	display: block;
	width: 10px;
	height: 2px;
	background: var(--c-font);
	display: none;
	transition: all 0.3s;
}
.important .read-more:hover:after {background: var(--akcent);}
.important .read-more svg {
	width: 10px;
	height: 10px;
	transition: all 0.3s;
}
.important .read-more span:nth-child(2) {display: none;}
.important .sticky.show .read-more svg {display: none;}
.important .sticky.show .read-more:after {display: block;}
.important .sticky.show span:nth-child(1) {display: none;}
.important .sticky.show span:nth-child(2) {display: block;}

@media (max-width: 1600px) {
	.important {max-width: 950px;}
	.important .sticky {max-width: 920px;}
}

@media (max-width: 991px) {
	.important .sticky.fixed {
		left: 15px;
		right: 15px;
	}
	.important .sticky {max-width: initial;}
}

@media (max-width: 760px) {
	.important {margin: 70px auto 0 auto;}
}

@media (max-width: 500px) {
	.important .sticky {
		font-size: 10px;
		line-height: 1.3;
		padding: 15px 10px 7px 10px;
	}
	.important .content {max-height: 147px;}
	.important .read-more {
		font-size: 9px;
		right: -3px;
	}
	.important .read-more svg {
		width: 8px;
		height: 8px;
	}
	.important .read-more:after {
		width: 8px;
		height: 1px;
	}
}

/* ------------------ BANNER ------------------ */
.banner {margin-top: 60px;}
.banner .center {
	border-radius: 53px;
	position: relative;
	min-height: 758px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.banner .dots {
	width: 320px;
	height: 320px;
	position: absolute;
	bottom: -55px;
	left: -170px;
	z-index: 3;
}
.banner .bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: right top;
	display: block;
	border-radius: 50px;
	width: 100%;
	height: 100%;
}
.banner .content {
	position: relative;
	z-index: 2;
	padding: 20px 20px 20px 175px;
	color: #fff;
}
.banner .content .btn {min-width: 330px;}
.banner h4 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--c-golden);
}
.banner h3 {
	font-size: 48.78px;
	line-height: 1.3;
	font-weight: normal;
}
.banner ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 64px;
	justify-content: start;
	font-size: 22.87px;
	margin-top: 25px;
	margin-bottom: 25px;
	max-width: 610px;
}
.banner ul li {
	display: flex;
	align-items: center;
	white-space: nowrap;
}
.banner ul li svg {
	width: 18.98px;
	height: 14px;
	margin-right: 11px;
	fill: var(--c-golden);
}
.banner .logo-banner {
	position: absolute;
	width: 169px;
	height: 47px;
	right: 50px;
	bottom: 45px;
	z-index: 3;
}

@media (max-width: 1600px) {
	.banner .center {
		max-width: 1200px;
		min-height: 580px;
	}
	.banner .bg {border-radius: 40px;}
	.banner .content {padding: 20px 20px 20px 125px;}
	.banner h4 {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.banner h3 {font-size: 37px;}
	.banner ul {
	    font-size: 15px;
	    max-width: 400px;
	    gap: 8px 40px;
	}

	.banner .dots {
		width: 280px;
		height: 280px;
	}
}

@media (max-width: 1200px) {
	.banner {padding: 0 15px;}
	.banner .bg {border-radius: 35px;}
	.banner .center {min-height: 450px;}
	.banner .content {padding: 20px;}
	.banner .dots {left: -250px;}
	.banner h4 {
	    font-size: 15px;
	    margin-bottom: 15px;
	}
	.banner h3 {font-size: 30px;}
	.banner ul {
	    font-size: 15px;
	    margin-top: 20px;
	    max-width: 420px;
	}
}

@media (max-width: 500px) {
	.banner {margin-top: 60px;}
	.banner .bg {
		object-position: left top;
		content: url(../img/banner-mob.webp);
	}
	.banner .center {min-height: initial;}
	.banner .content {padding: 50px 0 50px 0;}
	.banner ul {
		font-size: 17px;
		grid-template-columns: 1fr;
		-webkit-font-smoothing: initial;
	}
	.banner h4 {
	    font-size: 18px;
	    margin-bottom: 5px;
	    -webkit-font-smoothing: initial;
	}
	.banner h3 {
		font-size: 24px;
		-webkit-font-smoothing: initial;
	}
	.banner h3 br {display: none;}
	.banner .logo-banner {
	    position: absolute;
	    width: 100px;
	    height: 27px;
	    right: initial;
	    top: 28px;
	    left: 13px;
	    bottom: initial;
	    z-index: 3;
	}
	.banner .btn {
		width: 100%;
		min-width: inherit !important;
	}
	.banner .dots {
		width: 250px;
		height: 250px;
		left: -170px;
		bottom: -115px;
		z-index: -1;
	}
}

/* ------------------ STEPS ------------------ */
.easy-steps {
	padding-top: 50px;
	position: relative;
}
.easy-steps:after {
	content: '';
	display: block;
	width: 1920px;
	height: 2683px;
	background: url(../img/bg-line-3.svg) no-repeat;
	position: absolute;
	top: -750px;
	right: 0;
	z-index: -2;
}
.easy-steps h2.title {margin-top: 22px;}
.easy-steps .center {max-width: 1510px;}
.easy-steps .splide {margin-top: 35px;}
.easy-steps .splide.is-initialized:not(.is-active) .splide__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 37px;
	position: relative;
}
.easy-steps .splide:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	width: 1904px;
	height: 320px;
	transform: translateX(-50%);
	background: url(../img/bg-dots.png) no-repeat;
	margin-top: -35px;
	z-index: 1;
}
.easy-steps .splide .splide__track {
	position: relative;
	z-index: 2;
}
.easy-steps .image {
	height: 278px;
	line-height: 0;
	margin-bottom: 20px;
	border-radius: 12px;
	overflow: hidden;
}
.easy-steps .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.easy-steps .content {text-align: center;}
.easy-steps .content h4 {
	font-size: 23px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.easy-steps .content p {font-size: 19px;}

.splide__pagination {
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 13px;
}
.splide__pagination li button  {
	margin: 0;
	width: 10px;
	height: 10px;
	opacity: 1;
	background: var(--c-font);
	position: relative;
}
.splide__pagination li button:after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--c-font);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.splide__pagination li .is-active {
	background: rgba(10,28,43,.2);
}

@media (max-width: 1600px) {
	.easy-steps:after {
		width: 1600px;
		height: 2000px;
		background-size: 1600px;
		top: -630px;
	}
	.easy-steps .center {max-width: 1200px;}
	.easy-steps .splide.is-initialized:not(.is-active) .splide__list {gap: 30px;}
	.easy-steps .image {
		height: 235px;
		margin-bottom: 15px;
	}
	.easy-steps .content h4 {font-size: 18px;}
	.easy-steps .content p {font-size: 15px;}
}

@media (max-width: 1200px) {
	.easy-steps:after {
	    width: 1200px;
	    height: 1800px;
	    background-size: 1200px;
	    top: -470px;
	}
	.easy-steps .center {max-width: 950px;}
	.easy-steps .splide.is-initialized:not(.is-active) .splide__list {
        gap: 15px;
    }
    .easy-steps .image {height: 160px;}
    .easy-steps .content h4 {font-size: 13px;}
    .easy-steps .content p {font-size: 13px;}
    .easy-steps .content p br {display: none;}
}

@media (max-width: 760px) {
	.easy-steps .splide {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
	.easy-steps .image {
		height: 350px;
		margin-bottom: 25px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
	}
	.easy-steps .splide__pagination {margin-bottom: -30px;}
	.easy-steps .content h4 {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.easy-steps .content p {
	    font-size: 21px;
	    line-height: 1.4;
	}
	.easy-steps .content p br {display: block;}
	.easy-steps .splide:before {display: none;}
}

@media (max-width: 500px) {
	.easy-steps:after {
		background: url(../img/bg-line-mob-10.svg);
		top: -825px;
		right: initial;
		left: 0;
	}
	.easy-steps .image {height: 300px;}
	.easy-steps .splide__track {overflow: visible;}
}

@media (max-width: 413px) {
	.easy-steps .content p {font-size: 18px;}
}

/* DOCTOR
-------------------------------------- */
.doctor {
	padding-top: 100px;
}
.doctor .center {
	max-width: 1290px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}
.doctor-content .tag {
	display: inline-block;
	background: #EDEDED;
	border-radius: 50px;
	height: 30px;
	font-size: 17px;
	font-family: var(--greycliff);
	font-weight: normal;
	padding: 0 20px;
}
.doctor-content h3 {
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
	margin-top: 18px;
	margin-bottom: 20px;
}
.doctor-content .text p + p {margin-top: 25px;}
.doctor-content .text p strong {font-weight: 500;}

.doctor-content .signature {
	margin-top: 20px;
	margin-bottom: 40px;
}
.doctor-content .signature i {
	max-width: 330px;
	display: inline-block;
}
.doctor-content .signature p strong {font-weight: 500;}

.doctor-content .btn-text {
	margin-left: 45px;
	display: inline-block;
	text-align: center;
} 

.doctor-image .image {position: relative;}
.doctor-image .image .img-doctor {
	display: block;
	border-radius: 25px;
}
.doctor-image .image .img-product {
	position: absolute;
	right: -40px;
	bottom: -60px;
	max-width: 320px;
}
.doctor-image p {
	font-size: 11px;
	line-height: 1.3;
	font-family: var(--greycliff);
	font-weight: 500;
	color: #8A8A8A;
	padding: 13px 0 0 30px;
}

@media (max-width: 1600px) {
	.doctor {padding-top: 70px;}
	.doctor .center {
		max-width: 1000px;
		gap: 35px;
	}
	.doctor-content .tag {
		height: 25px;
	    font-size: 14px;
	    font-weight: normal;
	    padding: 0 15px;
	}
	.doctor-content h3 {
	    font-size: 40px;
	    margin-top: 15px;
	    margin-bottom: 15px;
	}
	.doctor-content .text p + p {margin-top: 15px;}
	.doctor-content .signature {margin-bottom: 30px;}
	.doctor-content .signature i {max-width: 235px;}
	.doctor-image .image .img-product {max-width: 255px;}
	.doctor-image p {
		padding: 10px 0 0 15px;
		font-size: 9px;
	}
}

@media (max-width: 1200px) {
	.doctor {padding-top: 50px;}
	.doctor .center {gap: 30px;}
	.doctor-content h3 {font-size: 33px;}
	.doctor .text p br {display: none;}
	.doctor-image .image .img-product {max-width: 210px;}
}

@media (max-width: 991px) {
	.doctor .center {grid-template-columns: 1fr;}
	.doctor-image {
	    order: -1;
	    max-width: 500px;
	    margin: 0 auto;
	}
	.doctor .text {text-align: left;}
	.doctor-content {
		text-align: center;
		margin-top: 30px;
	}
	.doctor-content .signature {text-align: left;}
}

@media (max-width: 760px) {
	.doctor {padding-top: 80px;}
	.doctor-content.d-none {
		order: -2;
		margin-top: 0;
	}
	.doctor-content h3 {margin-bottom: 0;}
	.doctor-content .btn-text {display: none;}
	.doctor-content .signature {margin-bottom: 0;}
}

@media (max-width: 500px) {
	.doctor {position: relative;}
	.doctor:before {
		content: '';
		display: block;
		background: url(../img/bg-line-mob-11.svg) no-repeat;
		width: 400px;
		height: 1902px;
		position: absolute;
		background-size: 400px;
		top: -555px;
		right: 0;
		z-index: -1;
	}
	.doctor .center {gap: 25px;}
	.doctor-content h3 {
	    font-size: 35px;
	    line-height: 1.1;
	}
	.doctor-image .image .img-doctor {
		content: url(../img/dr-russell-mob.webp);
		border-radius: 15px;
	}
	.doctor-image .image .img-product {
	    max-width: 170px;
	    right: 5px;
	    bottom: -70px;
	}
	.doctor-image p {
	    padding: 10px 0 0 0;
	    font-size: 11px;
	}
	.doctor-content {margin-top: 10px;}
	.doctor-content .text p + p {margin-top: 20px;}
	.doctor-content .signature i {max-width: 245px;}
}

@media (max-width: 413px) {
	.doctor-image .image .img-product {
	    max-width: 140px;
	    right: 5px;
	    bottom: -50px;
	}
	.doctor-image p {
	    padding: 5px 0 0 0;
	    font-size: 10px;
	}
}

/* ------------------ ADVENTAGES ------------------ */
.adventages-slider {
	margin-top: 70px;
	position: relative;
}
.adventages-slider .dots {
	width: 300px;
	height: 300px;
	position: absolute;
	left: 0;
	top: 100%;
	margin-top: -60px;
	z-index: -1;
}
.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;
}
.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;
    color:white;
}
.adventages-slider .content p {
	font-size: 24px;
	line-height: 1.2;
    color:white;
}
.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: var(--akcent);
	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 svg {fill: #fff;}
.adventages-slider .content button:hover span {
	display: block;
	animation: opacity 0.3s 0.1s forwards;
}

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

@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 .dots {
		width: 250px;
		height: 250px;
	}
	.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;
	    font-weight: 600;
	    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 .dots {
		width: 200px;
		height: 200px;
	}
	.adventages-slider {margin-top: 50px;}
	.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: 760px) {
	.adventages-slider .dots {display: none;}
	.adventages-slider {margin-top: 70px;}
}

@media (max-width: 500px) {
	.adventages-slider {
		margin-top: 70px;
		position: relative;
	}
	.adventages-slider:after {
		content: '';
		display: block;
		position: absolute;
		top: -218px;
		right: 0;
		background: url(../img/bg-line-mob-12.svg) no-repeat;
		width: 400px;
		height: 2500px;
		background-size: 400px;
		z-index: -2;
	}
	.adventages-slider .content {padding: 35px 15px 20px 20px;}
	.adventages-slider .content h5 {font-size: 16.5px;}
	.adventages-slider .content h3 {font-size: 21px;}
	.adventages-slider .content p {
		font-size: 17px;
		-webkit-font-smoothing: auto;
		font-smoothing: auto;
	}
}

@media (max-width: 413px) {
	.section-banner h3 {font-size: 20px;}
	.adventages-slider .content h5 {font-size: 14px;}
	.adventages-slider .content h3 {font-size: 21px;}
}

/* ------------------ TREATMENTS ------------------ */
.treatments {
	padding-top: 40px;
	position: relative;
}
.treatments [data-src="crown"] {
	margin-bottom: 15px;
}
.treatments .dots {
	position: absolute;
	top: 25px;
	right: 40px;
	width: 300px;
	height: 300px;
}
.treatments:after {
	content: '';
	display: block;
	width: 1920px;
	height: 1690px;
	background: url(../img/bg-line-4.svg) no-repeat;
	position: absolute;
	top: -550px;
	right: 0;
	z-index: -2;
}
.treatments:before {
	content: '';
	display: block;
	width: 1920px;
	height: 1649px;
	background: url(../img/bg-line-5.svg) no-repeat;
	position: absolute;
	top: -600px;
	left: 0;
	z-index: -2;
}
.treatments .center .descr {
	margin: 20px auto 0 auto;
	font-size: 20px;
	max-width: 1250px;
}
.treatments .grid {margin-top: 60px;}
.treatments .row {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.treatments .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.treatments .content {
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}
.treatments .content.left {
	align-items: end;
	order: -1;
}
.treatments .content .tag {
	display: inline-block;
	background: #EDEDED;
	border-radius: 50px;
	height: 30px;
	font-size: 17px;
	font-family: var(--greycliff);
	font-weight: normal;
	padding: 0 20px;
}
.treatments .content h3 {
	font-size: 32px;
	font-weight: 500;
	font-family: var(--greycliff);
	line-height: 1;
	margin-top: 40px;
	margin-bottom: 20px;
}
.treatments .content .btn {min-width: 300px;}
.treatments .content ul {margin: 25px 0 35px 0;}
.treatments .content ul li {
	display: flex;
	align-items: center;
	gap: 9px;
}
.treatments .content ul li + li {margin-top: 5px;}
.treatments .content ul svg {
	width: 16px;
	height: 12px;
}
.treatments .content .link {
	display: inline-block;
	font-size: 13px;
	text-decoration: underline;
	font-family: var(--greycliff);
	margin-top: 25px;
}
.treatments .content .link:hover {text-decoration: none;}

@media (max-width: 1600px) {
	.treatments .dots {
		width: 250px;
		height: 250px;
	}
	.treatments:before {
		width: 1500px;
		height: 1000px;
		background-size: 1500px;
		top: -510px;
	}
	.treatments:after {
		width: 1600px;
		height: 1300px;
		background-size: 1600px;
		top: -470px;
	}
	.treatments .center .descr {
		font-size: 17px;
		max-width: 1060px;
	}
	.treatments .content {padding: 45px;}
	.treatments .content .tag {
		height: 25px;
		font-size: 14px;
		padding: 0 15px;
	}
	.treatments .content h3 {
		font-size: 25px;
		margin-top: 30px;
		margin-bottom: 15px;
	}
	.treatments .content ul {margin: 15px 0 25px 0;}
	.treatments .content .link {
		font-size: 12px;
		margin-top: 20px;
	}
}

@media (max-width: 1200px) {
	.treatments:before {
	    width: 1200px;
	    height: 1000px;
	    background-size: 1200px;
	    top: -460px;
	}
	.treatments:after {
	    width: 1200px;
	    height: 1200px;
	    background-size: 1200px;
	    top: -415px;
	}
	.treatments .dots {
		width: 200px;
		height: 200px;
		right: -200px;
	}
	.treatments .center .descr p br {display: none;}
	.treatments .content p br {display: none;}
}

@media (max-width: 760px) {
	.treatments:before {top: -400px;}
	.treatments:after {top: -350px;}
	.treatments .row {grid-template-columns: 1fr;}
	.treatments .content.left {order: 1;}
}

@media (max-width: 500px) {
	.treatments:before,
	.treatments:after {display: none;}
	.treatments h2.title {
		font-size: 31px;
		font-weight: 500;
	}
	.treatments .center .descr {font-size: 16px;}
	.treatments .center .descr p + p {margin-top: 25px;}

	.treatments .grid {margin-top: 30px;}
	.treatments .image {min-height: 450px;}
	.treatments .content {padding: 45px 15px;background: white;}
	.treatments .content h3 {
	    font-size: 20px;
	    margin-top: 25px;
	    margin-bottom: 15px;
	}
	.treatments .btn-link {
		display: inline-flex !important;
		align-items: center;
		gap: 5px;
		color: var(--c-font);
		font-size: 15px;
		font-weight: 500;
	}
	.treatments .btn-link svg {
		fill: var(--c-font);
		width: 6px;
		height: 11px;
		position: relative;
		top: 1.5px;
	}
	.treatments .content .link {
	    font-size: 11px;
	    margin-top: 0;
	}
}

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

/* ------------------ REVIEWS SLIDER ------------------ */
.reviews-slider .splide {
	position: relative;
	z-index: 2;
}
.reviews-slider .splide__track {padding: 50px 0 50px 0;}
.reviews-slider .inner {
	background: #fff;
	border-radius: 11px;
	box-shadow: 0px 0.723886px 7.23886px rgba(0, 0, 0, 0.03), 0px 5.79109px 5.79109px -4.34332px rgba(0, 0, 0, 0.05), 0px 18.0972px 43.4332px -21.7166px rgba(0, 0, 0, 0.15);
	padding: 25px;
	min-height: 250px;
	max-height: 250px;
	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(--campton);
}
.reviews-slider p strong {font-weight: 600;}
.reviews-slider .foot {
	margin-top: auto;
	font-size: 11px;
	font-family: var(--campton);
	min-height: 50px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.reviews-slider .foot p:last-child {color: rgba(0,0,0,.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: 1200px) {
	.reviews-slider .splide__track {padding: 50px 0 50px 0;}
}

@media (max-width: 500px) {
	.reviews-slider-first {
		position: relative;
		margin-top: -40px;
	}
	.reviews-slider-first:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		bottom: 0;
		background: url(../img/bg-line-mob-13.svg) no-repeat;
		width: 640px;
		height: 1985px;
		z-index: -1;
	}

	.reviews-slider-second {position: relative;}
	.reviews-slider-second:before {
	    content: '';
	    display: block;
	    position: absolute;
	    right: 0;
	    bottom: 0px;
	    background: url(../img/bg-line-mob-16.svg) no-repeat;
	    background-size: 500px;
	    width: 500px;
	    height: 1450px;
	    z-index: -1;
	}

	.reviews-slider .inner {
		padding: 25px;
		border-radius: 20px;
	}
	.reviews-slider .star {
		gap: 5px;
		margin-bottom: 15px;
	}
	.reviews-slider .star svg {
		width: 18px;
		height: 18px;
	}
	.reviews-slider p {font-size: 15px;}
	.reviews-slider .foot {font-size: 13px;}
	.reviews-slider-first:before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: -320px;
        background: url(../img/bg-line-mob-13.svg) no-repeat;
        background-size: 500px;
        width: 500px;
        height: 1500px;
        z-index: -1;
    }
}

/* ------------------ NEXT ------------------ */
.quize-wrap {
	padding: 50px 0 60px 0;
    position: relative;
}
.quize-wrap .bg-line {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -2;
	background: url(../img/bg-line-6.svg) no-repeat;
	width: 1920px;
	height: 1363px;
}
.quize-wrap .bg-line:after {
	content: '';
	display: block;
	height: 300px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0, #fff 70%, transparent);
}
.next {
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    display: none;
}
.next.active {
    position: relative;
    z-index: 2;
    display: flex;
    animation: opacity 0.5s linear forwards;
}
.next .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 580px;
}
.next .icon,
.next .ic-crown {
    display: inline-block;
    width: 100px;
    height: 75px;
    margin-bottom: 40px;
}

.steps {
    display: inline-flex;
    margin-bottom: 10px;
}
.steps li {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #0A1C2B;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 13px;
    position: relative;
}
.steps li.active {
    background: var(--c-font);
    color: #fff;
}
.steps li span {
    position: relative;
    top: 1px;
}
.steps li + li {margin-left: 25px;}
.steps li:after {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background: var(--c-font);
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -0.5px;
}
.steps li:last-child:after {display: none;}

.next .before-subtitle {
	margin-top: 12px;
	font-size: 20px;
	font-weight: 500;
}
.next h2.title {
    font-size: 70px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
}
.next h3 {
	font-size: 34.74px;
	font-weight: 500;
	margin-bottom: 20px;
}

.next .links {
    display: flex;
    flex-direction: column;
}
.next .links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    background: var(--c-font);
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    position: relative;
    overflow: hidden;
    padding: 0 74px;
    outline: none;
    user-select: none;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    font-smoothing: auto;
    -webkit-font-smoothing: auto;
}
.next .links a:active, 
.next .links a:focus {
    outline: none;
    user-select: none;
}
.next .links a span {
    position: relative;
    top: 1px;
    z-index: 2;
}
.next .links a + a {margin-top: 9px;}
.next .links a:hover {color: var(--c-font);}
.next .links a:after {
    content: '';
    display: block;
    background: var(--c-green);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    z-index: 1;
    transition: all 0.3s;
}
.next .links a:hover:after,
.next .links a.active:after {width: 100%;}

.next-1 .anim-dot {
    width: 266px;
    height: 272px;
    position: absolute;
    top: -258px;
    left: -100px;
}

.next-2 .anim-dot {
    width: 266px;
    height: 272px;
    position: absolute;
    top: -170px;
    right: -100px;
}
.next-2 .steps {margin-bottom: 40px;}
.next-2 h2.title {margin-bottom: 35px;}

.next-3 .anim-dot {
    width: 266px;
    height: 272px;
    position: absolute;
    top: -307px;
    left: 0;
}

.next-4 .anim-dot {
    width: 266px;
    height: 272px;
    position: absolute;
    top: -259px;
    right: 0;
}

.next .custom-select {
    border: 1px solid #0A1C2B;
    width: 280px;
    height: 48px;
    border-radius: 40px;
    background: #fff url(../img/arr.svg) no-repeat right 25px center;
    font-size: 18px;
    cursor: pointer;
    padding: 0 25px;
    outline: none;
    user-select: none;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.next .custom-select .selected {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.next .custom-select .drop {
    background: #fff;
    margin-top: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.next .custom-select .drop .inner::scrollbar {width: 5px;}
.next .custom-select .drop .inner::scrollbar-track {width: 5px;}
.next .custom-select .drop .inner::scrollbar-thumb {
    width: 5px;
    background: #000;
}
.next .custom-select .drop .inner::-webkit-scrollbar {width: 5px;}
.next .custom-select .drop .inner::-webkit-scrollbar-track {width: 5px;}
.next .custom-select .drop .inner::-webkit-scrollbar-thumb {
    width: 5px;
    background: #000;
}
.next .custom-select .drop .option {
    padding: 5px 0;
}
.next .custom-select .drop .option:hover {
    background: var(--color);
    color: #fff;
}

.next.finish h2.title, .next.finish h3.title-1 {margin-bottom: 25px;}
.gold{color:#ccb179 !important;}

@media (max-width: 1600px) {
    .next .center {min-height: 465px;}
    .quize-wrap .bg-line {
    	width: 1600px;
    	height: 1000px;
    	background-size: 1600px;
    }
    .next .icon,
    .next .ic-crown {
        width: 85px;
        height: 60px;
        margin-bottom: 30px;
    }
    .next h2.title {font-size: 50px;}
    .next .before-subtitle {font-size: 14px;}
    .next .links a {
        height: 45px;
        font-size: 15px;
        padding: 0 25px;
    }
    .next h3 {font-size: 25px;}
    .steps li {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    .steps li + li {margin-left: 20px;}
    .steps li:after {width: 21px;}

    .next-1 .anim-dot {
        top: -126px;
        left: -200px;
    }

    .next-2 .anim-dot {
        top: -70px;
        right: -200px;
    }

    .next-3 .anim-dot {
        top: -205px;
        left: -200px;
    }

    .next-4 .anim-dot {
        top: -158px;
        right: -200px;
    }

    .next-2 .steps {margin-bottom: 30px;}
    .next-2 h2.title {margin-bottom: 30px;}
}

@media (max-width: 1300px) {
    .quize-wrap .anim-dot {
        width: 180px;
        height: 180px;
        bottom: -100px;
    }

    .next .center {position: static;}

    .next-1 .anim-dot {
        width: 200px;
        height: 200px;
        left: 0;
        top: -44px;
    }

    .next-2 .anim-dot {
        width: 200px;
        height: 200px;
        top: -93px;
        right: 0;
    }

    .next-3 .anim-dot {
        width: 200px;
        height: 200px;
        left: 0;
        top: -60px;
    }

    .next-4 .anim-dot {
        width: 200px;
        height: 200px;
        top: -60px;
        right: 0;
    }
}

@media (max-width: 991px) {
    .next-1 .anim-dot,
    .next-2 .anim-dot,
    .next-3 .anim-dot,
    .next-4 .anim-dot {
        width: 200px;
        height: 200px;
    }
    .next-1 .anim-dot {
        top: -44px;
        left: -20px;
    }
}

@media (max-width: 767px) {
    .quize-wrap .anim-dot {display: none;}
    .quize-wrap {
        height: auto;
        padding: 50px 0 50px 0;
    }

    .next .center {min-height: 475px;}

    .next-1 .anim-dot, 
    .next-2 .anim-dot, 
    .next-3 .anim-dot, 
    .next-4 .anim-dot {
        width: 170px;
        height: 170px;
    }

    .next h2.title {
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    .next .icon,
    .next .ic-crown {
        width: 60px;
        height: 40px;
        margin-bottom: 20px;
    }

    .steps {margin-bottom: 20px;}
    .steps li {
        width: 30px;
        height: 30px;
    }
    .steps li + li {margin-left: 20px;}
    .steps li:after {width: 21px;}

    .next .links {
        width: 100%;
        padding: 0 20px;
    }
    .next .links a {height: 48px;}
    .next .links a + a {margin-top: 17px;}

    .next-2 .anim-dot {top: -75px;}

    .next-3 .anim-dot {
        right: 0;
        top: -75px;
    }

    .next-4 .anim-dot {right: 0;}
}

@media (max-width: 500px) {
	.quize-wrap {padding: 0px 0 50px 0;}
	/*.quize-wrap .bg-line {display: none;}*/
    .quize-wrap .bg-line{
        top:-20px;
    }
	.steps {margin-bottom: 15px;}
	.next h3 {font-size: 22px;}
	.next h2.title {
		font-size: 32px;
		margin-bottom: 0;
		margin-top: 10px;
		padding: 0 0;
	}
}

@media (max-width: 413px) {
    .next h2.title {font-size: 8vw;}
    .next .links a {padding: 0 15px;}
}

/* ------------------ FACT ------------------ */
.fact {
	position: relative;
	padding-bottom: 80px;
}
.fact:after {
	content: '';
	display: block;
	width: 640px;
	height: 1000px;
	position: absolute;
	right: 0;
	bottom: -400px;
	background: url(../img/bg-line-9.svg) no-repeat right top;
}
.fact .dots {
	position: absolute;
	left: 60px;
	bottom: -30px;
	width: 220px;
	height: 220px;
}
.fact .center {max-width: 1450px;}
.fact .box {
	display: inline-block;
	font-size: 16px;
	padding: 13px 18px;
	border: 1px solid #000000;
}
.fact .splide {
	margin-top: 80px;
	margin-bottom: 35px;
}
.fact .splide__track {overflow: visible;}
.fact .splide.is-initialized:not(.is-active) .splide__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
}
.fact .item {
	background: #fff;
	box-shadow: 0px 8.80532px 52.8319px rgba(38, 45, 118, 0.08);
	border-radius: 17px;
	overflow: hidden;
	height: 100%;
}
.fact .item .image {height: 165px;}
.fact .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fact .item .content {padding: 33px 25px 36px 25px;}
.fact .item .content h3 {
	font-size: 29.86px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 20px;
}
.fact .item .content ul li {
	display: flex;
	align-items: center;
	gap: 17px;
	font-size: 16.59px;
}
.fact .item .content ul li + li {margin-top: 10px;}
.fact .item .content ul li svg {
	width: 16px;
	height: 12px;
	position: relative;
	top: -1px;
}
.fact .text {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 35px;
}
.fact .btn {padding: 0 20px;}

@media (max-width: 1600px) {
	.fact {padding-bottom: 70px;}
	.fact .box {
		font-size: 13px;
		padding: 10px 18px;
	}
	.fact .center {max-width: 1200px;}
	.fact .splide {
		margin-top: 50px;
		margin-bottom: 30px;
	}
	.fact .splide.is-initialized:not(.is-active) .splide__list {
		gap: 35px;
	}
	.fact .item .image {height: 150px;}
	.fact .item .content {padding: 25px 20px 25px 20px;}
	.fact .item .content h3 {
	    font-size: 22px;
	    margin-bottom: 17px;
	}
	.fact .item .content ul li {
		gap: 10px;
		font-size: 15px;
	}
	.fact .item .content ul li + li {margin-top: 5px;}
	.fact .text {
		font-size: 17px;
		margin-bottom: 25px;
	}
}

@media (max-width: 1200px) {
	.fact .splide.is-initialized:not(.is-active) .splide__list {
	    gap: 20px;
	}
	.fact .item .image {height: 130px;}
	.fact .item .content h3 {
	    font-size: 17px;
	    margin-bottom: 10px;
	}
	.fact .item .content {padding: 15px;}
	.fact .item .content ul li {font-size: 14px;}
	.quize-wrap .bg-line {
	    width: 1200px;
	    height: 1000px;
	    background-size: 1200px;
	}
	.fact .dots {
		left: -60px;
		width: 200px;
		height: 200px;
	}
}

@media (max-width: 991px) {
	.fact .item .content ul li svg {
	    width: 14px;
	    height: 10px;
	}
	.fact .item .content ul li {
	    font-size: 10px;
	    gap: 5px;
	}
}

@media (max-width: 760px) {
	.fact:after {display: none;}
	.fact {padding-bottom: 50px;}
	.fact .box br {display: none;}
	.fact .splide {margin-bottom: 70px;}
	.fact .item .image {height: 150px;}
	.fact .item .content {padding: 20px 15px;}
	.fact .item .content h3 {
	    font-size: 20px;
	    margin-bottom: 15px;
	}
	.fact .item .content ul li {font-size: 18px;}
	.fact .item .content ul li + li {margin-top: 0;}
	.fact .splide__pagination {
		bottom: initial;
		top: 100%;
		margin-top: 25px;
	}
	.fact .text br {display: none;}
}

@media (max-width: 500px) {
	.fact {position: relative;}
	.fact:after {
		content: '';
		display: block;
		position: absolute;
		bottom: -210px;
		right: -20px;
		background: url(../img/bg-line-mob-14.svg) no-repeat;
		background-size: 400px;
		width: 400px;
		height: 1000px;
		z-index: -1;
	}
	.fact .box {
	    font-size: 16px;
	    padding: 0;
	    border: none;
	}
	.fact .box strong {font-weight: normal;}
	.fact .splide {margin-top: 40px;}
	.fact .item {box-shadow: 0px 1.23505px 12.3505px rgba(0, 0, 0, 0.03), 0px 9.88039px 9.88039px -7.41029px rgba(0, 0, 0, 0.05), 0px 30.8762px 74.1029px -37.0514px rgba(0, 0, 0, 0.15);}
	.fact .item .content ul li {font-size: 15px;}
	.fact .dots {display: none;}
	.fact .btn {width: 100%;}
}

@media (max-width: 413px) {
	.fact .item .content ul li {font-size: 13px;}
}

/* ------------------ START ------------------ */
.start {
	position: relative;
	min-height: 645px;
	background: url(../img/bg-start.webp?2) no-repeat fixed center top;
	background-size: cover;
	color: #fff;
	display: flex;
	align-items: center;
}
.start .center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	height: 100%;
}
.start h4 {
	font-size: 29px;
	font-weight: 300;
}
.start span.h3 {
	font-size: 49.22px;
	line-height: 1.2;
	font-weight: normal;
	margin-top: 10px;
}
.start .row {
	display: flex;
	gap: 55px;
	margin-top: 60px;
}
.start .row span.h2 {
	font-size: 51.87px;
	font-weight: normal;
	line-height: 1;
}
.start .row p {
	font-size: 19.45px;
	line-height: 1.2;
	font-weight: normal;
	margin-top: 10px;
	font-smoothing: auto;
	-webkit-font-smoothing: auto;
}

@media (max-width: 1600px) {
	.start {min-height: 500px;}
	.start h4 {font-size: 23px;}
	.start span.h3 {font-size: 40px;}
	.start .row {
		gap: 40px;
		margin-top: 40px;
	}
	.start .row span.h2 {font-size: 40px;}
	.start .row p {font-size: 17px;}
}

@media (max-width: 760px) {
	.start {
	    min-height: inherit;
	    padding: 50px 0;
	}
	.start h4 {font-size: 16px;}
	.start span.h3 {font-size: 25px;}
	.start .row {
		flex-direction: column;
		gap: 20px;
		margin-top: 20px;
	}
	.start .row span.h2 {font-size: 35px;}
	.start .row p {font-size: 14px;}
}

@media (max-width: 500px) {
	.start {
		background: url(../img/bg-start-mob.webp?2) no-repeat center top;
		background-size: cover;
		padding: 60px 0;
	}
	.start span.h3 {
		margin-top: 15px;
		font-smoothing: none;
		-webkit-font-smoothing: none;
	}
	.start .row {
		gap: 25px;
		margin-top: 25px;
	}
	.start .row span.h2 {
		font-size: 45px;
		font-smoothing: none;
		-webkit-font-smoothing: none;
	}
	.start .row p {font-size: 16px;}
}

/* ------------------ ASKED ------------------ */
.asked {position: relative;}
.asked h2.title {
	font-size: 44px;
	font-weight: normal;
}
.asked .head {
	min-height: 560px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	position: relative;
}
.asked .head .bg {
	background: url(../img/bg-asked.webp) no-repeat fixed center;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
.asked .head h6 {
	font-size: 33px;
	font-weight: normal;
}
.asked .head h3 {
	font-size: 49px;
	font-weight: normal;
	margin-top: 10px;
	line-height: 1.3;
}
.asked .head h3 span {font-weight: bold;}
.asked .heading i svg {width: 50px !important;}

.asked .center {
	border-radius: 25px;
	margin-top: -75px;
	padding: 25px 0 0 0;
	position: relative;
	z-index: 2;
	max-width: 1350px;
}
.asked .center:after {
	content: '';
	display: block;
	height: 500px;
	position: absolute;
	top: 0;
	left: -58px;
	right: -58px;
	z-index: -1;
	border-radius: 25px 25px 0 0;
	background: #fff;
}
.asked .subtitle {font-size: 24px;}

.asked .accordeon {margin-top: 20px;}

@media (max-width: 1600px) {
	.asked .center {
		margin-top: -50px;
		max-width: 1170px;
	}
	.asked .center:after {
		left: -45px;
		right: -45px;
	}
	.more-content h2.title {
	    font-size: 45px;
	    margin-bottom: 20px;
	}
	.more-content p {font-size: 15px;}
}

@media (max-width: 1500px) {
	.asked .head {min-height: 480px;}
	.asked .head h6 {font-size: 25px;}
	.asked .head h3 {font-size: 30px;}
	.asked .subtitle {font-size: 18px;}
}

@media (max-width: 1200px) {
	.asked .center {max-width: 700px;}
}

@media (max-width: 991px) {
	.asked .head .bg {background-attachment: scroll;}
	.asked .center {margin-top: 0;}
}

@media (max-width: 760px) {
	.asked .head {min-height: 350px;}
	.asked .head h6 {font-size: 20px;}
	.asked .head h3 {
	    font-size: 25px;
	    margin-top: 5px;
	}
	.asked .center {
		margin-top: 0;
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 600px) {
	.asked .head .bg {display: none;}
	.asked .head {
		background: url(../img/bg-asked-mob.webp) no-repeat center top;
		background-size: cover;
		padding: 0 15px;
	}
	.asked .center {
	    margin-top: 0;
	    border-radius: 0;
	    padding: 30px 15px 0 15px;
	}
	.asked .head h6 {font-size: 22px;}
	.asked .head h3 {
	    font-size: 29px;
	    margin-top: 20px;
	}

	.asked .subtitle {font-size: 16px;}

	.asked .heading {text-align: left;}
	.asked .heading svg {
		width: 40px;
		height: 40px;
	}

	.asked-foot {
		padding: 40px 0;
		text-align: center;
	}
	.asked-foot > p {
		margin-bottom: 30px;
		font-size: 15px;
		line-height: 1.4;
	}
	.asked-foot .btn-box h5 {
		font-size: 14px;
		display: block;
		font-weight: normal;
	}
	.asked-foot .btn-box h5 strong {font-weight: bold;}
}

@media (max-width: 500px) {
	.asked [data-src="crown"] {
		display: block;
		margin: 0 auto;
		text-align: center;
	}
	.asked .subtitle {
	    font-size: 16px;
	    margin-top: 8px;
	    text-align: center;
	}
	.asked:before {
		content: '';
	    position: absolute;
	    top: -275px;
	    left: 0;
	    z-index: -1;
	    background: url(../img/bg-line-mob-15.svg) no-repeat;
	    background-size: 400px;
	    width: 400px;
	    height: 1000px;
	}
	.asked .center:after {display: none;}
	.asked h2.title {
	    font-size: 28px;
	    font-weight: normal;
	    text-align: center;
	}
}

@media (max-width: 413px) {
	.asked .head h6 {font-size: 19px;}
	.asked .head h3 {font-size: 25px;}
	.asked-foot > p {font-size: 14px;}
}

/* ------------------ ACCORDEON ------------------ */
.accordeon {list-style: none;}
.btn-accordeon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 23px;
	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: 5px;
	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);
}
.accordeon .inner {padding: 0 23px 35px 23px;}
.accordeon .inner ul {
	list-style: none;
	font-size: 18px;
}
.accordeon .inner p {
	font-size: 18px;
	line-height: 1.4;
}
.accordeon .inner a {
	color: #0F5C78;
	text-decoration: underline;
}
.accordeon .inner a:hover {text-decoration: none;}
.accordeon .inner p + p {margin-top: 20px;}
.accordeon .inner ul strong {font-weight: 600;}
.accordeon .inner ul li + li {margin-top: 35px;}
.accordeon .inner ul li {
	padding-left: 15px;
	position: relative;
}
.accordeon .inner 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;
} 
/*.active .content-accordeon {height: auto;}*/

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

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

	.plus {
		width: 10px;
		min-width: 10px;
		height: 10px;
	}
}

@media (max-width: 500px) {
	.btn-accordeon {
	    padding: 12px 15px;
	    font-size: 13px;
	    gap: 5px;
	}
}

/* ------------------ MORE ------------------ */
.more {
	margin-top: 135px;
	padding-bottom: 50px;
	position: relative;
}
.more .dots {
	width: 320px;
	height: 320px;
	position: absolute;
	top: -185px;
	left: -50px;
}
.more:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 180px;
	height: 300px;
	background: url(../img/bg-dots.png) no-repeat;
}
.more:before {
	content: '';
	display: block;
	width: 1920px;
	height: 1366px;
	background: url(../img/bg-line-8.svg) no-repeat;
	position: absolute;
	bottom: -250px;
	left: 0;
	z-index: -2;
}
.more .bg-line {
	content: '';
	display: block;
	width: 1920px;
	height: 1400px;
	background: url(../img/bg-line-7.svg) no-repeat;
	position: absolute;
	right: 0;
	bottom: -250px;
	z-index: -2;
}
.more .bg-line:after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	height: 200px;
	background: linear-gradient(0, #fff 50%, transparent);
}
.more .center {
	max-width: 1247px;
	display: grid;
	grid-template-columns: 0.8fr 1fr;
	gap: 55px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.more-content h2.title {
	font-size: 50px;
	margin-bottom: 25px;
	margin-top: 5px;
}
.more-content p {font-size: 15.73px;}
.more-content .includs {
	margin-top: 40px;
    margin-bottom: 33px;
    border-radius: 18px;
    border: 1px solid #E3E3E3;
    padding: 35px 24px 24px 24px;
    position: relative;
    background: #fff;
}
.more-content .includs .title {
	background: #fff;
	position: absolute;
	top: 0;
	left: 15px;
	padding: 0 10px;
	background: #fff;
	transform: translateY(-50%);
	font-size: 18px;
	font-weight: 500;
}
.more-content .includs .item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 16px;
}
.more-content .includs .item + .item {margin-top: 17px;}
.more-content .includs .item .icon {
	min-width: 40px;
	display: flex;
	justify-content: center;
}
.more-content .includs .item:nth-child(3) .icon img {
	position: relative;
	left: -4px;
}

.more-image {position: relative;}
.more-image .image {
	border-radius: 25px;
	height: 811px;
	overflow: hidden;
}
.more-image .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left top;
	display: block;
}
.more-image > img {
	position: absolute;
	right: 40px;
	bottom: -40px;
	max-width: 330px;
}

@media (max-width: 1600px) {
	.more {
		margin-top: 100px;
		padding-bottom: 25px;
	}
	.more:after {height: 275px;}
	.more .dots {
		width: 280px;
		height: 280px;
	}
	.more .bg-line {
		width: 1600px;
		height: 1200px;
		bottom: -250px;
		background-size: 1600px;
	}
	.more .center {
		max-width: 1200px;
	    gap: 45px;
	}
}

@media (max-width: 1200px) {
	.more {margin-top: 50px;}
	.more .bg-line {
        width: 1400px;
        height: 1200px;
        bottom: -300px;
        background-size: 1400px;
    }
	.more .dots {
	    width: 200px;
	    height: 200px;
	}
	.more .center {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	.more-content h2.title {font-size: 44px;}
	.more-content p br {display: none;}
	.more-image .image {height: 700px;}
}

@media (max-width: 991px) {
	.more .center {
		grid-template-columns: 1fr;
		max-width: 600px;
		gap: 50px;
	}
	.more-image {order: -1;}
	.more-content [data-src="crown"] {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.more-content h2.title {text-align: center;}
}

@media (max-width: 760px) {
	.more {padding-bottom: 0;}
	.more-image .image {
		height: 500px;
		border-radius: 20px;
	}
	.more-image > img {
		right: 19px;
		max-width: 250px;
	}
}

@media (max-width: 500px) {
	.more .bg-line {display: none;}
	.more:before {display: none;}
	.more:after {display: none;}
	.more .dots {display: none;}
	.more .center {gap: 40px;}
	.more-image .image {height: initial;}
	.more-image .image img {content: url(../img/bg-more-mob.webp?3);}
	.more-image > img {
	    right: 15px;
	    max-width: 215px;
	}
	.more-content [data-src="crown"] {margin-left: 0;}
	.more-content h2.title {
		text-align: left;
		font-size: 32px;
		margin-top: 15px;
		margin-bottom: 20px;
	}
	.more-content .includs {border-radius: 10px;}
	.more-content .includs .item {gap: 13px;}
}

@media (max-width: 413px) {
	.more-content .includs {padding: 30px 15px 24px 15px;}
	.more-content .includs .item {font-size: 15px;}
}

/* ------------------ EFFECTIVE ------------------ */
.effective {padding: 30px 0 20px 0;}
.effective .center {
	display: grid;
	grid-template-columns: 1fr 510px;
	gap: 50px;
	margin: 0 auto;
	max-width: 1265px;
	position: relative;
}
.effective .dots {
	width: 230px;
    height: 230px;
    position: absolute;
    right: 100%;
    top: 0;
    margin-right: 95px;
    margin-top: -30px;
}
.effective h2.title {
	font-size: 63px;
	font-weight: 600;
	margin-top: 25px;
	margin-bottom: 15px;
}

.effective-text {
	font-size: 22px;
	color: #0A1C2B;
	margin-top: 90px;
}
.effective-text li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.effective-text li strong {font-weight: 500;}
.effective-text li svg {
	position: relative;
	top: 8px;
}
.effective-text li + li {margin-top: 10px;}
.effective .star-reviews {
	display: flex;
	align-items: center;
	gap: 8px;
}
.effective .star-reviews > div {
	display: flex;
	align-items: center;
	gap: 4px;
}
.effective .star-reviews p {
	font-size: 14px;
	position: relative;
	top: 3px;
}

@media (max-width: 1600px) {
	.effective .center {
	    grid-template-columns: 1fr 400px;
	    gap: 35px;
	    max-width: 910px;
	}
	.effective .dots {
		width: 180px;
		height: 180px;
		margin-right: 20px;
	}

	.effective h2.title {
	    font-size: 42px;
	    margin-top: 12px;
	    margin-bottom: 14px;
	}

	.effective-text {
	    font-size: 15px;
	    margin-top: 65px;
	}
	.effective-text li {gap: 10px;}
	.effective-text li + li {
	    margin-top: 10px;
	}
}

@media (max-width: 1200px) {
	.effective .center {
	    grid-template-columns: 1fr 350px;
	    gap: 20px;
	}
	.effective h2.title {font-size: 35px;}
	.effective-text {
	    font-size: 13px;
	    margin-top: 52px;
	}
	.effective-text li svg {top: 1px;}
}

@media (max-width: 760px) {
	.effective {padding: 0;}
	.effective .center {
	    grid-template-columns: 1fr;
	    gap: 30px 20px;
	}

	.effective h2.title {font-size: 40px;}

	.effective-text {
	    font-size: 16px;
	    margin-top: 0;
	}
}

@media (max-width: 500px) {
	.effective {
		position: relative;
		margin-top: 45px;
	}
	.effective:after {
		content: '';
		display: block;
		background: url(../webp/bg-effective-mob.svg) no-repeat;
		width: 450px;
		height: 1389px;
		background-size: 450px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
		margin-top: -60px;
	}
	.effective h2.title {
	    font-size: 33px;
	    line-height: 1.2;
	    margin-bottom: 10px;
	}

	.effective-text li svg {
		width: 22px;
		height: 18px;
	}

	.star-reviews {font-size: 15px;}
	.star-reviews svg {
	    width: 18px;
	    height: 18px;
	}
	.star-reviews p {
	    margin-left: 8px;
	    position: relative;
	    top: 2px;
	}
}

@media (max-width: 413px) {
	.effective h2.title {font-size: 29px;}
	.effective-text {font-size: 14px;}
}

/* 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;
    }
}


.treatments .content p.link{
    position:relative;
    width:100%;
    max-width:500px;
}
@media(max-width:500px){
.treatments .content p.link{
    margin-top:10px;
}
}


/* ------------------ IMPORTANT ------------------ */
.important {
	max-width: 1245px;
	margin: 30px auto 0 auto;
	padding: 0 15px;
	min-height: 144px;
}
.important .sticky {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	line-height: 16px;
	background: rgba(255,255,255,.89);
	padding: 15px 20px;
	border: 1px solid #E6E6E6;
	max-width: 1215px;
}
.important .sticky.fixed {
	position: fixed;
	bottom: 0;
	z-index: 9991;
}
.important .content {
	max-height: 114px;
	overflow: hidden;
}
.important .sticky.show .content {
	max-height: 197px;
	overflow-y: auto;
}
.important .sticky.show .content::-webkit-scrollbar {
  	width: 5px;
}
.important .sticky.show .content::-webkit-scrollbar-track {width: 5px;}
.important .sticky.show .content::-webkit-scrollbar-thumb {
	width: 5px;
	background: var(--c-font);
}
.important ul {margin-left: 10px;}
.important ul li {
	position: relative;
	padding-left: 10px;
}
.important ul li:before {
	content: '';
	display: block;
	width: 3px;
	height: 3px;
	background: var(--c-font);
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 0;
}
.important strong {font-weight: 500;}


.important p {margin:10px 0;}
.important pre {
    display: block;
    font-family: monospace;
    unicode-bidi: isolate;
    white-space: pre;
    margin: 1em;
}
.important li li {
    color:red;
}


.important .read-more {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 500;
	gap: 6px;
	transition: all 0.3s;
	cursor: pointer;
	position: relative;
	z-index: 2;
	background: #fff;
	padding: 0 0 0 10px;
}
.important .read-more .plus {
	width: 10px;
	min-width: 10px;
	height: 10px;
}
.important .read-more .plus:before,
.important .read-more .plus:after {background: #161616;}
.important .show .read-more .plus {display: none;}
.important .read-more:after {
	content: '';
	display: block;
	width: 10px;
	height: 2px;
	background: var(--c-font);
	display: none;
	transition: all 0.3s;
}
.important .read-more:hover:after {background: var(--akcent);}
.important .read-more svg {
	width: 10px;
	height: 10px;
	transition: all 0.3s;
}
.important .read-more span:nth-child(2) {display: none;}
.important .sticky.show .read-more svg {display: none;}
.important .sticky.show .read-more:after {display: block;}
.important .sticky.show span:nth-child(1) {display: none;}
.important .sticky.show span:nth-child(2) {display: block;}

@media (max-width: 1600px) {
	.important {max-width: 950px;}
	.important .sticky {max-width: 920px;}
}

@media (max-width: 991px) {
	.important .sticky.fixed {
		left: 15px;
		right: 15px;
	}
	.important .sticky {max-width: initial;}
}

@media (max-width: 760px) {
	.important {margin: 30px auto 0 auto;}
}

@media (max-width: 500px) {
	.important .sticky {
		font-size: 10px;
		line-height: 1.3;
		padding: 15px 10px 7px 10px;
	}
	.important .content {max-height: 147px;}
	.important .read-more {
		font-size: 9px;
		right: -3px;
	}
	.important .read-more svg {
		width: 8px;
		height: 8px;
	}
	.important .read-more:after {
		width: 8px;
		height: 1px;
	}
}

.sources{
    font-size: 11px;
    color: #6676A2;
    width: 100%;
    margin: 0 auto;
}
.sources p{
    margin:10px 0;;
}
.sources a{
    display:block;
    color: inherit;
}
h4 sup a{
    font-size:1rem;
    color:inherit;
}
footer sup{
    font-size:1rem;
}
footer div{
    position:relative;
}
.sources_anchor {
    margin-top:-80px;
    width:0;
    height:0;
    position:absolute;
}
@media (max-width: 760px) {
    @font-face {
        font-family: 'Campton';
        src: url('/assets/fonts/Campton/Campton-SemiBold.eot?1');
        src: url('/assets/fonts/Campton/Campton-SemiBold.eot?#iefix') format('embedded-opentype'),
            url('/assets/fonts/Campton/Campton-SemiBold.woff2?1') format('woff2'),
            url('/assets/fonts/Campton/Campton-SemiBold.woff?1') format('woff'),
            url('/assets/fonts/Campton/Campton-SemiBold.ttf?1') format('truetype'),
            url('/assets/fonts/Campton/Campton-SemiBold.svg#Campton-SemiBold?1') format('svg');
        font-weight: 600;
        font-style: normal;
        font-display: swap;
    }
    #main > div:nth-child(4) > footer > div:nth-child(3) > div > div.image > img:nth-child(1) {
        display:none;
    }
    .sources a{
        word-break: break-all;
        hyphens: auto;
    }

    #main > div:nth-child(4) > footer > div:nth-child(3) > div > div.text > p > br{
    line-height:4;
    margin:20px;
    }
    .dagger_font{
        margin-top:100px;
    }
}

@media (max-width: 500px) {
    .sources{
        padding-bottom:100px;
    }
}

.sup{
    position:relative;
    font-size:45%;
}

.home-slider .wrap .sup{
    top:-8px;
    padding-left:2px;
    font-size:150%;
}

@media (max-width: 1200px) {
    .home-slider .wrap .sup.special{
        position:absolute;
        top:26px;
    }
}
@media (max-width: 760px) {
    .home-slider .wrap .sup.special{
        top:34px;
    }
}
@media (max-width: 413px) {
    .home-slider .wrap .sup.special{
        top:25px;
    }
}

sup.dagger{
    font-size:30%;
    position:relative;
    top:-5px;
}
@media (max-width: 760px) {
    sup.dagger{
        font-size:50%;
        top:0;
    }
}

.dagger_font{
    font-family:'Root-Campton';
}

.sources {
    font-size: 11px !important;
    color: #6676A2;
    width: 100%;
    margin: 0 auto;
}
