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

.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: 90px;}
    .center {max-width: 1200px;}
}

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

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

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

@media (max-width: 550px) {
    .wrapper {
        padding-top: 125px;
        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.2;
    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: 7.7vw;
        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-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: 6px 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;
}
.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 ul {margin-top: 40px;}
    .nav .head-btn {max-width: 300px;}

    .head-sidebar {
        padding: 0;
    }
    .head-sidebar .center {
        font-size: 3.4vw;
        line-height: 1.7;
        display: block;
        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 {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}
.home .center {
    display: flex;
    align-items: start;
    gap: 130px;
}

.home-content {padding-top: 10px;}
.home-content .label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #e6f0f3;
    min-height: 28px;
    border-radius: 30px;
    color: var(--akcent);
    font-family: var(--campton);
    font-size: 15px;
    padding: 0 10px;
}
.home-content .label span {
    position: relative;
    top: 2px;
}
.home-content .before {
    font-size: 18px;
    font-family: var(--campton);
    font-weight: 300;
    display: inline-flex;
    align-items: center;
}
.home-content .before div {
    background: var(--blue);
    font-weight: 500;
    border-radius: 30px;
    color: #fff;
    padding: 0 8px;
    min-height: 28px;
    margin: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -2px;
}
.home-content .before div span {
    position: relative;
    top: 0.5px;
}

.home-content h1.title {
    font-size: 56px;
    font-weight: normal;
    line-height: 1.1;
    color: var(--akcent);
    margin-top: 2px;
    animation-delay: 0.2s !important;
}
.home-content h1.title strong {
    font-weight: 600;
    letter-spacing: 1.7px;
}
.home-content h1.title .bg-1 {
    background: linear-gradient(90deg, #096A8C -30%, #63C7C7 30%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.home-content h1.title .bg-2 {
    background: linear-gradient(90deg, #096A8C 0%, #63C7C7 200%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.home-content .icon-text {
    display: flex;
    align-items: center;
    gap: 0 2px;
    margin-top: 35px;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 18px;
    animation-delay: 0.4s !important;
}
.home-content .icon-text > div:last-child {
    margin-top: -5px;
}
.home-content .icon-text .ic {
    max-width: 55px;
    line-height: 0;
}
.home-content .icon-text strong {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.home-content .text {
    font-size: 21px;
    animation-delay: 0.6s !important;
}
.home-content .text b {font-weight: 600;}

.home-content .tx-small {
    font-weight: 600;
    font-size: 28px;
}

.home-content ul {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.home-content ul li {
    display: flex;
    align-items: start;
    font-size: 21px;
    line-height: 1.7;
    gap: 0 14px;
}
.home-content ul li strong {font-weight: 500;}
.home-content ul .ic {
    width: 40px;
    height: 50px;
    text-align: center;
    line-height: 0;
    display: flex;
    align-items: center;
}
.home-content ul .ic i {
    display: inline-block;
    position: relative;
}

.home-content ul li:nth-child(1) .ic i {
    width: 40px;
    height: 46px;
    right: -5px;
    top: 3px;
}

.home-content ul li:nth-child(2) .ic i {
    width: 40px;
    height: 45px;
    top: 4px;
}

.home-content ul li:nth-child(3) .ic i {
    width: 36px;
    height: 49px;
    right: -6px;
}

.home-content .foot {
    margin-top: 30px;
    display: inline-flex;
    align-items: flex-start;
    gap: 20px;
    animation-delay: 0.8s !important;
}
.home-content .foot .btn {
    min-height: 63px;
    min-width: 277px;
    font-size: 18px;
    zoom: 0.9;
}
.home-content .foot .btn svg {
    width: 9px;
    height: 14px;
    top: 0.5px;
}
.home-content .foot > img {
    max-width: 155px;
    position: relative;
    top: 13px;
}
.home-content .btn-text p:nth-child(2) {
    color: #093E52;
    font-size: 16px;
    font-weight: bold;
}
.home-content .btn-text p:last-child {margin-top: 7px;}

.starts-reviews {margin-top: 10px;}
.starts-reviews .wrap {
    display: inline-flex;
    align-items: center;
    gap: 0 8px;
}
.starts-reviews b {
    line-height: 0;
    color: var(--akcent);
}
.starts-reviews p {
    text-align: center;
    font-size: 8px;
    font-weight: 600;
    color: #0F5C78;
    letter-spacing: 0.4px;
}
.starts-reviews .wrap b {
    font-size: 47px;
    font-weight: 600;
    margin-top: -12px;
    display: inline-block;
}
.starts-reviews .wrap ul {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0 2px;
    margin: 0;
}
.starts-reviews .wrap ul li {
    width: 17px;
    height: 17px;
    background: var(--akcent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.starts-reviews .wrap ul li svg {
    fill: #fff;
    width: 12px;
    height: 11px;
}
.starts-reviews .wrap span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.home-image {
    max-width: 660px;
    position: relative;
    margin-left: auto;
    margin-right: 50px;
}
.home-image .svg-line {
    position: absolute;
    top: -70px;
    left: 115px;
    z-index: -1;
}

.home-image .circle {
    width: 847px;
    height: 847px;
    border-radius: 50%;
    position: absolute;
    top: -187px;
    right: -315px;
    background: rgba(98, 203, 201, 0.26);
    filter: blur(122.25px);
    z-index: -1;
    animation: circle 10s linear infinite;
}

@keyframes circle {
    0% {transform: trans(1);}
    50% {transform: scale(1.5);}
    100% {transform: scale(1);}
}

.home-image .product {
    display: block;
    width: 100%;
}
.home-image .bottle {
    position: absolute;
    left: -10px;
    bottom: -20px;
    max-width: 268px;
}

.home-image .phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 446px;
}

.notification {
    position: absolute;
    background: rgba(242, 242, 242, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 19px;
    display: flex;
    align-items: center;
    gap: 11px 11px;
    padding: 10px 15px 10px 10px;
    font-family: 'Albert Sans', sans-serif;
}
.notification .avatar {position: relative;}
.notification .avatar img {
    max-width: 50px;
    display: block;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}
.notification .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.notification .head h5 {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}
.notification .head p {
    color: #797978;
    font-size: 14px;
    font-weight: 500;
}
.notification > div > p {
    font-size: 16px;
    line-height: 1.2;
    color: #3F3F3F;
}
.notification .head h4 {
    color: #797978;
    font-size: 13px;
    font-weight: 500;
}
.notification h3 {
    font-weight: 600;
    font-size: 18px;
    color: #222222;
}
.notification .label {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    background: #c3d5dc;
    border-radius: 30px;
    padding: 0 10px;
    font-size: 9px;
    font-weight: normal;
    color: #000;
    margin-top: 10px;
}
.notification .label p {
    position: relative;
    top: 1px;
}

.notification.animated.show {
    opacity: 1;
    animation: circleNotification 15s ease-in-out infinite 1s;
}

@keyframes circleNotification {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(20px, 0);
    }
    75% {
        transform: translate(10px, 10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.home-image .notification.first {
    top: 50px;
    left: 30px;
    min-width: 375px;
    animation-name: circleNotification;
}
.home-image .notification.first > div:not(.avatar) {
    width: 100%;
}

.home-image .notification.second {
    bottom: 70px;
    right: 25px;
    animation-name: circleNotification;
    animation-delay: 2s !important;
}

.home-image .notification.third {
    top: calc(50% - 90px);
    left: 25px;
    margin-left: -90px;
    padding-left: 17px;
    padding-right: 17px;
    min-width: 190px;
    animation-name: circleNotification;
    animation-delay: 4s !important;
    min-width: 215px;
}
.home-image .notification.third p {font-weight: 500;}
.home-image .notification.third .image {
    max-width: 73px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    margin-top: 5px;
}

@media (max-width: 1600px) {
    .home {padding-bottom: 20px;}
    .home .center {gap: 50px;}
    .home-content .before {font-size: 13px;}
    .home-content .before div {
        margin: 0 5px;
        font-size: 13px;
    }

    .home-content .tx-small {font-size: 22px;}
    .home-content .label {
        min-height: 25px;
        font-size: 12px;
    }
    .home-content h1.title {font-size: 45px;}

    .home-content ul {gap: 20px;}
    .home-content ul li {font-size: 16px;}

    .home-content .foot {
        margin-top: 30px;
        zoom: 0.89;
    }
    .home-content .foot > img {max-width: 115px;}

    .home-image {zoom: 0.8;}
    .home-content .icon-text {zoom: 0.8;}

    .home-content .text {font-size: 17px;}
}

@media (max-width: 1200px) {
    .home {
        padding-bottom: 30px;
        padding-top: 30px;
    }
    .home .center {
        gap: 30px;
        align-items: center;
    }
    .home-content .label {
        min-height: 22px;
        font-size: 11px;
    }
    .home-content h1.title {font-size: 35px;}
    .home-content .text {font-size: 15px;}
    .home-content ul li {font-size: 14px;}
    .home-content ul .ic {zoom: 0.86;}
    .home-content .foot > img {max-width: 110px;}
    .home-content .tx-small {font-size: 17px;}

    .home-image {
        margin-right: 0;
        zoom: 0.6;
    }
    .home-image .circle {zoom: 0.56;}
    .home-image .bottle {zoom: 0.8;}
    .home-content .icon-text {zoom: 0.7;}

    .notification {zoom: 0.9;}
    .home-image .notification.third {top: calc(50% - 110px);}

    .home-image .svg-line {
        top: -125px;
        left: 40px;
    }

    .home-content .foot {zoom: 0.8;}
}

@media (max-width: 991px) {
    .home .center {gap: 15px;}
    .home-content .before {font-size: 12px;}
    .home-content h1.title {font-size: 30px;}
    .home-content .foot {gap: 15px;}
    .home-content .foot > img {max-width: 95px;}

    .home-image {
        max-width: 340px;
        zoom: 1;
    }
    .home-image .bottle {zoom: 0.6;}

    .notification {zoom: 0.7;}
    .home-image .notification.first {top: 25px;}
    .home-image .notification.third {margin-left: -65px;}
    .home-content .icon-text {zoom: 0.6;}
    .home-content .text {font-size: 12px;}
    .home-image .svg-line {
        top: -170px;
        left: 40px;
        zoom: 0.7;
    }
    .home-content .foot {zoom: 0.7;}
}

@media (max-width: 767px) {
    .home .center {
        flex-direction: column;
        gap: 30px;
    }
    .home-content {text-align: center;}
    .home-content .before {font-size: 16px;}
    .home-content h1.title {font-size: 40px;}
    .home-content .tx-small {font-size: 19px;}
    .home-content ul .ic {zoom: 1;}
    .home-content ul li {font-size: 16px;}
    .home-content .foot > img {max-width: 115px;}
    .home-content .icon-text {
        zoom: 0.8;
        display: inline-flex;
    }
    .home-content .text {font-size: 15px;}

    .home-image {
        max-width: 450px;
        margin: 0 auto;
    }
    .home-image .bottle {zoom: 0.8;}
    .notification {zoom: 0.9;}

    .home-image .svg-line {
        transform: rotate(-20deg);
        left: -200px;
    }

    .home-content .foot {zoom: 0.8;}
}

@media (max-width: 550px) {
    .home {
        padding-top: 20px;
        padding-bottom: 25px;
    }
    .home .lines {
        top: -160px;
        right: 50px;
        position: absolute;
        width: 200px;
        zoom: 0.7;
        transform: rotate(10deg);
    }
    .home .lines i {width: 550px;}
    .home .center {
        gap: 30px 0;
        position: relative;
    }
    .home .center .line {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
        transform-origin: center;
        transform: rotate(-20deg);
    }
    .home .center .line svg {
        width: 100%;
    }

    .home-content {text-align: left;}
    .home-content {width: 100%;}
    .home-content .before {font-size: 14px;}
    .home-content .before div {
        position: relative;
        top: -2px;
        font-size: 12px;
        min-height: 20px;
    }     

    .home-content .label {
        min-height: 25px;
        font-size: 13px;
        font-weight: 300;
        -webkit-font-smoothing: auto;
    }
    .home-content .label span {top: 0;}

    .home-content h1.title {
        font-size: 10vw;
        margin-top: 10px;
    }
    .home-content h1.title .bg-1 {
        background: linear-gradient(90deg, #096A8C -50%, #63C7C7 20%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }
    .home-content h1.title .bg-2 {
        background: linear-gradient(90deg, #096A8C 0%, #63C7C7 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    .home-content .icon-text {
        font-size: 4.2vw;
        zoom: 0.9;
        margin-top: 25px;
        margin-bottom: 20px;
    }
    .home-content .icon-text .ic {
        max-width: 50px;
        line-height: 0;
    }
    .home-content .icon-text strong {font-size: 4.9vw;}

    .home-content ul {
        gap: 25px;
        margin-top: 25px;
    }
    .home-content ul li {
        font-size: 3.5vw;
        line-height: 5vw;
        gap: 0 3.33vw;
    }
    .home-content ul .ic {
        width: 9.66vw;
        height: 12vw;
        zoom: 0.8;
    }
    .home-content ul li:nth-child(1) .ic i {
        right: -1.20vw;
        top: 0;
        width: 9.66vw;
        height: 11vw;
    }
    .home-content ul li:nth-child(2) .ic i {
        width: 9.66vw;
        height: 10.86vw;
        top: -0.1vw;
    }
    .home-content ul li:nth-child(3) .ic i {
        width: 8.69vw;
        height: 11.83vw;
        right: -1.44vw;
    }
    .home-content .tx-small {font-size: 5.4vw;}

    .home-content .text {font-size: 4vw;}
    .home-content .text br {display: none;}

    .home-content .foot {
        gap: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        zoom: 1;
    }
    .home-content .foot > img {display: none;}
    .home-content .foot .btn-text {
        width: 100%;
    }
    .home-content .foot .btn {
        min-width: 100%;
        min-height: 55px;
    }
    .home .tx-c {max-width: 250px;}

    .starts-reviews {display: none;}

    .home-image {
        zoom: 1;
        width: 100%;
    }
    .home-image .circle {
        width: 400px;
        height: 400px;
        top: -30px;
        right: -300px;
        zoom: normal;
    }
    .home-image .bottle {
        zoom: 1;
        max-width: 160px;
        bottom: -22px;
    }
    .notification {zoom: 0.8;}
    .home-image .notification.first {
        top: 0;
        left: 0;
    }
    .home-image .notification.second {
        bottom: 30px;
        right: inherit;
        left: 0;
    }
    .home-image .notification.third {
        margin-left: 0;
        top: calc(50% - 105px);
        left: inherit;
        right: 0;
    }

    .home-image .svg-line {display: none;}
    .home-image .svg-line.d-none {
        display: block !important;
        top: -165px;
        left: inherit;
        right: -30px;
        transform: none;
    }
}

@media (max-width: 413px) {
    .home .lines {right: 20px;}
}

/* ------------------ ICONS SCROLL ------------------ */
.icons-scroll .slide {
    display: flex;
    align-items: center;
    gap: 12px 12px;
    height: 100%;
    min-height: 50px;
}
.icons-scroll .slide p {
    font-weight: normal;
    font-size: 22px;
    color: #096A8C;
}

@media (max-width: 1600px) {
    .icons-scroll .slide {zoom: 0.8;}
}

@media (max-width: 1200px) {
    .icons-scroll .slide {gap: 10px 10px;}
    .icons-scroll .slide img {zoom: 0.7;}
    .icons-scroll .slide p {font-size: 15px;}
}

@media (max-width: 767px) {
    .icons-scroll .slide img {zoom: 1;}
    .icons-scroll .slide p {font-size: 17px;}
}

/* ------------------ ACCESS ------------------ */
.access {
    padding-top: 65px;
}

.access .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.access-text .main-title i {min-height: 53px;}
.access-text .text {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 20px;
}
.access-text .text p + p {margin-top: 25px;}
.access-text .text p b {font-weight: 600;}
.access-text .text p.line {
    position: relative;
    padding-left: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.access-text .text p.line:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    border-radius: 5px;
    background: var(--akcent);
}
.access-text .text p.title {
    font-weight: 600;
}
.access-text .text p.title b {
    font-weight: bold;
}
.access-text .text p.title + p {
    margin-top: 5px;
    font-size: 16px;
}

.access-image {padding-top: 70px;}
.access-image .inner {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 17px 17px 35px 17px;
    box-shadow: 0 1px 10px rgba(0, 62, 82, 0.03), 0 8px 8px rgba(0, 62, 82, 0.05), 0 25px 60px rgba(0, 62, 82, 0.15);
}
.access-image .inner .image {
    min-height: 188px;
    border-radius: 14px;
    box-shadow: 0 2.24px 3.36px rgba(0, 0, 0, 0.07);
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    display: flex;
}
.access-image .inner .image img {
    object-fit: cover;
}

.access-image .info {
    padding: 0 25px;
    color: var(--akcent);
}
.access-image .info h6 {
    font-size: 20px;
    font-weight: 500;
    color: var(--akcent);
    margin-bottom: 5px;
}
.access-image .info h3 {
    font-size: 45px;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 10px;
    color: #0F5C78;
}
.access-image .info h3 b {
    font-weight: 600;
    background: linear-gradient(90deg, #096A8C -30%, #63C7C7 200%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.access-image .info p {
    font-size: 23px !important;
    font-weight: 500;
}

.access-slider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;
    display: flex;
}
.access-slider .track {
    animation: marquee 30s linear infinite;
    display: flex;
}

@keyframes marquee {
    0% {transform: translateX(0);}
    to {transform: translateX(-100%);}
}

.access-slider .slide {
    padding: 0 8px;
    width: 100%;
}
.access-slider .wrap {
    background: rgba(255,255,255,.9);
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px;
    padding: 0 7px 0 15px;
}
.access-slider .wrap > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 10px;
}
.access-slider .wrap > div h6 {
    font-size: 13px;
    font-weight: bold;
    color: #424647;
}
.access-slider .wrap > div p {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #00B167;
    gap: 0 3px;
}
.access-slider .wrap > div p svg {
    width: 12px;
    height: 9px;
}
.access-slider .wrap strong {
    font-size: 13px;
    font-weight: normal;
    margin-top: 3px;
    color: #424647;
}

.access-image .inner .item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0 10px;
    padding: 0 25px;
}
.access-image .inner p {
    font-size: 17.8px;
    font-weight: 500;
}
.access-image .inner .title {
    font-size: 23px;
    font-weight: 600;
}
.access-image .inner .title b {font-weight: bold;}
.access-image .inner h4 {
    font-weight: 600;
    font-size: 35px;
    display: flex;
    align-items: start;
    line-height: 1;
}
.access-image .inner h4 span {
    font-size: 20px;
    position: relative;
    top: 5px;
}

.access-image .inner .line {
    background: #EBEBEB;
    height: 8px;
    border-radius: 10px;
    margin: 25px;
}

.access-image > p {
    font-size: 16px;
    margin-top: 33px;
    text-align: center;
}

.access-info {margin-top: 35px;}
.access-info h4 {
    font-size: 3.9vw;
    margin-bottom: 15px;
}
.access-info p {font-size: 3.7vw;}
.access-info p b {font-weight: 600;}
.access-info .line {
    height: 6px;
    border-radius: 5px;
    background: #EBEBEB;
    margin: 20px 0;
}

@media (max-width: 1600px) {
    .access-text .text {font-size: 15px;}
    .access-text .text p.title + p {font-size: 12px;}

    .access-image .inner {zoom: 0.8;}
    .access-image > p {
        font-size: 13px;
        margin-top: 30px;
    }
}

@media (max-width: 1200px) {
    .access {padding-top: 50px;}
    .access-text .text {
        font-size: 12px;
        max-width: 430px;
    }
    .access-text .text p br {display: none;}
    .access-image .inner {zoom: 0.7;}
    .access-image > p {font-size: 12px;}
}

@media (max-width: 991px) {
    .access-image .inner {zoom: 0.6;}
    .access-image > p {
        font-size: 11px;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .access .center {grid-template-columns: 1fr;}
    .access-text {text-align: center;}
    .access-text .text {
        font-size: 14px;
        max-width: 500px;
        margin: 20px auto;
    }
    .access-text .text p.title + p {
        font-size: 14px;
    }

    .access-image {padding-top: 50px;}
    .access-image .inner {zoom: 0.9;}
    .access-image > p {font-size: 14px;}
}

@media (max-width: 550px) {
    .access {padding-top: 40px;}
    .access-text .text {
        text-align: left;
        font-size: 3.7vw;
        margin-bottom: 0;
    }
    .access-text .text p.line {
        padding-left: 13px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .access-text .text p.line:before {width: 3px;}

    .access-image {padding-top: 20px;}
    .access-image .inner .image {
        min-height: 155px;
        margin-bottom: 30px;
    }
    .access-image .inner {
        zoom: 1;
        border-radius: 15px;
        padding: 15px 15px 30px 15px;
        box-shadow: 0 1.16px 11.58px rgba(0, 62, 82, 0.03), 0 9.27px 9.27px rgba(0, 62, 82, 0.05), 0 3px 69px rgba(0, 62, 82, 0.15);
    }
    .access-image .inner .item {
        gap: 0 0;
        padding-left: 0;
        padding-right: 0;
        position: relative;
    }
    .access-image .inner .title {font-size: 4vw;}
    .access-image .inner h4 {
        zoom: 0.7;
        position: absolute;
        right: 0;
        top: -2px;
    }
    .access-image .inner .line {
        height: 5px;
        border-radius: 10px;
        margin: 30px 0;
    }
    .access-image .inner p.d-none {
        font-size: 3.73vw;
        margin-top: 20px;
        font-weight: normal;
    }
    .access-image .inner p.d-none b {font-weight: 600;}

    .access-image .info {padding: 0 10px;}
    .access-image .info h6 {font-size: 3.8vw;}
    .access-image .info p {font-size: 4.3vw !important;}
    .access-image .info h3 {font-size: 8.6vw;}

    .access-image > p {
        font-size: 4.4vw;
        margin-top: 35px;
    }
}

/* ------------------ MOVEMENT ------------------ */
.movement {
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.movement-splide {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 16px;
}
.movement-splide .slide {
    padding: 30px 26px 26px 26px;
    position: relative;
}
.movement-splide .slide:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.3s;
    background: #F1F7FA;
    border-radius: 24px;
}
.movement-splide .slide:hover:after {transform: scale(1.02);}
.movement-splide .slide .ic {
    min-height: 62px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}
.movement-splide .slide .ic i {
    display: inline-block;
    width: 50px;
}
.movement-splide .slide:nth-child(1) .ic i {zoom: 0.8;}
.movement-splide .slide:nth-child(3) .ic i {zoom: 0.9;}
.movement-splide .slide:nth-child(3) .ic i * {
    fill: #0f5c78;
    stroke: #0f5c78;
}
.movement-splide .slide p {
    font-size: 21px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

@media (max-width: 1600px) {
    .movement {padding-bottom: 50px;}

    .movement .svg-left {
        position: absolute;
        top: -94px;
        left: -70px;
        width: 150px;
        height: 380px;
    }

    .movement .head > div .btn {
        margin-top: 15px;
    }

    .movement-splide .slide {
        border-radius: 20px;
            padding: 25px 20px 20px 20px;
    }
    .movement-splide .slide p {font-size: 16px;}
    .movement-splide .slide .ic {
        min-height: 45px;
        margin-bottom: 10px;
    }
    .movement-splide .slide .ic svg {zoom: 0.8;}
}

@media (max-width: 1200px) {
    .movement .head {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .movement .head br {display: none;}
    .movement-splide .slide {padding: 20px 15px 20px 15px;}
    .movement-splide .slide .ic {
        min-height: 55px;
        zoom: 0.8;
    }
    .movement-splide .slide .ic svg {zoom: 0.7;}
    .movement-splide .slide p {font-size: 12px;}
}

@media (max-width: 991px) {
    .movement .svg-left {left: -100px;}
    .movement-splide {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 15px;
    }
}

@media (max-width: 767px) {
    .movement {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .movement .head {
        gap: 15px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
    .movement {
        border-top: none;
        border-bottom: none;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 45px;
    }
    .movement .center {
        padding-left: 0;
        padding-right: 0;
    }
    .movement .svg-left {display: none;}
    .movement .head {gap: 20px;}
    .movement .head .title svg {margin-bottom: 10px;}
    .movement .head > div {font-weight: normal;}
    .movement .head > div strong {font-weight: 600;}
    .movement .head > div .btn {display: none;}

    .movement-splide {
        grid-template-columns: 1fr;
        gap: 19px 0;
    }
    .movement-splide .slide {
        border-radius: 20px;
        padding: 25px 20px 25px 35px;
        display: flex;
        align-items: center;
        gap: 0 10px;
    }
    .movement-splide .slide .ic {
        min-height: inherit;
        margin-bottom: 0;
        min-width: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .movement-splide .slide p {font-size: 4vw;}
    .movement-splide li:nth-child(2) .slide .ic svg {zoom: 0.6;}
    .movement-splide li:nth-child(3) .slide .ic svg {zoom: 0.6;}
    .movement-splide .slide:nth-child(3) .ic {
        position: relative;
        top: 3px;
    }

    .works-background .image {border-radius: 15px;}
    .works-background .images {zoom: 0.56;}

    .movement .btn-text {
        display: inline-flex !important;
        margin-top: 30px;
        width: 100%;
    }
}

/* ------------------ STEPS ------------------ */
.steps {
    padding: 105px 0 100px 0;
    background: #F0F7FA;
    overflow: hidden;
}
.steps .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.steps-content ul {
    display: flex;
    flex-direction: column;
    gap: 19px 0;
    max-width: 670px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}
.steps-content ul li {
    display: flex;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 1.18px 2.36px rgba(0,0,0,.1);
    transition: all 0.3s;
    cursor: pointer;
}
.steps-content ul li:hover,
.steps-content ul li.active {box-shadow: 0 1.18px 11.81px rgba(0,0,0,.04), 0 9.45px 11.81px rgba(0,0,0,.1), 0 29.52px 29.52px rgba(0, 0, 0, 0.1);}
.steps-content ul li .image {
    max-width: 107px;
    width: 100%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    display: flex;
}
.steps-content ul li .image img {
    display: block;
    object-fit: cover;
}
.steps-content ul li .text {
    padding: 15px 15px 15px 20px;
}
.steps-content ul h4 {
    font-size: 17px;
    margin-bottom: 6px;
}
.steps-content ul h4 span {font-weight: 500;}

.steps-content > p {
    font-size: 21px;
    margin-bottom: 25px;
    margin-top: 35px;
}

.steps-phone {position: relative;}
.steps-phone .svg-line {
    position: absolute;
    top: -108px;
    left: 100%;
    transform: translateX(-50%);
    margin-left: -70px;
}
.steps-phone:after {
    content: '';
    display: block;
    width: 670px;
    height: 670px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    background: rgba(98, 203, 201, 0.26);
    filter: blur(122.25px);
}

@media (max-width: 1600px) {
    .steps {padding: 70px 0 80px 0;}
    .steps-phone:after {
        zoom: 0.8;
        margin-left: 100px;
    }
    .steps-phone .svg-line {
        zoom: 0.8;
        margin-left: 25px;
    }
    .steps-content ul {
        gap: 15px 0;
        max-width: 545px;
        margin-top: 40px;
    }
    .steps-content ul li {border-radius: 15px;}
    .steps-content ul li .image {
        max-width: 90px;
        border-radius: 15px 0 0 15px;
    }
    .steps-content ul h4 {font-size: 15px;}
    .steps-content ul li .text {padding: 15px;}
    .steps-content > p {
        font-size: 17px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

@media (max-width: 1200px) {
    .steps-content ul {
        gap: 15px 0;
        margin-top: 30px;
    }
    .steps-content ul li .text br {display: none;}
    .steps-content > p {
        font-size: 14px;
        margin-bottom: 15px;
        margin-top: 15px;
    }
    .steps-phone .svg-line {
        zoom: 0.7;
        margin-left: 70px;
    }
}

@media (max-width: 991px) {
    .steps {padding: 50px 0 50px 0;}
    .steps .center {
        gap: 0;
        grid-template-columns: 1.2fr 1fr;
    }
    .steps-phone .svg-line {
        zoom: 0.6;
        margin-left: 200px;
    }
    .steps-content ul li .image {min-height: 110px;}
}

@media (max-width: 767px) {
    .steps .center {
        gap: 50px 0;
        grid-template-columns: 1fr;
    }
    .steps .main-title {text-align: center;}
    .steps-content {text-align: center;}
    .steps-content ul {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    .steps-content > p {text-align: center;}
    .steps-phone .svg-line {
        zoom: 0.8;
        margin-left: -200px;
    }
}

@media (max-width: 550px) {
    .steps {padding-bottom: 35px;}
    .steps .center {gap: 30px 0;}
    .steps-content ul {
        margin-top: 40px;
        gap: 18px 0;
    }
    .steps-content ul li {border-radius: 10px;}
    .steps-content ul li .image {
        max-width: 75px;
        min-height: 120px;
        border-radius: 10px 0 0 10px;
    }
    .steps-content ul li:nth-child(1) .image img {
        content: url(../img/steps/image-step-mob-1.jpg);
    }
    .steps-content ul li:nth-child(2) .image img {
        content: url(../img/steps/image-step-mob-2.jpg);
    }
    .steps-content ul li:nth-child(3) .image img {
        content: url(../img/steps/image-step-mob-3.jpg);
    }
    .steps-content ul h4 {
        font-size: 3.8vw;
        font-weight: 600;
    }
    .steps-content ul h4 span {font-weight: 600;}
    .steps-content ul li .text p {font-size: 3.5vw;}
    .steps-content ul li .text br {display: block;}

    .steps-phone .svg-line {
        zoom: 0.8;
        margin-left: 260px;
        top: -60px;
    }
    .steps .center > .d-none {
        text-align: center;
        font-size: 3.7vw;
        margin-top: 15px;
    }
    .steps .center > .d-none .btn-text {
        margin-top: 20px;
        width: 100%;
    } 
}

@media (max-width: 413px) {
    .steps-content ul li .text p {
        font-size: 3.2vw;
    }
}

.mobile {
    display: block;
    min-width: 330px;
    max-width: 330px;
    position: relative;
    z-index: 2;
    margin: 50px auto 0 auto;
}
.mobile .inner {
    position: absolute;
    top: 95px;
    left: 33px;
    right: 33px;
    bottom: 33px;
    z-index: 2;
    display: none;
    transition: all 0.3s;
}
.mobile .inner.show {display: block;}

.mobile > img {animation-delay: 0.2s !important;}
.mobile .label {
    animation-delay: 0.2s !important;
    background: #E2F0F5;
    border-radius: 3px;
    align-items: center;
    gap: 0 3px;
    font-size: 9px;
    font-weight: 600;
    min-height: 18px;
    padding: 0 6px;
    display: inline-flex;
}
.mobile .title {
    animation-delay: 0.4s !important;
    margin-bottom: 15px;
    margin-top: 5px;
    color: #003E52;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
}
.mobile .item {
    display: flex;
    align-items: center;
    min-height: 50px;
    border-radius: 12px;
    border: 1px solid #d7dcde;
    background: #fff;
    padding: 0 15px 0 15px;
    gap: 0 8px;
    color: #424647;
    font-size: 13px;
    font-weight: 600;
}
.mobile .item + .item {margin-top: 8px;}
.mobile .item:before {
    content: '';
    display: inline-flex;
    width: 15px;
    height: 15px;
    border: 1px solid #C4CACC;
    border-radius: 3px;
}
.mobile .item-1 {animation-delay: 0.6s !important;}
.mobile .item-2 {animation-delay: 0.8s !important;}
.mobile .item-3 {animation-delay: 1s !important;}
.mobile .item-4 {animation-delay: 1.2s !important;}
.mobile .item-5 {animation-delay: 1.4s !important;}
.mobile .item-6 {animation-delay: 1.6s !important;}

.mobile .button {
    animation-delay: 1.8s !important;
    margin-top: 60px;
    border-radius: 12px;
    background: #B2CCD7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    color: #fff;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}
.mobile .button span {
    position: relative;
    z-index: 3;
}
.mobile .button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    transition: all 0.3s;
    background: var(--c-bluewhite);
}

.mobile .inner-second .title {
    margin-bottom: 0;
}
.mobile .inner-second > p {
    font-size: 13px;
    font-weight: 600;
    margin-top: 3px;
    margin-bottom: 18px;
    animation-delay: 0.6s !important;
}
.mobile .inner-second .box {
    background: #e2f0f5;
    border-radius: 15px;
    padding: 10px 50px;
}
.mobile .inner-second .box + .box {margin-top: 20px;}
.mobile .inner-second h3 {
    color: #424647;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    animation-delay: 0.8s !important;
}

.mobile .inner-second .progress {
    height: 12px;
    border-radius: 15px;
    background: #c3e2ec;
    position: relative;
    margin-top: 56px;
    animation-delay: 1s !important;
}
.mobile .inner-second .progress:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: #388FAB;
    border-radius: 10px 0 0 10px;
}
.mobile .inner-second .progress > div {
    position: absolute;
    left: 26%;
    bottom: 100%;
    width: 44px;
    height: 35px;
    border-radius: 5px;
    background: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    animation-delay: 1.2s !important;
}
.mobile .inner-second .progress > div:after {
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1px;
}
.mobile .inner-second .progress > div span {
    font-size: 9px;
    font-weight: 500;
    position: relative;
    top: 1.5px;
    margin-left: 2px;
}

.mobile .inner-second h6 {
    font-size: 13px;
    color: #424647;
    margin-top: 13px;
    margin-bottom: 6px;
    text-align: center;
    animation-delay: 1.4s !important;
}

.mobile .inner-second ul {
    font-size: 10px;
    font-weight: 500;
    color: #003E52;
    max-width: 150px;
    margin: 0 auto;
}
.mobile .inner-second ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 6px;
}
.mobile .inner-second ul li:nth-child(1) {animation-delay: 1.6s !important;}
.mobile .inner-second ul li:nth-child(2) {animation-delay: 1.8s !important;}
.mobile .inner-second ul li:nth-child(3) {animation-delay: 2s !important;}
.mobile .inner-second ul li + li {margin-top: 3px;}
.mobile .inner-second ul li:before {
    content: '';
    display: inline-flex;
    width: 1.5px;
    height: 1.5px;
    background: #003E52;
    position: relative;
    top: 1px;
}

.mobile .inner-third .box {
    background: #e2f0f5;
    border-radius: 15px;
    padding: 20px 13px 20px 13px;
    margin-top: 23px;
    margin-left: 8px;
    margin-right: 8px;
}
.mobile .inner-third .box h2 {
    font-size: 20px;
    line-height: 1.15;
    animation-delay: 0.6s !important;
}
.mobile .inner-third .box p {
    font-size: 8.8px;
    font-weight: 600;
    margin-top: 8px;
    animation-delay: 0.8s !important;
}
.mobile .inner-third .box .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
.mobile .inner-third .box .flex div {
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    border-radius: 20px;
    padding: 0 7px;
    color: #00698B;
    font-size: 10px;
    font-weight: 600;
}
.mobile .inner-third .box .flex div:first-child,
.mobile .inner-third .box .flex div:last-child {
    animation-delay: 1s !important;
}
.mobile .inner-third .box .image {
    width: 130px;
    margin: -35px auto -13px auto;
    animation-delay: 1.2s !important;
}
.mobile .inner-third .box .image + p {
    animation-delay: 0.8s !important;
}
.mobile .inner-third .box button {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 37px;
    border-radius: 12px;
    color: #b2b3b4;
    border: 1px solid #e2e7e9;
    font-size: 13px;
    font-weight: bold;
    margin-top: 12px;
    animation-delay: 1.4s !important;
}

.mobile .inner-third .foot {
    margin-top: 18px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 10px;
    margin-left: 8px;
    margin-right: 8px;
}
.mobile .inner-third .foot h3 {
    font-size: 13px;
    font-weight: 600;
    color: #424647;
    margin-bottom: 12px;
    animation-delay: 1.6s !important;
}
.mobile .inner-third .foot ul li {
    display: flex;
    align-items: center;
    font-size: 9.5px;
    font-weight: 600;
    color: #003E52;
}
.mobile .inner-third .foot ul li:nth-child(1) {animation-delay: 1.8s !important;}
.mobile .inner-third .foot ul li:nth-child(2) {animation-delay: 2s !important;}
.mobile .inner-third .foot ul li + li {margin-top: 8px;}
.mobile .inner-third .foot ul li .img {
    min-width: 14px;
    position: relative;
    top: 1px;
}
.mobile .inner-third .foot ul li b {font-weight: bold;}

@media (max-width: 1600px) {
    .mobile {
        zoom: 0.8;
        right: -60px;
    }
}

@media (max-width: 1600px) {
    .mobile {right: -30px;}
}

@media (max-width: 991px) {
    .mobile {right: -15px;}
}

@media (max-width: 767px) {
    .mobile {right: 0;}
}

@media (max-width: 550px) {
    .dots {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0 10px;
        width: 100%;
        margin-top: 30px;
    }
    .dots li {
        width: 45px;
        height: 3px;
        background: #E6E6E6;
    }
    .dots li.active {background: var(--blue);}
}

/* ------------------ SITCKY POPUP ------------------ */
.sticky-popup {
    position: fixed;
    left: 17px;
    bottom: 17px;
    z-index: 991;
    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: 450px) {
    .sticky-popup {
        min-width: inherit;
        right: 17px;
    }
    .sticky-popup .image {max-height: 114px;}
    .sticky-popup .image img {object-fit: contain;}
    .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;}
}

/* ------------------ PERSONALIZED ------------------ */
.personalized {
    padding: 105px 0 44px;
    overflow: hidden;
}
.personalized .main-title h2 {line-height: 1;}
.personalized .head {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.personalized .head div {
    font-size: 20px;
    font-weight: 500;
}
.personalized .head div strong {font-weight: bold;}

.personalized-splide {margin-top: 37px;}
.splide__track {overflow: visible;}
.personalized-splide .slide {
    position: relative;
    cursor: pointer;
}
.personalized-splide .image {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.personalized-splide .slide:hover .image {transform: scale(1.02);}
.personalized-splide .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.personalized-splide h4 {
    font-size: 35px;
    line-height: 1.2;
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
}
.personalized-splide a {
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    gap: 0 10px;
    position: absolute;
    left: 20px;
    bottom: 20px;
}
.personalized-splide a span {transition: all 0.3s;}
.personalized-splide a:hover span {transform: translateX(10px);}
.personalized-splide a .ic {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.personalized-splide a .ic svg {
    width: 9px;
    height: 13px;
    stroke: var(--akcent);
    margin-left: 2px;
}

.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: 1600px) {
    .personalized {
        padding-top: 70px;
        padding-bottom: 30px;
    }
    .personalized .head div {font-size: 14px;}
    .personalized-splide h4 {font-size: 25px;}
    .personalized-splide a {zoom: 0.8;}
}

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

@media (max-width: 991px) {
    .personalized {padding-top: 50px;}
    .personalized .head div {font-size: 12px;}
}

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

@media (max-width: 550px) {
    .personalized {
        background: #fff;
        position: relative;
        z-index: 999;
    }
    .personalized .head {
        text-align: left;
        gap: 15px 0;
        align-items: start;
    }
    .personalized .head div {font-size: 3.5vw;}
    .personalized .head div br {display: none;}
    .personalized .main-title p {margin-bottom: 10px;}
    .personalized .main-title h2 {
        line-height: 1.2;
        font-size: 8.5vw;
    }
    .personalized-splide h4 {font-size: 30px;}
    .personalized-splide a {zoom: 1;}

    .splide__pagination {
        padding: 0;
        margin-top: 30px;
    }
    .splide__pagination li button {
        width: 35px;
        height: 2px;
    }
}

/* ------------------ PERSONALIZED ------------------ */
.prescription {
    padding: 45px 0;
    overflow: hidden;
}
.prescription .main-title i {min-height: 43px;}
.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 p {
    position: relative;
    top: -30px;
}

.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 div p {top: -20px;}
}

@media (max-width: 991px) {
    .prescription .head div {
        font-size: 12px;
        max-width: 400px;
    }
    .prescription .head div br {display: none;}
    .prescription .head div p {top: 0;}
}

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

@media (max-width: 550px) {
    .prescription {
        padding: 20px 0;
        position: relative;
        z-index: 999;
        background: #fff;
    }
    .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: 40px;}
    .prescription-splide .splide__pagination li button {width: 25px;}
}

/* ------------------ LINKS ------------------ */
.links {padding: 45px 0 70px;}
.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;
        z-index: 999;
        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 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: 3.5vw;}
}

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

.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;}
.accordeon-slider a:hover span {transform: translateX(10px);}
.accordeon-slider a .ic {
    width: 34px;
    height: 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 50px;}
    .psychiatry .center {max-width: 950px;}
    .psychiatry .accordeon-slider {margin-top: 40px;}
    .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: 45px 0 70px;
        border-top: 5px solid #ecf8f7;
        position: relative;
        z-index: 999;
        background: #fff;
    }
    .psychiatry .main-title p {margin-bottom: 10px;}
    .psychiatry .main-title h2 {font-size: 6.8vw;}
    .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);}
}

/* ------------------ QUESTION ------------------ */
.question {
    position: relative;
    z-index: 5;
    padding-bottom: 70px;
    padding-top: 85px;
    background: #f0f7fa;
}

.question .main-title {
    text-align: left;
}
.question .main-title h2 {
    margin-top: 0;
}
.question .main-title p {
    margin-top: 0;
    font-size: 32px;
}
.question .main-title > svg {margin-bottom: 5px;}

.question .center {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px 100px;
    max-width: 1437px;
}

.question-image {
    min-width: 510px;
}
.question-image .image {
    width: 510px;
    height: 510px;
    position: sticky;
    top: 155px;
}
.question-image .image svg {
    position: absolute;
    top: 100%;
    right: 100%;
    margin-top: -100px;
    margin-right: -60px;
    z-index: -1;
}
.question-image .image > img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.question-image .image .notification {
    position: absolute;
    left: -20px;
    bottom: 65px;
    min-width: 370px;
}
.question-image .image .notification div:not(.avatar) {width: 100%;}

.question .subtitle {
    font-size: 27px;
    margin-top: 5px;
}

.question .accordeon {margin-top: 35px;}

.question-content > h3 {
    font-weight: normal;
    font-size: 32px;
    margin-top: 65px;
}
.question-content > h3 b {font-weight: 500;}
.question-content > h3 b span {
    color: #63CCC9;
    font-weight: normal;
}

.question-content .btn-text {margin-top: 57px;}

.show-accordeon {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--greycliff);
    color: var(--akcent);
    gap: 0 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.show-accordeon svg {
    stroke: var(--akcent);
    transform-origin: center;
    transform: rotate(90deg);
    width: 10px;
    height: 13px;
    position: relative;
    top: 3px;
    transition: all 0.3s;
}
.show-accordeon:hover {color: var(--color);}
.show-accordeon:hover svg {stroke: var(--color);}

@media (max-width: 1600px) {
    .question .center {
        gap: 50px 80px;
        max-width: 1100px;
    }
    .question .subtitle {font-size: 23px;}
    .question .accordeon {margin-top: 25px;}

    .question-image {min-width: 400px;}
    .question-image .image {
        width: 400px;
        height: 400px;
    }

    .question-content > h3 {
        font-size: 25px;
        margin-top: 50px;
    }
    .question .main-title p {font-size: 24.7px;}

    .show-accordeon {font-size: 14px;}
    .show-accordeon svg {
        width: 9px;
        height: 11px;
        top: 2px;
    }
}

@media (max-width: 1200px) {
    .question {
        padding-bottom: 50px;
        padding-top: 50px;
    }
    .question .subtitle {font-size: 19px;}
    .question .accordeon {margin-top: 30px;}
    .question .svg-line {top: 145px;}

    .question .center {
        gap: 30px 30px;
        max-width: 900px;
    }
    .question-image {min-width: 400px;}
    .question-image .image {
        width: 400px;
        height: 400px;
        margin: 50px auto;
    }
    .question-image .image .notification {zoom: 0.7;}

    .question .main-title p {font-size: 20px;}
}

@media (max-width: 991px) {
    .question .subtitle {font-size: 18px;}

    .question .accordeon {margin-top: 35px;}

    .question-image {min-width: 300px;}
    .question-image .image {
        width: 300px;
        height: 300px;
        margin: 50px auto;
    }
    .question-image .image .notification {
        zoom: 0.9;
        left: -50px;
    }
    .question .main-title p {font-size: 19px;}

    .question .accordeon {margin-top: 20px;}

    .question-content .btn-text {width: 100%;}
}

@media (max-width: 767px) {
    .question:after {display: none;}

    .question .main-title {text-align: center;}
    .question .center {flex-direction: column;}
    .question .heading {gap: 15px;}
    .question .heading svg {
        width: 40px;
        height: 40px;
    }
    .question .subtitle {
        margin-top: 0px;
        font-size: 16px;
        text-align: center;
        padding-left: 0;
    }
    .question .center {gap: 50px 20px;}
    .question-image .image {
        margin-top: 0;
        margin-bottom: 0;
        width: 400px;
        height: 400px;
        position: relative;
        top: 0;
    }
    .question .accordeon {margin-top: 30px;}
    .question .main-title p {font-size: 18px;}
    .question .heading {
        display: block;
        text-align: center;
    }
}

@media (max-width: 550px) {
    .question {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .question .svg-line {display: none;}

    .question-image .image {
        width: 350px;
        height: 350px;
        margin: 30px auto 50px auto;
    }

    .question .main-title h2 {font-size: 6.5vw;}
    .question .main-title h2 span {color: var(--blue);}

    .question .accordeon {margin-top: 13px;}
    .question .main-title p {
        font-size: 4vw;
        font-weight: 300;
        margin-top: 10px;
    }
    .question .main-title > svg {margin-bottom: 10px;}
    .question-content > h3 {
        font-size: 17px;
        font-weight: 500;
        margin-top: 30px;
    }
    .question-content > h3 b span {
        color: #0f5c78;
        font-weight: 500;
    }

    .question-image .image .notification {
        zoom: 0.8;
        left: -25px;
        top: 10px;
        bottom: inherit;
    }
    .question-image .image svg {zoom: 0.7;}

    .question-content .btn-text {margin-top: 35px;}
}

@media (max-width: 413px) {
    .question .subtitle {font-size: 15px;}
    .question-image .image {
        width: 320px;
        height: 320px;
    }
}

/* ------------------ ACCORDEON ------------------ */
.accordeon {list-style: none;}
.btn-accordeon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    font-size: 19px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-accordeon:hover {color: #64ccca;}
.plus {
    width: 14px;
    min-width: 14px;
    height: 14px;
    display: inline-block;
    position: relative;
}
.plus:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #60A5BC;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    transition: all 0.3s;
}
.plus:before {
    content: '';
    display: block;
    height: 100%;
    width: 2px;
    background: #60A5BC;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    transition: all 0.3s;
}
.item-accordeon {
    border-radius: 6px;
    border: 1px solid #E3E3E3;
    background: #fff;
}
.item-accordeon + .item-accordeon {margin-top: 15px;}

.item-accordeon.active .btn-accordeon .plus:after {
    transform-origin: center;
    transform: rotate(45deg);
}

.item-accordeon.active .btn-accordeon .plus:before {
    transform-origin: center;
    transform: rotate(45deg);
}
.inner-accordeon {
    padding: 0 23px 35px 23px;
    margin: 0 !important;
}
.inner-accordeon ul {
    list-style: none;
    font-size: 18px;
}
.inner-accordeon p {
    font-size: 18px;
    line-height: 1.4;
}
.inner-accordeon a {
    color: #0F5C78;
    text-decoration: underline;
}
.inner-accordeon a:hover {text-decoration: none;}
.inner-accordeon p + p {margin-top: 20px;}
.inner-accordeon ul strong {font-weight: 600;}
.inner-accordeon ul li + li {margin-top: 35px;}
.inner-accordeon ul li {
    padding-left: 15px;
    position: relative;
}
.inner-accordeon ul li:before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    top: 11px;
    left: 0;
    background: #091938;
}
.content-accordeon {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
} 

@media (max-width: 1600px) {
    .btn-accordeon {
        padding: 15px;
        font-size: 16px;
    }
    .item-accordeon + .item-accordeon {margin-top: 15px;}
    .inner-accordeon ul {font-size: 16px;}
    .inner-accordeon ul li + li {margin-top: 20px;}
    .inner-accordeon p {font-size: 14px;}
    .inner-accordeon {padding: 0 15px 35px 15px;}
}

@media (max-width: 1200px) {
    .btn-accordeon {font-size: 14px;}
}

@media (max-width: 767px) {
    .btn-accordeon {
        padding: 15px 18px;
        font-size: 15px;
    }
    .item-accordeon {border-radius: 5px;}
    .inner-accordeon ul li + li {margin-top: 25px;}
    .inner-accordeon ul li,
    .inner-accordeon p {font-size: 15px;}

    .plus {
        width: 13px;
        min-width: 13px;
        height: 13px;
        margin-left:6px;
    }
    div.btn-accordeon > span {
        padding-right:4px;
    }
}

@media (max-width: 550px) {
    .btn-accordeon {
        padding: 10px 10px 10px 17px;
        font-size: 15px;
    }
}

/* ------------------ 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 .main-title {margin-bottom: 35px;}
    .clinically .main-title > h2 {
        margin-top: 15px;
        font-size: 8.3vw;
    }
    .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 {
        font-size: 18px;
        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
    }
}
