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

@font-face {
    font-family: 'Greycliff CF';
    src: url('/fonts/greycliff-cf/GreycliffCF-Bold.woff2') format('woff2'),
        url('/fonts/greycliff-cf/GreycliffCF-Bold.woff') format('woff');
    font-weight: bold;
    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;
}

@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: '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-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;
}

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

:root {
    --greycliff: 'Greycliff CF', sans-serif;
    --campton: 'Campton', sans-serif;
    --color: #091C2B;
    --akcent: #0a1c2b;
    --c-whiteblue: #64CCC9;
    --c-red: #b32025;
    --gold: #CCB179;
    --c-gray: #ededed;
    --c-blue: #609AD9;
    --c-yellow: #FFBE60;
    --bg: #f1f1f1;
    --title-size: 53px;
    --title-size-small: 49px;
}

@media (max-width: 1600px) {
    :root {
        --title-size: 43px;
        --title-size-small: 30px;
    }
}

@media (max-width: 1200px) {
    :root {
        --title-size: 30px;
        --title-size-small: 25px;
    }
}

@media (max-width: 500px) {
    :root {
        --title-size: 6vw;
        --title-size-small: 10vw;
    }
}

body {
    font-family: var(--campton);
    font-size: 14px;
    line-height: 1.2;
    font-weight: normal;
    color: var(--color);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    outline: none;
    user-select: none;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:active, 
a:focus {
    outline: none;
    user-select: none;
}

h2.title {
    font-size: var(--title-size);
    font-weight: normal;
    line-height: 1.2;
}
h2.title span {color: var(--c-gold);}
h2.title b {font-weight: 500;}

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

sup {
    font-size: 80%;
    line-height: 0;
    position: relative;
    top: 4px;
}
sup.store {
    font-size: 40%;
    top: 0 !important;
}

.subtitle {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 5px;
}

.tx-c {text-align: center;}

.wrapper {
    overflow-x: hidden;
}

.center {
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.d-none {display: none;}

@media (max-width: 1600px) {
    .center {max-width: 1000px;}
}

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

@media (max-width: 550px) {
    h2.title {font-weight: 300;}
    .s-550 {display: block !important;}
    .h-550 {display: none !important;}
}

/* ------------------ BUTTONS ------------------ */
.btn-group {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}
.btn-group p {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-group p svg {
    width: 20px;
    height: 20px;
}
.btn-group p span {
    position: relative;
    top: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
    min-height: 62px;
    padding: 0 30px;
    font-family: var(--campton);
    font-size: 19px;
    font-weight: 500;
    color: var(--color);
    border-radius: 30px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.btn:after {
    content: '';
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--c-red);
    width: 0;
    transition: all 0.3s;
}
.btn:hover:after {width: 100%;}
.btn span {
    position: revert;
    z-index: 2;
    margin-top: -0.1em;
    margin-bottom: -0.3em;
}
.btn svg {
    width: 8px;
    height: 14px;
}
.btn:hover {color: var(--color);}
.btn.glass {
    background: black;
    backdrop-filter: blur(7px);
    color: #fff;
}

@supports (-webkit-backdrop-filter: none) {
    .btn.glass {
        box-shadow: none;
        border-top: 1px solid rgba(255,255,255,.5);
        border-left: 0.5px solid rgba(255,255,255,.5);
        border-right: 0.5px solid rgba(255,255,255,.5);
        border-bottom: 1px solid rgba(255,255,255,.5);
    }
}

.btn.black {
    background: #091C2B;
    color: #fff;
}
.btn.gold {
    background: var(--gold);
    color: #fff;
}
.btn.ghost {
    background: transparent;
    color: var(--color);
}
.btn.white:hover {
    color: #fff;
}

@media (max-width: 1600px) {
    .btn {zoom: 0.8;}
    .btn-group p {zoom: 0.8;}
}

@media (max-width: 500px) {
    .btn {zoom: 0.9;}
    .btn > div {max-height: 26px;}
}

.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;
    text-align: center;
}
.btn-fix .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #23f197;
    color: #051C3A;
    padding: 12px 10px 10px 10px;
    animation: shadow-pulse 3s infinite;
    border-radius: 16px;
}
.btn-fix .inner strong {
    font-weight: normal;
    font-size: 20px;
    line-height: 1.3;
    -webkit-font-smoothing: auto;
    font-smoothing: auto;
}
.btn-fix .inner span {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.3;
    margin-top: 3px;
}

@media (max-width: 500px) {
    .btn-fix.active {
        visibility: visible;
        bottom: 0;
    }
}

/* ------------------ HEADER ------------------ */
.head-sidebar,
.head-sidebar * {
    font-family: var(--greycliff);
}
.head-sidebar {
	background: #121628;
	text-align: center;
	padding: 10px 0;
	font-size: 14px;
	color: #FFFFFF;
}
.head-sidebar strong {font-weight: 500;}
.head-sidebar a {
	text-decoration: none;
	transition: all 0.3s;
	color: #FFFFFF;
	font-weight: bold;
}
.head-sidebar a:hover {opacity: 0.7;}

#header {
	background: #fff; 
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 991;
}
#header > a {
    display:block;
}
#header .head-main .center {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 19px;
	padding-bottom: 19px;
	max-width: 1190px;
}
.head-main {box-shadow: 0 10px 60px rgba(38,45,118,.08);}

.logo {
    float: none;
    display: inline-block;
    vertical-align: middle;
    cursor: default;
}

#nav {
	margin-right: 24px;
	margin-left: auto;
}
#nav ul {
	display: flex;
	list-style: none;
}
#nav ul li + li {margin-left: 15px;}
#nav a {
	text-decoration: none;
	color: #0a1c2b;
	position: relative;
	padding: 10px 0;
	transition: all 0.3s;
}
#nav a:hover {color: var(--c-red);}

.head-btn {
	height: 44px;
	padding: 0 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 500;
	background: #CCB179;
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	margin-right: -50px;
}
.head-btn span {
	position: relative;
	z-index: 2;
}
.head-btn:after {
	content: '';
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
	background: #121628;
	width: 0;
	transition: all 0.3s;
}
.head-btn:hover:after {width: 100%;}

@media (max-width: 1500px) {
	#header .head-main .center {max-width: 1000px;}

	#nav {margin-right: 15px;}
	#nav ul li + li {margin-left: 10px;}

	.head-btn {
		height: 40px;
		padding: 0 15px;
		font-size: 14px;
		margin-right: 0;
	}
}

@media (max-width: 1300px) {
	.head-btn {
		height: 40px;
		padding: 0 15px;
		font-size: 13px;
	}
}

@media (max-width: 1100px) {
	.logo {margin-left: 50px;}

	.head-sidebar {font-size: 13px;}
	#header .head-main .center {
        padding-top: 14px;
        padding-bottom: 14px;
		position: relative;
	}

	.btn-nav {
		width: 20px;
		height: 20px;
		background: none;
		outline: none;
		border: none;
		display: block !important;
		position: absolute;
		left: 15px;
		top: 50%;
		z-index: 993;
		transform: translateY(-50%);
	}
	.btn-nav span {
		height: 1px;
		width: 100%;
		display: block;
		background: #093E52;
		transform-origin: center;
		transition: all 0.3s;
	}
	.btn-nav span + span {
		margin-top: 7px;
	}
	.nav-open .btn-nav span {
		position: absolute;
		top: 50%;
		margin-top: -0.5px;
	}
	.nav-open .btn-nav span:first-child {transform: rotate(45deg);}
	.nav-open .btn-nav span:nth-child(2) {display: none;}
	.nav-open .btn-nav span:last-child {transform: rotate(-45deg);}

	#nav {
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: center;
	    position: fixed;
	    top: 0;
	    left: -100%;
	    bottom: 0;
	    width: 100%;
	    z-index: -2;
	    background: #fff;
	    margin-right: 0;
	    visibility: hidden;
	    transition: all 0.3s;
	}
	#nav ul {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	#nav ul a {font-size: 20px;}
	#nav ul a:after {display: none;}
	#nav ul li + li {
		margin-left: 0;
		margin-top: 15px;
	}
	.nav-open #nav {
		left: 0;
		visibility: visible;
	}

	#nav .head-btn {
		display: inline-flex !important;
		color: #fff;
		padding: 0 35px;
		margin-top: 30px;
		font-weight: bold;
		font-size: 17px;
		height: 55px;
	}
}

@media (max-width: 767px) {
	.head-btn {display: none;}
	#header .head-main .center {justify-content: center;}
	.logo {margin-left: 0;}
}



/* ------------------ HOME ------------------ */
.home {
	position: relative;
	margin-top: 121px;
}
.home,
.home * {
    font-family: var(--greycliff);
}
.home:before {
    content: '';
    display: block;
    position: absolute;
    top: -270px;
    left: 0;
    background: url(../webp/bg-steps.svg) no-repeat center;
    width: 1920px;
    height: 1769px;
    z-index: -2;
}
.home .svg-left {
	position: absolute;
	top: -15px;
	left: -5px;
	width: 312px;
	height: 429px;
}

.home .center {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 80px;
	padding: 50px 15px 58px 15px;
	max-width: 1190px;
}

.home-slider .main-slider .splide__slide {
	overflow: hidden;
	border-radius: 25px;
}
.home-slider .main-slider .splide__slide img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.home-slider .thumbnail-slider {
	margin-top: 15px;
	margin-left: -4.5px;
	margin-right: -4.5px;
}
.home-slider .thumbnail-slider .splide__track {overflow: visible;}
.home-slider .thumbnail-slider .splide__slide {
	padding: 0 4.5px;
	border: none !important;
}
.home-slider .thumbnail-slider .wrap {
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	transition: all 0.3s;
	display: flex;
}
.home-slider .thumbnail-slider .wrap img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.home-slider .thumbnail-slider .splide__slide.is-active .wrap,
.home-slider .thumbnail-slider .splide__slide:hover .wrap {
	box-shadow: 0 5px 10px rgba(0, 62, 82, 0.2);
}

.home-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
    width: 80%;
}
.home-content .title strong {
    font-size: 43px;
    font-weight: 500;
}
.home-content .title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--c-akcent);
}
.home-content .title > span {
	background: linear-gradient(90deg, #096A8C, #63C7C7);
	background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}
.home-content .title .sup {
	font-size: 14px;
	font-weight: 500;
	position: relative;
	top: -19px;
/*	top: -12px;*/
	color: #64C8C8;
}

.home-content .subtitle {
	font-size: 15px;
	margin-top: 5px;
	color: var(--c-akcent);
    line-height:1;
}

.home-list {
	list-style: none;
	margin: 20px 0 20px -7px;
}
.home-list li {
	font-size: 17px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	gap: 10px;
}
.home-list li img {
    height:100%;
    width:auto;
}
.home-list li:nth-child(1) .icon * {fill: #083e52;}
.home-list li:nth-child(2) {animation-delay: 0.8s !important;}
.home-list li:nth-child(3) {animation-delay: 1s !important;}
.home-list li + li {margin-top: 10px;}
.home-list .ic-wrap {
	min-width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
    top: 2px;
    margin-right: -10px;
}
.home-list li:nth-child(2) .ic-wrap .icon {max-width: 35px;}
.home-list .ic-one {
	width: 26px;
	height: 26px;
}
.home-list .ic-one svg * {fill: #000 !important;}
.home-list .ic-two {
	width: 26px;
	height: 26px;
}
.home-list .ic-two svg * {stroke: #000;}
.home-list .ic-three {
	width: 26px;
	height: 21px;
}

.home-content .btn-box {
	max-width: 460px;
	width: 100%;
	animation-delay: 1s !important;
}
.home-content .btn {width: 100%;}

.home-fda {
	display: inline-block;
	margin-top: auto;
    width:100%;
	text-align: center;
	padding: 40px 15px 15px;
	font-size: 14px;
	line-height: 1.5;
	position: relative;
	border: 1px solid #cdb179;
	border-radius: 20px;
	font-smoothing: auto;
	-webkit-font-smoothing: auto;
}
.home-fda a {
	font-size: inherit;
	font-weight: 300;
    color: #091938;
    text-decoration: underline;
}
.home-fda a:hover {text-decoration: none;}
.home-fda .icon {
	width: 80px;
	height: 80px;
	padding: 0 5px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.home-fda .icon:after {
	content: '';
	display: block;
	position: absolute;
	top: -5px;
	right: -5px;
	left: -5px;
	bottom: -5px;
	background: #fff;
	border-radius: 50%;
	z-index: -1;
}
.home-fda .icon img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -40px;
	margin-left: -40px;
}
.home-fda .icon img:first-child {
	display: block;
	animation: spinn 5s linear infinite;
}
.home-fda span {color: #cdb179;}

@keyframes spinn {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}


.home-content > p.paragraf {
	font-size: 15px;
    font-weight: 400;
    margin-top: 0;
    padding-left: 0;
    margin-top:10px;
    line-height:1.3;
}
.home-content > p.paragraf sup {
	line-height: 0;
	position: relative;
	top: 2px;
}

.home-content .text {
	margin-top: 20px;
	font-size: 17px;
	line-height: 1.5;
	max-width: 400px;
}


.home .fixed-right {
    position: fixed;
    right: 0;
    top: 160px;
    z-index: 991;
    width: 100px;
    height: 155px;
    transition: .3s linear;
    opacity: 0;
}
.home .fixed-right.active {opacity: 1;}

.home .btn-box {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: var(--c-akcent);
}
.home .btn-box h5 {
	font-size: 15px;
	margin-top: 15px;
	display: inline-flex;
	align-items: center;
	color: #091938;
}
.home .btn-box h5 svg {
	margin-left: 3px;
	position: relative;
	top: 1px;
	fill: #096A8C;
}
.home .btn-box p {
	font-size: 13px;
	line-height: 1.5;
	margin-top: 2px;
	position: relative;
	display: inline-block;
}
.home .btn-box p strong {
	font-weight: 500;
	position: relative;
}
.home .btn-box p strong svg {
	position: absolute;
	bottom: 2px;
	left: 100%;
	margin-left: 4px;
	fill: #096A8C;
}
.home .btn-box a:not(.btn) {
	color: #0b4053;
	text-decoration: underline;
}
.home .btn-box a:not(.btn):hover {text-decoration: none;}

.home .buttons {
	display: inline-block;
	text-align: center;
	max-width: 488px;
}
.home .buttons .group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.home .buttons .group .btn:nth-child(1) {background: #609ad9;}
.home .buttons .group .btn:nth-child(2) {background: #ffbe60;}
.home .buttons .foot {
	font-size: 19px;
	margin-top: 25px;
	line-height: 1.4;
}
.home .buttons .btn-important {margin-top: 30px;}
.home .buttons .btn {animation: pulse 1.5s infinite;}
.home .buttons .btn:last-child {animation-delay: .5s;}
.home .home-content .btn {
    width: 100%;
}

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

.home .btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 52px;
	width: 350px;
	font-size: 17px;
	font-weight: 500;
	background: #23f197;
	border-radius: 11px;
	color: #091938;
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	animation: shadow-pulse 3s infinite;
    zoom:1;
    padding:0;
    margin:0;
    min-height:unset;
    gap: 0;
}
.home .btn b {font-weight: bold;}
.home .btn span,
.home .btn b {
	position: relative;
	z-index: 2;
}
.home .btn svg {
	fill: #091938;
    margin-left: 10px;
    width: 8px;
    height: 13px;
    transition: all 0.3s;
    position: relative;
    top: 1px;
    z-index: 2;
}
.home .btn:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	background: #051C3A;
	width: 0;
	transition: all 0.3s;
}
.home .btn:hover {color: #fff;}
.home .btn:hover:after {width: 100%;}
.home .btn:hover svg {
	transform: translateX(10px);
	fill: #fff;
}

.home .path {
    stroke-dasharray: 300;
    animation: dash 5s linear infinite;
}

@keyframes dash {to {stroke-dashoffset: 1200;}}

@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}
}

.home .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;
}
.home .btn-fix.show {
	visibility: visible;
	bottom: 0;
}
.home .btn-fix .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #23f197;
	color: #051C3A;
	padding: 12px 10px 14px 10px;
	animation: shadow-pulse 3s infinite;
	border-radius: 16px;
	text-align: center;
}
.home .btn-fix .inner strong {
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
	-webkit-font-smoothing: auto;
	font-smoothing: auto;
}
.home .btn-fix .inner span {
	font-weight: 500;
	font-size: 13px;
	line-height: 1.3;
	margin-top: 3px;
}

#home > div.center > div.home-fda.d-none.s-750.animated.show > p {
    line-height:1.5
}

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

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

	h2.title {font-size: 33px;}
	.home .subtitle {font-size: 15px;}

	.home .center {max-width: 1000px;}

	.home .btn {
	    height: 45px;
	    width: 300px;
	    font-size: 15px;
	    border-radius: 10px;
	}
	.home .btn svg {
		width: 7px;
		height: 12px;
	}
	.home .btn-box h5 {font-size: 13px;}
	.home .btn-box p {
		font-size: 11.5px;
		margin-top: 4px;
	}
} 

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

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

@media (max-width: 768px) {
	.home .fixed-right {top: 250px;}
}

@media (max-width: 767px) {
	h2.title {font-size: 29px;}
	.home .s-767 {display: block !important;}
	.home .h-767 {display: none !important;}

	.home .btn {
	    height: 55px;
	    width: 350px;
	    font-size: 18px;
	}
	.home .btn svg {
	    width: 7px;
	    height: 12px;
	    top: 1px;
	}
	.home .btn-box h5 {
		font-size: 15px;
		margin-top: 15px;
	}
	.home .btn-box p {font-size: 13.3px;}
}

@media (max-width: 991px) {
	.home-content > p.paragraf {
		font-size: 12px;
		font-weight: 500;
	}

	.home-content .text {
		font-size: 18px;
		max-width: 450px;
	}
}

@media (max-width: 1500px) {
	.home {margin-top: 114px;}

	.home .svg-left {
		width: 250px;
		height: 340px;
	}

	.home .center {
	    gap: 24px 50px;
	    padding: 40px 15px 50px 15px;
	    max-width: 1000px;
	}

	.home-slider .main-slider .splide__slide {border-radius: 20px;}
	.home-slider .thumbnail-slider .wrap {border-radius: 14px;}
	.home-list li {
		font-size: 16px;
		gap: 15px;
	}
	.home-list li + li {margin-top: 10px;}

	.home-content .btn-box {max-width: 360px;}

	.home-fda {
	    padding: 28px 10px 10px;
	    font-size: 11px;
	    border-radius: 17px;
	    margin-left: 0;
		width: 354px;
        min-width:unset;
        margin-top:40px;
	}
	.home-fda .icon {
		width: 50px;
		height: 50px;
	}
	.home-fda .icon img {
		margin-top: -25.5px;
		margin-left: -25.5px;
	}
}

@media (max-width: 991px) {
	.home {margin-top: 105px;}

	.home .svg-left {
	    width: 200px;
	    height: 300px;
	}

	.home .center {gap: 35px 35px;}

	.home-slider .thumbnail-slider .wrap {max-height: 75px;}

	.home-content .title {font-size: 20px;}
	.home-content .subtitle {font-size: 12px;}

	.home-list {margin: 10px 0 13px -15px;}
	.home-list li {
	    font-size: 13px;
	    gap: 10px;
	}
	.home-list .ic-wrap {min-width: 50px;}
	.home-list .ic-wrap .icon {max-width: 50px;}
	.home-list li:nth-child(2) .ic-wrap .icon {max-width: 25px;}

	.home-list li + li {margin-top: 7px;}

	.home-content .btn-box {max-width: 320px;}

	.home-fda {
		margin-top: 40px;
	    min-width: 320px;
	    font-size: 12px;
        max-width: 316px;
        min-width: unset;
	    padding: 27px 10px 10px 10px;
	    font-size: 10px;
	    max-width: unset;
	    min-width: unset;
	    width: 320px;
	}
	.home-fda .icon {
		width: 55px;
		height: 55px;
	}
	.home-fda .icon img {
		margin-top: -27.5px;
		margin-left: -27.5px;
	}
}

@media (max-width: 750px) {
	.home {margin-top: 95px;}

	.home .svg-right {
		position: absolute;
		top: -5px;
		right: -5px;
	}

	.home .image {
		position: absolute;
		top: 200px;
		right: 0;
	}
	.home .center {grid-template-columns: 1fr;}
	.home-content {
		order: -1;
		position: relative;
		align-items: center;
        width:100%;
	}
	.home-content .title {
		font-size: 26px;
		text-align: center;
	}
	.home-content .subtitle {
		font-size: 20px;
		margin-top: 10px;
	}
	.home-content .title strong {font-size: 10.6vw;}

	.home-list {margin: 30px 0 35px;}
	.home-list li {
	    font-size: 20px;
	    gap: 0px;
	}
	.home-list li + li {margin-top: 15px;}

	.home-fda {
		padding: 50px 30px 25px 30px;
		font-size: 15px;
		margin-top: 60px;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
	}
	.home-fda .icon {
		width: 80px;
		height: 80px;
	}
	.home-fda .icon img {
		margin-top: -40px;
		margin-left: -40px;
	}

	.home-slider {
		max-width: 500px;
		margin: 0 auto;
	}
}
@media (max-width: 750px) {
	.home-content > p.paragraf {font-size: 21px;}
	.home-content .text {text-align: center;}
}

@media (max-width: 600px) {
	.home-content .text {
		font-size: 4vw;
		text-align: left;
	}

	.home-content > p.paragraf {
	    font-size: 4.1vw;
	}
}


@media (max-width: 600px) {
	.home {margin-top: 105px;}

	.home .center {padding: 40px 15px 40px 15px;}

	.home-content {align-items: flex-start;}
	.home-content .title {
		font-size: 6vw;
		text-align: left;
	}
	.home-content .title .sup {top: -15px;}
	.home-content .subtitle {
	    font-size: 4vw;
	    margin-top: 10px;
	    color: #0a1c2b;
	}
	.home-content .title strong {
		margin-bottom: -30px;
		display: block;
	}

	.home-content > p.paragraf {
	    font-size: 4.1vw;
	}

	.home .svg-right {
	    position: absolute;
	    top: -2px;
	    right: -5px;
	    width: 200px;
	    height: 200px;
	}

	.home-list {margin: 20px 0 20px -15px;}
	.home-list li {
	    font-size: 4vw;
	    gap: 10px;
	}
	.home-list li + li {margin-top: 10px;}

	.home .image {
	    position: absolute;
	    top: 186px;
	    right: -10px;
	    max-width: 135px;
	}

	.home-content .btn-box {
	    max-width: inherit;
	    position: relative;
	    z-index: 2;
	}
	.home-slider .thumbnail-slider {margin-top: 10px;}
	.home-slider .thumbnail-slider .splide__slide {padding: 0 4px;}

	.home-fda {
	    padding: 55px 10px 15px 10px;
	    font-size: 12px;
	    margin-top: 40px;
	}
	.home-fda .icon {
		width: 90px;
		height: 90px;
	}
	.home-fda .icon img {
		margin-top: -45px;
		margin-left: -45px;
	}
}

@media (max-width: 413px) {
	.home .image {
	    top: 170px;
	    max-width: 115px;
	}

	.home-fda {
		font-size: 14px;
		padding-top: 45px;
	}
	.home-fda .icon {
		width: 80px;
		height: 80px;
	}
	.home-fda .icon img {
		margin-top: -40px;
		margin-left: -40px;
	}
}


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

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

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

	.home .fixed-right {
		width: 80px;
		height: 125px;
		top: 170px;
	}

	.home .buttons {
	    max-width: inherit;
	    width: 100%;
	    padding: 0 15px;
	}
	.home .buttons .group {
		flex-direction: column;
		gap: 14px;
	}
	.home .buttons .foot {font-size: 16px;}
	.home .buttons .btn {
		height: 55px;
		min-width: inherit;
		font-size: 15px;
		letter-spacing: 1px;
		width: 100%;
	}
}

@media (max-width: 413px) {
	.home .btn-fix .inner strong {font-size: 14px;}

	h2.title {font-size: 25px;}
	.home .btn-box {width: 100%;}
	.home .btn {
	    height: 50px;
	    width: inherit;
	    font-size: 17px;
	}
	.home .btn-box h5 {
		font-size: 14px;
		margin-top: 17px;
	}
	.home .btn-box p {
		font-size: 12.5px;
	}

	.home .buttons .foot {font-size: 13px;}
}

.home .trust-badges {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 20px;
    position:relative;
}
.home .trust-badges > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.home .trust-badges img {
    position: relative;
    width:16px;
    top: 1px;
}
.home .trust-badges > div:first-child img {
    position: relative;
    top: -2px;
    width:17px;
}

@media (max-width: 991px) {
    .home .trust-badges {zoom: 0.9;}
}

@media (max-width: 500px) {
    .home .trust-badges {
        zoom: 1;
    }
    .home .trust-badges {
        margin-top: 25px;
        zoom: 0.9;
    }
}







.approved .trust-badges {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 20px;
}
.approved .trust-badges > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}
.approved .trust-badges span {
    position: relative;
    top: 2px;
}
.approved .trust-badges > div:first-child img {
    position: relative;
    top: -1px;
}

@media (max-width: 767px) {
    .approved .trust-badges {justify-content: center;}
}













.wrap-notification {
    padding-top: 35px;
    max-width: 365px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    padding-bottom: 75px;
    height: 100%;
}
.wrap-notification .notification:nth-child(2),
.wrap-notification .notification:nth-child(4) {margin-left: auto;}
.wrap-notification .notification:nth-child(2) {animation-delay: 0.3s !important;}
.wrap-notification .notification:nth-child(3) {animation-delay: 0.6s !important;}
.wrap-notification .notification:nth-child(4) {animation-delay: 0.9s !important;}

.wrap-notification .pillow {
    max-width: 235px;
    margin-top: 50px;
    margin-left: 35px;
    animation:
        floatY 12s ease-in-out infinite,
        floatRotate 16s ease-in-out infinite,
        floatDrift 24s linear infinite;
    margin-bottom: auto;
    transform-style: preserve-3d;
    will-change: transform;
}

.notification {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: start;
    gap: 15px;
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 280px;
}
.notification .avatar {
    line-height: 0;
    width: 50px;
    flex-shrink: 0;
}
.notification h5 {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
    opacity: 0.4;
    margin-bottom: 5px;
}
.notification p {
    font-size: 14px;
    margin-bottom: 8px;
}
.notification time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.4;
}
.notification time svg {
    width: 14px;
    height: 11px;
    color: #fff;
    position: relative;
    top: -1px;
}

@keyframes floatY {
    0%, 100% {transform: translateY(0);}
    50% {transform: translateY(-22px);}
}

@keyframes floatRotate {
    0% {rotate: 0deg;}
    50% {rotate: 2deg;}
    100% {rotate: 0deg;}
}

@keyframes floatDrift {
    0% {translate: 0 0;}
    50% {translate: 6px 0;}
    100% {translate: 0 0;}
}

@media (max-width: 1600px) {
    .wrap-notification {zoom: 0.7;}
}
@media (max-width: 991px) {
    .wrap-notification {max-width: 300px;}
    .wrap-notification {zoom: 0.76;}
}

@media (max-width: 767px) {
    .wrap-notification {
        zoom: 0.9;
        padding: 50px 0;
    }
    .wrap-notification .pillow {margin-top: 0;}
}

@media (max-width: 500px) {
    .wrap-notification {
        min-height: inherit;
        max-width: 360px;
        width: 100%;
        padding: 25px 0 30px 0;
    }
}







/* ------------------ HELP ------------------ */
.help {
    padding: 0 15px;
    margin-top: 40px;
}
.help .main-label {box-shadow: none;}
.help h2.title {margin-top: 20px;}
.help .wrap {
    padding: 60px 0 45px 0;
    border-radius: 24px;
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}

.splide-help {
    margin: 30px auto 0 auto;
    max-width: 1200px;
}
.splide-help .slide {
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    background: #F5F5F6;
}
.splide-help .slide .image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.splide-help .content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 29px 15px 15px 15px;
    color: #fff;
}
.splide-help .content.text-black {color: #000229;}
.splide-help .content > small {
    display: inline-block;
    margin-top: 10px;
}
.splide-help h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}
.splide-help .content > p {font-size: 21px;}
.splide-help .content > p b {font-weight: 600;}
.splide-help .content > p.small {
    font-weight: 300;
    font-size: 12px;
    margin-top: 10px;
}

.slide-second .content {
    color: #000229;
}
.slide-second .analitics {margin-top: auto;}
.slide-second .analitics svg {
    width: 100%;
}
.slide-second .analitics ul {
    display: flex;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
    padding: 4px;
    margin-top: 17px;
}
.slide-second .analitics ul li {
    flex: 1;
    min-height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #98A0A3;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--greycliff);
    color: rgba(9, 28, 43, .75);
}
.slide-second .analitics ul li.active {
    background: #dddfe1;
    color: #091C2B;
    border-radius: 40px;
}
.slide-second .foot {
    margin-top: auto;
    text-align: center;
}
.slide-second .foot p {font-size: 11px;}
.slide-second .foot a {
    font-size: 13px;
    margin-top: 20px;
    display: inline-block;
    text-decoration: underline;
    color: #000229;
}
.slide-second .foot a:hover {text-decoration: none;}

.animated.show .graph-line {
    stroke-dasharray: 1200;  
    stroke-dashoffset: 1200;
    animation: draw 5s linear forwards;
}

.animated.show .moving-dot {
    offset-path: path("M1.65405 2.20481L22.6693 9.28908L36.2978 15.8671C41.0884 18.1794 46.5076 18.8485 51.7168 17.7709C59.8049 16.0979 68.1877 18.666 73.9507 24.5824L85.7152 36.6601L95.7736 50.377C102.049 58.9351 113.685 61.5364 123.007 56.4654C126.117 54.7739 129.6 53.8878 133.14 53.8878H136.483C144.422 53.8878 152.117 56.6385 158.257 61.672L169.776 71.1154L182.665 81.6815C187.92 85.9891 194.505 88.3431 201.299 88.3431C208.094 88.3431 214.678 90.6971 219.933 95.0046L223.069 97.5751C229.376 102.745 237.279 105.571 245.434 105.571H249.074C252.219 105.571 255.335 104.957 258.245 103.764C268.107 99.7219 279.452 102.613 286.177 110.882L295.868 122.798L302.64 131.463C310.988 142.144 325.581 145.688 337.899 140.026");
    offset-distance: 5%;
    offset-rotate: auto;
    animation: run 2s 1s linear forwards;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes run {
    to { offset-distance: 80%;}
}

.slide-third {
    align-content: end;
    background: linear-gradient(135deg, #2273B5, #61B7E7) !important;
    perspective: 500px;
}
.splide-help .slide-fourth .image {
    display: block;
    width: 100%;
    max-width: 85%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.splide-help .slide-fourth .image {
    margin-bottom: 60px;
    max-width: 90%;
}

@keyframes rotate3d {
    0% {transform: rotateZ(0deg) skewX(0) translateX(0);}
    25% {transform: rotateZ(-3deg) skewX(-3deg) translateX(5px);}
    50% {transform: rotateZ(0deg) skewX(0deg) translateX(0);}
    75% {transform: rotateZ(3deg) skewX(3deg) translateX(-5px);}
    100% {transform: rotateZ(0deg) skewX(0deg) translateX(0);}
}

.slide-fourth {
    align-content: end;
    background: linear-gradient(135deg, #0D835A, #75D8B5) !important;
    perspective: 500px;
}

.slide-third .lifemd,
.slide-fourth .lifemd {
    position: absolute;
    right: 17px;
    bottom: 19px;
}

.splide__arrow {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #F5F5F6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: inherit;
    bottom: 0;
    transform: none;
}

.splide__arrow--prev {
    left: inherit;
    right: 80px;
}

.splide__pagination {
    position: static;
    transform: none;
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0 15px;
    padding: 0;
    background: #F5F5F6;
    border-radius: 24px;
    margin-top: 35px;
    min-height: 59px;
    max-width: 180px;
    position: relative;

    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;           
    -ms-overflow-style: none;
    justify-content: flex-start;   
    scroll-snap-type: x mandatory;
    border-left: 25px solid #F5F5F6;
    border-right: 25px solid #F5F5F6;
}
.splide__pagination::-webkit-scrollbar {
    display: none;
}

.splide__pagination li {
    line-height: 0;
    flex: 0 0 auto;
    scroll-snap-align: center;
}
.splide__pagination li button {
    margin: 0;
    background: #D9D9D9;
}
.splide__pagination li button.is-active {
    transform: none;
    background: #000229;
}

.help .bottom {
    margin-top: -50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.help .bottom small {
    display: inline-block;
    max-width: 857px;
    font-size: 12px;
    line-height: 1.3;
    color: #6F707F;
}
.help .bottom small a {
    color: #6F707F;
    text-decoration: underline;
}
.help .bottom small a:hover {text-decoration: none;}
.help .bottom .btn-group {margin-top: 30px;}
.help .bottom .btn {padding: 0 50px;}

@media (max-width: 1600px) {
    .splide-help {
        margin-top: 40px;
    }
    .section.first .inner .label {zoom: 0.8;}
    .splide-help h4 {
        font-size: 10.5px;
        margin-top: 10px;
    }
    .splide-help .slide {border-radius: 20px;}
    .splide-help .content > p {font-size: 17px;}
    .splide-help .content {padding: 20px 15px 15px 15px;}
    .slide-second .analitics ul {zoom: 0.9;}
    .slide-second .foot p {font-size: 8.9px;}
    .slide-second .foot a {font-size: 10px;}
    .slide-third .lifemd {zoom: 0.9;}

    .splide__pagination,
    .splide__arrow {zoom: 0.9;}

    .help small {font-size: 9px;}

    .help .bottom small {
        max-width: 650px;
        font-size: 11px;
    }
}

@media (max-width: 1400px) {
    .help {margin-top: 30px;}
    .help .wrap {padding: 50px 0 50px 0;}
    .help .bottom small {max-width: 600px;}
}

@media (max-width: 1200px) {
    .help .center {max-width: 900px;}
    .splide-help .content > p {font-size: 15px;}
    .slide-second .foot {
        margin-left: -10px;
        margin-right: -10px;
    }
    .slide-second .foot p {font-size: 8.5px;}
    .slide-third .lifemd {zoom: 0.8;}
    .splide__pagination, 
    .splide__arrow {
        zoom: 0.8;
    }
}

@media (max-width: 991px) {
    .splide-help .content > p {font-size: 13px;}
    .splide-help {margin-top: 25px;}
    .help .bottom {margin-top: -40px;}
    .help .bottom small {max-width: 500px;}
}

@media (max-width: 767px) {
    .splide-help .splide__track {overflow: visible;}
    .slide-second .foot p {font-size: 1.2vw;}
    .section-product .image {max-width: 300px;}
    .splide__pagination, .splide__arrow {
        zoom: 0.7;
    }
    .help .bottom {margin-top: 25px;}
}

@media (max-width: 500px) {
    .help {padding: 0;}
    .help .center .tx-c {text-align: left;}
    .help h2.title {
        margin-top: 15px;
        font-size: 7.5vw;
        font-weight: 300;
        line-height: 1.2;
    }
    .help h2.title br {display: none;}
    .splide-help {margin-top: 30px;}
    .splide-help .content {padding-top: 25px;}
    .splide-help h4 {font-size: 3.3vw;}
    .splide-help .content > p {font-size: 4.1vw;}
    .slide-second .content {color: var(--akcent);} 
    .slide-second .foot p {font-size: 2.3vw;}
    .slide-second .foot a {color: var(--akcent);}
    .slide-second .analitics ul {zoom: 1;}

    .help small {
        margin-top: 10px;
        font-size: 2.5vw;
        line-height: 1.6;
    }

    .help .bottom {
        font-weight: 300;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .help .bottom .btn-group {
        margin-top: 0;
        width: 100%;
    }
    .help .bottom small {
        order: 1;
        text-align: center;
        font-size: 10px;
    }
}


/* ------------------ SCROLL ------------------ */
.scroll {
    padding: 0 15px;
    margin-top: 45px;
}
.scroll .wrap {
    border-radius: 24px;
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    padding: 85px 0 65px 0;
}
.scroll h2.title {margin-bottom: 40px;}
.scroll .center {max-width: 1510px;}
.section {
    position: relative;
}
.section {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    border-radius: 30px;
    color: #fff;
    transition: all 0.3s linear;
    will-change: transform;
    position: sticky;
}
.section.first {
    background: linear-gradient(50deg, #355D90, #355D90);
    top: 90px;
}
.section.second {
    background: linear-gradient(135deg, #162D50, #1C3960);
    top: 150px;
    margin-top: 55px;
}
.section.third {
    background: linear-gradient(135deg, #041433, #082763);
    margin-top: 55px;
    top: 130px;
}
.section.fourth li a {
    color:inherit;
}
.section.fourth {
    margin-top: 55px;
    top: 210px;
}
.section-content {
    padding: 44px 15px 95px 44px;
    position: relative;
}
.section-content h2.title {
    font-size: 68px;
    line-height: 1.1;
    font-weight: normal;
    color: #fff;
    margin-bottom: 20px;
}
.section.third .section-content h2.title span {
    position: relative;
    text-fill-color: inherit;
    -webkit-text-fill-color: inherit;
}
.section.third .section-content h2.title span sup {
    font-size: 0.4em;
    position: absolute;
    top: 27px;
    left: 5px;
    font-weight: 300;
}
.section-content h2.title sub {
    line-height: 0;
    font-size: 0.4em;
    font-weight: 300;
    display: inline-block;
    position: relative;
    top: -40px;
}
.section-content p.subtitle {font-size: 24px;}
.section-content p.subtitle b {font-weight: 600;}
.section-content .list {
    margin-top: 30px;
    margin-bottom: 50px;
}
.section-content .list li {
    display: flex;
    align-items: center;
    gap: 0 12px;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
}
.section-content .list li + li {margin-top: 17px;}
.section-content .list li .ic {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.section-content .list li .ic svg {
    width: 9px;
    height: 17px;
}
.section-content .btn {
    border-radius: 16px;
}

.section.first .section-content .list li .ic {color: #2A7BBB;}
.section.second .section-content .list li .ic {color: #000229;}
.section.third .section-content .list li .ic {color: #000229;}

.section-product {padding: 10px;}
.section-product .inner {
    border-radius: 20px;
    background: rgba(255,255,255,.2);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.section-product .speed {
    min-width: 900px;
    position: absolute;
    top: 10px;
    left: 50%;
    animation: rotate 150s linear infinite;
    transform-origin: center;
}

@keyframes rotate {
    0% {transform: translateX(-50%) rotate(0);}
    100% {transform: translateX(-50%) rotate(-360deg);}
}

.section-product .label {
    background: rgba(255,255,255,.2);
    color: rgba(255,255,255,.8);
}
.section-product .label:before {background: rgba(255,255,255,.8);}
.section-product h3 {
    font-size: 35px;
    font-weight: 500;
    margin-top: 15px;
}
.section-product h3 sup {
    font-weight: normal;
    font-size: 70%;
}
.section-product h4 {
    font-size: 14.5px;
    font-weight: 600;
    margin-top: 15px;
}
.section-product h4 sup {
    font-size: 0.4em;
    position: relative;
    top: -5px;
}
.section-product .image {
    max-width: 550px;
}

.section.first .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section.first .inner .label {
    margin-top: auto;
    background: rgba(245,245,245,.2);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 33px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    position: revert;
    padding: 0 15px;
    gap: 6px;
}
.section.first .inner .label:before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
}
.section.first .inner .label span {
    margin-top: -0.1em;
    margin-bottom: -0.4em;
}
.section.first .inner small {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}
.section.first .inner .image {
    margin-top: 10px;
    margin-bottom: 20px;
    max-width: 290px;
}


.section.second .section-product .speed {
    opacity: 0.19;
    top: 220px;
}

.box-phone {
    max-width: 410px;
    position: relative;
    margin: 20px auto 0 auto;
}
.box-phone > img {display: block;}
.box-phone .inner {
    width: 250px;
    height: 545px;
    border-radius: 30px;
    margin-top: -8px;
    margin-left: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #eae7ed;
    display: flex;
    flex-direction: column;
}
.box-phone .inner > small {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    text-align: center;
    font-size: 7px;
    font-weight: 600;
    color: #A6A4A4;
}
.box-phone .lifemd {
    max-width: 61px;
    position: absolute;
    top: 53px;
    left: 50%;
    transform: translateX(-50%);
}
.box-phone .head {
    display: flex;
    align-items: center;
    padding: 18px 16px 0 16px;
    position: relative;
}
.box-phone .head:after {
    content: '';
    display: block;
    width: 84px;
    height: 22px;
    background: #000;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 8px;
}
.box-phone .time {
    margin-right: auto;
    font-size: 9px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #474747;
}
.box-phone .head img:last-child {margin-left: 5px;}

.box-phone .doctor {
    max-width: 192px;
    margin: auto;
    position: relative;
}
.box-phone .doctor img {
    position: relative;
    z-index: 2;
}
.box-phone .message-small {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: -25px;
    margin-left: -21px;
    background: linear-gradient(135deg, #2273B5, #61B7E7);
    border-radius: 10px;
    color: #fff;
    padding: 8px;
    max-width: 150px;
    font-size: 10px;
    z-index: 1;
    line-height: 1.2;
    text-align: left;
}
.box-phone .message-small time {
    font-size: 7px;
    font-weight: 600;
    margin-top: 7px;
    display: inline-block;
}
.box-phone .message-large {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: -25px;
    margin-right: -12px;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    border-radius: 11px;
    padding: 5px 7px 5px 7px;
    font-size: 10px;
    max-width: 152px;
    line-height: 1.2;
    color: #474747;
    text-align: left;
}
.box-phone .message-large > div {
    display: flex;
    align-items: center;
    gap: 0 7px;
    margin-bottom: 5px;
    margin-left: -2px;
}
.box-phone .message-large > div span {
    font-weight: 600;
    font-size: 7px;
}
.box-phone .message-large time {
    font-size: 7px;
    font-weight: 600;
    margin-top: 7px;
    display: inline-block;
}

.box-phone ul {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 11px;
    padding: 10px 17px;
    font-size: 6px;
    font-weight: 600;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 38px auto;
    color: #474747;
}
.box-phone ul li {text-align: center;}
.box-phone ul li:nth-child(2) {animation-delay: 0.5s !important;}
.box-phone ul li:nth-child(3) {animation-delay: 0.7s !important;}
.box-phone ul li:nth-child(4) {animation-delay: 0.9s !important;}
.box-phone ul .ic {
    min-height: 17px;
    text-align: center;
    line-height: 0;
}

.section.second .section-content .pillow {
    max-width: 195px;
    line-height: 0;
    position: absolute;
    bottom: 130px;
    right: 90px;
    z-index: 2;
    animation:
        floatY 12s ease-in-out infinite,
        floatRotate 16s ease-in-out infinite,
        floatDrift 24s linear infinite;

    transform-style: preserve-3d;
    will-change: transform;
}
.section.second .section-product .inner:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: url(../img/scroll/weight.webp?05);
    background-size: cover;
}

.section.third .section-product .inner:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: url(../img/scroll/man.webp?05);
    background-size: cover;
}

.section-product .foot {
    margin-top: auto;
    display: flex;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(5px);
    color: #fff;
    position: relative;
    z-index: 10;
}
.section-product .foot > div {
    width: 33.33%;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}
.section-product .foot > div h4 {
    font-size: 38px;
    font-weight: 500;
}
.section-product .foot > div p {
    font-size: 15px;
}

.section-product .foot-text {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.section-product .foot-text p {
    font-size: 31px;
    font-weight: 600;
}
.section-product .foot-text small {
    font-size: 28px;
    font-weight: 500;
}

.section-product .notification {
    max-width: 497px;
    position: absolute;
    top: 45px;
    left: 45px;
}

.section.fourth {
    background: linear-gradient(135deg, #3EA2A0, #A1BDE1);
}
.section.fourth .section-content .list li .ic svg {
    stroke: #02A0A3;
}
.section.fourth .section-product .inner:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: url(/assets/img/wegovy-pill/fourth-blue.webp?05) center;
    background-size: cover;
}
.section.fourth .section-product .label {
    position: absolute;
    top: 40px;
    left: 48px;
    z-index: 10;
    background: #F5F5F6;
    color: #999AA9;
    height: 40px;
}
.section.fourth .section-product .label:before {background: #999AA9;}

.section.fourth .section-product img {
    max-width: 215px;
    position: absolute;
    top: 20px;
    right: 35px;
    z-index: 10;
}

@media (max-width: 1600px) {
    .scroll .center {max-width: 1200px;}
    .section-content {padding: 35px 15px 40px 35px;}
    .section-content h2.title {font-size: 52px;}
    .section-content p.subtitle {font-size: 20px;}
    .section-content .list {margin-bottom: 40px;}
    .section-content .list li {
        gap: 0 10px;
        font-size: 14.5px;
    }
    .notification .avatar {width: 55px;}
    .section-product .speed {zoom: 0.78;}
    .section-product .image {max-width: 350px;}
    .section-product h3 {font-size: 33px;}
    .section-product h4 {
        font-size: 10.5px;
        margin-top: 10px;
    }

    .box-phone {zoom: 0.77;}

    .section-product .foot > div h4 {font-size: 26px;}
    .section-product .foot > div p {font-size: 12px;}

    .section-product .notification {
        max-width: 390px;
        top: 30px;
        left: 30px;
    }

    .notification {gap: 15px;}
    .notification h5 {font-size: 14px;}
    .notification p {font-size: 14px;}
    .notification time {
        gap: 5px;
        font-size: 13px;
    }

    .section-product .foot-text {padding: 15px;}
    .section-product .foot-text p {font-size: 23px;}
    .section-product .foot-text small {font-size: 20px;}

    .section.first .inner small {
        font-size: 10px;
        margin-top: 5px;
    }
    .section.first .inner .image {
        zoom: 0.7;
        margin-bottom: 30px;
    }

    .section.second .section-content .pillow {
        zoom: 0.8;
        bottom: 105px;
    }

    .section.fourth .section-product .label {
        top: 30px;
        left: 35px;
        zoom: 0.8;
    }

    .section.fourth .section-product img {
        zoom: 0.8;
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 1400px) {
    .scroll {margin-top: 30px;}
    .scroll .wrap {padding: 50px 0 50px 0;}
}

@media (max-width: 1200px) {
    .section-product .speed {zoom: 0.75;}
    .section-content {padding-bottom: 50px;}
    .section-content h2.title {font-size: 4.2vw;}
    .section-content p.subtitle {font-size: 1.9vw;}
    .section-content p.subtitle br {display:none}
    .section-content .list {
        margin-bottom: 30px;
        margin-top: 25px;
    }
    .section-content .list li {font-size: 1.5vw;}
    .section-product .image {max-width: 400px;}
    .section-product h3 {font-size: 20px;}
    .section-product h4 {font-size: 30px;}

    .box-phone {zoom: 0.61;}

    .section-product .foot > div {padding: 15px 0;}
    .section-product .foot > div h4 {font-size: 21px;}
    .section-product .foot > div p {font-size: 11px;}

    .section.second .section-content .pillow {
        zoom: 0.6;
        right: 30px;
        bottom: 200px;
    }
    .section.fourth .section-product .label {
        top: 20px;
        left: 25px;
        zoom: 0.7;
    }

    .section.fourth .section-product img {
        zoom: 0.7;
    }
}

@media (max-width: 991px) {
    .section-product .speed {zoom: 0.63;}
    .section-product .image {max-width: 360px;}
    .section-product h3 {
        font-size: 15px;
        margin-top: 10px;
    }
    .section-product h4 {
        font-size: 15px;
        margin-top: 5px;
    }
    .section-content {padding: 25px 15px 65px 25px;}
    .section-content .list li + li {margin-top: 10px;}
    .section + .section {margin-top: 30px;}
    .section-product .image {max-width: 320px;}
    .section-product .speed {zoom: 0.65;}
    .section-product .foot > div h4 {font-size: 16px;}
    .section-product .foot > div p {font-size: 8px;}

    .section-product .foot-text p {font-size: 17px;}
    .section-product .foot-text small {font-size: 13px;}

    .section.first .inner .label {zoom: 0.7;}
    .section.first .inner .image {
        zoom: 0.65;
        margin-bottom: 20px;
    }

    .section.second .section-content .pillow {
        zoom: 0.6;
        bottom: 25px;
    }
}

@media (max-width: 767px) {
    .scroll .center {max-width: 600px;}
    .scroll h2.title br {display: none;}
    .section {
        grid-template-columns: 1fr;
        border-radius: 20px;
        position: static;
    }
    .section-content {padding: 25px 15px 25px 25px;}
    .section-content h2.title {font-size: 7vw;}
    .section-content p.subtitle {font-size: 3vw;}
    .section-content .list {margin-bottom: 25px;}
    .section-content .list li {font-size: 2.2vw;}
    .section-content .list li + li {margin-top: 15px;}
    .section-product h3 {font-size: 19px;}
    .section-product .image {max-width: 400px;}
    .section-product .speed {
        zoom: 0.78;
        top: 20px;
    }

    .section.first .inner {padding-top: 95px;}

    .box-phone {zoom: 0.8;}

    .section-product .foot > div h4 {font-size: 23px;}
    .section-product .foot > div p {font-size: 12px;}

    .section.first .inner .image {zoom: 0.7;}

    .section.third .section-product .inner,
    .section.second .section-product .inner {min-height: 450px;}
    .section.fourth .section-product .inner {min-height: 450px;}
}

@media (max-width: 550px) {
    .scroll {padding: 0;}
    .scroll h2.title {
        margin-bottom: 35px;
        text-align: left;
        font-size: 7vw;
    }
    .section {border-radius: 20px;}
    .section-content {
        padding: 20px 20px 15px 20px;
        position: static;
    }
    .section-content > img {
        max-width: 90px;
        margin-bottom: 15px;
    }
    .section-content h2.title {
        font-size: 8.8vw;
        margin-bottom: 15px;
    }
    .section-content p br {
        display:none;
    }
    .section-content p.subtitle {font-size: 4.3vw;}
    .section.first .section-content p.subtitle {font-size: 4.2vw;}
    .section-content .list {
        font-size: 3.5vw;
        font-weight: normal;
        margin-top: 20px;
        margin-bottom: 0;
    }
    .section-content .btn {display: none;}
    .section-content .list li {
        font-size: 3.4vw;
        font-weight: normal;
    }
    .section-content .list li b {font-weight: normal;}
    .section-content .list li + li {margin-top: 15px;}
    .section-product .image {
        width: 100%;
        max-width: 75%;
    }
    .section-product .speed {zoom: 0.68;}
    .section-product h3 {
        font-size: 25px;
    }
    .section-product h4 {
        font-size: 13px;
    }
    .section.first .inner .label {
        zoom: 0.8;
    }
    .section.first .inner small {
        font-size: 13px;
        margin-top: 3px;
        font-weight: normal;
    }
    .section-product .section-product > .inner {border-radius: 15px;}

    .section-content h2.title sub:last-child {top: -25px;}

    .section.second .section-product > .inner {padding-top: 30px;}
    .section.second .section-product h3,
    .section.second .section-product h4 {display: none;}

    .box-phone {
        zoom: 0.55;
        margin-top: 0;
    }

    .section.third .section-product .inner,
    .section.second .section-product .inner {min-height: 350px;}
    .section.fourth .section-product .inner {min-height: 350px;}
    .section-product .foot > div h4 {font-size: 4.5vw;}
    .section-product .foot > div p {font-size: 2vw;}
    .section-product .foot > div {padding: 15px 0 20px 0;}

    .notification {padding: 15px;}

    .section-product .notification {
        max-width: 375px;
        top: 20px;
        left: 20px;
    }

    .section-product .foot-text p {font-size: 4.6vw;}
    .section-product .foot-text small {font-size: 3.5vw;}

    .section.first .inner .image {margin-bottom: 40px;}

    .section.second .section-content .pillow {
        zoom: 0.7;
        top: inherit;
        left: inherit;
        bottom: 20px;
        right: 35px;
    }
    .section.fourth .section-product img {zoom: 0.5;}

    .scroll .center.d-none {margin-top: 50px;}
    .scroll .center.d-none .btn-group {width: 100%;}
}
@media (max-width: 390px) {
    .section.fourth .section-product .inner {
        min-height: 300px;
    }
}

/* ------------------ FDA ------------------ */
.fda {
    background: #021434 url(../img/fda/bg.webp?05) no-repeat left top;
    background-size: auto 100%;
    border-radius: 24px;
    padding: 75px 0 75px;
    color: #fff;
    margin-top: 58px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}
.fda .top-text {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 15px;
    opacity: 0.8;
}
.fda h2.title {color: #fff;}
.fda h2.title b {font-weight: 600;}
.fda .subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 15px;
}

.fda .trust-badges {
    justify-content: center;
    margin-top: 35px;
}

.fda-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 45px;
}

.fda-card {
    border-radius: 34px;
    background: #F5F5F6;
    padding: 65px 20px 45px 20px;
    text-align: center;
    color: var(--color);
    position: relative;
}
.fda-card .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #CE3886;
    border-radius: 30px;
    background: #fff;
    width: 75px;
    height: 33px;
    color: #CE3886;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
}
.fda-card .tag span {
    position: relative;
    top: 1px;
}
.fda-card h3 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 30px;
}
.fda-card h3 b {font-weight: 500;}

.fda-card .image {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 238px;
    min-height: 285px;
    margin: 0 auto;
}
.fda-card .image ul {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 6px 0;
    margin-left: -25px;
    margin-top: 15px;
}
.fda-card .image ul li {
    display: inline-flex;
    align-items: center;
    text-align: left;
    gap: 12px;
    background: #e7e7ea;
    border-radius: 50px;
    min-height: 48px;
    padding: 0 20px 0 15px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
}
.fda-card .image ul li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #999AA9;
}

.fda-card .btn {
    border-radius: 16px;
    font-weight: normal;
}

.fda-card .text {
    font-size: 14px;
    max-width: 490px;
    margin: 30px auto 40px auto;
    color: #6F707F;
}
.fda-card .text b {font-weight: 600;}

@media (max-width: 1600px) {
    .fda .subtitle {font-size: 11.5px;}
    .fda .top-text {zoom: 0.8;}
    .fda .trust-badges {
        margin-top: 30px;
        zoom: 0.7;
    }
    .fda-row {margin-top: 25px;}
    .fda-card {
        padding: 40px 15px 30px 15px;
    }
    .fda-card .tag {zoom: 0.7;}
    .fda-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .fda-card .image {
        max-width: 180px;
        min-height: 220px;
    }
    .fda-card .image ul {zoom: 0.7;}
    .fda-card .text {
        font-size: 11px;
        max-width: 410px;
        margin: 15px auto 25px auto;
    }
    .fda .btn {zoom: 0.7;}
}

@media (max-width: 1400px) {
    .fda {
        padding: 50px 0 50px;
        margin-top: 50px;
    }
}

@media (max-width: 1200px) {
    .fda .top-text {font-size: 16px;}
    .fda .trust-badges {zoom: 0.6;}
}

@media (max-width: 991px) {
    .fda-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .fda-card {border-radius: 20px;}
    .fda-card .image {
        max-width: 140px;
        min-height: 170px;
    }
    .fda-card .image ul {zoom: 0.55;}
    .fda-card .text {
        font-size: 10px;
        margin: 10px auto 25px auto;
    }
}

@media (max-width: 767px) {
    .fda .subtitle br {display: none;}
    .fda-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .fda-card h3 {
        font-size: 23px;
        margin-bottom: 20px;
    }
    .fda-card .image {
        max-width: 200px;
        min-height: inherit;
    }
    .fda-card .image ul {zoom: 0.7;}
    .fda-card .text {font-size: 12px;}
}

@media (max-width: 500px) {
    .fda {
        border-radius: 20px;
        padding: 50px 0 35px;
        margin-top: 30px;
    }
    .fda h2.title {
        font-size: 8.5vw;
        font-weight: normal;
    }
    .fda h2.title br {display: none;}
    .fda .subtitle {font-size: 4.2vw;}
    .fda-row {
        gap: 40px;
        margin-top: 30px;
    }
    .fda-card {padding: 25px 15px 30px 15px;}
    .fda-card h3 {font-size: 5.3vw;}
    .fda .top-text {
        font-size: 4vw;
        opacity: 1;
        zoom: 1;
    }
    .fda .trust-badges {zoom: 0.9;}
    .fda-card .tag {display: none;}
    .fda-card .image {
        max-width: inherit;
        min-height: inherit;
        justify-content: center;
    }
    .fda-card .image img {width: 50%;}
    .fda-card .image ul {
        zoom: 0.78;
        position: static;
        transform: none;
    }
    .fda-card .text {
        font-size: 2.8vw;
        margin: 20px auto 25px auto;
    }
    .fda .btn {
        zoom: 0.8;
        min-height: 50px;
        border-radius: 50px;
    }
}

@media (max-width: 375px) {
    .fda .trust-badges {zoom: 0.8;}
}

/* ------------------ REVIEWS VIDEO ------------------ */
.reviews-video {padding: 80px 0 45px 0;}

.main-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F6F6F6;
    border: 1px solid #fff;
    border-radius: 30px;
    min-height: 35px;
    padding: 3px 15px;
    font-size: 15px;
    text-transform: uppercase;
    box-shadow: 0 13px 13px rgba(28,28,28,.08), 0 -5px 5px rgba(255,255,255,.5), 0 3px 3px rgba(28,28,28,.02);
    color: rgba(0,0,0,.6);
}
.main-label .circle {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6A6A6A;
    position: relative;
    top: 1px;
}
.main-label svg {
    position: relative;
    top: 1px;
    zoom: 0.8;
}
.main-label b {font-weight: 500;}
.main-label span {
    position: relative;
    top: 2px;
    font-weight: normal;
    -webkit-font-smoothing: subpixel-antialiased;
}

.reviews-video h2.title {margin-top: 25px;}
.reviews-video .subtitle {font-weight: 300;}

.splide-reviews {
    max-width: 1225px;
    margin: 35px auto 0 auto;
}
.splide-reviews .slide {
    border-radius: 18px;
    background: #F6F6F6;
    padding: 35px 35px 25px 35px;
    height: 100%;
    border: 1px solid #fff;
}
.splide-reviews .content {
    margin-top: 25px;
}
.splide-reviews h3 {
    font-size: 23px;
    font-weight: normal;
    margin-bottom: 15px;
}
.splide-reviews .content > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    color: #6F707F;
}
.splide-reviews .content .label {
    background: rgba(37,37,37,.22);
    border-radius: 30px;
    color: #fff;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    gap: 5px;
    padding: 0 17px;
}
.splide-reviews .content .label span {
    position: relative;
    top: 1px;
}

.splide-reviews .splide__arrow {
    right: 0;
    top: 100%;
    left: inherit;
    transform: none;
    margin-top: 30px;
    user-select: none;
}
.splide-reviews .splide__arrow--prev {right: 77px;}


.reviews-video .pill-group {
    padding-top: 115px;
    position: relative;
    margin: 0 auto;
}
.reviews-video .pill-cards {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}
.reviews-video .pill-group small {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    color: #6F707F;
    white-space: nowrap;
}

.pill-group {max-width: 510px;}
.pill-group > p {
    font-size: 19px;
    font-weight: 300;
    color: #000;
    margin-top: 30px;
}
.pill-group > p b {font-weight: 600;}

.reviews-video .btn-group {
    margin: 25px auto 0 auto;
    display: flex;
    align-items: center;
}
.reviews-video .btn-group small {
    font-size: 12px;
    line-height: 1.3;
    color: #6F707F;
}

.reviews-video .btn-group .btn {padding: 0 50px;}

@media (max-width: 1600px) {
    .main-label {zoom: 0.8;}

    .splide-reviews {max-width: 950px;}
    .splide-reviews .slide {
        border-radius: 15px;
        padding: 25px 25px 25px 25px;
    }
    .splide-reviews h3 {font-size: 18px;}
    .splide-reviews .content > div {zoom: 0.8;}

    .splide-reviews .splide__arrow {margin-top: 25px;}
    .splide__pagination {margin-top: 30px;}

    .splide__arrow,
    .splide__pagination {zoom: 0.9;}

    .reviews-video .pill-group {
        zoom: 0.9;
        padding-top: 110px;
    }
    .reviews-video .pill-group small {top: 25px;}
    .reviews-video .btn-group small {font-size: 11px;}
}

@media (max-width: 1400px) {
    .members .wrap {border-radius: 20px;}
    .splide-reviews {
        max-width: 800px;
        margin: 30px auto 0 auto;
    }
    .splide-reviews .slide {border-radius: 15px;}
    .splide-reviews h3 {font-size: 15px;}

    .splide__arrow, 
    .splide__pagination {
        zoom: 0.8;
    }
    .splide-reviews .content > div {font-size: 14px;}

    .reviews-video {padding: 60px 0 50px 0;}
    .reviews-video .pill-group {zoom: 0.8;}
}

@media (max-width: 991px) {
    .splide-reviews {max-width: inherit;}
    .reviews-video .center {
        padding-left: 0;
        padding-right: 0;
    }
    .splide__arrow, 
    .splide__pagination {
        zoom: 0.7;
    }
    .splide-reviews .splide__arrow {right: 15px;}
    .splide-reviews .splide__arrow--prev {right: 92px;}
    .splide__pagination {left: 15px;}
}

@media (max-width: 767px) {
    .reviews-video .pill-group {
        zoom: 1;
        padding-left: 15px;
        padding-right: 15px;
    }
    .pill-group > p {font-size: 2.4vw;}
}

@media (max-width: 550px) {
    .main-label {zoom: 0.75;}

    .reviews-video {
        padding: 50px 15px;
    }

    .wrap-logos small {
        font-size: 11px;
        text-align: center;
        display: block;
    }
    .reviews-video h2.title {
        margin-top: 20px;
        font-size: 7.5vw;
    }
    .reviews-video .subtitle {
        font-size: 3.6vw;
        margin-top: 10px;
    }
    .reviews-video .subtitle br {display: none;}

    .splide-reviews {margin-top: 30px;}
    .splide-reviews .slide {
        border-radius: 20px;
        padding: 30px 25px 25px 25px;
    }
    .splide-reviews .content {
        margin-top: 20px;
        padding: 0 10px;
    }
    .splide-reviews h3 {font-size: 20px;}
    .splide-reviews .content > div {zoom: 1;}
    .splide-reviews .splide__arrow {
        margin-top: 0;
        top: inherit;
        bottom: 5px;
    }

    .splide__pagination {margin-top: 50px;}
    .reviews-video .pill-group {
        padding-left: 0;
        padding-right: 0;
    }
    .reviews-video .pill-group small {
        top: 8px;
        font-size: 2.5vw;
    }

    .pill-group > p {
        font-size: 3.7vw;
        line-height: 1.4;
        margin-top: 25px;
    }

    .reviews-video .btn-group {
        margin: 25px auto 0 auto;
        position: relative;
    }
    .reviews-video .btn-group small {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        text-align: center;
        margin-bottom: 77px;
        font-weight: normal;
        color: #6F707F;
        font-size: 9.5px;
    }
    .reviews-video .btn-group small {font-size: 10px;}
}

@media (max-width: 550px) {
    #splide02-list {
        margin-bottom:22px !important;
    }
}

@media (max-width: 413px) {
    .splide-reviews h3 {font-size: 20px;}
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 325px;
}
.video-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
.video-container .overlay {
    position: absolute;
    top: -5px;
    right: -5px;
    left: -5px;
    bottom: -5px;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}
.video-container .overlay img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.video-container .btn-play {
    position: absolute;
    z-index: 10;
    top: 13px;
    left: 13px;
    background: transparent;
    backdrop-filter: inherit;
    border-radius: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 27px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}
.video-container .btn-play svg:nth-child(2) {display: none;}
.video-container.playing .btn-play svg:nth-child(2) {display: block;}
.video-container.playing .btn-play svg:nth-child(1) {display: none;}
.video-container .btn-play span {
    position: relative;
    top: 1px;
}

.video-container.playing .overlay img {opacity: 0;}
.video-container.playing video {opacity: 1;}

@media (max-width: 1600px) {
    .video-container {    
        height: 255px;
        border-radius: 15px;
    }
    .splide-reviews .content {margin-top: 20px;}
}

@media (max-width: 1400px) {
    .video-container {height: 205px;}
    .splide-reviews .content {margin-top: 15px;}
}

@media (max-width: 767px) {
    .video-container {height: 260px;}
}

@media (max-width: 550px) {
    .video-container {
        height: 300px;
        border-radius: 20px;
    }
    .video-container .btn-play {font-size: 11px;}
    .video-container .btn-play span {
        position: relative;
        top: 1px;
    }
}

@media (max-width: 413px) {
    .video-container {height: 265px;}
}

/* ------------------ HOW ------------------ */
.how {
    padding: 0 15px;
    color: #fff;
    max-width: 1920px;
    margin: 0 auto;
}
.how .subtitle {
    font-size: 25px;
    margin-bottom: 5px;
}
.how h2.title {
    color: #fff;
    font-size: var(--title-size-small);
    margin-bottom: 25px;
}
.how .wrap {
    border-radius: 25px;
    padding: 85px 0 100px 0;
    position: relative;
    overflow: hidden;
}
.how .wrap:after {
    content: '';
    display: block;
    background: url(../img/how/bg.webp?05) no-repeat right top;
    background-size: cover;
    position: absolute;
    inset: 0;
    z-index: -1;
    /*animation: scale-bg 100s linear infinite;*/
}

.how-content {max-width: 770px;}

.content-accordeon {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
} 

.accordeon-how {
    display: flex;
    flex-direction: column;
    gap: 12px 0;
}
.accordeon-how > li {
    border-radius: 24px;
    background: rgba(255,255,255,.3);
    min-height: 99px;
    position: relative;
    padding: 17px 24px 17px 126px;
    align-content: center;
}
.accordeon-how .btn-accordeon {
    display: flex;
    align-items: center;
    gap: 0 38px;
    font-size: 24px;
    font-weight: normal;
    cursor: pointer;
} 
.accordeon-how .btn-accordeon i {
    position: absolute;
    top: 50%;
    left: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transform: translateY(-50%);
    border: 1px solid #fff;
}
.accordeon-how .btn-accordeon i:after {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.accordeon-how .btn-accordeon i:before {
    content: '';
    display: block;
    width: 2px;
    height: 18px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.accordeon-how > li.active i:before {display: none;}

@keyframes scale-bg {
    0% {transform: scale(1);}
    25% {transform: scale(1.2) translate(5%, 5%);}
    50% {transform: scale(1.15) translate(3%, 3%);}
    75% {transform: scale(1.1) translate(1%, 1%);}
    100% {transform: scale(1) translate(0%, 0%);}
}

.accordeon-how .inner {
    font-size: 16px;
    line-height: 1.6;
    font-weight: normal;
    padding-top: 10px;
    -webkit-font-smoothing: antialiased;
}

.how .btn {
    margin-top: 50px;
    min-width: 325px;
    border-radius: 15px;
}

@media (max-width: 1600px) {
    .how .wrap {
        border-radius: 20px;
        padding: 60px 0 70px 0;
    }
    .how h2.title {margin-bottom: 15px;}
    .how .subtitle {font-size: 18px;}
    .accordeon-how > li {zoom: 0.8;}
    .how-content {max-width: 520px;}
}

@media (max-width: 1400px) {
    .how .wrap {padding: 50px 0 50px 0;}
}

@media (max-width: 1200px) {
    .how-content {max-width: 420px;}
    .accordeon-how > li {zoom: 0.7;}
}

@media (max-width: 767px) {
    .how {padding: 0;}
}

@media (max-width: 500px) {
    .how-content {
        display: flex;
        flex-direction: column;
    }
    .how h2.title {
        margin-bottom: 210px;
        font-weight: normal;
    }
    .how .wrap:after {
        background: url(../img/how/bg-mob.webp?05) no-repeat right top;
        background-size: cover;
        animation: none;
    }
    .how .subtitle {font-size: 5vw;}
    .accordeon-how {gap: 20px 0;}
    .accordeon-how > li {
        border-radius: 15px;
        min-height: 85px;
        padding: 13px 15px 13px 80px;
        backdrop-filter: blur(10px);
        box-shadow: inset 0.5px 0.5px 0.5px rgba(255,255,255,.5), inset -0.5px -0.5px 0.5px rgba(255,255,255,.5);
        zoom: 1;
    }
    .accordeon-how .btn-accordeon i {
        left: 15px;
        width: 45px;
        height: 45px;
    }
    .accordeon-how .btn-accordeon i:before {height: 15px;}
    .accordeon-how .btn-accordeon i:after {width: 15px;}
    .accordeon-how .btn-accordeon {
        font-size: 3.7vw;
        font-weight: normal;
    }
    .accordeon-how .inner {
        font-size: 3.5vw;
        line-height: 1.1;
        font-weight: 300;
    }

    .how .btn {
        margin-top: 70px;
        margin-left: auto;
        margin-right: auto;
        min-height: 65px;
        border-radius: 30px;
        width: 100%;
    }
}

/* ------------------ REVIEWS ------------------ */
.reviews {
    margin-top: 55px;
    padding: 55px 0 55px 0;
    background: #fff;
    border-radius: 25px;
}
.reviews h2.title {margin-top: 20px;}

.reviews-slider {
    margin-top: 50px;
    display: flex;
    overflow-x: hidden;
}
.reviews-slider + .reviews-slider {margin-top: 26px;}
.reviews-slider .list {
    display: flex;
    gap: 0 30px;
    padding-right: 30px;
    animation: spin 300s infinite linear;
    padding-right: 30px;
}
.reviews-slider[reverse="true"] .list {animation-direction: reverse;}

@keyframes spin {
    from {translate: 0;}
    to {translate: -100%;}
}

.reviews-slider .item {
    --width: 500px;
    width: var(--width);
    flex: 0 0 var(--width);
}

.reviews-slider .content {
    background: #F5F5F6;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.reviews-slider .content h4 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px;
}
.reviews-slider .plus {
    display: flex;
    align-items: center;
    gap: 0 5px;
}
.reviews-slider .text {
    font-size: 18px;
    font-weight: normal;
    margin-top: 27px;
    margin-bottom: 25px;
}
.reviews-slider .text b,
.reviews-slider .text strong {font-weight: 500;}
.reviews-slider .content > small {
    color: rgba(31,31,31,.4);
    margin-top: auto;
    font-size: 16px;
    font-weight: normal;
}

.reviews-slider .image {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}
.reviews-slider .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews .text-bottom {
    font-size: 13px;
    text-align: center;
    margin-top: 60px;
    padding: 0 15px;
}

@media (max-width: 1600px) {
    .reviews {padding: 50px 0 50px 0;}
    .reviews-slider {margin-top: 50px;}
    .reviews-slider .list {
        gap: 0 25px;
        padding-right: 25px;
    }
    .reviews-slider .item {--width: 400px;}
    .reviews-slider + .reviews-slider {margin-top: 25px;}
    .reviews-slider .image {border-radius: 15px;}
    .reviews-slider .content {
        border-radius: 15px;
        padding: 25px;
    }
    .reviews-slider .content h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 14px;
    }
    .reviews-slider .text {
        font-size: 14px;
        margin-top: 22px;
        margin-bottom: 20px;
    }
    .reviews-slider .content > small {font-size: 14px;}
    .reviews .text-bottom {margin-top: 50px;}
}

@media (max-width: 1200px) {
    .reviews-slider {margin-top: 40px;}
    .reviews-slider .item {--width: 350px;}
    .reviews-slider .list {
        gap: 0 20px;
        padding-right: 20px;
    }
    .reviews-slider + .reviews-slider {margin-top: 20px;}
}

@media (max-width: 991px) {
    .reviews .text-bottom {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 500px) {
    .reviews {
        padding-bottom: 70px;
        border-radius: 20px 20px 0 0;
    }
    .reviews .tx-c {
        text-align: left;
    }
    .reviews h2.title {
        margin-top: 20px;
        font-weight: normal;
        font-size: 9vw;
    }
    .reviews h2.title br {display: none;}
    .reviews-slider {margin-top: 25px;}
    .reviews-slider .item {
        --width: 300px;
    }
    .reviews-slider .content {
        border-radius: 10px;
        padding: 20px;
    }
    .reviews-slider .content h4 {
        font-size: 14px;
        margin-bottom: 10px;
        font-weight: 500;
    }
    .reviews-slider .plus img {width: 10px;}
    .reviews-slider .text {
        font-size: 12px;
        margin-top: 17px;
        margin-bottom: 15px;
    }
    .reviews-slider .content > small {font-size: 10px;}
    .reviews-slider .image {border-radius: 10px;}

    .reviews .text-bottom {
        font-size: 12px;
        margin-top: 35px;
    }
}

.text-small {
    padding: 60px 0 90px;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 991px) {
    .text-small {padding: 45px 0 65px;}
}

/* ------------------ EXPERT ------------------ */
.approved {
    padding: 0 15px;
    margin: 70px auto 40px auto;
    max-width: 1920px;
}
.approved .wrap {
    border-radius: 25px;
    background: #021434;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.approved .wrap:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: #021434 url(../img/approved/bg-lines.webp?05) no-repeat left top;
    background-size: auto 100%;
}
.approved .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
}
.approved h2.title {
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: 58px;
    font-weight: 300;
}
.approved .top-subtitle {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.8;
}

.approved-content {
    padding: 100px 0 100px 0;
    position: relative;
    z-index: 3;
}

.approved .label {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
}
.approved .label:before {background: rgba(255,255,255,.8);}

.approved h2.title {
    margin-top: 20px;
    margin-bottom: 25px;
    color: #fff;
}

.approved ul li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 19px;
}
.approved ul li + li {margin-top: 10px;}
.approved ul li svg {
    width: 20px;
    height: 20px;
}
.approved ul li span {
    position: relative;
    top: 2px;
}

.approved .btn-group {
    margin-top: 30px;
    flex-direction: row;
}
.approved .btn-group .btn {border-radius: 15px;min-width:350px;}
.approved .ghost {
    border-color: #fff;
    border-width: 2px;
    color: #fff;
}

.approved-background {
    position: relative;
    background: url(../img/approved/bg.webp?05) no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
}
.approved-background > small {
    position: absolute;
    left: 35px;
    bottom: 10px;
    color: #DFDFDF;
    font-size: 11px;
    font-weight: 500;
}

@media (max-width: 1600px) {
    .approved {margin: 50px auto 30px auto;}
    .approved-background .hand,
    .approved-background .inner {zoom: 0.8;}
    .approved-content {zoom: 0.69;}
    .approved .btn-group {zoom: 0.98;}
    .approved .btn-group .btn {border-radius: 15px;min-width:440px;}
}

@media (max-width: 991px) {
    .approved {padding: 0;}
    .approved h2.title {font-size: 40px;}
    .approved-content {
        zoom: 0.8;
        padding: 70px 0 70px 0;
    }
    .approved-background .hand {zoom: 0.7;}
    .approved-background .hand {
        margin-left: 0;
        margin-right: -100px;
    }
    .approved-background .inner {left: 260px;}
    .approved ul li {font-size: 16px;}
    .approved .btn-group,
    .trust-badges {zoom: 0.9;}
    .approved .wrap-notification {
        max-width: 300px;
        zoom: 0.66;
    }
}

@media (max-width: 767px) {
    .approved .center {grid-template-columns: 1fr;}
    .approved .wrap:after {
        bottom: 50%;
        width: 100%;
    }
    .approved-content {
        zoom: 1;
        padding: 50px 0;
        text-align: center;
    }
    .approved-content ul {
        zoom: 1;
        margin: 0 auto;
        max-width: 260px;
    }
    .approved-background .hand {zoom: 0.8;}
    .approved-background .inner {
        left: 245px;
        zoom: 1;
    }
    .approved-background {
        position: relative;
        bottom: 0;
        width: initial;
        margin-left: -15px;
        margin-right: -15px;
        min-height: inherit;
        border-radius: 25px 25px 0 0;
        z-index: 2;
        padding: 15px;
    }

    .approved .wrap-notification {
        max-width: 280px;
        zoom: 0.9;
    }
}

@media (max-width: 500px) {
    .approved {
        margin-top: -20px;
        border-radius: 20px 20px 0 0;
        border-radius: 20px;
    }
    .approved .wrap:after {
        background: #021434 url(../img/approved/bg-lines-mob.webp?05) no-repeat right top;
        background-size: contain;
        right: 0;
        bottom: 50%;
    }
    .approved-content {
        padding: 50px 0 50px 0;
        text-align: left;
    }
    .approved .top-subtitle {font-size: 3.5vw;}
    .approved h2.title {
        margin-top: 15px;
        margin-bottom: 25px;
        font-size: 8vw;
    }
    .approved-content ul {max-width: inherit;}
    .approved ul li {font-size: 17px;}
    .approved ul li + li {margin-top: 18px;}
    .approved .btn-group, 
    .trust-badges {
        zoom: 1;
    }
    .approved .btn-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .approved .btn-group .btn {
        width: 100%;
        max-width: 348px;
        margin: 0 auto;
        min-width: unset;
    }

    .approved-background {
        overflow: hidden;
        background: url(../img/approved/bg-mob.webp?05) no-repeat center top;
        background-size: cover;
    }

    .trust-badges {
        margin-top: 25px;
        zoom: 0.9;
    }

    .approved .btn-group {padding: 0;}
    .approved .btn-group .btn {border-radius: 20px;}

    .approved-background {
        margin-right: -15px;
        margin-left: -15px;
        padding-top: 20px;
    }

    .approved-background .hand {
        zoom: 0.6;
        position: relative;
        left: 30px;
    }
    .approved-background .inner {
        left: 205px;
        zoom: 0.95;
    }

    .approved .wrap-notification {
        max-width: 325px;
        padding-bottom: 45px;
    }
    .wrap-notification .pillow {
        margin-top: 0;
        zoom: 0.7;
        margin-left: 0;
    }
    .wrap-notification .notification {border-radius: 35px;}

    .approved-background > small {
        left: 20px;
        bottom: 20px;
        zoom: 0.8;
    }
}

@media (max-width: 413px) {
    .approved-background .hand {zoom: 0.5;}
    .approved-background .inner {
        left: 185px;
        zoom: 0.9;
    }
}

/* ------------------ FOOTER ------------------ */
.footer {
    padding: 60px 0 85px 0;
    background: #021434;
    border-radius: 24px 24px 0 0;
    color: #fff;
    margin-top: 40px;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 300;
    line-height: 1.5;
}
.footer-main .copyright {
    font-size: 13px;
}
.footer-main .copyright span {font-size: 12px;}
.footer-main .copyright small {
    display: block;
    margin-top: 15px;
}
.footer-main .links {
    display: flex;
    align-items: center;
    font-size: 15px;
}
.footer-main .links a {color: #fff;}
.footer-main .links a:hover {text-decoration: underline;}
.footer-main .links span {margin: 0 15px;}
.footer-main .legitscript {margin-left: 30px;}

.footer-content {
    padding-top: 60px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: normal;
}
.footer-content a {
    color:inherit;
    text-decoration:underline;
}
.footer-content p + p {margin-top: 20px;}

@media (max-width: 1600px) {
    .footer .center {max-width: 1150px;}
    .footer-main .copyright {font-size: 13px;}
    .footer-main .links {font-size: 13px;}
    .footer-main .links span {margin: 0 10px;}
    .footer-main .legitscript {margin-left: 10px;}

    .footer-content {padding-top: 40px;}
}

@media (max-width: 1200px) {
    .footer {padding: 50px 0 50px 0;}
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer {
        position: relative;
        padding: 120px 0 50px 0;
    }
    .footer-main .legitscript {
        margin-left: 0;
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-main .copyright p {display: none;}
    .footer-main .links {margin-top: 15px;}
    .footer-main .links span {margin: 0 6px;}
    .footer-content {padding-top: 25px;}
}

@media (max-width: 500px) {
    .footer {padding-bottom: 120px;}
    .footer-main .links {font-size: 2.9vw;}
}

/* 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: 9999;
    display: none;
 
}
.popup-overlay.active {
    display: block;
    animation: opacity 0.5s forwards;
}

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

.popup {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s 0.5s;
    background: #fff;
    display: none;
}
.popup.active {
    display: block;
    animation: opacity 0.5s forwards;
}

/* POPUP VIDEO
-------------------------------------- */
.popup-video {background: none;}
.popup-video .inner {
    width: 900px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    position: relative;
}
.popup-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.popup-video .popup-close {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,.5);
    width: 25px;
    height: 25px;
    z-index: 10;
    border: none;
}
.popup-video .popup-close:hover {
    background: #091938;
}
.popup-video .popup-close svg {
    fill: #fff;
    width: 25px;
    height: 25px;
}

@media (max-width: 1250px) {
    .popup-video .inner {
        width: 700px;
        min-height: 394px;
    }
}

@media (max-width: 750px) {
    .popup-video {
        left: 0;
        right: 0;
        transform: none;
    }
    .popup-video .inner {
        width: 100%;
        min-height: 217px;
    }
    .popup-video .popup-close {
        top: 10px;
        right: 10px;
    }
}

/* POPUP MORE
-------------------------------------- */
.popup-more .inner {
    padding: 50px 35px 15px 35px;
}
.popup-more p strong {font-size: 14px;}
.popup-more p + p {
    margin-top: 15px;
}
.popup-more p small {
    font-size: 12px;
}
.popup-more p.big {
    font-size: 14px;
}
.popup-more .foot {
    padding: 15px;
    border-top: 1px solid #e9ecef;
}
.popup-more .foot .popup-close {
    padding: 15px 45px;
    background: #091C2B;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    transition: all .2s linear;
    cursor: pointer;
}
.popup-more .foot .popup-close:hover {background-color: #88171b;}
.Important-popup-btn {    font-size: 13px;
    color: #000000;
    text-decoration: underline;}

@media (max-width: 750px) {
    .popup-more {
        width: 90%;
    }
    .popup-more .inner {
        padding: 30px 15px 15px 15px;
    }
}


/* POPUP IMPORTANT */

.popup-overlay.active,
.popup.active {
    display: block;
    animation: opacity 0.5s linear forwards;
}

.popup .head {
    background: var(--color);
    padding: 30px 30px 30px 30px;
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    min-height: 65px;
    margin-right: -2px;
    margin-left: -2px;
}
.popup .head h4 {
    font-size: 44px;
    line-height: 1.2;
}
.popup .head h6 {font-size: 15px;}

/* POPUP INFO */
.important-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 50%;
    transition: all .3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
}
.important-popup-close svg {
    fill: #fff;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.popup-important {
    background: #fff;
    max-width: 60%;
    width: 100%;
}
.popup-important .body {
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px;
    font-size: 17px;
    padding-bottom: 150px;
}
.popup-important h5 {
    font-size: 25px;
    line-height: 30px;
    padding: 20px 0;
    margin-top: 20px;
}
.popup-important h5 {
    font-size: 25px;
    line-height: 30px;
    padding: 20px 0;
    margin-top: 20px;
}
.popup-important ul {
    margin-top: 20px;
    margin-left: 25px;
    list-style: none;
}
.popup-important ul li {
    position: relative;
    padding-left: 25px;
}
.popup-important ul li + li {margin-top: 10px;}
.popup-important ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #151a29;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 10px;
}
.popup-important p u {text-decoration: underline;}
.popup-important p a,
.popup-important ul a {color: var(--akcent);}
.popup-important p a:hover,
.popup-important ul a:hover {text-decoration: underline;}
.popup-important p {margin-top: 20px;}


@media (max-width: 767px) {
    .popup-important {
        max-width: inherit;
        width: inherit;
        top: 30px !important;
        position: fixed;
        bottom: 30px;
        left: 30px;
        right: 30px;
        transform: none;
    }
    .popup .head {
        padding: 10px 30px 15px 30px;
        font-size: 19px;
        min-height: auto;
        line-height: inherit;
    }
    .popup .head h4 {font-size: 24px;}
    .popup .head h6 {
        font-size: 13px;
        margin-top: 15px;
    }

    .popup-important .body {font-size: 15px;}
    .popup-important ul {margin-left: 0;}
    .popup-important ul li {padding-left: 10px;}
    .popup-important ul li:before {
        width: 4px;
        height: 4px;
        margin-top: 9px;
    }
    .popup-important .body h4,
    .popup-important .body h1 {font-size: 20px;}
}
 
/* ANIMATION
-------------------------------------- */
.animated {
    opacity: 0;
    transition: opacity 500ms;
}

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

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

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

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

@keyframes fade-mask {
    100% {mask-size: 1500%;}
}
