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

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

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

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

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

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

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

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

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

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

:root {
    --akcent: #096A8C;
    --color: #474747;
    --greycliff: 'Greycliff CF', sans-serif;
    --quincy: 'Quincy CF', sans-serif;
}

body {
    font-family: var(--greycliff);
    font-size: 15px;
    line-height: 1.3;
    color: var(--color);
    -webkit-font-smoothing: antialiased;
}

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

a:hover {color: #67254B;}

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

sup {
    font-size: 0.65em;
}

h2.title {
    font-family: var(--quincy);
    font-size: 51px;
    font-weight: normal;
    line-height: 1;
}
h2.title span {
    background: linear-gradient(90deg, #EB7ABB -30%, #FFFFFF);
    text-fill-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
h2.title .color {
    color: var(--akcent);
    background: none;
    text-fill-color: inherit;
    background-clip: inherit;
    -webkit-text-fill-color: inherit;
    -webkit-background-clip: inherit;
}

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

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

@media (max-width: 550px) {
    h2.title {font-size: 8.9vw;}
}

@keyframes zoom {
    0% {transform: scale(1) translateY(0);}
    50% {transform: scale(1.2) translateY(-1%);}
    100% {transform: scale(1) translateY(0);}
}

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

.overflow-hidden {overflow-x: hidden;}

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

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

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

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

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

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    color: #fff;
    font-family: var(--greycliff);
    font-weight: 500;
    font-size: 16px;
    min-height: 57px;
    border-radius: 30px;
    background: var(--akcent);
    min-width: 212px;
    padding: 0 25px;
    overflow: hidden;
    border: 1px solid transparent;
    animation: shadow-pulse 3s infinite;
}
.btn.blue {
    background: transparent;
    border: 1px solid #096A8C;
    background: #096A8C;
    color: #fff;
    font-weight: 500;
}
.btn:hover {
    color: #fff;
    border-color: #62CBC9;
}

.btn.blue:hover {border-color: #62CBC9;}
.btn.blue:after {background: #62CBC9;}

.btn svg {
    width: 7px;
    height: 10px;
}

.btn span,
.head-btn span,
.btn svg,
.head-btn svg {
    position: relative;
    z-index: 2;
}
.btn svg,
.head-btn svg {
    top: 1px;
}
.btn:after,
.head-btn:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 0;
    background: #62CBC9;
    transition: all 0.3s;
}
.btn:hover:after,
.head-btn:hover:after {width: 100%;}

.btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 16px;
}

.home > div + div {
    margin-top:-40px;
}
.btn-group + div {
    margin-top:30px;
    font-family: var(--quincy);
    font-size:17px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}
.btn-group + div img {
    width:30px;
    margin-top:-5px
}

@media (max-width: 1200px) {
    .btn-group + div {
        margin-top:15px;
        transform:scale(0.75);
    }
}
@media (max-width: 991px) {
    .btn-group + div {
        margin-top:10px;
        transform:scale(0.6);
    }
}
@media (max-width: 550px) {
    .btn-group + div img {
        width:26px;
        margin-top:-5px
    }
    .btn-group + div {
        margin-top:10px;
        transform:scale(0.8);
    }
}

.btn-text p {
    display: inline-flex;
    align-items: center;
    font-family: var(--greycliff);
    font-size: 14px;
    margin-top: 20px;
    gap: 0 6px;
    margin-left: 10px;
}
.btn-text .dot {
    width: 15px;
    height: 15px;
    background: #00992E;
    border-radius: 50%;
    animation: shadow-pulse 3s infinite;
    position: relative;
    top: 0.7px;
}

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

.btn-fix {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 99;
    background: #fff;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    transition: all 0.3s;
    display: none;
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(5px);
}
.btn-fix .btn {
    background: #096A8C;
    border: none;
    color: #fff;
    border-radius: 15px;
    width: 100%;
}
.btn-fix .btn strong {
    position: relative;
    z-index: 3;
}
.btn-fix .btn-text p {justify-content: center;}
.btn-fix .btn-text p {
    margin-top: 9px;
}

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

@media (max-width: 550px) {
    .btn {
        zoom: 1;
        min-width: 300px;
        min-height: 50px;
    }
    .btn-text {
        width: 100%;
        text-align: center;
    }
    .btn-text p {
        zoom: 1;
        margin-left: 0;
        margin-top: 13px;
    }
    .btn-text .dot {
        width: 11px;
        height: 11px;
    }

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

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

.text-small {
    color: #959595;
    text-align: center;
    padding: 50px 0 0;
    font-size: 13px;
}

/* ------------------ HEADER ------------------ */
#header {
    padding: 29px 0;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s;
}
.fixed-header #header {box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, .25);}
#header .center {
    display: flex;
    align-items: center;
}
#header .logo {
    line-height: 0;
    display: inline-block;
}

#nav {
    margin-left: auto;
    margin-right: 40px;
}
#nav ul {
    display: flex;
    align-items: center;
    gap: 0 18px;
}
#nav ul a {
    display: block;
    font-family: var(--quincy);
    font-size: 19px;
    color: rgba(0,0,0,.7);
}
#nav ul a:hover {color: var(--akcent);}
#nav .head-btn {display: none;}

.head-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
    color: #fff;
    min-height: 43px;
    border-radius: 5px;
    background: var(--akcent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 204px;
    overflow: hidden;
}
.head-btn:hover {color: #fff;}
.head-btn svg {
    width: 7px;
    height: 10px;
}

.hamburger {
    width: 27px;
    height: 20px;
    display: none;
    flex-direction: column;
    gap: 6px 0;
    position: relative;
    z-index: 99991;
    background: none;
    border: none;
    outline: none;
}
.hamburger span {
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background: #474747;
    transition: all 0.3s;
    transform-origin: center;
}
.nav-open .hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}
.nav-open .hamburger span:nth-child(2) {display: none;} 
.nav-open .hamburger span:first-child {transform: rotate(45deg);}
.nav-open .hamburger span:last-child {transform: rotate(-45deg);}

@media (max-width: 1600px) {
    #header {padding: 25px 0;}
    #header .logo {max-width: 120px}
    .head-btn {zoom: 0.9;}
    #nav {margin-right: 30px;}
    #nav ul a {font-size: 16px;}
}

@media (max-width: 991px) {
    .nav-open .logo {
        position: relative;
        z-index: 99991;
    }
    .head-btn {margin-left: auto;}
    .hamburger {margin-left: 20px;}

    #nav {
        position: fixed;
        top: calc(50% - 250px);
        left: calc(50% - 250px);
        z-index: 9999;
        background: #fff;
        margin-right: 0;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        transition: all 0.3s;
    }
    #nav ul {
        flex-direction: column;
    }
    #nav ul a {
        font-size: 30px;
        font-weight: bold;
        padding: 5px 0;
    }
    #nav .head-btn {
        display: inline-flex;
        margin-top: 30px;
        margin-right: auto;
    }

    .nav-open {overflow: hidden;}
    .nav-open #nav {
        display: flex;
        animation: menu 0.3s linear forwards;
        backdrop-filter: blur(10px);
    }

    @keyframes menu {
        100% {
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            border-radius: 0;
            background: rgba(255,255,255,.8);
            backdrop-filter: blur(10px);
        }
    }

    .hamburger {display: flex;}
}

@media (max-width: 550px) { 
    #header {padding: 15px 0;}
    #header .center > .head-btn {display: none;}
    .hamburger {
        margin-left: auto;
        width: 22px;
        height: 17px;
        gap: 5px 0;
    }
    #header .logo {max-width: 110px;}
}

/* ------------------ HOME ------------------ */
.home {
    color: #fff;
    min-height: 690px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 102px;
}

.splide-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.splide-home .splide__track,
.splide-home .slide {height: 100%;} 
.splide-home .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .subtitle {
    font-size: 22px;
    margin-bottom: 20px;
}

.home h1 {
    font-family: var(--quincy);
    font-weight: 500;
    font-size: 70px;
    line-height: 1;
    color: #fff;
}
.home h1 span {color: #fff !important;}

.home .text {
    margin-bottom: 30px;
    margin-top: 25px;
    font-size: 20px;
}

.home .btn {
    min-height: 53px;
    min-width: 237px;
    font-weight: 500;
    font-size: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: inset 1px 1px 1px rgba(255, 255, 255, .3), inset -0.5px -0.5px rgba(255, 255, 255, .2) !important;
}
.home .btn {border: none;}
.home .btn:after {background: rgba(71,143,169,.3);}
.home .btn-group div {
    border-radius: 30px;
    animation: shadow-pulse 3s infinite;
}
.home .btn-group div:first-child .btn {
    background: rgba(9, 106, 140, 0.68);
    font-weight: 600;
}
.home .btn-group div:first-child .btn:hover:after {
    background: #096A8C;
}
.home .btn-group div:last-child .btn {
    background: rgba(255, 255, 255, 0.34);
    font-weight: 500;
}

.home small {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 1600px) {
    .home {
        min-height: 550px;
        margin-top: 89px;
    }
    .home .subtitle {
        font-size: 19px;
        margin-bottom: 16px;
    }
    .home h1 {font-size: 60px;}
    .home .text {
        margin-bottom: 25px;
        margin-top: 20px;
        font-size: 17px;
    }
    .home .btn-group {zoom: 0.85;}
    .home small {font-size: 11px;}
}

@media (max-width: 1200px) {
    .home {min-height: 450px;}
}

@media (max-width: 991px) {
    .home {min-height: 370px;}
    .home .subtitle {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .home h1 {font-size: 50px;}
    .home .text {font-size: 14px;}
}

@media (max-width: 550px) {
    .home {
        background: url(../img/home/bg-home-mob.webp) no-repeat top right;
        background-size: cover;
        min-height: 500px;
        padding-top: 0;
        margin-top: 62px;
    }

    .splide-home .slide-first img {content: url(../img/home/slide-mob-1.webp);}
    .splide-home .slide-second img {content: url(../img/home/slide-mob-2.webp);}
    .splide-home .slide-third img {content: url(../img/home/slide-mob-3.webp);}

    .home .subtitle {
        font-size: 4vw;
        margin-bottom: 15px;
    }
    .home h1 {font-size: 9.7vw;}
    .home h1 br,
    .home .text br {display: none;}
    .home .text {
        font-size: 3.8vw;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .home .btn-group {
        flex-direction: column;
        zoom: 1;
        gap: 15px 0;
    }
    .home .btn {
        zoom: 1;
        min-width: 315px;
        min-height: 50px;
    }

    .home small {
        font-size: 11px;
        white-space: nowrap;
        bottom: 25px;
    }
}

@media (max-width: 400px) {
    .home h1 {font-size: 9.6vw;}
}

/* ------------------ MARQUEE ------------------ */
.background-waves {
    border-top: 1px solid #f4f5ed;
    position: relative;
}

.wrap-canvas-waves-top {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -2;
    max-width: 1920px;
    width: 100%;
    height: 1000px;
    opacity: 0.3;
    overflow: hidden;
    transform: translateX(-50%);
}

@media (min-width: 1921px) {
    .wrap-canvas-waves-top .bg-left {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1;
        width: 200px;
        background: linear-gradient(90deg, #fff, transparent);
    }
    .wrap-canvas-waves-top .bg-right {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        width: 200px;
        background: linear-gradient(-90deg, #fff, transparent);
    }
}

.wrap-canvas-waves-top:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 400px;
    background: linear-gradient(0, #fff, transparent);
}
.canvas-waves-top {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -50px;
}

.marquee {
    --gap: 30px;
    display: flex;
    flex-direction: row;
    user-select: none;
    gap: var(--gap);
}
.marquee__group {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    gap: var(--gap);
    min-height: auto;
    animation: scroll 150s linear infinite;
}

.marquee-first {margin-top: -25px;}
.marquee-second {margin-top: 35px;}
.marquee-second .marquee__group {animation-direction: reverse;}
.marquee-second .ic-bones {transform: rotate(272deg);} 

@keyframes scroll {
    0% {transform: translateX(0);}
    100% {transform: translateX(calc(-100% - var(--gap)));}
}

.icon-svg {display: inline-block;}

.ic-anxiety {
    width: 25px;
    height: 23px;
}
.ic-anxiety * {stroke: #478fa9 !important;}
.ic-bones {
    width: 22px;
    height: 29px;
}

.ic-brain {
    width: 28px;
    height: 28px;
}
.ic-brain * {fill: #478fa9 !important;}
.ic-charge {
    width: 20px;
    height: 30px;
}
.ic-charge * {fill: var(--akcent) !important;}
.ic-clock {
    width: 25px;
    height: 24px;
}
.ic-clock * {fill: #478fa9 !important;}
.ic-heat {
    width: 18px;
    height: 22px;
}
.ic-heat * {fill: #478fa9 !important;}
.ic-intimacy {
    width: 21px;
    height: 18px;
}
.ic-intimacy * {fill: var(--akcent) !important;}
.ic-period {
    width: 27px;
    height: 27px;
}
.ic-skin {
    width: 22px;
    height: 26px;
}
.ic-skin * {fill: #478fa9;}
.ic-sleep {
    width: 25px;
    height: 25px;
}
.ic-sleep * {fill: var(--akcent) !important;}
.ic-weight {
    width: 25px;
    height: 25px;
}
.ic-weight * {fill: var(--akcent) !important;}
.ic-mood {
    width: 38px;
    height: 20px;
}
.ic-mood * {fill: #478fa9 !important;}
.ic-fatigue {
    width: 25px;
    height: 25px;
}
.ic-fatigue * {fill: var(--akcent) !important;}

.marquee .slide {
    color: var(--akcent);
    min-width: 300px;
    display: flex;
}
.marquee .slide .inner {
    height: 100%;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    padding: 10px 20px 30px 20px;
    box-shadow: 0 0.6px 6px rgba(0,0,0,.03), 0 5px 5px rgba(0,0,0,.05), 0 15px 36px rgba(0,0,0,.15);
    transition: all 0.3s;
}
.marquee .slide:hover .inner {
    transform: scale(1.03);
}
.marquee .slide:nth-child(even) {color: #478fa9;}
.marquee .slide h4 {
    font-family: var(--quincy);
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 10px;
}
.marquee .slide p {
    font-size: 15px;
    line-height: 1.4;
}

@media (max-width: 1600px) {
    .wrap-canvas-waves-top {zoom: 0.8;}
    .marquee .slide {min-width: 250px;}
    .marquee {--gap: 25px;}
    .marquee-second {margin-top: 20px;}
    .marquee .slide h4 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .marquee .slide .inner {padding: 10px 15px 20px 15px;}
    .marquee .slide p {font-size: 13px;}
}

@media (max-width: 1200px) {
    .wrap-canvas-waves-top {zoom: 0.7;}
    .marquee-first {margin-top: -15px;}
}

@media (max-width: 991px) {
    .marquee {--gap: 20px;}
    .marquee .slide .inner {padding: 10px 15px 15px 15px;}
    .marquee .slide h4 {font-size: 17px;}
    .marquee .slide p {font-size: 12px;}
    .marquee-second {margin-top: 15px;}
}

@media (max-width: 767px) {
    .wrap-canvas-waves-top {
        overflow: hidden;
        opacity: 1;
        zoom: 1;
    }
    .wrap-canvas-waves-top:before {
        content: '';
        display: block;
        background: url(../img/bg-waves.webp) no-repeat left top;
        background-size: 100% auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        opacity: 0.4;
        animation: zoom 20s linear forwards infinite;
    }
}

@media (max-width: 550px) {
    .marquee {--gap: 25px;}
    .marquee-second {margin-top: 25px;}
    .marquee .slide {min-width: 200px;}
    .marquee .slide .inner {
        padding-top: 5px;
        padding-bottom: 10px;
    }
    .marquee .slide h4 {margin-bottom: 2px;}
}

/* ------------------ ESSENTIALS ------------------ */
.essentials {
    padding-top: 120px;
    padding-bottom: 60px;
}
.essentials .center {
    display: grid;
    grid-template-columns: 700px 1fr;
    align-items: start;
    gap: 60px 90px;
}

.essentials-images .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 25px;
    max-height: 838px;
}
.essentials-images p {
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}
.essentials-images p a {text-decoration: underline;}
.essentials-images p a:hover {text-decoration: none;}

.essentials-images .big {
    grid-row: span 2;
}

.essentials-images .image {
    border-radius: 0;
    opacity: 1 !important;
    transform: none !important;
    overflow: hidden;
    transition: all 0.5s 1s linear;
}
.essentials-images .image.animated.show {
    border-radius: 17px;
}
.essentials-images .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.essentials-content .text {
    display: flex;
    align-items: center;
    gap: 0 10px;
    font-size: 21px;
    margin-top: 29px;
    margin-bottom: 40px;
}
.essentials-content .text .ic {line-height: 0;}
.essentials-content .text p sup {
    line-height: 0;
    display: inline-flex;
    font-weight: normal;
    font-size: 1em;
    position: relative;
    top: 7px;
}

.ic-doctor {
    width: 43px;
    height: 50px;
}

.essentials-accordeon {margin-bottom: 47px;}
.essentials-accordeon .btn-accordeon {
    display: flex;
    align-items: center;
    gap: 0 10px;
    font-family: var(--quincy);
    font-size: 21px;
    font-weight: 500;
    gap: 0 7px;
    cursor: pointer;
}
.essentials-accordeon a {
    color:inherit;
    text-decoration:underline;
}
.ic-plus {
    width: 10px;
    height: 10px;
    position: relative;
}
.ic-plus:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: var(--akcent);
}
.ic-plus:before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    background: var(--akcent);
}
.active .ic-plus:before {display: none;}
.essentials-accordeon .item-accordeon + .item-accordeon {margin-top: 20px;}
.essentials-accordeon .inner {padding-top: 8px;}

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

@media (max-width: 1600px) {
    .essentials {
        padding-top: 110px;
        padding-bottom: 80px;
    }
    .essentials .center {
        grid-template-columns: 530px 1fr;
        gap: 60px 120px;
    }
    .essentials-images .inner {gap: 20px 20px;}
    .essentials-content .text {
        gap: 0 13px;
        font-size: 17px;
        margin-top: 17px;
        margin-bottom: 22px;
    }
    .essentials-content .text .ic {zoom: 0.8;}
    .essentials-accordeon .btn-accordeon {font-size: 16px;}
    .essentials-accordeon .item-accordeon + .item-accordeon {
        margin-top: 15px;
    }
    .essentials-accordeon {margin-bottom: 25px;}
    .essentials-images p {font-size: 12px;}
}

@media (max-width: 1200px) {
    .essentials .center {
        grid-template-columns: 430px 1fr;
        gap: 60px 60px;
    }
    .essentials-content .text {
        font-size: 13px;
        gap: 0 10px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .essentials-content .text .ic {zoom: 0.7;}
    .essentials-accordeon {margin-bottom: 15px;}
    .essentials-accordeon .item-accordeon + .item-accordeon {
        margin-top: 12px;
    }
    .essentials-images p {font-size: 10px;}
}

@media (max-width: 991px) {
    .essentials {
        padding-top: 70px;
        padding-bottom: 50px;
    }
    .essentials .center {
        grid-template-columns: 1fr;
        gap: 50px 60px;
    }
    .essentials-images .inner {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .essentials-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .essentials h2.title {text-align: center;}

    .essentials-accordeon {
        max-width: 500px;
        margin-bottom: 25px;
        text-align: center;
    }
    .essentials-accordeon .btn-accordeon {justify-content: center;}
    .essentials-accordeon .item-accordeon + .item-accordeon {
        margin-top: 20px;
    }
}

@media (max-width: 550px) {
    .essentials {
        padding-top: 60px;
        padding-bottom: 35px;
    }
    .essentials .center {gap: 40px 60px;}
    .essentials-images p {display: none;}
    .essentials-images .image:nth-child(1) img {
        content: url(../img/essentials/image-mob-3.webp?1);
    }
    .essentials-images .image:nth-child(2) img {
        content: url(../img/essentials/image-mob-2.webp);
    }
    .essentials-images .image:nth-child(3) img {
        content: url(../img/essentials/image-mob-1.webp?1);
    }
    .essentials-images .inner {gap: 15px 15px;}
    .essentials-images .image {border-radius: 23px;}

    .essentials-content {align-items: start;}
    .essentials h2.title {text-align: left;}

    .essentials-content .text {
        margin-top: 25px;
        margin-bottom: 35px;
        font-weight: 500;
        font-size: 3.9vw;
    }
    .essentials-content .text .ic {
        zoom: inherit;
        width: 11vw;
    }
    .essentials-content .text .ic img {width: 100%;}

    .essentials-accordeon {
        text-align: left;
        margin-bottom: 40px;
    }
    .essentials-accordeon .btn-accordeon {
        justify-content: start;
        font-size: 4.05vw;
    }
    .essentials-accordeon .inner {padding-top: 0;}

    .essentials-content .btn-text + p {
        text-align: center;
        margin-top: 45px;
        font-size: 13px;
        width: 100%;
    }
    .essentials-content .btn-text + p a {
        text-decoration: underline;
    }
    .essentials-content .btn-text + p a:hover {
        text-decoration: none;
    }

    .ic-plus {
        width: 8px;
        height: 8px;
        zoom: 0.8;
    }
}

/* ------------------ MARQUEE SLIDER ------------------ */
.marquee-slider .image {
    display: flex;
    align-items: center;
    gap: 0 6px;
    color: #757575;
    font-size: 22px;
}

@media (max-width: 1600px) {
    .marquee-slider .image {zoom: 0.8;}
}

/* ------------------ CONTROL ------------------ */
.control {
    background: url(../img/control/bg-control.webp) no-repeat left top;
    background-size: cover;
    margin-top: 80px;
}
.control h2.title {font-size: 46px;}
.control .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 617px;
}

.control-content {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: -200px;
}

.control-content h2.title {color: #fff;}
.control-content .subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: 20px;
}

.control-content .box {
    max-width: 315px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    padding: 20px 25px 20px 25px;
    color: #fff;
    text-align: left;
    position: relative;
}
.control-content .box .number {
    font-size: 60px;
    line-height: 1;
    font-family: var(--quincy);
}
.control-content .box p {font-size: 18px;}

.control-content .icon {
    text-align: center;
    margin-top: -20px;
}
.control-content .icon > div {
    display: flex;
    max-width: 240px;
    margin: 0 auto;
    position: relative;
    right: -3px;
}
.control-content .icon > div span {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    font-family: var(--quincy);
}
.control-content .icon > div span:first-child {justify-content: start;}
.control-content .icon > div span:last-child {justify-content: end;}

.ic-stat {
    width: 230px;
    height: 128px;
}

.control-content small {
    font-size: 10px;
    margin-top: 12px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) !important;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 1600px) {
    .control {margin-top: 25px;}
    .control .center {min-height: 530px;}
    .control-content .subtitle {
        font-size: 17px;
        margin-bottom: 20px;
        margin-top: 15px;
    }
    .control-content {margin-left: -20px;}
    .control-content img {max-width: 255px;}
    .control-content .box {zoom: 0.8;}
}

@media (max-width: 1200px) {
    .control .center {min-height: 420px;}
    .control h2.title {font-size: 35px;}
    .control-content .subtitle {font-size: 11px;}
    .control-content {margin-left: 0;}
    .control-content img {max-width: 180px;}
    .control-content .box {zoom: 0.7;}
}

@media (max-width: 767px) {
    .control {background-position: left -300px top;}
    .control .center {grid-template-columns: 0.3fr 1fr;}
}

@media (max-width: 550px) {
    .control {
        margin-top: 35px;
        background: url(../img/control/bg-control-mob.webp) no-repeat left top;
        background-size: cover;
    }
    .control h2.title {font-size: 9vw;}
    .control .center {
        grid-template-columns: 1fr;
        min-height: 470px;
    }
    .control .center > div:first-child {display: none;}
    .control-content .icon > div span:last-child {
        position: relative;
        right: -5px;
    }
    .control-content .icon > div span:first-child {
        position: relative;
        left: -5px;
    }
    .control-content {
        justify-content: end;
        padding-bottom: 50px;
    }
    .control-content .icon > div span {
        font-size: 15px;
    }
    .control-content img {
        max-width: 200px;
        order: -2;
        margin-left: auto;
    }
    .control-content .subtitle {
        font-size: 3.9vw;
        margin-bottom: 0;
        margin-top: 10px;
    }
    .control-content small {
        order: -1;
        margin-left: auto;
        margin-right: 13px;
        margin-bottom: 30px;
        margin-left: auto;
        font-size: 13px;
        opacity: 0.9 !important;
    }

    .control-content {position: relative;}
    .control-content .box {
        position: absolute;
        top: 65px;
        right: 0;
        border-radius: 20px;
        zoom: 0.7;
    }
}

/* ------------------ CARE ------------------ */
.care {
    padding: 108px 0 107px 0;
}

.care .subtitle {
    font-size: 25px;
    margin-bottom: 5px;
}

.care .wrap {
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 0 100px;
    margin-top: 60px;
}

.care-images .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.care-images .inner > div {
    display: flex;
    border-radius: 0;
    overflow: hidden;
    transform: none !important;
    opacity: 1 !important;
    border-radius: 30px;
}
.care-images .inner > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.care-images .big:first-child {
    grid-column: 1/3;
    transform: none !important;
    opacity: 1 !important;
    clip-path: path("M 30,0 L 670,0 A 30,30 0,0,1 700,30 L 700,230 A 30,30 0,0,1 675,260 L 365,260 A 30,30 0,0,0 335,285 L 335,320 A 30,30 0,0,1 305,348 L 30,350 A 30,30 1,0,1 0,320 L 0,30 A 30,30 0,0,1 30,0 Z");
}

.care-images .small:nth-child(3) {
    margin-top: -85px;
}

.care-images .big:last-child {
    grid-column: 1/3;
}
 
.care-content .item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    position: relative;
    padding: 0 0 16px 25px;
}
.care-content .item + .item {margin-top: 35px;}
.care-content .item:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    border-radius: 10px;
    background: var(--akcent);
}
.care-content .item h3 {
    font-size: 34px;
    font-family: var(--quincy);
    line-height: 1;
    margin-bottom: 20px;
}
.care-content .item p {
    font-size: 18px;
    margin-bottom: 12px;
    animation-delay: 0.3s !important;
}
.care-content .item small {
    font-size: 18px;
    font-weight: 500;
    color: var(--akcent);
    display: inline-block;
    animation-delay: 0.6s !important;
}
.care-content .item .image {
    width: 175px;
    height: 85px;
    border-radius: 15px;
    display: flex;
    overflow: hidden;
}
.care-content .item .image img {
    width: 100%;
    object-fit: cover;
}

.care .text-bottom {
    text-align: center;
    font-size: 44px;
    font-family: var(--quincy);
    padding-top: 85px;
}

.care .foot {
    padding-top: 90px;
}
.care .foot h3 {
    font-size: 44px;
    font-family: var(--quincy);
    font-weight: normal;
}
.care .foot p {
    font-size: 14px;
    margin-top: 20px;
}

.care .small-text {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}

@media (max-width: 1600px) {
    .care {padding: 80px 0 90px 0;}
    .care .subtitle {font-size: 20px;}
    .care .wrap {
        grid-template-columns: 530px 1fr;
        gap: 0 80px;
        margin-top: 50px;
    }
    .care-content .item {padding: 0 0 10px 22px;}
    .care-content .item:before {width: 5px;}
    .care-content .item h3 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .care-content .item p {
        font-size: 14px;
        margin-bottom: 13px;
    }
    .care-content .item + .item {margin-top: 30px;}
    .care-content .item small {font-size: 15px;}
    .care .text-bottom {
        font-size: 40px;
        padding-top: 65px;
    }

    .care-images .inner {display: none;}
    .care-images .d-none {display: block !important;}

    .care .foot {padding-top: 75px;}
    .care .foot h3 {font-size: 35px;}
    .care .foot p {font-size: 10px;}
}

@media (max-width: 1200px) {
    .care {padding: 65px 0 70px 0;}
    .care .subtitle {font-size: 15px;}
    .care .wrap {
        grid-template-columns: 430px 1fr;
        gap: 0 50px;
        margin-top: 35px;
    }
    .care-content .item h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .care-content .item p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .care-content .item + .item {
        margin-top: 20px;
    }
    .care .text-bottom {
        font-size: 30px;
        padding-top: 50px;
    }

    .care .foot {padding-top: 60px;}
}

@media (max-width: 991px) {
    .care {padding: 50px 0 50px 0;}
    .care .wrap {
        grid-template-columns: 400px 1fr;
        gap: 0 30px;
    }
    .care-content .item {padding: 0 0 0px 15px;}
    .care-content .item:before {width: 4px;}
    .care-content .item h3 {
        font-size: 20px;
        margin-bottom: 9px;
    }
    .care-content .item p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .care .text-bottom {font-size: 25px;}

    .care .foot {padding-top: 50px;}
    .care .foot h3 {font-size: 30px;}
}

@media (max-width: 767px) {
    .care .wrap {
        grid-template-columns: 1fr;
        gap: 50px 30px;
    }
    .care-content .item p br,
    .care-content .item h3 br {display: none;}
    .care .text-bottom {font-size: 19px;}

    .care .foot h3 {font-size: 25px;}
    .care .foot p {font-size: 9px;}
}

@media (max-width: 550px) {
    .care {padding: 60px 0 50px 0;}
    .care-content {order: -1;}
    .care .subtitle {font-size: 4.9vw;}
    .care h2.title {font-size: 11vw;}
    .care-content .item {padding: 0 0 0px 20px;}
    .care-content .item p br {display: block;}
    .care-content .item h3 {
        font-size: 5.5vw;
        margin-bottom: 15px;
    }
    .care-content .item p {font-size: 3.6vw;}
    .care-content .item small {font-size: 3.5vw;}
    .care-content .item:before {width: 5px;}
    .care-content .item + .item {margin-top: 25px;}
    .care .text-bottom {
        padding-top: 10px;
        font-size: 5.3vw;
    }
    .care .btn-text {margin-top: 30px;}

    .care .foot {padding-top: 40px;}
    .care .foot h3 {font-size: 4.5vw;}
    .care .foot p {display: none;}
}

/* ------------------ PERSONALIZED ------------------ */
.personalized {
    padding-top: 105px;
    padding-bottom: 70px;
    position: relative;
}

.wrap-canvas-waves {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    opacity: 0.3;
    z-index: -2;
    max-width: 1920px;
    width: 100%;
    transform: translateX(-50%);
}
.wrap-canvas-waves:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 400px;
    background: linear-gradient(0, #fff, transparent);
}

.canvas-waves {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -50px;
}

.personalized .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
    align-items: start;
}

.personalized-content {
    padding-top: 100px;
    position: sticky;
    top: 0;
}
.personalized-content h2.title {font-size: 54px;}
.personalized-content > p {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.personalized-content .foot {
    margin-top: 20px;
    font-size: 13px;
}
.personalized-content .foot a {text-decoration: underline;}
.personalized-content .foot a:hover {text-decoration: none;}

.personalized-card {
    display: flex;
}
.personalized-card .image {
    width: 560px;
    display: flex;
    margin-left: -140px;
    position: relative;
}
.personalized-card .image .inner {
    border-radius: 30px;
    overflow: hidden;
}
.personalized-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personalized-card .image p {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    margin-top: 13px;
    white-space: nowrap;
    text-align: center;
}
.personalized-card .image p a {text-decoration: underline;}
.personalized-card .image p a:hover {text-decoration: none;}

.personalized-card .wrap {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    position: relative;
    z-index: 2;
}
.personalized-card .card {
    padding: 15px 19px;
    display: flex;
    align-items: center;
    gap: 20px 20px;
    min-width: 470px;
    position: relative;
    opacity: 1 !important;
    cursor: pointer;
}
.personalized-card .card:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: #fff;
    border-radius: 26px;
    box-shadow: -16px 5px 30.7985px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}
.personalized-card .card:hover:before {transform: scale(1.01);}
.personalized-card .card .prod {
    max-width: 180px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    position: relative;
}
.personalized-card .card .prod img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personalized-card .prod .label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 17px;
    padding: 0 7px;
    background: #88d7d6;
    border-radius: 30px;
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
}

.personalized-card .card h3 {
    font-size: 17px;
    line-height: 1;
    font-family: var(--quincy);
    margin-bottom: 10px;
}
.personalized-card .card h3 span {font-size: 22px;}
.personalized-card .card h3 sup {
    line-height: 0;
    display: inline-block;
    font-size: 0.8em;
    position: relative;
    top: 3px;
}
.personalized-card .card p {
    font-size: 13px;
    line-height: 1.4;
    color: #5F6466;
}

.personalized-card .card .rx {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C4CACC url(../img/personalized/ic-rx.svg) no-repeat center;
}

.personalized-card .group {
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin-top: 15px;
}
.personalized-card .group div {
    min-height: 27px;
    border-radius: 30px;
    background: #E0EFF8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    min-width: 51px;
    padding: 0 10px;
}
.personalized-card .group div:last-child {background: #FDEDE3;}

@media (max-width: 1600px) {
    .personalized {
        padding-top: 85px;
        padding-bottom: 50px;
    }
    .personalized .center {max-width: 1200px;}
    .personalized-card .image {
        width: 445px;
        margin-left: -125px;
    }
    .personalized-card .image p {font-size: 13px;}
    .personalized-card .wrap {
        margin-top: 30px;
        zoom: 0.85;
    }
    .personalized-content {top: 80px;}
    .personalized-content > p {
        margin-top: 20px;
        font-size: 16px;
    }
    .personalized-content h2.title {font-size: 43px;}
    .personalized-content {padding-top: 20px;}
}

@media (max-width: 1200px) {
    .personalized-card .image {
        width: 360px;
        margin-left: -95px;
    }
    .personalized-content h2.title {font-size: 35px;}
    .personalized-content > p {font-size: 13px;}
    .personalized-card .wrap {
        margin-top: 0;
        zoom: 0.83;
        padding: 25px 0;
    }
    .personalized-card .card {
        background: #fff;
        border-radius: 19px;
        padding: 11px 12px;
        gap: 15px 15px;
        min-width: 445px;
    }
}

@media (max-width: 991px) {
    .personalized {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    .personalized-card .image {
        width: 345px;
        margin-left: -195px;
    }
    .personalized-card .image .inner {border-radius: 15px;}
    .personalized-card .wrap {zoom: 0.8;}
    .personalized .center {gap: 0 15px;}
    .personalized-content h2.title {
        font-size: 25px;
    }
    .personalized-content h2.title br {display: none;}
    .personalized-content > p br {display: none;}
}

@media (max-width: 767px) {
    .personalized {overflow: hidden;}
    .personalized:after {
        content: '';
        display: block;
        background: url(../img/bg-waves.webp) no-repeat left top;
        background-size: 100% auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        opacity: 0.4;
        animation: zoom 20s linear forwards infinite;
    }
    .personalized:before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100px;
        background: linear-gradient(transparent, #fff);
    }

    .personalized-card {justify-content: center;}
    .personalized .center {
        grid-template-columns: 1fr;
        gap: 50px 15px;
    }
    .personalized-content {
        padding-top: 0;
        text-align: center;
        position: static;
    }
    .personalized-content h2.title {font-size: 30px;}
    .personalized-content h2.title br {display: block;}
    .personalized-content > p br {display: block;}
}

@media (max-width: 550px) {
    .personalized {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .personalized:after {
        background: url(../img/personalized/personalized-mob.webp) no-repeat left top;
        background-size: 100%;
        opacity: 0.7;
    }
    .personalized .center {
        gap: 30px 15px;
    }
    .personalized-content h2.title {font-size: 9.5vw;}
    .personalized-content > p {font-size: 4.5vw;}

    .personalized-card:after {
        content: '';
        display: block;
        position: absolute;
        top: 30%;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(0, #fff 80%, transparent);
    }

    .personalized-card {
        position: relative;
        border-radius: 20px;
        margin-left: -5px;
        margin-right: -5px;
        padding: 375px 13px 0 13px;
        background: url(../img/personalized/bg-personalized-mob.webp) no-repeat center top;
        background-size: 100%;
    }
    .personalized-card .image {display: none;}
    .personalized-card .wrap {
        zoom: 1;
        padding: 0 0;
        width: 100%;
    }

    .personalized-card .card {
        min-width: inherit;
        transform: none !important;
        opacity: 1 !important;
    }
    .personalized-card .card .prod {
        border-radius: 12px;
        max-width: 29vw;
        min-width: 29vw;
        height: 100%;
    }
    .personalized-card .card h3 {font-size: 4vw;}
    .personalized-card .card h3 span {
        font-size: 5.5vw;
        display: block;
        margin-top: 3px;
    }
    .personalized-card .card p {font-size: 2.9vw;}
    .personalized-card .card p br {display: none;}
    .personalized-card .group div {
        min-height: 22px;
        font-size: 2.5vw;
    }
    .personalized-card .card .rx {
        top: 10px;
        right: 20px;
        zoom: 0.7;
    }
    .personalized-card .prod .label {
        top: 8px;
        left: 8px;
    }

    .personalized-card .card:nth-child(2) .prod img {
        content: url(../img/personalized/prod-mob-2.webp);
    }
    .personalized-card .card:nth-child(3) .prod img {
        content: url(../img/personalized/prod-mob-4.webp);
    }
    .personalized-card .card:nth-child(4) .prod img {
        content: url(../img/personalized/prod-mob-5.webp);
    }
    .personalized-card .card:nth-child(5) .prod img {
        content: url(../img/personalized/prod-mob-3.webp);
    }

    .personalized .foot {
        font-size: 13px;
        position: relative;
        z-index: 3;
    }
    .personalized .foot a {text-decoration: underline;}
    .personalized .foot a:hover {text-decoration: none;}
}

/* ------------------ MARQUEE TEXT ------------------ */
.marquee-text {
    --gap: 1px;
    padding: 70px 0 65px 0;
}
.marquee-text .text {
    display: flex;
    align-items: center;
    color: var(--akcent);
    font-size: 46px;
    font-family: var(--quincy);
}
.marquee-text .text svg {
    width: 16px;
    height: 16px;
    margin: 0 25px;
    display: inline-block;
}

@media (max-width: 1600px) {
    .marquee-text {padding: 30px 0 60px 0;}
    .marquee-text .text {zoom: 0.8;}
}

@media (max-width: 1200px) {
    .marquee-text .text {
        zoom: 0.7;
    }
}

@media (max-width: 991px) {
    .marquee-text {padding: 0px 0 50px 0;}
    .marquee-text .text {zoom: 0.55;}
}

/* ------------------ SYMPTOMS ------------------ */
.symptoms {
    background: url(../img/symptoms/bg-symptoms.webp) no-repeat left top;
    background-size: cover;
    padding: 110px 0 80px 0;
    color: #fff;
}
.symptoms .subtitle {
    font-size: 22px;
    margin-bottom: 10px;
}
.symptoms h2.title {
    color: #fff;
    font-size: 70px;
    font-weight: 500;
}

.symptoms-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 40px;
    max-width: 1258px;
    margin: 40px auto 0 auto;
}
.symptoms-card .card {
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 15px 10px 25px 25px;
    display: flex;
    flex-direction: column;
}
.symptoms-card .card .percent {
    font-family: var(--quincy);
    font-size: 70px;
    line-height: 1;
}
.symptoms-card .card p {
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 10px;
}
.symptoms-card .card small {
    font-size: 13.5px;
    margin-top: auto;
    display: block;
}
.symptoms-card .card small a {color: #fff;}

.symptoms .foot {
    margin-top: 20px;
}
.symptoms .foot small {
    font-size: 12px;
}
.symptoms .foot h5 {
    font-family: var(--quincy);
    font-size: 30px;
    margin-top: 50px;
    font-weight: normal;
}
.symptoms .foot p {
    font-size: 23px;
    margin-top: 15px;
}

@media (max-width: 1600px) {
    .symptoms {padding: 80px 0 70px 0;}
    .symptoms h2.title {font-size: 60px;}
    .symptoms .subtitle {font-size: 14px;}
    .symptoms-card {gap: 15px 25px;}
    .symptoms-card .card {
        border-radius: 20px;
        padding: 10px 10px 15px 15px;
    }
    .symptoms-card .card .percent {font-size: 55px;}
    .symptoms-card .card p {font-size: 18px;}
    .symptoms-card .card small {font-size: 12px;}
    .symptoms .foot h5 {
        font-size: 25px;
        margin-top: 40px;
    }
    .symptoms .foot p {
        font-size: 19px;
        margin-top: 10px;
    }
}

@media (max-width: 1200px) {
    .symptoms h2.title {font-size: 50px;}
    .symptoms-card .card {border-radius: 15px;}
    .symptoms-card .card .percent {font-size: 45px;}
    .symptoms-card .card p {font-size: 15px;}
    .symptoms-card .card small {font-size: 10px;}
    .symptoms .foot h5 {
        font-size: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .symptoms {
        padding: 50px 0 50px 0;
    }
    .symptoms-card {
        gap: 15px 15px;
        grid-template-columns: 1fr 1fr;
        max-width: 450px;
        margin: 30px auto 0 auto;
    }
    .symptoms-card .card .percent {font-size: 40px;}
    .symptoms .foot h5 {
        font-size: 15px;
        margin-top: 20px;
    }
    .symptoms .foot p {font-size: 13px;}
}

@media (max-width: 550px) {
    .symptoms {
        padding-top: 60px;
        background: url(../img/symptoms/bg-symptoms-mob.webp) no-repeat right top;
        background-size: cover;
    }
    .symptoms h2.title {font-size: 8vw;}
    .symptoms h2.title br {display: none;}
    .symptoms-card {margin: 40px auto 0 auto;}
    .symptoms-card .card .percent {
        font-size: 10vw;
    }
    .symptoms-card .card p {font-size: 3.3vw;}
    .symptoms-card .card small {font-size: 2.35vw;}
    .symptoms .foot small {display: none;}
    .symptoms .foot h5 {
        font-size: 5vw;
        margin-top: 50px;
    }
    .symptoms .foot p {font-size: 3.7vw;}
}

/* ------------------ SLIDER REVIEWS ------------------ */
.splide-reviews {
    margin-top: 130px;
}
.splide-reviews .splide {
    position: relative;
}
.splide-reviews .slide {height: 100%;}
.splide-reviews .image {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    height: 100%;
}
.splide-reviews .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.splide-reviews .text {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 30px;
    z-index: 2;
    font-size: 22px;
    font-family: var(--quincy);
    color: #fff;
}

.splide-reviews .quote {
    height: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    min-height: 510px;
}
.splide-reviews .quote::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(0deg, #096A8C, #096A8C 23%, #62CBC9 100%);
    z-index: -1;
    border-radius: inherit;
    animation: rotateBg 5s linear infinite;
    transform-origin: center;
}

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

.splide-reviews .quote .inner {
    position: absolute;
    top: 3px;
    right: 3px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 13px;
    padding: 60px 33px 33px 33px;
}

.splide-reviews .inner::before {
    content: '“';
    display: block;
    font-size: 141px;
    line-height: 0.3;
}
.splide-reviews .quote p {
    font-family: var(--quincy);
    font-size: 22px;
    line-height: 1.5;
}
.splide-reviews .quote span {
    font-size: 22px;
    display: inline-block;
    margin-top: 20px;
}

.btn-play {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-play:after {
    content: '';
    border-top: 7px solid transparent;
    border-left: 10px solid #CE9AC2;
    border-bottom: 7px solid transparent;
    position: relative;
    left: 1px;
}

.splide__pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 7px;
    margin-top: 40px;
}
.splide__pagination button {
    width: 60px;
    height: 4px;
    background: #E6E6E6;
    opacity: 1;
    border-radius: 0;
    margin: 0;
}
.splide__pagination button.is-active {
    background: var(--akcent);
    transform: none;
}

@media (max-width: 1600px) {
    .splide-reviews {margin-top: 80px;}
    .splide-reviews .quote {min-height: 400px;}
    .splide-reviews .quote .inner {padding: 45px 15px 20px 20px;}
    .splide-reviews .inner::before {font-size: 115px;}
    .splide-reviews .quote p {font-size: 18px;}
    .splide-reviews .quote span {
        font-size: 18px;
        margin-top: 15px;
    }
    .splide-reviews .text {
        left: 25px;
        right: 15px;
        bottom: 20px;
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .splide-reviews {margin-top: 50px;}
    .splide__pagination {margin-top: 25px;}
    .splide__pagination button {
        width: 45px;
        height: 3px;
    }
}

@media (max-width: 767px) {
    .splide-reviews .splide__pagination button {width: 12px;}
}

@media (max-width: 550px) {
    .splide-reviews {margin-top: 70px;}
    .splide__pagination {margin-top: 35px;}
    .splide__pagination button {
        width: 40px;
        height: 2.5px;
    }

    .splide-reviews .splide__pagination {gap: 0 5px;}
    .splide-reviews .splide__pagination button {width: 10px;}
}

@media (max-width: 400px) {
    .splide-reviews .quote {min-height: 380px;}
}

/* ------------------ CHOOSE ------------------ */
.choose {
    padding: 100px 0 90px 0;
}
.choose .subtitle {
    font-size: 25px;
}

.choose-table {
    margin: 60px auto 0 auto;
    max-width: 1074px;
    display: grid;
    grid-template-columns: 1fr 272px 1fr;
}
.choose-table .left {
    border-radius: 10px 0 0 10px;
    background: #F7F7F7;
    padding-left: 25px;
}
.choose-table .middle {
    border-radius: 15px;
    position: relative;
    margin-top: -15px;
    margin-bottom: -20px;
    overflow: hidden;
    background: #096A8C;
}

.choose-table .right {
    border-radius: 0 10px 10px 0;
    background: #F7F7F7;
    padding-right: 25px;
}
.choose-table .right .chk svg {
    width: 16px;
    height: 16px;
}
.choose-table .td {
    min-height: 85px;
    display: flex;
    align-items: center;
    font-size: 20px;
    position: relative;
}
.choose-table .left .td:after,
.choose-table .right .td:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #E7E7E7;
}
.choose-table .td:last-child:after {display: none !important;}

.choose-table .left .thead {
    font-size: 36px;
    font-family: var(--quincy);
}

.choose-table .right .thead {
    font-size: 24px;
    justify-content: center;
    text-indent: 25px;
}

.choose-table .middle .td,
.choose-table .right .td {justify-content: center;}
.choose-table .middle .thead {
    min-height: 100px;
    display: flex;
    justify-content: center;
}
.choose-table .middle .thead img {
    position: relative;
    top: 15px;
}

.ic-checkmark, .ic-cross {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00698B;
}
.ic-cross {background: #E8E8E8;}
.ic-checkmark svg {
    width: 25px;
    height: 18px;
}
.ic-cross svg {
    width: 12px;
    height: 12px;
}

@media (max-width: 1600px) {
    .choose {padding: 70px 0 90px 0;}
    .choose-table {zoom: 0.8;}
    .choose .subtitle {font-size: 18px;}
}

@media (max-width: 1200px) {
    .choose-table {
        zoom: 0.7;
    }
    .choose .subtitle {font-size: 15px;}
}

@media (max-width: 991px) {
    .choose {
        padding: 50px 0 70px 0;
    }
}

@media (max-width: 767px) {
    .choose-table .left {padding-left: 0;}
    .choose-table .right {padding-right: 0;}
    .choose-table .td {padding: 0 10px;}
    .choose-table .right .thead {
        text-align: center;
        text-indent: 0;
    }
}

@media (max-width: 550px) {
    .choose h2.title {font-size: 10vw;}
    .choose .subtitle {
        font-size: 3.9vw;
        margin-bottom: 10px;
    }

    .choose-table {grid-template-columns: 1.1fr 190px 1fr;}
    .choose-table .middle:after {
        top: -65%;
        right: -65%;
        left: -65%;
        bottom: -65%;
    }
    .choose-table .td {
        text-align: center;
        justify-content: center;
        font-size: 4.6vw;
    }
    .choose-table .left .thead {
        justify-content: center;
        font-size: 9vw;
    }
    .choose-table .right .thead {font-size: 4vw;}
    .choose-table .middle .thead img {zoom: 0.87;}
}

/* ------------------ EXPERTS ------------------ */
.experts .head {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.experts .head div:last-child {
    display: flex;
    gap: 0 14px;
}
.experts .subtitle {font-size: 25px;}

.experts .btn.blue {
    background: transparent;
    color: #096A8C;
    border-color: #096A8C !important;
}
.experts .btn.blue:hover {
    color: #fff;
    border-color: #62CBC9 !important;
}

.splide-experts {margin-top: 50px;}
.splide-experts .splide__track {overflow: visible;}
.splide-experts .slide {position: relative;}
.splide-experts .slide .label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.34);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 30px;
    padding: 0 10px;
    min-height: 30px;
    color: #fff;
    backdrop-filter: blur(1px);
    font-size: 13px;
    font-weight: 500;
}
.splide-experts .slide .image {
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s;
    cursor: pointer;
}
.splide-experts .slide:hover .image {transform: scale(1.01);}
.splide-experts .slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.splide-experts .foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 18px 18px 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.splide-experts .foot h4 {
    color: #fff;
    font-size: 28px;
    font-family: var(--quincy);
    font-weight: 500;
    line-height: 1.1;
}
.splide-experts .foot a {
    width: 37px;
    min-width: 37px;
    height: 37px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.splide-experts .foot a svg {
    width: 8px;
    height: 12px;
    color: #CE9AC2;
}

@media (max-width: 1600px) {
    .experts .subtitle {font-size: 20px;}
    .splide-experts .slide .image {border-radius: 20px;}
    .splide-experts .foot h4 {font-size: 20px;}
    .splide-experts .slide .label {zoom: 0.9;}
    .splide-experts .foot a {zoom: 0.9;}
}

@media (max-width: 991px) {
    .experts .head {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 30px 0;
        text-align: center;
    }
    .experts .subtitle {font-size: 15px;}
}

@media (max-width: 550px) {
    .experts .subtitle {font-size: 4vw;}
    .experts h2.title {font-size: 8.5vw;}
    .experts .head div:last-child {display: none;}
    .splide-experts .slide .label {
        zoom: 1;
        font-size: 17px;
    }
    .splide-experts {margin-top: 30px;}
    .splide-experts .foot h4 {font-size: 6vw;}
    .experts .btn-text {margin-top: 40px;}
    .experts .btn-text .btn {font-weight: 500;}
}

/* ------------------ HEALTH ------------------ */
.health {
    padding: 180px 0 80px 0;
}
.health .center {
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 0 174px;
}

.health-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
}
.health-images .big {grid-row: span 2;}
.health-images .image {
    border-radius: 30px;
    display: flex;
    overflow: hidden;
}
.health-images .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.health-content .subtitle {
    font-size: 25px;
    margin-bottom: 10px;
}

.health-content .text {
    font-size: 21px;
    margin-top: 20px;
}

.health-content .box {
    display: flex;
    gap: 0 30px;
    margin-top: 45px;
    margin-bottom: 35px;
}
.health-content .box > div {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.health-content .box .label {
    display: inline-flex;
    align-items: center;
    gap: 0 8px;
    min-height: 32px;
    padding: 0 8px;
    border-radius: 4px;
    background: #62CBC9;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.health-content .box div:first-child .label svg {
    width: 22px;
    height: 18px;
}
.health-content .box div:last-child .label svg {
    width: 20px;
    height: 20px;
}
.health-content .box .number {
    font-size: 100px;
    font-family: var(--quincy);
    line-height: 1;
    display: inline-flex;
    position: relative;
    margin-top: -8px;
    color: #1F2937;
}
.health-content .box .number span {
    font-family: var(--quincy);
    font-weight: 500;
    position: relative;
    top: 9px;
}
.health-content .box div:first-child .number div {
    font-size: 50px;
    position: absolute;
    top: 15px;
    left: 100%;
}
.health-content .box div:last-child .number div {
    font-size: 40px;
    position: absolute;
    top: 15px;
    left: 100%;
}
.health-content .box p {
    font-size: 18px;
    font-family: var(--quincy);
    color: #6B7280;
    margin-top: 20px;
}

@media (max-width: 1600px) {
    .health {padding: 120px 0 50px 0;}
    .health .center {
        grid-template-columns: 530px 1fr;
        gap: 0 110px;
    }
    .health-content .subtitle {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .health-content .text {
        font-size: 17px;
        margin-top: 15px;
    }
    .health-content .box {
        gap: 0 20px;
        margin-top: 35px;
        margin-bottom: 30px;
    }
    .health-content .box .number {font-size: 80px;}
    .health-content .box div:first-child .number div {
        font-size: 40px;
        top: 10px;
    }
    .health-content .box div:last-child .number div {
        font-size: 30px;
        top: 13px;
    }
    .health-content .box .number span {top: 5px;}
    .health-content .box p {
        font-size: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 1200px) {
    .health .center {
        grid-template-columns: 430px 1fr;
        gap: 0 60px;
    }
    .health-content .subtitle {font-size: 15px;}
    .health-content .text {font-size: 14px;}
    .health-content .box {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .health-content .box .label {zoom: 0.8;}
    .health-content .box .number {
        font-size: 50px;
        margin-top: -4px;
    }
    .health-content .box div:first-child .number div {
        font-size: 30px;
        top: 7px;
    }
    .health-content .box div:last-child .number div {
        font-size: 25px;
        top: 7px;
    }
    .health-content .box p {
        font-size: 13px;
        margin-top: 10px;
    }
}

@media (max-width: 991px) {
    .health {padding-top: 50px;}
    .health .center {
        grid-template-columns: 1fr;
        gap: 50px 60px;
    }
    .health-images {
        grid-template-columns: 1fr 1fr;
        gap: 15px 15px;
        max-width: 500px;
        margin: 0 auto;
    }
    .health-images .image {border-radius: 15px;}

    .health-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .health-content .box > div {align-items: center;}
}

@media (max-width: 550px) {
    .health {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .health h2.title {
        margin-top: 8px;
        margin-bottom: 25px;
    }
    .health .center {gap: 40px 60px;}
    .health .text {font-size: 3.9vw;}
    .health .text br {display: none;}
    .health-images {gap: 12px 12px;}
    .health-content .box {
        margin-top: 5px;
        margin-bottom: 30px;
        gap: 0 15px;
    }
    .health-content .box > div {
        align-items: start;
    }
    .health-content .box .number {
        font-size: 60px;
        margin-top: 0px;
    }
    .health-content .box p {
        font-size: 3.4vw;
        margin-top: 10px;
        text-align: left;
    }
    .health-content .box p br {display: none;}
    .health-content .btn-text p {display: inline-flex !important;}
}

/* ------------------ MARQUEE LOGOS ------------------ */
.marquee-logos .center {max-width: 1197px;}
.marquee-logos p {
    font-size: 12px;
    color: rgba(71,71,71,.69);
    margin-bottom: 5px;
}
.marquee-logos .marquee__group {
    animation: none;
    justify-content: space-between;
    opacity: 0.44;
}
.marquee-logos .marquee__group:last-child {display: none;}
.marquee-logos .logo-1 img {max-width: 114px;}
.marquee-logos .logo-2 img {max-width: 121px;}
.marquee-logos .logo-3 img {max-width: 164px;}
.marquee-logos .logo-4 img {max-width: 114px;}
.marquee-logos .logo-5 img {max-width: 175px;}
.marquee-logos .logo-6 img {max-width: 130px;}
.marquee-logos .logo-7 img {max-width: 160px;}

@media (max-width: 1600px) {
    .marquee-logos .center {max-width: 900px;}
    .marquee-logos .logo {zoom: 0.8;}
}

@media (max-width: 1200px) {
    .marquee-logos .center {max-width: 800px;}
    .marquee-logos .logo {zoom: 0.65;}
}

@media (max-width: 991px) {
    .marquee-logos p {text-align: center;}
    .marquee-logos .marquee__group {
        animation: scroll 150s linear infinite;
    }
    .marquee-logos .marquee__group:last-child {display: flex;}
}

@media (max-width: 550px) {
    .marquee-logos p {font-size: 9px;}
    .marquee-logos .logo {zoom: 1;}
}

/* ------------------ FAQ ------------------ */
.faq {
    padding: 150px 0 40px 0;
}

.faq-accordeon {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px 0;
}
.faq-accordeon .item-accordeon {
    border: 1px solid #E3E3E3;
    border-radius: 5px;
}
.faq-accordeon .btn-accordeon {
    padding: 18px 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--quincy);
    font-size: 22px;
    cursor: pointer;
}
.faq-accordeon .content-accordeon .inner {
    padding-bottom: 37px;
    padding-left: 23px;
    padding-right: 23px;
    font-size: 16px;
}
.faq-accordeon .content-accordeon p + p {margin-top: 20px;}
.faq-accordeon .ic-plus {
    width: 14px;
    height: 14px;
}
.faq-accordeon .ic-plus:before,
.faq-accordeon .ic-plus:after {background: #60A5BC;}

.faq .show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-family: var(--greycliff);
    font-weight: 500;
    gap: 0 10px;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.3s;
}
.faq .show-more:hover {color: #0F7292;}
.faq .show-more svg {
    width: 8px;
    height: 12px;
    transform-origin: center;
    transform: rotate(90deg);
    margin-top: 5px;
}

@media (max-width: 1600px) {
    .faq {
        padding: 80px 0 40px 0;
    }
    .faq-accordeon .btn-accordeon {
        padding: 15px 20px;
        font-size: 19px;
    }
    .faq-accordeon .content-accordeon .inner {
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px;
    }
}

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

@media (max-width: 991px) {
    .faq h2.title {text-align: center;}
}

@media (max-width: 550px) {
    .faq {padding-top: 40px;}
    .faq h2.title {font-size: 7.8vw;}
    .faq-accordeon {
        margin-top: 20px;
        gap: 17px 0;
    }
    .faq-accordeon .btn-accordeon {
        padding: 10px 12px;
        font-size: 17px;
    }
    .faq-accordeon .ic-plus {zoom: 0.8;}
    .faq-accordeon .ic-plus:after,
    .faq-accordeon .ic-plus:before {background: var(--color);}
    .faq-accordeon .content-accordeon .inner {
        padding-bottom: 10px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 15px;
        margin-top: -3px;
    }
    .faq-accordeon .item-accordeon {border-radius: 3px;}
}

/* ------------------ TAKE CONTROL ------------------ */
.takecontrol {
    background: url(../img/takecontrol/bg-takecontrol.webp) no-repeat left top;
    background-size: cover;
    padding: 145px 0 157px;
}
.takecontrol .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.takecontrol-content {
    color: #fff;
    margin-left: 40px;
    margin-top: -30px;
}
.takecontrol-content h2.title {
    font-weight: 500;
    font-size: 59px;
}
.takecontrol-content .text {
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
}
.takecontrol-content .btn-group {justify-content: start;}
.takecontrol-content .btn-text {margin-top: 35px;}
.takecontrol-content .btn {
    min-height: 53px;
    min-width: 237px;
    font-weight: 500;
    font-size: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: none;
    box-shadow: inset 1px 1px 1px rgba(255, 255, 255, .4), inset -0.5px -0.5px rgba(255, 255, 255, .2) !important;
}
.takecontrol-content .btn:after {background: rgba(71,143,169,.3);}
.takecontrol-content .btn-group div {
    animation: shadow-pulse 3s infinite;
    border-radius: 30px;
}
.takecontrol-content .btn-group div:first-child .btn {
    background: rgba(9, 106, 140, 0.79);
    min-width: 160px;
}
.takecontrol-content .btn-group div:first-child .btn:hover:after {
    background: #096A8C;
}
.takecontrol-content .btn-group div:last-child .btn {background: rgba(255, 255, 255, 0.34);}

@media (max-width: 1600px) {
    .takecontrol {padding: 100px 0 100px;}
    .takecontrol-content {margin-top: 0;}
    .takecontrol-content h2.title {font-size: 45px;}
    .takecontrol-content .text {font-size: 16px;}
    .takecontrol-content .btn-text {margin-top: 20px;}
}

@media (max-width: 1200px) {
    .takecontrol {padding: 70px 0 70px;}
    .takecontrol-content {margin-left: 0;}
    .takecontrol-content .text {font-size: 13px;}
    .takecontrol-content h2.title {font-size: 40px;}
    .takecontrol-content .text {font-size: 14px;}
}

@media (max-width: 991px) {
    .takecontrol {background-position: left -120px top;}
}

@media (max-width: 767px) {
    .takecontrol .center {grid-template-columns: 1fr;}
    .takecontrol-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 550px) {
    .takecontrol {
        padding: 220px 0 100px 0;
        background: url(../img/takecontrol/bg-takecontrol-mob.webp) no-repeat left top;
        background-size: cover;
    }
    .takecontrol .center > div:first-child {display: none;}
    .takecontrol-content .btn-group {
        justify-content: start;
        flex-direction: column;
        gap: 15px 0;
    }
    .takecontrol-content h2.title {font-size: 8vw;}
    .takecontrol-content .text {
        font-size: 3.8vw;
        margin-top: 18px;
    }
    .takecontrol-content .btn-text {margin-top: 25px;}
    .takecontrol-content .btn {
        min-height: 50px;
        min-width: 300px !important;
        width: 100%;
    }
}

/* ------------------ FOOTER ------------------ */
.footer {
    background: #093E52;
    padding-top: 30px;
    position: relative;
    z-index: 10;
    color: #558297;
}
.footer a {
    text-decoration: none;
    color: #558297 !important;
}
.footer a:hover {text-decoration: underline;}
.footer-row {
    display: flex;
    margin-right: -15px;
    margin-left: -15px
}
.footer-logo {
    display: inline-block;
    margin-bottom: 0px
}
.footer-logo svg {
    width: 146px;
    height: 41px;
}
.social a {
    width: 50px;
    height: 50px;
    background-color: #121629;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: inline-block;
    transition: all .3s;
    margin:1px;
}
.social a:hover {
    background-color: #ccb27a;
}
.ic-phone {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../img/ic-phone.webp) no-repeat;
}
.social a.ic-fb {
    background-image: url(../img/ic-fb.webp);
    margin-right: 10px
}
.social a.ic-tw {
    background-image: url(../img/ic-tw.webp?2)
}
.social a.ic-in {
    background-image: url(../img/insta.webp?1)
}
.social a.ic-tiktok {
    background-image: url(../img/tiktok.svg);
    background-size: 40%;
}
.social a.ic-linkedin {
    background-image: url(../img/linkedin-in.svg);
    background-size: 40%;
}
.footer-item {
    width: 20%;
    padding: 0 15px
}
.footer-item ul {list-style: none;}
.footer-item:first-child {
    min-width: 360px
}
.footer-item h3 {
    font-weight: 600;
    color: #61cbc8;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 20px;
}
.footer-item ul li + li {
    margin-top: 15px
}
.footer-item ul li a {
    color: #fff;
    transition: all .3s;
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1.5;
    font-size: 16px;
}
.footer-item ul li a:hover, .footer-item ul li.active a {
    color: #66d4cf
}
.footer-item ul li a:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    background: url(../img/ic-plus.webp?1) no-repeat;
    margin-right: 8px;
    transition: all .3s;
    transform: scale(0)
}
.footer-item ul li a:hover:before, .footer-item ul li.active a:before {
    transform: scale(1);
    width: 18px;
    height: 19px
}
.footer .phone {
    color: #fff;
    margin-top: 45px;
    display: inline-flex;
    align-items: center;
    transition: all .3s;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}
.footer .phone:hover {
    color: #61cbc8
}
.footer .phone i {
    margin-right: 10px
}
.footer-copy {
    border-top: 1px solid #13495E;
    margin-top: 30px
}
.footer-copy .center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 15px;
    font-size: 15px;
    color: #fff;
}
.footer-copy div {
    display: flex;
    align-items: center
}
.footer-copy div a {color: #fff !important;}
.footer-copy div a:hover {
    text-decoration: underline
}
.footer-copy div span {
    display: inline-block;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    margin: 0 15px
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid #13495E;
}
.footer-bottom .center {
    display: flex;
    align-items: center;
}
.footer-bottom .text {
    width: 100%;
    font-family: var(--greycliff);
    font-size: 13px;
    line-height: 16px;
    color: #fff;
}
.footer-bottom .text sup {
    line-height: 0;
    display: inline-block;
    font-size: 1.5em;
    position: relative;
    top: 7px;
}
.footer-bottom .text a {text-decoration: underline;}
.footer-bottom .text a:hover {text-decoration: none;}
.footer-bottom .image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
}
.footer-bottom a {color: #6676a2;}

@media (max-width: 1200px) {
    .footer-logo {
        width: 90px;
        height: 27px;
        margin-bottom: 30px;
        background-size: 90px
    }
    .social a {
        width: 30px;
        height: 30px;
        background-size: 14px
    }
    .social a.ic-fb {background-size: 8px !important;}
    .footer-item {padding: 0 10px;}
    .footer-item:first-child {min-width: inherit;}
    .footer-item h3 {margin-bottom: 15px;}
    .footer-item ul li + li {margin-top: 8px;}
    .footer-copy {margin-top: 40px;}
    .footer-copy .center {
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 11px
    }
}

@media (max-width: 767px) {
    .page-plans .footer {padding-top: 50px; }
    .footer-row {
        flex-wrap: wrap;
        padding: 0 30px
    }
    .footer-item {
        width: 50%;
        padding: 0 5px;
        margin-bottom: 45px
    }
    .footer-item:first-child {
        min-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .footer-logo {
        width: 220px;
        height: 42px;
        margin-bottom: 0;
        background-size: 150px
    }
    .footer-item .social {
        width: 50%;
        padding: 0 15px;
        line-height: 0
    }
    .social a {
        width: 50px;
        height: 50px;
        background-size: 22px
    }
    .social a.ic-fb {background-size: 12px !important;}
    .footer-item h3 {
        margin-bottom: 16px;
        font-size: 18px;
        text-align: left;       
    }
    .footer .phone {margin-top: 25px;}
    .footer-copy {margin-top: 15px;}
    .footer-copy .center {
        font-size: 15px;
        flex-direction: column
    }

    .footer-bottom {padding-bottom: 140px;}
    .footer-bottom .center {flex-direction: column;}
    .footer-bottom .image {
        margin-bottom: 30px;
        padding-bottom: 15px;
        width: 100%;
        order: -1;
        justify-content: center;
    }
    .footer-bottom .image img {margin: 0 30px;}
}

@media (max-width: 370px) {
    .footer-logo {
        width: 150px;
        background-size: 145px;
    }
}

#cannellamedia {display: none !important;}

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

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

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

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

.animated.fade-medal {opacity: 1;}
.animated.fade-medal.show {
    animation: fade-medal 1s 1s ease-in-out both;
}

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

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

@keyframes fade-right {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }

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

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

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

@keyframes fade-medal {
    100% {transform: rotate3d(0, 1, 0, 360deg);}
}








