@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: var(--gold);
    background: #23f197;
    color: #fff;
    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;
    }
}

/* ------------------ HOME ------------------ */
.home {
    position: relative;
    padding-top: 27px;
    padding-left: 15px;
    padding-right: 15px;
}
.home .wrap {
    border-radius: 24px;
    padding: 90px 0 200px 0;
    position: relative;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}
.home .lines {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: scaleX(-1);
}
.home .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.home h1 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 30px;
    margin-bottom: 20px;
}
.home h1 span {
    background: linear-gradient(to right, #fff, rgba(255,255,255,.6) 50%);
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.home h1 span:nth-child(3) {
    color: rgba(255,255,255,.6);
    text-fill-color: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
    -webkit-background-clip: inherit;
    background: none;
}
.home h1 b {font-weight: 600;}
.home h1 sup {
    position: relative;
    top: 5px;
    line-height: 0;
    font-weight: 300;
}
.home h1 sup.store {
    font-size: 45%;
}
.home h1 .s {top: 0;}
.home .text {
    font-size: 18px;
    line-height: 1.5;
    max-width: 545px;
    opacity: 0.8;
}
.home .text b {font-weight: bold;}
.home .btn-group {
    margin-top: 30px;
    flex-direction: row;
}

.home .btn-group .btn {
    min-height: 53px;
    font-size: 15px;
    border-radius: 16px;
}
.home .btn-group .btn > div {max-height: 21px;}
.home .btn.ghost {
    border-color: #fff;
    border-width: 2px;
    color: #fff;
}

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

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

.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 (min-width: 1921px) {
    .home {background: none;}
}

@media (max-width: 1600px) {
    .home .wrap {padding: 75px 0 120px 0;}
    .home .text {font-size: 18px;}
    .home .content {zoom: 0.75;}
    .home .btn {zoom: 1;}
    .wrap-notification {zoom: 0.7;}
}

@media (max-width: 1400px) {
    .home h1 {font-size: 40px;}
    .home .wrap {padding: 60px 0 80px 0;}
    .home .content {
        padding-right: 15px;
    }
    .home .btn {zoom: 1;}
    .home-background .pillow {
        zoom: 0.7;
        margin-top: 25px;
    }
}

@media (max-width: 1024px) {
    .home-background > small {font-size: 9px;}
    .home .content {zoom: 0.80;}
}

@media (max-width: 991px) {
    .home .btn {padding: 0 20px;}
    .wrap-notification {max-width: 300px;}
    .home .content {zoom: 0.70;}
    .home-background .inner {
        zoom: 0.7;
        padding-top: 20px;
    }
    .home-background .notification {zoom: 1;}
    .home-background .pillow {zoom: 0.6;}
    .wrap-notification {zoom: 0.76;}
}

@media (max-width: 767px) {
    .home .wrap {
        padding: 50px 0 0;
        overflow: hidden;
    }
    .home h1 {font-size: 40px;}
    .home .lines {bottom: inherit;}
    .home .center {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .home .content {
        zoom: 0.8;
        text-align: center;
    }
    .home .btn-group {
        zoom: 1;
        align-items: center;
    }
    .home .text {
        max-width: 600px;
        margin: 0 auto;
    }

    .trust-badges {justify-content: center;}

    .home-background {
        position: static;
        width: auto;
        min-height: 400px;
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
        display: flex;
        justify-content: start;
        align-items: end;
        padding: 15px;
    }
    .home-background .inner {
        zoom: 0.8;
        padding-top: 0;
        padding-left: 0;
        padding-bottom: 60px;
        width: 100%;
    }

    .home-background > small {
        left: inherit;
        right: 18px;
        bottom: 8px;
        zoom: 0.75;
    }
    .home-background > img {
        top: auto;
        bottom: 412px;
        right: 10px;
    }

    .wrap-notification {
        zoom: 0.9;
        padding: 50px 0;
    }
    .wrap-notification .pillow {margin-top: 0;}
}

@media (max-width: 500px) {
    .home {
        padding-left: 0;
        padding-right: 0;
        padding-top: 20px;
    }
    .home .lines {
        bottom: inherit;
        min-width: 500px;
    }
    .home .wrap {
        border-radius: 20px;
        padding: 30px 0 0 0;
    }
    .home .content {
        zoom: 1;
        text-align: left;
    }
    .home .center {
        text-align: left;
        gap: 35px;
    }
    .home .subtitle {font-size: 4.5vw;}
    .home h1 {
        white-space: nowrap;
        font-size: 7.6vw;
        margin-top: 20px;
        margin-bottom: 15px;
        line-height: 1.2;
        font-weight: normal;
    }
    .home h1 sup {top: 4px;}
    .home .text {
        font-size: 3.8vw;
        line-height: 1.4;
        text-align: left;
    }
    .home .text b {font-weight: 500;}
    .home .text br {display: none;}

    .home .btn-group {
        max-width: inherit;
        width: 100%;
        margin: 25px auto 0 auto;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 15px 0;
        zoom: 1;
        padding: 0;
    }
    .home .btn-group .btn {
        min-height: 60px;
        width: 100%;
        letter-spacing: 0.5px;
        border-radius: 40px;
        font-size: 17px;
    }
    .home .btn-group .btn > div {max-height: 25px;}

    .home .hsa {
        margin-top: 20px;
        font-weight: 500;
    }

    .home-background {
        background: url(../img/home/bg-mob.webp) no-repeat left top;
        background-size: cover;
        padding: 15px;
        min-height: 530px;
        border-radius: 20px 20px;
        align-items: stretch;
    }
    .home-background .inner {
        zoom: 0.7;
        padding-bottom: 0;
    }

    .home-background .pillow {
        zoom: 0.75;
        margin-left: 0;
    }
    .home-background > img {
        top:auto;
        bottom:10px;
        left:10px;
        right:auto;
        width:35%;
    }

    .home-background > small {
        left: 20px;
        right: inherit;
        bottom: 20px;
        zoom: 0.8;
    }

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

    .home-background .wrap-notification .notification:nth-child(4) {display: none;}
}

/* ------------------ 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);
    background-size: cover;
}

.section.third .section-product .inner:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: url(../img/scroll/man.webp?04);
    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) 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) 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?04) 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?04) 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) 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;}
.approved .ghost {
    border-color: #fff;
    border-width: 2px;
    color: #fff;
}

.approved-background {
    position: relative;
    background: url(../img/approved/bg.webp) 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;}
}

@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) 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%;}

    .approved-background {
        overflow: hidden;
        background: url(../img/approved/bg-mob.webp) 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;
    }
}

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