@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: 1.5px;
}
.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:-20px;
}
.btn-group + div {
    margin-top:20px;
    font-family: var(--quincy);
    font-size:17px;
    display:flex;
    align-items:center;
    justify-content:left;
    font-weight:bold;
    padding-left:135px;
}
.btn-group + div img {
    width:30px;
    margin-top:-5px
}

@media (max-width: 1600px) {
    .btn-group + div {
        padding-left:91px;
        font-size:14px;
    }
    .btn-group + div img {
        width:25px;
        margin-top:-5px
    }
}
@media (max-width: 1200px) {
    .home > div + div {
        margin-top:0;
    }
    .btn-group + div {
        padding-left: 96px;
        font-size:12px;
    }
    .btn-group + div img {
        width:20px;
        margin-top:-3px
    }
}
@media (max-width: 550px) {
    .btn-group + div {
        align-items:center;
        justify-content:center;
        margin-top:20px;
        padding-left:0;
    }
    .btn-group + div img {
        width:26px;
        margin-top:-5px
    }
}

.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 svg, 
    .head-btn svg {
        top: 1.7px;
    }
    .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;
    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: 15px;
}

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

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

.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 {justify-content: start;}
.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.88);
    font-weight: 600;
    min-width: 160px;
}
.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;}
    .home h1 {font-size: 45px;}
    .home .subtitle {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .home .text {
        margin-bottom: 20px;
        margin-top: 15px;
        font-size: 14px;
    }
}

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

@media (max-width: 550px) {
    .home {
        min-height: 660px;
        text-align: center;
        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);}

    .home .subtitle {
        font-size: 4.5vw;
        margin-bottom: 15px;
    }
    .home h1 {font-size: 10.7vw;}
    .home .text br {display: none;}
    .home .text {
        font-size: 4.1vw;
        margin-top: 40px;
    }
    .home .btn-group {
        zoom: 1;
        flex-direction: column;
        gap: 20px 0;
    }
    .home .btn-group div {
        width: 100%;
        max-width: 320px;
    }
    .home .btn-group .btn {
        width: 100%;
        min-width: inherit !important;
    }
}

@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: center;
    justify-content: space-around;
    gap: var(--gap);
    min-height: auto;
    animation: scroll 80s linear infinite;
}

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

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

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

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

.ic-anxiety {
    width: 25px;
    height: 23px;
}
.ic-bones {
    width: 22px;
    height: 29px;
}
.ic-brain {
    width: 35px;
    height: 29px;
}
.ic-brain * {fill: var(--akcent) !important;}
.ic-charge {
    width: 25px;
    height: 35px;
}
.ic-charge * {fill: #478fa9 !important;}
.ic-clock {
    width: 25px;
    height: 24px;
}
.ic-heat {
    width: 22px;
    height: 26px;
}
.ic-heat * {fill: #478fa9 !important;}
.ic-intimacy {
    width: 33px;
    height: 30px;
}
.ic-intimacy * {fill: #478fa9;}
.ic-period {
    width: 32px;
    height: 32px;
}
.ic-skin {
    width: 22px;
    height: 26px;
}
.ic-sleep {
    width: 30px;
    height: 30px;
}
.ic-sleep * {fill: var(--akcent) !important;}
.ic-weight {
    width: 30px;
    height: 30px;
}
.ic-weight * {fill: var(--akcent) !important;}
.ic-mood {
    width: 45px;
    height: 25px;
}
.ic-mood * {fill: var(--akcent) !important;}
.ic-fatigue {
    width: 25px;
    height: 25px;
}

.marquee .slide {
    color: var(--akcent);
    height: 100%;
}
.marquee .slide .inner {
    background: #fff;
    border-radius: 9px;
    padding: 10px 20px 30px 20px;
    height: 100%;
    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 {--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;}
    .canvas-waves-top {margin-right: -200px;}
    .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: 15px;}
    .marquee-second {margin-top: 15px;}
    .marquee .slide .inner {
        padding-top: 5px;
        padding-bottom: 10px;
    }
    .marquee .slide h4 {margin-bottom: 2px;}

    .background-waves:before {
        background: url(../img/background-waves-mob.webp) no-repeat left top;
        background-size: 100%;
        opacity: 0.5;
    }

    .ic-mood {
        
    }
}

/* ------------------ PERIMENOPAUSE ------------------ */
.perimenopause {padding: 40px 0 50px 0;}
.perimenopause .subtitle {
    font-size: 25px;
    margin-bottom: 10px;
}
.perimenopause h2.title {
    font-size: 54px;
    margin-bottom: 25px;
}
.perimenopause .tx-c small {
    font-size: 15px;
    font-weight: 500;
}

.perimenopause-image {
    max-width: 560px;
    margin: 10px auto 0 auto;
    position: relative;
}
.perimenopause-image .image {
    border-radius: 30px;
    overflow: hidden;
    display: flex;
}
.perimenopause-image .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.perimenopause-image .left {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: -45px;
}

.perimenopause-image .right {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: -45px;
}
.choose-table .right .chk svg {
    width: 16px;
    height: 16px;
}

.perimenopause-image .slide {
    padding: 17px 16px 25px 25px;
    min-height: 140px;
    min-width: 348px;
    position: relative;
    color: var(--akcent);
    cursor: pointer;
}
.perimenopause-image .slide:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 11px;
    background: #fff;
    z-index: -1;
    transition: all 0.3s;
    box-shadow: 0 0.7px 7px rgba(0,0,0,0.03), 0 6px 6px rgba(0,0,0,0.05), 0 18px 43px rgba(0,0,0,0.15);
}
.perimenopause-image .slide:hover:after {transform: scale(1.01);}
.perimenopause-image .left .slide:nth-child(even) {color: #478fa9;}
.perimenopause-image .right .slide:nth-child(odd) {color: #478fa9;}
.perimenopause-image .slide + .slide {
    margin-top: 30px;
}
.perimenopause-image .slide .ic {
    position: absolute;
    top: 20px;
    right: 20px;
}
.perimenopause-image .slide .ic i {display: inline-block;}
.perimenopause-image .slide h4 {
    font-size: 32px;
    font-weight: 500;
    font-family: var(--quincy);
}
.perimenopause-image .slide p {
    font-size: 18px;
    margin-top: 5px;
}

.perimenopause .foot {margin-top: 50px;}
.perimenopause .foot h3 {
    font-size: 38px;
    font-weight: normal;
    font-family: var(--quincy);
}
.perimenopause .foot h3 span {color: var(--akcent);}
.perimenopause .foot h3 b {font-weight: bold;}
.perimenopause .foot small {
    font-size: 17px;
    font-weight: normal;
    display: inline-block;
    margin-top: 5px;
}
.perimenopause .foot p {
    margin-top: 50px;
    font-size: 16px;
}
.perimenopause .foot p a {text-decoration: underline;}
.perimenopause .foot p a:hover {text-decoration: none;}

@media (max-width: 1600px) {
    .perimenopause .subtitle {font-size: 22px;}
    .perimenopause h2.title {font-size: 47px;}
    .perimenopause .tx-c small {font-size: 13px;}
    .perimenopause-image {zoom: 0.86;}
    .perimenopause .foot h3 {font-size: 32px;}
    .perimenopause .foot p {font-size: 14.5px;}
}

@media (max-width: 1200px) {
    .perimenopause .subtitle {font-size: 19px;}
    .perimenopause h2.title {font-size: 40px;}
    .perimenopause-image {zoom: 0.75;}
    .perimenopause .foot h3 {font-size: 27px;}
    .perimenopause .foot p {font-size: 13px;}
}

@media (max-width: 991px) {
    .perimenopause-image {zoom: 0.65;}
    .perimenopause-image .left {margin-right: -65px;}
    .perimenopause-image .right {margin-left: -65px;}
    .perimenopause .foot h3 {font-size: 23px;}
    .perimenopause .foot p {font-size: 12px;}
}

@media (max-width: 767px) {
    .perimenopause .subtitle {font-size: 16px;}
    .perimenopause h2.title {font-size: 35px;}
    .perimenopause-image {
        zoom: 1;
        max-width: 500px;
    }
    .perimenopause-image .left,
    .perimenopause-image .right {display: none;}
    .perimenopause .foot h3 {font-size: 20px;}

    .perimenopause .marquee {display: flex !important;}
    .perimenopause .marquee .slide .inner {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);}
    .perimenopause-image .image:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 120px;
        background: linear-gradient(0, #fff, transparent);
    }

    .perimenopause .marquee-first {margin-top: -70px;}

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

@media (max-width: 550px) {
    .perimenopause {padding: 60px 0 50px 0;}
    .perimenopause .subtitle {font-size: 4vw;}
    .perimenopause h2.title br {display: none;}
    .perimenopause h2.title {
        font-size: 9vw;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .perimenopause .tx-c small {font-size: 3vw;}

    .perimenopause .foot h3 {font-size: 5.5vw}
    .perimenopause .foot h3 br {display: none;}
    .perimenopause .foot small {margin-top: 10px;}
    .perimenopause .foot p {font-size: 3.1vw}
}

/* ------------------ WOMEN ------------------ */
.women {
    background: url(../img/women/bg-women.webp) no-repeat left top;
    background-size: cover;
    color: #fff;
    padding: 100px 0 150px 0;
}

.women .center {
    display: flex;
    justify-content: end;
}

.women-content {max-width: 570px;}
.women-content h2 {
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 16px;
}
.women-content h3 {
    font-size: 27.5px;
    font-weight: 600;
    margin-bottom: 25px;
}
.women-content h3 span {color: #fff;}
.women-content p {
    font-size: 17.7px;
    font-weight: 500;
}

.women-content .symptoms-card {
    margin-top: 50px;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 1fr 1fr;
    gap: 0 25px;
    max-width: 530px;
}
.women-content .symptoms-card .card {
    padding: 20px;
    border-radius: 20px;
}
.women-content .symptoms-card .card .percent {
    font-size: 60px;
    margin-top: -8px;
}
.women-content .symptoms-card .card p {
    font-size: 18px;
    margin-top: 3px;
}
.women-content .symptoms-card .card small {font-size: 12px;}

@media (max-width: 1600px) {
    .women {padding: 70px 0 110px 0;}
    .women-content h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .women-content h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .women-content p {font-size: 15.5px;}
    .women-content .symptoms-card {
        margin-top: 35px;
        gap: 0 20px;
        max-width: 460px;
    }
    .women-content .symptoms-card .card .percent {font-size: 50px;}
    .women-content .symptoms-card .card p {font-size: 15px;}
    .women-content .symptoms-card .card small {font-size: 9px;}
}

@media (max-width: 991px) {
    .women .center {
        justify-content: center;
        text-align: center;
    }
    .women-content .symptoms-card {text-align: left;}
}

@media (max-width: 550px) {
    .women {
        background: url(../img/women/bg-women-mob.webp) no-repeat left top;
        background-size: cover;
        padding: 100px 0 85px 0;
    }

    .women-content {text-align: left;}
    .women-content h2 {
        font-size: 10vw;
        margin-bottom: 30px;
    }
    .women-content h3 {
        font-size: 4.4vw;
        margin-bottom: 10px;
    }
    .women-content p {font-size: 3.7vw;}
    .women-content p br {display: none;}

    .women-content .symptoms-card {
        margin-top: 45px;
        gap: 0 30px;
    }
    .women-content .symptoms-card .card {
        padding: 20px 10px;
        border-radius: 15px;
    }
    .women-content .symptoms-card .card .percent {
        font-size: 11vw;
    }
    .women-content .symptoms-card .card p {font-size: 3.2vw;}
    .women-content .symptoms-card .card p br {display: block;}
    .women-content .symptoms-card .card small {
        font-size: 2.1vw;
        margin-top: 5px;
    }
}

/* ------------------ ESSENTIALS ------------------ */
.essentials {
    padding-top: 100px;
    padding-bottom: 120px;
}
.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;
}
.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: 45px;
        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;}
}

/* ------------------ CHOOSE ------------------ */
.treatment {
    padding: 60px 0 75px 0;
    margin-top: 75px;
    background: url(../img/treatment/bg-choose.webp) no-repeat right top;
    background-size: cover;
    color: #fff;
    position: relative;
}
.treatment .subtitle {
    font-size: 22px;
    margin-bottom: 5px;
}
.treatment h2.title {
    font-size: 61px;
    font-weight: 500;
    font-family: var(--quincy);
}

.treatment-cards {
    margin: 35px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
    max-width: 965px;
    color: #5F6466;
}
.treatment-cards .card {
    position: relative;
    cursor: pointer;
}
.treatment-cards .card:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 27px;
    background: #fff;
    transition: all 0.3s;
}
.treatment-cards .card:hover:before {transform: scale(1.01);}

.treatment-cards .inner {
    position: relative;
    z-index: 2;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.treatment-cards .prod {
    max-width: 180px;
    width: 100%;
    display: flex;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
.treatment-cards .prod img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.treatment-cards .prod .label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 17px;
    padding: 0 7px;
    background: #88d7d6;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
}
.treatment-cards h3 {
    font-size: 17px;
    font-family: var(--quincy);
    line-height: 1;
    font-weight: normal;
    color: #262F2E;
    margin-bottom: 10px;
}
.treatment-cards h3 sup {
    line-height: 0;
    display: inline-block;
    font-size: 0.7em;
    position: relative;
    top: 4px;
}
.treatment-cards h3 span {font-size: 23px;}
.personalized-card .card h3 sup {
    line-height: 0;
    display: inline-block;
    font-size: 0.8em;
    position: relative;
    top: 3px;
}
.treatment-cards p {
    font-size: 13px;
    line-height: 1.4;
}
.treatment-cards .group {
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin-top: 15px;
}
.treatment-cards .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;
    color: #474747;
}
.treatment-cards .group div:last-child {background: #FDEDE3;}

.treatment-cards .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/treatment/ic-rx.svg) no-repeat center;
}

.treatment-cards li:not(.card) {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.treatment-cards li:not(.card) h3 {
    font-size: 25px;
    font-weight: normal;
    font-family: var(--quincy);
    line-height: 1.3;
    color: #fff;
}
.treatment-cards li:not(.card) p {
    margin-top: 5px;
    font-size: 16px;
    color: #fff;
}
.treatment-cards li:not(.card) p a {
    text-decoration: underline;
    color: #fff;
}
.treatment-cards li:not(.card) p a:hover {text-decoration: none;}

@media (max-width: 1600px) {
    .treatment {
        padding: 50px 0 60px 0;
        margin-top: 60px;
    }
    .treatment .subtitle {font-size: 18px;}
    .treatment h2.title {font-size: 50px;}
    .treatment-cards {zoom: 0.8;}
}

@media (max-width: 991px) {
    .treatment-cards .prod {max-width: 160px;}
    .treatment .subtitle {font-size: 15px;}
    .treatment h2.title {font-size: 40px;}
}

@media (max-width: 767px) {
    .treatment-cards {
        zoom: 1;
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .treatment {overflow: hidden;}
    .treatment:after {
        content: '';
        display: block;
        background: url(../img/treatment/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) {
    .treatment {
        position: relative;
        margin-top: 45px;
        padding-bottom: 0;
        background: none;
    }
    .treatment .subtitle {
        color: #474747;
        font-size: 3.7vw;
    }
    .treatment h2.title {
        color: #474747;
        font-weight: normal;
        font-size: 8.6vw;
        margin-top: 10px;
    }
    .treatment .image {
        display: flex !important;
        margin-top: 50px;
        position: relative;
        margin-left: -8px;
        margin-right: -8px;
    }
    .treatment .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;
    }
    .treatment .image:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -50px;
        height: 200px;
        background: linear-gradient(0, #fff 50%, transparent);
    }
    .treatment .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .treatment-cards {
        margin-top: -220px;
        position: relative;
        z-index: 3;
    }

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

    .treatment-cards .card:nth-child(1) {order: 1;}
    .treatment-cards .card:nth-child(3) {order: 2;}
    .treatment-cards .card:nth-child(4) {order: 3;}
    .treatment-cards .card:nth-child(2) {order: 4;}
    .treatment-cards .card:nth-child(5) {order: 5;}

    .treatment-cards .card:before {
        border-radius: 20px;
        box-shadow: -16px 5px 30px rgba(0,0,0,.1);
    }
    .treatment-cards .inner {
        padding: 13px 13px;
        gap: 0 15px;
    }
    .treatment-cards .prod {max-width: 120px;}
    .treatment-cards .rx {
        top: 10px;
        right: 20px;
        zoom: 0.8;
    }
    .treatment-cards .group div {
        min-height: 20px;
        padding: 0 10px;
        font-size: 11px;
    }
    .treatment-cards h3 {font-size: 4.5vw;}
    .treatment-cards h3 span {font-size: 5.7vw;}
    .treatment-cards p {font-size: 3.2vw;}
    .treatment-cards li:not(.card) {display: none;}

    .treatment .foot {
        display: block !important;
        margin-top: 40px;
        text-align: center;
        position: relative;
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
    }
    .treatment .foot:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        height: 500px;
        background: linear-gradient(0, #fff 40%, transparent);
    }
    .treatment .foot .btn-text,
    .treatment .foot h3 {
        position: relative;
        z-index: 2;
    }
    .treatment .foot .btn-text p {color: #474747;}
    .treatment .foot h3 {
        font-family: var(--quincy);
        font-size: 6vw;
        color: #474747;
        margin-top: 50px;
        font-weight: normal;
    }
}

@media (max-width: 500px) {
    .canvas-waves {zoom: 0.4;}
}

@media (max-width: 400px) {
    .treatment-cards .prod {
        max-width: 105px;
    }
}

.disclosure {
    padding-top: 25px;
    font-size: 13px;
    text-align: center;
}
.disclosure .center {max-width: 900px;}

/* ------------------ CARE ------------------ */
.care {
    padding: 85px 0 85px 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;
    transition: all 0.5s 1s linear;
    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 .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;}
}

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

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

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

@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: 30px;
        font-size: 5vw;
    }
    .care .btn-text {margin-top: 30px;}

    .care .foot {margin-top: 30px;}
    .care .foot h3 {
        font-size: 5vw;
        font-family: var(--quincy);
        font-weight: normal;
        margin-bottom: 30px;
    } 
}

/* ------------------ MARQUEE TEXT ------------------ */
.marquee-text {
    --gap: 1px;
    padding: 85px 0 135px 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: 115px 0 155px 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: inline-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 {margin-top: 45px;}
    .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 160px 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 .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: 75px 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: 25px;
    }
}

@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: #0980A9 !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 {margin-top: 30px;}
    .splide-experts .foot h4 {font-size: 6vw;}
    .splide-experts .slide .label {
        zoom: 1;
        font-size: 17px;
    }
    .experts .btn-text {margin-top: 40px;}
    .experts .btn-text .btn {
        font-weight: 500;
        border: 1px solid var(--akcent);
        color: var(--akcent);
    }
    .experts .btn-text .btn:hover {
        color: #fff;
        border-color: #67254B;
    }
}

/* ------------------ 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: #fff;
}
.footer a {
    text-decoration: none;
    color: #fff !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
}
.footer-copy div {
    display: flex;
    align-items: center
}
.footer-copy div a {
    color: #fff
}
.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;
}

.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);}
}








