@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: 'Campton';
    src: url('/fonts/Campton-Black.woff2') format('woff2'),
        url('/fonts/Campton-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

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

@font-face {
    font-family: 'Campton';
    src: url('/fonts/Campton-Thin.woff2') format('woff2'),
        url('/fonts/Campton-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('/fonts/Campton-ExtraLight.woff2') format('woff2'),
        url('/fonts/Campton-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

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

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

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

@font-face {
    font-family: 'Albert Sans';
    src: url('../fonts/AlbertSans-SemiBold.woff2') format('woff2'),
        url('../fonts/AlbertSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Albert Sans';
    src: url('../fonts/AlbertSans-Medium.woff2') format('woff2'),
        url('../fonts/AlbertSans-Medium.woff') format('woff');
    font-weight: 500;
    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;
    --blue: #63CCC9;
    --color: #0F5C78;
    --greycliff: 'Greycliff CF', sans-serif;
    --campton: 'Campton', sans-serif;
}

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

@media (max-width: 1600px) {
    body {font-size: 12px;}
}

a {
    color: var(--color);
    text-decoration: none;
}

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

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

.wrapper {padding-top: 133px;}

.overflow-hidden {overflow: hidden;}

.max-center {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

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

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

@media (min-width: 1921px) {
    .max-center:after,
    .max-center:before {
        content: '';
        display: block;
        width: 100px;
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 6;
    }
    .max-center:after {
        left: 0;
        background: linear-gradient(90deg, #fff, transparent);
    }
    .max-center:before {
        right: 0;
        background: linear-gradient(90deg, transparent, #fff);
    }
}

@media (max-width: 1600px) {
    .wrapper {padding-top: 115px;}
    .center {max-width: 1200px;}
}

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

@media (max-width: 991px) {
    .wrapper {padding-top: 98px;}
    .center {max-width: 800px;}
}

@media (max-width: 767px) {
    .wrapper {padding-top: 94px;}
}

@media (max-width: 550px) {
    .wrapper {
        padding-top: 100px;
        overflow-x: hidden;
    }

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

/* ------------------ TITLE ------------------ */
.main-title i {
    display: inline-block;
    max-width: 36px;
}
.main-title > svg {
    margin-bottom: 17px;
}
.main-title p {
    font-size: 16px;
    margin-bottom: 8px;
}
.main-title h2 {
    font-weight: normal;
    font-size: 46px;
    line-height: 1.1;
    margin-top: 5px;
}
.main-title h2 strong {font-weight: 500;}
.main-title h2 span {
    background: linear-gradient(90deg, #096A8C 20%, #63C7C7 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.main-title a {
    display: inline-block;
    font-size: 14px;
    color: var(--akcent);
    text-decoration: underline;
    margin-top: 7px;
}
.main-title a:hover {text-decoration: none;}
.main-title .sub-title {
    font-size: 20px;
    color: var(--akcent);
    margin-top: 20px;
    margin-bottom: 0;
}

@media (max-width: 1600px) {
    .main-title h2 {font-size: 34px;}
    .main-title p {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .main-title a {font-size: 11px;}
    .main-title .sub-title {font-size: 14.5px;}
}

@media (max-width: 1200px) {
    .main-title i {zoom: 0.8;}
    .main-title > svg {zoom: 0.8;}
    .main-title h2 {font-size: 28px;}
}

@media (max-width: 991px) {
    .main-title h2 {font-size: 23px;}
}

@media (max-width: 767px) {
    .main-title i {zoom: 1;}
    .main-title p {font-size: 16px;}
    .main-title h2 {font-size: 30px;}
}

@media (max-width: 550px) {
    .main-title p {
        font-size: 2.9vw;
        margin-bottom: 0;
    }
    .main-title h2 {
        font-size: 8vw;
        margin-top: 0;
    }
    .main-title > svg {
        zoom: 0.7;
        margin-bottom: 13px;
    }
}

/* ------------------ BUTTONS ------------------ */
.btn-fix {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 9993;
    background: #fff;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-shadow: 0 -4px 21px rgba(0,0,0,.08);
    transition: all 0.3s;
    display: none;
}
.btn-fix a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 45px;
    background: var(--akcent);
    border-radius: 13px;
    color: #fff;
    text-decoration: none;
    width: 100%;
    gap: 5px;
    -webkit-font-smoothing: antialiased;
}
.btn-fix a strong {
    font-weight: 500;
    font-size: 18px;
}
.btn-fix a span {
    font-weight: normal;
    font-size: 18px;
    -webkit-font-smoothing: auto;
    font-smoothing: auto;
}
.btn-fix a svg {
    width: 8px;
    height: 13px;
    stroke: #fff;
    position: relative;
    top: 1px;
}
.btn-fix p {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 5px;
}
.btn-fix p strong {font-weight: 500;}

@media (max-width: 767px) {
    .btn-fix.active {
        display: flex;
        bottom: 0;
        animation: bottomTop 0.5s forwards;
    }

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

.btn {
    min-width: 245px;
    min-height: 55px;
    background: var(--akcent);
    color: #fff;
    font-size: 15.79px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 11px;
    border-radius: 30px;
    animation: shadow-pulse 3s infinite;
    position: relative;
    overflow: hidden;
}
.btn b {font-weight: 600;}
.btn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    transition: all 0.3s;
    background: var(--blue);
}
.btn:hover:before {width: 100%;}
.btn svg {
    width: 8px;
    height: 13px;
    stroke: #fff;
    top: 0;
}
.btn svg,
.btn span {
    position: relative;
    z-index: 2;
}

.btn-white {
    background: #fff;
    color: var(--akcent);
}
.btn-white svg {stroke: var(--akcent);}
.btn-white:hover {color: #fff;}
.btn-white:hover svg {stroke: #fff;}

.btn-text {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.btn-text p {
    font-size: 14px;
    color: #093E52;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px 5px;
}
.btn-text p strong {
    font-weight: 500;
}
.btn-text p:last-child {
    margin-top: 18px;
    color: #093E52;
}
.btn-text p:last-child b {font-weight: 500;}

.anim-dot {
    display: block;
    width: 11px;
    height: 11px;
    background: #00B67A;
    border-radius: 50%;
    animation: shadow-pulse 3s infinite;
    position: relative;
    top: 0.5px;
}

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

.sup {
    font-size: 0.8em;
    line-height: 0;
    position: relative;
    top: 3px;
}

@media (max-width: 1600px) {
    .btn {zoom: 0.8;}
    .btn-text p {font-size: 12px;}
    .btn-text p:last-child {margin-top: 15px;}
}

@media (max-width: 767px) {
    .btn {zoom: 0.9;}
}

@media (max-width: 550px) {
    .btn {
        min-height: 50px;
        zoom: 1;
        width: 100%;
    }
    .btn-text p {font-size: 15px;}
}

/* ------------------ HEADER ------------------ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9993;
    background: rgba(255, 255, 255, .8);
    transition: all 0.3s;
    margin: 0 auto;
}
#header a,
#header a:hover{
    text-decoration:none;
}
#header.active {background: #fff;}

.head-sidebar {
    display: block;
    text-align: center;
    padding: 10px 0;
    font-family: var(--inter);
    font-size: 18px;
    font-weight: normal;
    color: #FFFFFF;
    background: linear-gradient(45deg, #00698B, #63C7C7, #00698B, #63C7C7);
    background-size: 300% 300%;
    animation: gradient-animation 25s ease infinite;
    transition: all .3s ease;
    -webkit-font-smoothing: auto;
    letter-spacing: 0.3px;
}
.head-sidebar:hover {opacity: 0.7;}
@keyframes gradient-animation {
    0% {background-position: 0% 50%;}
    25% {background-position: 50% 100%;}
    50% {background-position: 100% 50%;}
    75% {background-position: 50% 0%;}
    100% {background-position: 0% 50%;}
}
.head-sidebar a {
    text-decoration: none;
    transition: all 0.3s;
    color: #FFFFFF;
}
.head-sidebar a:hover {opacity: 0.7;}
.head-sidebar b{
    font-weight:600;
}
.head-sidebar .center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
}
.head-sidebar i {
    max-width: 42px;
    position: relative;
    top: 3px;
}

.logo {
    line-height: 0;
    position: relative;
    z-index: 992;
}

.head-main {
    min-height: 88px;
    display: flex;
    align-items: center;
    background: #E2F2F3;
}
.head-main .center {
    display: flex;
    align-items: center;
}

.nav {
    margin-left: auto;
    margin-right: 38px;
}
.nav ul {
    display: flex;
    align-items: center;
    gap: 27px;
}
.nav a {
    font-size: 17.38px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    color: #093E52;
}
.nav a:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: -5px;
    height: 1px;
    width: 0;
    background: var(--blue);
    transition: all 0.3s;
}
.nav a:hover:after {
    width: 100%;
    left: 0;
}
.nav a:hover {color: var(--blue);}

.nav .life {
    font-weight: normal;
    color: #63CCC9;
}
.nav .life b {
    font-weight: bold;
    color: #093E52;
}

.head-btn {
    min-width: 204px;
    min-height: 43px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--akcent);
    letter-spacing: 0;
    border-radius: 5px;
    gap: 10px;
    margin-left: auto;
}
.head-btn span {top: -0.3px;}
.head-btn svg {
    width: 6px;
    height: 10px;
    fill: #fff;
    top: -0.1px;
}

@media (max-width: 1600px) {
    .logo svg {
        width: 130px;
        height: 34px;
    }

    .head-main {min-height: 70px;}

    .nav {margin-right: 25px;}
    .nav a {font-size: 14px;}

    .head-btn {
        min-width: 220px;
        min-height: 45px;
        font-size: 16px;
        gap: 0 10px;
    }
    .head-btn span {top: 0;}
    .head-btn svg {
        width: 8px;
        height: 12px;
    }
}

@media (max-width: 1200px) {
    .head-sidebar {font-size: 13px;}

    .nav {margin-right: 20px;}
    .nav ul {gap: 10px;}
    .nav a {font-size: 13px;}

    .head-btn {min-width: 185px;}
}

@media (max-width: 991px) {
    .head-main {min-height: 60px;}
    .head-btn {margin-left: auto;}
    .nav .head-btn {
        display: flex !important;
        margin-left: 0;
        margin-top: 30px;
        min-width: 300px;
        height: 50px;
        font-size: 16px;
        color: #fff;
    }
    .nav .head-btn:hover {color: #fff;}
    .nav .head-btn svg {
        width: 8px;
        height: 12px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        margin: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 991;
    }
    .nav ul {flex-direction: column;}
    .nav ul a {
        font-size: 25px;
        font-weight: 500;
    }
    .nav-open .nav {
        display: flex;
        animation: opacity 0.5s;
    }
    
    .btn-nav {
        display: block !important;
        width: 40px;
        height: 40px;
        margin-left: 15px;
        position: relative;
        z-index: 992;
        cursor: pointer;
    }
    .btn-nav span {
        display: block;
        width: 100%;
        height: 3px;
        background: #096A8C;
        transition: all 0.3s;
        transform-origin: center;
        border-radius: 3px;
    }
    .btn-nav span + span {margin-top: 8px;}
    .nav-open .btn-nav span {
        position: absolute;
        top: 50%;
        margin-top: -1.5px;
    }
    .nav-open .btn-nav span:nth-child(1) {transform: rotate(45deg);}
    .nav-open .btn-nav span:nth-child(2) {transform: rotate(-45deg);}
    .nav-open .btn-nav span:nth-child(3) {display: none;}
}

@media (max-width: 767px) {
    .head-sidebar {font-size: 10px;}
    .head-sidebar i {
        width: 25px;
        height: 25px;
        top: 0;
    }
}

@media (max-width: 550px) {
    .nav .head-btn {max-width: 300px;}

    .head-sidebar {
        padding: 0;
    }
    .head-sidebar .center {
        font-size: 3.4vw;
        line-height: 1.7;
        display: block;
        text-align: center;
        padding-top: 2.5vw;
        padding-bottom: 2.5vw;
        letter-spacing: 0.2px;
    }

    .head-sidebar p {display: inline-block;}
    .head-sidebar i {
        width: 10vw;
        height: 10vw;
        float: left;
        margin-right: 3vw;
        position: relative;
        top: 3px;
    }
    
    #header {
        box-shadow: 0 1px 10px rgba(0, 62, 82,.03), 0 8px 8px rgba(0, 62, 82,.03), 0 10px 30px rgba(0, 62, 82,0.05);
    }

    .head-main {background: #fff;}

    .btn-nav {
        margin-left: auto;
        width: 22px;
        height: 30px;
    }
    .btn-nav span {height: 2px;}
    .btn-nav span + span {margin-top: 5px;}
}

@media (max-width: 413px) {
    .head-bar {
        font-size: 11px;
    }
}

/* ------------------ HOME ------------------ */
.home {
    position: relative;
    z-index: 8;
    padding: 77px 0 123px 0;
    overflow: hidden;
    background: #14738e;
}
.home #gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(45deg, #00698B, #63C7C7, #00698B, #63C7C7);
    background-size: 300% 300%;
    animation: gradient-animation 25s ease infinite;
}
.home .center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home .phone {
    perspective: 500px;
    display: block;
    pointer-events: none;
}
.home .phone:hover {animation-play-state: paused;}

.phone-first {
    width: 307px;
    line-height: 0;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: 30px;
    animation: phone3d 10s linear infinite;
}

.phone-second {
    width: 403px;
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    animation: phone3d 10s linear infinite;
}

@keyframes phone3d {
    0%   {transform: translateY(-50%) rotateY(0deg);}
    50%  {transform: translateY(-50%) rotateY(30deg);}
    100% {transform: translateY(-50%) rotateY(0deg);}
}

.home-content {
    text-align: center;
    color: #fff;
}
.home-content .subtitle {
    font-size: 20px;
    font-weight: 500;
}
.home-content h1 {
    font-size: 53px;
    line-height: 1.1;
    font-weight: normal;
}
.home-content h1 b {
    font-weight: 600;
    letter-spacing: 1.5px;
}
.home-content h1 span:last-child {
    position: relative;
    left: 2px;
}
.home-content ul {
    margin-top: 25px;
    margin-bottom: 25px;
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
}
.home-content ul li {
    display: flex;
    align-items: center;
    gap: 0 8px;
    font-size: 21px;
}
.home-content ul li b {font-weight: bold;}
.home-content ul li + li {margin-top: 5px;}
.home-content ul li svg {
    width: 22px;
    height: 15px;
}

.home-content .box {
    max-width: 472px;
    margin: 0 auto;
    padding: 13px 15px 25px 15px;
    background: rgba(255,255,255,.26);
    border-radius: 16px;
    box-shadow: 0 1px 10px rgba(0,62,82,.03), 0 8px 8px rgba(0,62,82,.01), 0 25px 60px rgba(0,62,82,.07);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}
.home-content .box h3 {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}
.home-content .box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #CFCFCF;
    font-size: 15px;
    font-weight: 600;
    color: #505050;
    min-width: 305px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.home-content .box a span {
    position: relative;
    z-index: 2;
}
.home-content .box a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    z-index: 1;
    transition: all 0.3s;
    background: var(--blue);
}
.home-content .box a:hover:after {width: 100%;}
.home-content .box a:hover {color: #fff;}
.home-content .box a + a {margin-top: 14px;}
.home-content .box a:nth-child(3) {
    background: #FFF4E0;
    font-weight: bold;
}

.home-content .box p {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}

.btn-bottom {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 48px;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-30px);}
    60% {transform: translateX(-50%) translateY(-15px);}
}

.btn-bottom svg {
    width: 17px;
    height: 17px;
    stroke: #fff;
    transform-origin: center;
    transform: rotate(90deg);
    position: relative;
    top: 1px;
    left: 0.5px;
}

@media (max-width: 1600px) {
    .home {padding: 50px 0 100px 0;}
    .home .center {max-width: 450px;}

    .home .phone {zoom: 0.9;}

    .home-content .subtitle {font-size: 17px;}
    .home-content h1 {font-size: 44px;}
    .home-content ul {max-width: 310px;}
    .home-content ul li {font-size: 17px;}

    .home-content .box {max-width: 415px;}
    .home-content .box h3 {font-size: 20px;}
    .home-content .box a {
        min-height: 46px;
        font-size: 13px;
        min-width: 250px;
    }
    .home-content .box p {font-size: 13px;}
}

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

    .home .phone {zoom: 0.8;}

    .home-content .subtitle {font-size: 14px;}
    .home-content h1 {font-size: 39px;}
    .home-content ul {max-width: 255px;}
    .home-content ul li {font-size: 14px;}
    .home-content ul li svg {zoom: 0.8;}

    .home-content .box {max-width: 365px;}
    .home-content .box h3 {font-size: 17px;}
    .home-content .box a {
        min-height: 45px;
        min-width: 225px;
    }
}

@media (max-width: 991px) {
    .home .center {max-width: 370px;}
    .phone-first {margin-right: -10px;}
    .phone-second {margin-left: -40px;}
    .home .phone {zoom: 0.7;}
    .home-content h1 {font-size: 35px;}
    .home-content .box {max-width: 320px;}
}

@media (max-width: 767px) {
    .home .phone {zoom: 0.57;}
    .home .center {max-width: 323px;}
    .home-content h1 {font-size: 30px;}
    .home-content .box {max-width: 270px;}
    .phone-first {margin-right: -35px;}
    .phone-second {margin-left: -65px;}
}

@media (max-width: 550px) {
    .home {padding: 0 0 0 0;}
    .home .center {
        max-width: inherit;
        padding-top: 40px;
        padding-bottom: 500px;
    }
    .home-content h1 {
        font-size: 8.5vw;
        margin-top: 5px;
    }
    .home-content .subtitle {font-size: 3.76vw;}
    .home-content ul {
        margin-top: 13px;
        margin-bottom: 18px;
        max-width: 315px;
    }
    .home-content ul li {font-size: 18px;}
    .home-content ul li + li {margin-top: 2px;}
    .home-content .box {
        max-width: 330px;
        padding: 13px 15px 30px 15px;
    }
    .home-content .box h3 {font-size: 5vw;}
    .home-content .box a {
        min-height: 45px;
        min-width: 280px;
        font-size: 15px;
    }
    .home-content .box a:nth-child(3) {font-weight: 600;}
    .home-content .box p {
        font-size: 12px;
        margin-top: 15px;
    }

    .home .phone {zoom: 0.75;}

    .phone-first {
        top: inherit;
        right: inherit;
        left: 50%;
        bottom: 0;
        margin-right: 0;
        transform: translateY(0%);
        margin-left: -250px;
        margin-bottom: 150px;
        z-index: 2;
    }

    .phone-second {
        top: inherit;
        left: inherit;
        bottom: 0;
        margin-left: 0;
        transform: translateY(0%);
        margin-right: -250px;
        margin-bottom: 95px;
        z-index: 1;
    }

    @keyframes phone3d {
        0%   {transform: translateY(0%) rotateY(0deg);}
        50%  {transform: translateY(0%) rotateY(30deg);}
        100% {transform: translateY(0%) rotateY(0deg);}
    }
}

@media (max-width: 380px) {
    .home-content ul {max-width: 280px;}
    .home-content ul li {font-size: 16px;}
}

/* ------------------ PERSONALIZED ------------------ */
.personalized {
    padding: 68px 0 110px 0;
    background: #fff;
    position: relative;
}
.personalized .head {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.personalized .head h2 {line-height: 1;}
.personalized .head .text {
    font-size: 20px;
    font-weight: 500;
} 

.personalized-splide {margin-top: 55px;}
.personalized-splide.is-initialized:not(.is-active) .splide__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 33px;
}
.personalized-splide .slide {
    height: 100%;
    padding: 30px 25px 35px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.personalized-splide .slide:after {
    content: '';
    display: block;
    border-radius: 12px;
    box-shadow: 0 1px 7px rgba(0, 62, 82, .03), 0 6px 6px rgba(0, 62, 82, .05), 0 18px 43px rgba(0, 62, 82, .15);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #fff;
    transition: all 0.3s;
}
.personalized-splide .slide:hover:after {transform: scale(1.01);}
.personalized-splide .slide .video {
    max-width: 173px;
    height: 80px;
    border-radius: 25px;
    display: flex;
    overflow: hidden;
}
.personalized-splide .slide .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.personalized-splide .slide h3 {
    margin-top: 20px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
}
.personalized-splide .slide p {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 48px;
}
.personalized-splide .slide a {
    display: inline-flex;
    align-items: center;
    gap: 0 10px;
    margin-top: auto;
    font-weight: 600;
    font-size: 17px;
}
.personalized-splide .slide a .ic {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: var(--akcent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.personalized-splide .slide a .ic svg {
    width: 8px;
    height: 12px;
    stroke: #fff;
    margin-left: 2px;
}
.personalized-splide .slide a span {transition: all 0.3s;}
.personalized-splide .slide a:hover span {transform: translateX(10px);}

@media (max-width: 1600px) {
    .personalized {padding: 60px 0 100px 0;}
    .personalized .head .text {font-size: 14px;}
    .personalized-splide.is-initialized:not(.is-active) .splide__list {
        gap: 0 25px;
    }
    .personalized-splide .slide .video {border-radius: 17px;}
    .personalized-splide .slide {padding: 20px 20px 25px 20px;}
    .personalized-splide .slide h3 {
        margin-top: 15px;
        font-size: 25px;
        font-weight: 500;
        line-height: 1.2;
    }
    .personalized-splide .slide p {
        font-size: 13.6px;
        margin-top: 15px;
        margin-bottom: 40px;
    }
    .personalized-splide .slide a {zoom: 0.8;}
}

@media (max-width: 1200px) {
    .personalized {padding: 50px 0 50px 0;}
    .personalized .head .text {font-size: 13px;}
    .personalized-splide {margin-top: 40px;}
    .personalized-splide.is-initialized:not(.is-active) .splide__list {
        gap: 0 15px;
    }
    .personalized-splide .slide {padding: 15px 15px 20px 15px;}
    .personalized-splide .slide .video {
        max-width: 130px;
        height: 60px;
        border-radius: 13px;
    }
    .personalized-splide .slide h3 {font-size: 18px;}
    .personalized-splide .slide p {
        font-size: 13px;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .personalized-splide .slide p br {display: none;}
}

@media (max-width: 991px) {
    .personalized-splide .slide h3 {font-size: 14px;}
    .personalized-splide .slide p {font-size: 11px;}
}

@media (max-width: 767px) {
    .personalized .head {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px 0;
    }

    .personalized-splide .slide h3 {
        font-size: 25px;
        margin-top: 20px;
    }
    .personalized-splide .slide p {
        font-size: 14.5px;
        margin-top: 20px;
        margin-bottom: 35px;
    }
    .personalized-splide .slide p br {display: block;}
    .personalized-splide .slide a {zoom: 0.9;}
}

@media (max-width: 550px) {
    .personalized {padding: 60px 0 50px 0;}
    .personalized .head {
        text-align: left;
        align-items: start;
    }
    .personalized .head .text {display: none;}
    .personalized .head h2 {
        line-height: 1.2;
        margin-top: 5px;
    }
    .personalized-splide {margin-top: 30px;}
    .personalized-splide .slide {padding: 20px 20px 30px 20px;}
    .personalized-splide .slide .video {
        max-width: 150px;
        height: 70px;
        border-radius: 20px;
    }
    .personalized-splide .slide h3 {font-size: 7vw;}
    .personalized-splide .slide p {
        font-size: 4vw;
        margin-top: 20px;
        margin-bottom: 50px;
    }
    .personalized-splide .splide__pagination {margin-top: 60px;}

    .personalized .tx-c.d-none {
        margin-top: 50px;
        font-size: 3.6vw;
        font-weight: 500;
    }
}

@media (max-width: 413px) {
    .personalized-splide .slide h3 {font-size: 6vw;}
    .personalized-splide .slide p {font-size: 3.6vw;}
}

/* ------------------ HEALTH ------------------ */
.health {
    padding: 65px 0 72px 0;
    border-top: 10px solid #ecf8f7;
    position: relative;
    background: #fff;
}
.health:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 446px;
    background: linear-gradient(0, #F1F7FA, transparent);
}
.health .center {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0 30px;
    position: relative;
    z-index: 2;
}

.health-text {
    position: sticky;
    top: 150px;
}

.health .main-title h2 {margin-top: 0;}
.health-text .btn-text {margin-top: 23px;}

.health-step {
    width: 588px;
    display: flex;
    flex-direction: column;
    gap: 34px 0;
}
.health-step .item {
    display: flex;
    align-items: start;
    position: relative;
    padding-left: 25px;
}
.health-step .item:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    border-radius: 10px;
    background: var(--blue);
}
.health-step .item div:not(.image) {
    padding-top: 15px;
    padding-bottom: 15px;
}
.health-step .image {
    width: 175px;
    height: 84px;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    margin-left: auto;
}
.health-step .image img {
    width: 100%;
    object-fit: cover;
}

.health-step h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}
.health-step p {
    font-size: 18px;
    margin-bottom: 10px;
}
.health-step span {
    font-size: 18px;
    font-weight: 500;
    color: var(--blue);
}

@media (max-width: 1600px) {
    .health {border-top-width: 7px;}
    .health-step {width: 500px;}
    .health-step .item {padding-left: 20px;}
    .health-step .item:before {width: 5px;}
    .health-step .item div:not(.image) {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .health-step h3 {
        font-size: 25px;
        margin-bottom: 10px;
    }
    .health-step p,
    .health-step span {font-size: 15px;}
    .health-step .image {zoom: 0.85;}
}

@media (max-width: 1200px) {
    .health {padding: 50px 0 50px 0;}
    .health-text {top: 120px;}
    .health-step {width: 420px;}
    .health-step .item:before {width: 4px;}
    .health-step h3 {font-size: 20px;}
    .health-step p, 
    .health-step span {
        font-size: 13px;
    }
    .health-step .image {zoom: 0.8;}
}

@media (max-width: 767px) {
    .health .center {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 50px 30px;
    }

    .health-text {
        width: 100%;
        text-align: center;
        position: static;
    }

    .health-step {width: 100%;}
    .health-step h3 {font-size: 25px;}
    .health-step p, 
    .health-step span {font-size: 16px;}
    .health-step .image {zoom: 1;}
}

@media (max-width: 550px) {
    .health:after {height: 100%;}
    .health .center {gap: 30px 30px;}
    .health-text {text-align: left;}
    .health-step .item:nth-child(1) .image img {
        content: url(../img/health/image-mob-1.jpg);
    }
    .health-step .item:nth-child(2) .image img {
        content: url(../img/health/image-mob-2.jpg);
    }
    .health-step .item:nth-child(3) .image img {
        content: url(../img/health/image-mob-3.jpg);
    }
    .health-step .item:nth-child(4) .image img {
        content: url(../img/health/image-mob-4.jpg);
    }

    .health-step {gap: 25px 0;}
    .health-step .item {padding-left: 15px;}
    .health-step .image {
        width: 140px;
        height: inherit;
        border-radius: 13px;
    }
    .health-step .item div:not(.image) {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .health-step h3 {font-size: 5vw;}
    .health-step p, 
    .health-step span {
        font-size: 3.4vw;
    }

    .health .d-none.s-550 {margin-top: 10px;}
    .health .d-none.s-550,
    .health .btn-text {width: 100%;}
}

@media (max-width: 390px) {
    .health-step .image {width: 130px;}
}

/* ------------------ FASTRACK ------------------ */
.fastrack {
    padding: 105px 0 22px 0;
    position: relative;
    background: #fff;
}
.fastrack .main-title h2 {margin-top: 0;}

.fastrack-splide {
    margin-top: 65px;
    margin-bottom: 32px;
}
.fastrack-splide.is-initialized:not(.is-active) .splide__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 15px;
}

.fastrack-splide .image {
    max-width: 85px;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
}
.fastrack-splide .image img {
    width: 100%;
    object-fit: cover;
}
.fastrack-splide h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}
.fastrack-splide p {
    font-size: 14px;
}

@media (max-width: 1600px) {
    .fastrack {padding: 75px 0 22px 0;}
    .fastrack-splide {
        margin-top: 50px;
        margin-bottom: 30px;
    }
    .fastrack-splide p {font-size: 13px;}
    .fastrack-splide h4 {font-size: 17px;}
}

@media (max-width: 1200px) {
    .fastrack {padding-top: 50px;}
    .fastrack-splide {margin-top: 35px;}
    .fastrack-splide .image {max-width: 75px;}
    .fastrack-splide h4 {font-size: 14px;}
    .fastrack-splide p br {display: none;}
}

@media (max-width: 991px) {
    .fastrack-splide .image {max-width: 85px;}
    .fastrack-splide h4 {font-size: 20px;}
    .fastrack-splide p {font-size: 14px;}
    .fastrack-splide p br {display: block;}
}

@media (max-width: 767px) {
    .fastrack .main-title {text-align: center;}
    .fastrack .center {text-align: center;}
    .fastrack-splide .slide {text-align: left;}
    .fastrack-splide p br {display: none;}
}

@media (max-width: 550px) {
    .fastrack .main-title {text-align: left;}
    .fastrack-splide {margin-bottom: 40px;}
    .fastrack-splide h4 {margin-bottom: 12px;}
}

/* ------------------ FEELING ------------------ */
.feeling {
    padding-top: 22px;
    padding-bottom: 49px;
    position: relative;
    z-index: 2;
    background: #fff;
}
.feeling .center {position: relative;}
.feeling .svg-line {
    position: absolute;
    right: 100%;
    top: 100%;
    margin-top: -100px;
    margin-right: -220px;
    pointer-events: none;
}
.feeling .main-title {text-align: center;}
.feeling .main-title h2 {margin-top: 0;}
.feeling .main-title h2 span {
    background: linear-gradient(90deg, #096A8C -100%, #63C7C7 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.feeling-plates {
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    max-width: 1150px;
    color: var(--akcent);
    position: relative;
    z-index: 2;
}

.feeling-plates > div {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}
.feeling-plates > div:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F0F7FA;
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s;
}
.feeling-plates > div:hover:after {transform: scale(1.01);}
.feeling-plates .percent {grid-row: 1/3;}
.feeling-plates .percent h4 {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 500;
}
.feeling-plates .percent h4 b {font-weight: bold;}
.feeling-plates .percent i {
    max-width: 295px;
    display: inline-block;
    margin: auto;
}
.feeling-plates .percent .foot {
    color: #0F5C78;
    font-size: 16px;
    margin-top: auto;
}

.feeling-plates .product {
    position: relative;
    min-height: 300px;
}
.feeling-plates .product h4 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
}
.feeling-plates .product img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 192px;
}

.feeling-plates .control {
    color: #fff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.feeling-plates .control .gradient {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(45deg, #00698B, #63C7C7, #00698B, #63C7C7);
    background-size: 300% 300%;
    animation: gradient-animation 25s ease infinite;
}
.feeling-plates .control:after {display: none;}
.feeling-plates .control h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
.feeling-plates .control h4 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 30px;
}

.feeling-plates .control a {
    display: inline-flex;
    align-items: center;
    gap: 0 10px;
    margin-top: auto;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}
.feeling-plates .control a .ic {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.feeling-plates .control a .ic svg {
    width: 8px;
    height: 12px;
    stroke: var(--color);
    margin-left: 2px;
}
.feeling-plates .control a span {transition: all 0.3s;}
.feeling-plates .control a:hover span {transform: translateX(10px);}

.feeling-plates .control .foot {
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
}

@media (max-width: 1600px) {
    .feeling-plates {max-width: 900px;}
    .feeling-plates .percent h4 {font-size: 24px;}
    .feeling-plates .percent i {max-width: 260px;}
    .feeling-plates .product {min-height: 250px;}
    .feeling-plates .product h4 {font-size: 21px;}
    .feeling-plates .product img {width: 160px;}
    .feeling-plates .control h3 {font-size: 23px;}
    .feeling-plates .control h4 {font-size: 18px;}
    .feeling-plates .control a {zoom: 0.8;}
    .feeling-plates .percent .foot,
    .feeling-plates .control .foot {font-size: 13px;}
}

@media (max-width: 1200px) {
    .feeling-plates {max-width: 750px;}
    .feeling-plates > div {padding: 15px 25px;}
    .feeling-plates .percent i {max-width: 225px;}
    .feeling-plates .percent h4 {font-size: 20px;}
    .feeling-plates .product {min-height: 215px;}
    .feeling-plates .product h4 {font-size: 18px;}
    .feeling-plates .product img {width: 140px;}
    .feeling-plates .control h3 {font-size: 20px;}
    .feeling-plates .control h4 {font-size: 15px;}
    .feeling-plates .percent .foot, 
    .feeling-plates .control .foot {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .feeling-plates {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .feeling-plates .percent i {
        max-width: 300px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .feeling-plates .percent h4 {font-size: 25px;}
    .feeling-plates .percent .foot, 
    .feeling-plates .control .foot {
        font-size: 16px;
    }
    .feeling-plates .product {min-height: 250px;}
    .feeling-plates .product h4 {font-size: 24px;}
    .feeling-plates .product img {width: 165px;}
    .feeling-plates .control h3 {font-size: 30px;}
    .feeling-plates .control h4 {font-size: 22px;}
    .feeling-plates .control a {zoom: 1;}
}

@media (max-width: 550px) {
    .feeling {padding-bottom: 25px;}
    .feeling-plates {margin-top: 30px;}
    .feeling-plates > div {
        padding: 25px;
        border-radius: 8px;
    }
    .feeling-plates .percent h4 {font-size: 5vw;}
    .feeling-plates .percent i {
        max-width: 200px;
        margin-top: 40px;
        margin-bottom: 50px;
    }
    .feeling-plates .percent .foot, 
    .feeling-plates .control .foot {
        font-size: 2.9vw;
    }

    .feeling-plates .product {min-height: 200px;}
    .feeling-plates .product h4 {font-size: 5vw;}
    .feeling-plates .product img {
        width: 125px;
        content: url(../img/feeling/product-mob.png);
    }

    .feeling-plates .control h3 {font-size: 5.3vw;}
    .feeling-plates .control h4 {
        font-size: 3.6vw;
        margin-bottom: 20px;
    }
    .feeling-plates .control .foot {margin-top: 30px;}
}

@media (max-width: 390px) {
    .feeling-plates .product {min-height: 180px;}
    .feeling-plates .product img {width: 115px;}
}

/* ------------------ SITCKY POPUP ------------------ */
.sticky-popup {
    position: fixed;
    left: 17px;
    bottom: 17px;
    z-index: 999;
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(8, 106, 140, 0.3);
    border-radius: 14px;
    padding: 10px;
    display: flex;
    align-items: end;
    gap: 0 14px;
    min-width: 420px;
    transform: translateY(200%);
    transition: all 0.3s linear;
}
.sticky-popup.show {transform: translateY(0%);}
.sticky-popup .close {
    width: 36px;
    height: 36px;
    background: #F0F0F0;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}
.sticky-popup .close:hover {opacity: 0.6;}
.sticky-popup .image {
    max-width: 100px;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
}
.sticky-popup .image img {
    object-fit: cover;
}
.sticky-popup h3 {
    font-family: 'Greycliff CF', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 7px;
    color: #2E6889;
    padding: 0 !important;
}
.sticky-popup h3 sup {
    font-size: 1.03em;
    line-height: 0;
    position: relative;
    top: 0px;
}
.sticky-popup h3 .plus {
    top: -5px;
    font-size: 0.65em;
}
.sticky-popup p {
    margin-bottom: 0;
    padding: 0 !important;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.5;
    font-family: 'Campton', sans-serif;
    color: #2E6889;
}
.sticky-popup p sup {
    line-height: 0;
    position: relative;
    top: -2px;
}
.sticky-popup .group {
    display: flex;
    gap: 0 6px;
    margin-top: 11px;
}
.sticky-popup .btn-first,
.sticky-popup .btn-second {
    min-height: 35px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Campton', sans-serif;
    font-size: 14px;
    font-weight: 500;
    width: 50%;
    transition: all 0.3s;
    min-width: 133px;
}
.sticky-popup .btn-first:hover,
.sticky-popup .btn-second:hover {
    opacity: 0.8;
}
.sticky-popup .btn-first {
    background: #086A8C;
    color: #fff;
}
.sticky-popup .btn-second {
    border: 1px solid #CFCFCF;
    color: #086A8C;
}

@media (max-width: 991px) {
    .sticky-popup {bottom: 105px;}
}

@media (max-width: 550px) {
    .sticky-popup {z-index: 991;}
}

@media (max-width: 450px) {
    .sticky-popup {
        min-width: inherit;
        right: 17px;
    }
    .sticky-popup .image {max-width: 90px;}
    .sticky-popup .image img {object-fit: cover;}
    .sticky-popup .close {zoom: 0.6;}
    .sticky-popup .h-767 {display: none !important;}
    .sticky-popup .d-none {display: block !important;}
    .sticky-popup h3 {font-size: 4.4vw;}
    .sticky-popup p {font-size: 2.9vw;}
    .sticky-popup .group {margin-top: 8px;}
    .sticky-popup .btn-first,
    .sticky-popup .btn-second {
        font-size: 12px;
        min-height: 33px;
        min-width: 107px;
    }
}

@media (max-width: 413px) {
    .sticky-popup {zoom: 0.95;}
}

/* ------------------ PRESCRIPTION ------------------ */
.prescription {
    padding: 45px 0;
    overflow: hidden;
    position: relative;
    background: #fff;
}
.prescription .center {position: relative;}
.prescription .svg-line {
    position: absolute;
    top: -80px;
    right: 100%;
    margin-right: -20px;
}
.prescription .main-title h2 {line-height: 1;}
.prescription .head {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.prescription .head div {
    font-size: 20px;
    font-weight: 500;
}
.prescription .head div strong {font-weight: bold;}
.prescription .head div:not(.main-title) {
    display: flex;
    flex-direction: column;
}
.prescription .head div:not(.main-title) a {margin-left: auto;}
.prescription .head .main-title p {
    margin-top: 5px;
    font-weight: normal;
}
.prescription .head .main-title a {margin-top: 10px;}

.prescription-splide {margin-top: 55px;}
.splide__track {overflow: visible;}
.prescription-splide .slide {
    position: relative;
    height: 100%;
    cursor: pointer;
}
.prescription-splide .slide .inner {
    display: flex;
    justify-content: end;
    min-height: 325px;
    height: 100%;
    position: relative;
    z-index: 2;
}
.prescription-splide .slide:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #f1f7fa;
    border-radius: 23px;
    transition: all 0.3s;
}
.prescription-splide .slide:hover:after {transform: scale(1.02);}

.prescription-splide .image {
    max-width: 210px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: -60px;
    margin-top: 5px;
}
.prescription-splide .image img {display: block;}

.prescription-splide h3 {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.1;
}
.prescription-splide h6 {
    font-size: 19px;
    font-weight: 500;
}

.prescription-splide .cont ul {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 8px 0;
}
.prescription-splide .cont ul li {
    min-height: 33px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    color: var(--akcent);
    font-size: 15px;
    font-weight: 600;
}
.prescription-splide .cont ul li:nth-child(1) {background: #FDEDE3;}
.prescription-splide .cont ul li:nth-child(2) {background: #E0EFF8;}
.prescription-splide .cont ul li:nth-child(3) {background: #FBF7EF;}

.prescription-splide .rx {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.prescription-splide .cont {
    display: flex;
    flex-direction: column;
    align-items: end;
    height: 100%;
    padding: 20px 30px 40px 0;
}

.prescription-splide a {
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--akcent);
    gap: 0 10px;
    margin-top: auto;
}
.prescription-splide a span {transition: all 0.3s;}
.prescription-splide a:hover span {transform: translateX(10px);}
.prescription-splide a .ic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--akcent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.prescription-splide a .ic svg {
    width: 8px;
    height: 12px;
    stroke: #fff;
    margin-left: 2px;
}

@media (max-width: 1600px) {
    .prescription {padding: 40px 0;}
    .prescription .head div {font-size: 14px;}
    .prescription-splide .slide {
        border-radius: 20px;
        min-height: 260px;
    }
    .prescription-splide .slide .inner {min-height: 260px;}
    .prescription-splide .image {zoom: 0.8;}
    .prescription-splide h3 {font-size: 18px;}
    .prescription-splide h6 {font-size: 15px;}
    .prescription-splide .rx {zoom: 0.8;}
    .prescription-splide .cont {padding: 15px 20px 35px 0;}
    .prescription-splide .cont ul li {
        font-size: 12px;
        padding: 0 10px;
        min-height: 27px;
    }
    .prescription-splide a {zoom: 0.8;}
}

@media (max-width: 1200px) {
    .prescription {padding: 30px 0;}
    .prescription .head div {font-size: 13px;}
    .prescription .head .main-title p {font-size: 12px;}
}

@media (max-width: 991px) {
    .prescription .head div {
        font-size: 12px;
        max-width: 400px;
    }
    .prescription .head div br {display: none;}
    .prescription .head .main-title p {font-size: 10px;}
    .prescription .head div:not(.main-title) a {margin-top: 25px;}
}

@media (max-width: 767px) {
    .prescription .head {
        align-items: center;
        flex-direction: column;
        gap: 30px 0;
        text-align: center;
    }

    .prescription .head div {
        font-size: 15px;
        max-width: 500px;
    }

    .prescription-splide {margin-top: 50px;}
    .prescription .head .main-title p {font-size: 12px;}
}

@media (max-width: 550px) {
    .prescription {
        padding: 25px 0 20px 0;
        background: #fff;
    }
    .prescription .svg-line {display: none;}
    .prescription .main-title i {margin-bottom: 5px;}
    .prescription .main-title h2 {line-height: 1.2;}
    .prescription .main-title a {display: none;}
    .prescription-splide {margin-top: 25px;}
}

/* ------------------ LINKS ------------------ */
.links {padding: 45px 0 100px;}
.links ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px 38px;
}
.links ul a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    font-size: 22px;
    color: var(--akcent);
    border-bottom: 1px solid rgba(15, 92, 120, .6);
    padding-left: 15px;
    transition: all 0.3s;
}
.links ul a:hover {color: var(--blue);}
.links ul a svg {
    width: 7px;
    height: 11px;
    stroke: rgba(15, 92, 120, .6);
    transition: all 0.3s;
}
.links ul a:hover svg {stroke: var(--blue);}

@media (max-width: 1600px) {
    .links {padding: 30px 0 50px;}
    .links ul {gap: 40px 30px;}
    .links ul a {
        padding-bottom: 20px;
        font-size: 16px;
        padding-left: 10px;
    }
}

@media (max-width: 1200px) {
    .links {padding: 15px 0 35px;}
    .links ul a {
        padding-bottom: 15px;
        font-size: 13px;
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .links ul {gap: 30px 10px;}
    .links ul a {font-size: 12px;}
}

@media (max-width: 767px) {
    .links ul {grid-template-columns: repeat(2, 1fr);}
    .links ul a {font-size: 15px;}
}

@media (max-width: 550px) {
    .links {
        padding-bottom: 50px;
        position: relative;
        background: #fff;
    }
    .links ul {gap: 30px 15px;}
    .links ul a {
        font-size: 3vw;
        padding-bottom: 20px;
    }
    .links ul a svg {
        width: 5px;
        height: 9px;
    }

    .links .d-none {margin-top: 30px;}
    .links .d-none:nth-child(1) {
        margin-top: 5px;
        margin-bottom: 30px;
        font-weight: 500;
    }
    .links .d-none a {
        display: inline-block;
        margin-bottom: 30px;
        text-decoration: underline;
        font-size: 3vw;
    }
    .links .d-none a:hover {text-decoration: none;}
    .links .d-none p {font-size: 4vw;}
    .links .d-none a {margin-bottom: 0;}
}

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

@media (max-width: 550px) {
    .splide__pagination {
        padding: 0;
        margin-top: 30px;
    }
    .splide__pagination li button {
        width: 35px;
        height: 2px;
    }

    .prescription-splide .splide__pagination li button {width: 25px;}
}

/* ------------------ PSYCHIATRY ------------------ */
.psychiatry {padding: 60px 0 0;}
.psychiatry .main-title p {margin-bottom: 0;}
.psychiatry .main-title h2 {line-height: 1.1;}
.psychiatry .center {max-width: 1437px;}

.accordeon-slider {
    display: flex;
    gap: 0 18px;
}
.accordeon-slider .slide {
    position: relative;
    flex-grow: 1;
    transition: width 0.4s ease;
    width: 0;
    cursor: pointer;
}
.accordeon-slider .slide.active {width: 35%;}
.accordeon-slider .image {
    height: 432px;
    display: flex;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.3s;
}
.accordeon-slider .slide:hover .image {transform: scale(1.01);}
.accordeon-slider .image img {
    width: 100%;
    object-fit: cover;
}

.accordeon-slider .slide:not(.active) img {
    content: var(--thumb);
}

.accordeon-slider .cont {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding: 20px 40px 50px 40px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.accordeon-slider .slide.active .cont {animation: fade-bottom-slide 0.5s linear forwards;}
.accordeon-slider .cont h3 {
    font-size: 42px;
    line-height: 1;
    font-weight: 600;
}
.accordeon-slider .slide.active .cont h3 {
    margin-bottom: 20px;
}
.accordeon-slider .cont p {display: none;}
.accordeon-slider .slide.active p {display: block;} 

.accordeon-slider a {
    display: inline-flex;
    align-items: center;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    gap: 0 10px;
    margin-top: auto;
    display: none;
}
.accordeon-slider .slide.active a {display: inline-flex;}
.accordeon-slider a span {
    transition: all 0.3s;
    white-space: nowrap;
}
.accordeon-slider a:hover span {transform: translateX(10px);}
.accordeon-slider a .ic {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.accordeon-slider a .ic svg {
    width: 8px;
    height: 12px;
    stroke: var(--akcent);
    margin-left: 2px;
}

@keyframes fade-bottom-slide {
    0% {
        opacity: 0;
        bottom: -100%;
    }
    100% {
        opacity: 1;
        bottom: 0;
    }
}

@media (max-width: 1600px) {
    .psychiatry .center {max-width: 1100px;}
    .accordeon-slider {gap: 0 15px;}
    .accordeon-slider .image {
        height: 350px;
        border-radius: 25px;
    }
    .accordeon-slider .cont {
        padding: 15px 25px 35px 25px;
        font-size: 13px;
    }
    .accordeon-slider .cont h3 {font-size: 30px;}
    .accordeon-slider .slide.active .cont h3 {margin-bottom: 15px;}
    .accordeon-slider a {zoom: 0.8;}
}

@media (max-width: 1200px) {
    .psychiatry {padding: 25px 0 0;}
    .psychiatry .center {max-width: 950px;}
    .accordeon-slider .image {height: 300px;}
    .accordeon-slider .cont h3 {font-size: 25px;}
    .accordeon-slider .cont {
        padding: 15px 20px 25px 20px;
        font-size: 12px;
    }
    .accordeon-slider a {zoom: 0.7;}
}

@media (max-width: 991px) {
    .accordeon-slider {gap: 0 10px;}
    .accordeon-slider .image {border-radius: 15px;}
    .accordeon-slider .cont {gap: 0 15px;}
    .accordeon-slider .cont p br {display: none;}
    .accordeon-slider .cont h3 {font-size: 20px;}
    .accordeon-slider a {white-space: nowrap;}
}

@media (max-width: 767px) {
    .accordeon-slider .cont {
        gap: 15px 15px;
        flex-direction: column;
    }
    .accordeon-slider a {margin-right: auto;}
}

@media (max-width: 550px) {
    .psychiatry {
        padding: 15px 0 0;
        position: relative;
        background: #fff;
    }
    .psychiatry .main-title p {margin-bottom: 10px;}
    .psychiatry .main-title h2 strong {font-weight: normal;}
    .psychiatry .main-title .sub-title {
        margin-bottom: 0;
        font-weight: 500;
    }
    .psychiatry .accordeon-slider {gap: 25px 0;}

    .accordeon-slider {flex-direction: column;}
    .accordeon-slider .slide {
        flex-grow: inherit;
        width: auto;
    }
    .accordeon-slider .slide.active {width: auto;}
    .accordeon-slider .image {
        height: 550px;
        border-radius: 27px;
    }
    .accordeon-slider .cont {
        padding: 15px 15px 30px 15px;
        font-size: 3.7vw;
    }
    .accordeon-slider .cont > div {width: 100%;}
    .accordeon-slider .cont h3 {
        font-size: 30px;
        margin-bottom: 60px !important;
    }
    .accordeon-slider .cont p {
        display: block;
        margin-bottom: 30px;
    }
    .accordeon-slider .cont p br {display: block;}
    .accordeon-slider a {
        zoom: 1;
        display: block;
    }
    .accordeon-slider .slide:nth-child(1) .image img {content: url(../img/psychiatry/slide-mob-1.jpg);}
    .accordeon-slider .slide:nth-child(2) .image img {content: url(../img/psychiatry/slide-mob-2.jpg);}
    .accordeon-slider .slide:nth-child(3) .image img {content: url(../img/psychiatry/slide-mob-3.jpg);}
}

/* ------------------ CLINICALLY ------------------ */
.clinically {
    padding: 90px 0 40px 0;
    text-align: center;
}
.clinically .center {max-width: 1145px;}
.clinically .main-title {margin-bottom: 44px;}
.clinically .main-title > p {margin-bottom: -5px;}
.clinically .main-title > h2 {margin-top: 0;}

.clinically .btn-text p {margin-top: 6px;}
.clinically .btn-text p:last-child {margin-top: 4px;}

.clinically .box {
    background: #1E1E1E;
    padding: 40px 50px;
    color: #fff;
    border-radius: 21px;
    font-size: 15px;
    margin-top: 40px;
    text-align: center;
}
.clinically .box b {font-weight: bold;}

@media (max-width: 1600px) {
    .clinically .center {
        max-width: 990px;
    }
    .clinically .box {
        padding: 30px 40px;
        border-radius: 20px;
        font-size: 13px;
        margin-top: 40px;
    }
}

@media (max-width: 1200px) {
    .clinically {padding: 50px 0 50px 0;}
    .clinically .box p br {display: none;}
}

@media (max-width: 550px) {
    .clinically {padding-top: 65px;}
    .clinically .main-title {margin-bottom: 35px;}
    .clinically .main-title > h2 {
        margin-top: 15px;
        font-size: 7.9vw;
    }
    .clinically .main-title .sub-title {
        font-weight: 500;
        font-size: 3.6vw;
    }
    .clinically .main-title .sub-title br {display: none;}

    .clinically .btn-text {width: 100%;}
    .clinically .btn-text p {margin-top: 13px;}
    .clinically .btn-text p:last-child {margin-top: 7px;}

    .clinically .box {
        padding: 15px 10px;
        border-radius: 15px;
        font-size: 2.79vw;
        line-height: 1.4;
        margin-top: 30px;
    }
}

@media (max-width: 413px) {
    .clinically .main-title .sub-title {font-size: 3.5vw;}
}

/* ------------------ FOOTER ------------------ */
.footer {
    background: #093E52;
    padding-top: 30px;
    position: relative;
    z-index: 9992;
    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.png?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.png?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 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;
    margin-left: auto;
}
.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: 413px) {
    .footer-logo {
        width: 150px;
        background-size: 145px;
    }

    .footer-bottom .image > img {
        max-width: 180px;
        margin-left: auto;
        margin-right: 0;
    }
}

.universal_popup-overlay {z-index: 9994 !important;}
.universal_popup {z-index: 9995 !important;}
.universal_popup > .universal_popup-close {
    background: #083e52 !important;
}

#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.fade-left.show {
    animation: fade-left 0.6s ease-in-out both;
}
.animated.scale-down.show {
    animation: .5s linear forwards scale-down
}

.path {
    stroke-dasharray: 200;
    animation: path 10s linear infinite
}

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

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

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

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

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

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

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

@keyframes scale-down {
    0% {
        transform: scale(1.2);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}