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

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

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

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

:root {
    --color: #096A8C;
    --c-akcent: #0A1C2B;
    --c-akcent2: #B12028;
    --inter: 'Inter', sans-serif;
    --greycliff: 'Greycliff CF', sans-serif;
}

body {
    font: 300 21px/1.4 var(--greycliff);
    color: var(--color);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    outline: none;
    user-select: none;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:active, 
a:focus {
    outline: none;
    user-select: none;
}

h2.title {
    font-size: 47px;
    line-height: 1.2;
}
h2.title span {color: var(--c-akcent);}

h3.title {
    font-size: 40px;
    font-weight: 600;
}

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

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

.wrapper {
    overflow-x: hidden;
}

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

.d-none {display: none;}

.path {
    stroke-dasharray: 300;
    animation: dash 5s linear infinite;
}

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

@media (max-width: 1500px) {
    body {font-size: 16px;}
    .center {max-width: 1000px;}
}

@media (max-width: 991px) {
    body {font-size: 15px;}
}

@media (max-width: 767px) {
    body {font-size: 18px;}
    .h-767 {display: none !important;}
    .s-767 {display: block !important;}
}

@media (max-width: 413px) {
    body {font-size: 15px;}
}

/* ------------------ BUTTONS ------------------ */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    width: 350px;
    font-size: 17px;
    font-weight: 500;
    background: #096A8C;
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: shadow-pulse 3s infinite;
}
.btn span,
.btn svg {
    position: relative;
    z-index: 2;
}
.btn:after {
    content: '';
    display: block;
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: 1;
    border-radius: 8px;
    background: #61cbc8;
    transform: scale(0);
    transition: all 0.3s;
}
.btn:hover:after {transform: scale(1);}

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

.btn-box {
    display: inline-block;
    text-align: center;
}
.btn-box p {
    font-size: 17px;
    font-weight: 300;
    margin-top: 15px;
}
.btn-box p strong {font-weight: 500;}

.btn-fix {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 99;
    padding: 10px 0 0;
    background: #fff;
    box-shadow: 0 -2px 5px rgba(0,0,0,.1);
    visibility: hidden;
    transition: all 0.3s;
}
.btn-fix.show {
    visibility: visible;
    bottom: 0;
}
.btn-fix .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #076a8c;
    color: #fff;
    padding: 13px 10px;
    animation: shadow-pulse 3s infinite;
}
.btn-fix .inner strong {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
}
.btn-fix .inner span {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
}

.play,
.pause {
    width: 130px;
    height: 130px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    margin-top: -65px;
    margin-left: -65px;
}

.play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    background: rgba(0,0,0,.2);
}
.play svg {
    width: 60px;
    height: 60px;
    transform-origin: center;
    transform: rotate(5deg) translateX(5px);
}
.pause {
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pause:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    background: rgba(0,0,0,.2);
    border-radius: 50%;
}
.pause span {
    display: block;
    width: 10px;
    height: 50px;
    background: #fff;
    position: relative;
    z-index: 2;
}
.pause span:first-child {
    margin-right: 15px;
}

.pause,
.play {
    opacity: 0;
    display: none;
    pointer-events: none;
}

.popup.pause-video .pause,
.popup.play-video .play {
    display: inline-flex;
    animation: anVideoBtn 0.3s linear forwards !important;
}
@keyframes anVideoBtn {
    0% {opacity: 1;}
    100% {opacity: 0; transform: scale(0.5); visibility: hidden;}
}

.popup:not(.playing) .play {
    display: inline-flex;
    animation: anVideoBtn2 0.3s linear forwards !important;
}
@keyframes anVideoBtn2 {
    0% {opacity: 1; transform: scale(1); visibility: visible;}
    100% {opacity: 1; transform: scale(1); visibility: visible;}
}

.btn-play {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(93, 163, 187, 0.8);
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.btn-play svg {
    position: relative;
    left: 3px;
}

@media (max-width: 750px) {
    .play, .pause {
        width: 70px;
        height: 70px;
        margin-top: -35px;
        margin-left: -35px;
    }

    .pause span {
        width: 5px;
        height: 30px;
    }
    .pause span:first-child {
        margin-right: 10px;
    }

    .play svg {
        width: 30px;
        height: 30px;
    }
}

/* ------------------ ICONS ------------------ */
.ic-crown {
    display: inline-block;
    width: 50px;
}
.last-ic-crown {margin-bottom: 5px;}

@media (max-width: 991px) {
    .ic-crown {
        width: 80px;
    }
}

@media (max-width: 767px) {
    .ic-crown {
        width: 75px;
    }
	.last-ic-crown {
        width: 56px;
		margin-bottom: 10px;
    }
}

/* ------------------ HEADER ------------------ */
.head-sidebar {
    background: #096A8C;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #FFFFFF;
}
.head-sidebar a {
    text-decoration: none;
    transition: all 0.3s;
    color: #FFFFFF;
}
.head-sidebar a:hover {opacity: 0.7;}

#header {
    background: #E2F2F3;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 991;
}
#header .head-main .center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 19px;
    padding-bottom: 19px;
}

.logo {
    width: 132px;
    height: 40px;
    float: none;
    display: inline-block;
    vertical-align: middle;
    background: url(../img/logo.svg) no-repeat center;
    background-size: contain;
}

#nav {
    margin-right: 24px;
    margin-left: auto;
}
#nav ul {
    display: flex;
    list-style: none;
}
#nav ul li + li {margin-left: 15px;}
#nav a {
    text-decoration: none;
    color: var(--color);
    position: relative;
    padding: 10px 0;
    transition: all 0.3s;
}
#nav a:after {
    content: '';
    display: block;
    height: 2px;
    background: var(--color);
    position: absolute;
    left: 0;
    top: 100%;
    width: 0;
    transition: all 0.3s;
}
#nav a:hover:after {width: 100%;}
#nav a:hover {opacity: 0.7;}

.head-btn {
    height: 44px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    background: #096A8C;
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.head-btn span {
    position: relative;
    z-index: 2;
}
.head-btn:after {
    content: '';
    display: block;
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: 1;
    border-radius: 15px;
    background: #61cbc8;
    transform: scale(0);
    transition: all 0.3s;
}
.head-btn:hover:after {transform: scale(1);}

@media (max-width: 1300px) {
    .head-btn {
        height: 40px;
        padding: 0 15px;
        font-size: 13px;
    }
}

@media (max-width: 1100px) {
    .head-sidebar {font-size: 13px;}
    #header .head-main .center {
        padding-top: 15px;
        padding-bottom: 15px;
        position: relative;
    }

    .btn-nav {
        width: 20px;
        height: 20px;
        background: none;
        outline: none;
        border: none;
        display: block !important;
        position: absolute;
        left: 15px;
        top: 50%;
        z-index: 993;
        transform: translateY(-50%);
    }
    .btn-nav span {
        height: 1px;
        width: 100%;
        display: block;
        background: #093E52;
        transform-origin: center;
        transition: all 0.3s;
    }
    .btn-nav span + span {
        margin-top: 7px;
    }
    .nav-open .btn-nav span {
        position: absolute;
        top: 50%;
        margin-top: -0.5px;
    }
    .nav-open .btn-nav span:first-child {transform: rotate(45deg);}
    .nav-open .btn-nav span:nth-child(2) {display: none;}
    .nav-open .btn-nav span:last-child {transform: rotate(-45deg);}

    #nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        width: 100%;
        z-index: -2;
        background: #fff;
        margin-right: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    #nav ul {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    #nav ul a {font-size: 20px;}
    #nav ul a:after {display: none;}
    #nav ul li + li {
        margin-left: 0;
        margin-top: 15px;
    }
    .nav-open #nav {
        left: 0;
        visibility: visible;
    }

    #nav .head-btn {
        display: inline-flex !important;
        color: #fff;
        padding: 0 35px;
        margin-top: 30px;
        font-weight: bold;
        font-size: 17px;
        height: 55px;
    }
}

@media (max-width: 767px) {
    .head-btn {display: none;}
    #header .head-main .center {justify-content: center;}
    .logo {
        width: 100px;
        height: 30px;
        margin-left: 0;
    }
}

/* ------------------ INFO ------------------ */
.info {
    padding: 200px 0 120px;
    position: relative;
}
.info-1 {
    padding-bottom: 70px;
    overflow: hidden;
}
.info + .medication-slider {padding-bottom: 0;}
.info .svg-right {
    width: 664px;
    height: 709px;
    position: absolute;
    top: -230px;
    right: -300px;
}
.info .anim-dot {
    width: 216px;
    height: 221px;
    position: absolute;
    top: -200px;
    right: -100px;
}
.info.c-gray {background: #F0F7FA;}
.info .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 77px;
    position: relative;
}
.info-left {position: relative;}
.info-left .logo {
    width: 175px;
    height: 55px;
    background-size: 175px auto;
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 50px;
}
.info-left h2 {
    font-weight: 600;
    font-size: 55px;
    line-height: 1.2;
}
.info-left h2 span {
    background: linear-gradient(45deg, #61CBCB 0%, #1F89A0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.info-left p {
    font-weight: 500;
    margin-top: 15px;
}
.info-left a {
    color: var(--color);
    font-size: 14px;
    text-decoration: underline;
    display: inline-block;
}
.info-left a:hover {text-decoration: none;}

.info-right {display: flex;}
.info-2 .info-right {flex-direction: column;} 
.info-right ul {list-style: none;}
.info-right ul li {
    display: flex;
    align-items: flex-start;
}
.info-right ul li + li {margin-top: 10px;}
.info-1 .info-right ul li:nth-child(2) {margin-top: 8px;}
.info-right ul li img {
    width: 20px;
    min-width: 20px;
    height: 16px;
    margin-right: 11px;
    position: relative;
    top: 8px;
}

.info-right ul .ic {
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 13px;
}
.info-right ul li:nth-child(1) i {
    width: 30px;
    height: 30px;
}
.info-right ul li:nth-child(2) i {
    width: 26px;
    height: 26px;
}
.info-right ul li:nth-child(3) i {
    width: 23px;
    height: 23px;
}
.info-right ul li:nth-child(4) i {
    width: 21px;
    height: 25px;
}

.info-right ul + .btn {margin-top: 50px;}
.info-right ul + .btn + .rating {margin-top: 14px;}

.rating {
    display: flex;
    align-items: center;
}
.rating .stars {
    display: flex;
    align-items: center;
    margin-right: 8px;
}
.rating .stars svg {
    width: 19px;
    height: 19px;
    fill: #fff;
}
.rating .stars svg + svg {margin-left: 4px;}
.rating span {
    font-size: 17px;
    position: relative;
    top: 1px;
}
.rating .stars svg {fill: var(--color);}

.info-right .rating {
    justify-content: center;
    flex-direction: column;
}
.info-right .rating > div {
    display: flex;
    align-items: center;
}

.info-1 .btn {
    width: 310px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.info-2 {
    padding: 75px 0 75px 0;
    overflow: hidden;
}
.info-2 .svg-right {
    width: 430px;
    height: 430px;
    position: absolute;
    top: -4px;
    right: 85px;
}
.info-2 .anim-dot {
    width: 280px;
    height: 282px;
    position: absolute;
    top: -150px;
    right: -100px;
}
.info-2 h2 {
    font-size: 50px;
    line-height: 1.2;
    margin-top: 19px;
}
.info-2 .info-right ul + .btn {margin-top: 30px;}
.info-2 .btn {width: 260px;}

.info-3 {padding: 65px 0 85px 0}
.info-3 .info-right {font-size: 16px;}
.info-3 .info-right li + li {margin-top: 20px !important;}
.info-3 h2 {
    font-size: 55px;
    line-height: 1.4;
}

@media (max-width: 1500px) {
    .info {padding: 200px 0 70px;}
    .info .svg-right {
        width: 500px;
        height: 600px;
    }
    .info .anim-dot {
        right: -200px;
        top: -130px;
    }
    .info-left h2 {font-size: 40px;}
    .info-left p {font-size: 15px;}
    .info-right ul li img {
        width: 15px;
        min-width: 15px;
        height: 11px;
        margin-right: 9px;
        top: 6px;
    }
    .info-right ul + .btn {margin-top: 25px;}
    .info-1 .info-right ul li:nth-child(2) {margin-top: 5px;}

    .rating .stars {margin-right: 6px;}
    .rating .stars svg {
        width: 14px;
        height: 15px;
    }
    .rating span {font-size: 13px;}

    .info-2 {padding: 60px 0 70px 0;}

    .info-2 .anim-dot {
        top: -120px;
        width: 265px;
        height: 265px;
    }

    .info-2 .svg-right {
        width: 300px;
        height: 300px;
        position: absolute;
        top: 60px;
        right: -25px;
    }

    .info-3 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
}

@media (max-width: 1300px) {
    .info .anim-dot {
        width: 170px;
        height: 170px;
        right: 0;
        top: -120px;
    }

    .info .svg-right {
        width: 400px;
        height: 500px;
        right: -150px;
    }

    .info-2 .svg-right {
        right: -20px;
        width: 250px;
        height: 250px;
        top: 100px;
    }
}

@media (max-width: 991px) {
    .info-left .logo {
        width: 150px;
        height: 45px;
        background-size: 150px auto;
    }

    .info .anim-dot {
        width: 135px;
        height: 135px;
    }

    .info {padding: 200px 0 50px;}
    .info .center {grid-gap: 30px;}
    .info-left h2 {font-size: 30px;}
    .info-left p {font-size: 13px;}
    .info-right ul br {display: none;}

    .info-2 {padding: 50px 0 50px 0;}

    .info .svg-right {
        width: 300px;
        height: 400px;
        right: -150px;
        top: -210px;
    }

    .info-2 .svg-right {
        right: -20px;
        width: 250px;
        height: 250px;
        top: 100px;
    }
}

@media (max-width: 767px) {
    .info-1 {padding-top: 145px !important;}
    .info-1 .center {max-width: 450px;}
    .info {padding: 180px 0 40px;}
    .info-left .logo {
        width: 150px;
        height: 45px;
        margin-bottom: 20px;
        background-size: 150px auto;
    }
    .info-left .image {
        max-width: 105px;
        position: absolute;
        top: 100%;
        right: -16px;
        margin-top: -85px;
    }
    .info .anim-dot {
        width: 100px;
        height: 90px;
        top: -75px;
        right: 0px;
    }
    .info .center {grid-template-columns: 1fr;}
    .info-left h2 {
        font-size: 35px;
        line-height: 1.2;
    }
    .info-left p {font-size: 19px;}
    .info-right {
        display: flex;
        flex-direction: column;
    } 
    .info-right ul li + li {margin-top: 10px;}
    .info-right ul li br {display: none;}
    .info-right ul li img {
        width: 14px;
        min-width: 14px;
        height: 11px;
        margin-right: 7px;
        top: 6px;
    }
    .info-right ul + .btn {margin-top: 35px;}
    .info-right ul br {display: block;}
    .info-1 .info-right ul li:nth-child(2) {margin-top: 7px;}

    .info-1 .btn {width: 100%;}

    .rating {justify-content: center;}
    .rating .stars svg {
        width: 20px;
        height: 20px;
    }
    .rating span {font-size: 18px;}

    .info-right ul + .btn + .rating {margin-top: 20px;}

    .info-2 .anim-dot {
        width: 170px;
        height: 170px;
        top: -119px;
        right: -30px;
    }

    .info-2 {padding: 60px 0 78px 0;}
    .info-2 .rating {justify-content: flex-start;}
    .info-2 .info-left h2 {font-size: 36px;}
    .info-2 .btn {
        width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .info-2 .info-right ul + .btn {margin-top: 40px;}

    .info-3 {padding: 45px 0 65px 0;}

    .info-2 .svg-right {
        right: -20px;
        width: 200px;
        height: 200px;
        top: inherit;
        bottom: -50px;
    }
}

@media (max-width: 413px) {
    .info-left h2 {font-size: 31px;}
    .info-left p {font-size: 16px;}
    .info-2 .info-left h2 {font-size: 31px;}
    .info-1 .info-right ul li:nth-child(2) {margin-top: 6px;}

    .rating .stars svg {
        width: 17px;
        height: 17px;
    }
    .rating span {font-size: 16px;}
}

@media (max-width: 385px) {
    .info-left .image {margin-top: -70px;}
}

@media (max-width: 380px) {
    .info-left .image {
        max-width: 95px;
        margin-top: -70px;
    }
}

@media (max-width: 380px) {
    .info-left .image {
        max-width: 90px;
    }
}

/* ------------------ PATIENTS ------------------ */
.patients {
    background: #fff;
    padding: 0 0 75px 0;
    position: relative;
    margin-top: -5px;
}
.patients .svg-right {
    position: absolute;
    top: -410px;
    right: 0;
}
.patients .subtitle {font-size: 18px;}

.patients .splide {
    position: relative;
    z-index: 10;
}
.patients .splide__pagination {display: none;}
.patients .wrap {
    position: relative;
}
.patients .head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 0 25px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
}
.patients .head h5 {
    font-weight: bold;
    font-size: 16px;
}
.patients .head h3 {
    font-size: 18px;
    font-weight: normal;
    margin-top: 5px;
    line-height: 1.1;
}
.patients .btn-play {
    width: 60px;
    min-width: 60px;
    height: 60px;
    background: #F3F3F3;
    position: relative;
}
.patients .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
}
.patients .btn-play:after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    background: rgba(0,0,0,.2);
    border-radius: 50%;
}
.patients .splide__slide:hover .btn-play:after {
    animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.patients .btn-play svg {
    fill: #00698B;
    position: relative;
    z-index: 2;
}
.patients .image {
    overflow: hidden;
    border-radius: 30px;
    border: 3px solid transparent;
    transition: all 0.3s;
}
.patients .image:hover {border-color: #61CBC8;}
.patients .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1800px) {
    .patients .head h3 {
        font-size: 14px;
        padding-right: 10px;
    }
    .patients .head h3 br {display: none;}
}

@media (max-width: 1600px) {
    .patients .svg-right {
        position: absolute;
        top: -500px;
        right: -80px;
        width: 550px;
    }
}

@media (max-width: 1500px) {
    .patients .subtitle {font-size: 14.5px;}
    .patients .head {padding: 15px 10px 0 15px;}
    .patients .head h5 {font-size: 14px;}
    .patients .head h3 {font-size: 14px;}
    .patients .btn-play {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
    .patients .btn-play svg {
        width: 20px;
        height: 23px;
    }
}

@media (max-width: 1450px) {
    .patients .head h3 {
        font-size: 13px;
        padding-right: 5px;
    }

    .patients .btn-play {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
    .patients .btn-play svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 991px) {
    .patients .svg-right {
        right: -200px;
    }
}

@media (max-width: 750px) {
    .patients {padding-bottom: 0;}
    .patients .svg-right {display: none;}
    .patients .splide__pagination {display: flex;}
    .patients .head {align-items: flex-start;}
    .patients .head h5 {font-size: 13px;}
    .patients .head h3 {font-size: 12px;}
    .patients .btn-play {
        width: 35px;
        min-width: 35px;
        height: 35px;
    }
    .patients .btn-play svg {
        width: 16px;
        height: 16px;
    }

    .patients .image img {min-height: 370px;}

    .patients .splide__slide .btn-play:after {animation: pulse-border 1500ms ease-out infinite;}
}

/* ------------------ SPLIDE ONE ------------------ */
.splide-one {
    padding-bottom: 100px;
    pointer-events: none;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}
.splide-one .image {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}
.splide-one .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.splide__pagination li {display: none;}

@media (max-width: 1500px) {
    .splide-one {padding-bottom: 70px;}
}

@media (max-width: 991px) {
    .splide-one {padding-bottom: 50px;}
}

@media (max-width: 767px) {
    .splide-one {padding-bottom: 55px;}
}

/* ------------------ NEXT ------------------ */
.next {
    height: calc(100vh - 38px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.next .svg-left {
    width: 574px;
    height: 445px;
    position: absolute;
    top: -5px;
    left: 0;
} 
.next-2 .svg-right,
.next-4 .svg-right {
    width: 643px;
    height: 709px;
    position: absolute;
    top: -20px;
    right: -150px;
}

.next-5 {
    background: rgba(9, 62, 82, 0.9);
    color: #fff;
}
.next-5 .icon {margin-bottom: 0 !important;}
.next-5 .icon svg {
    width: 63px;
    height: 63px;
}
.next-5 svg * {fill: #fff;}
.next-5 h3.title {
    margin: 30px 0 25px 0;
    line-height: 1.2;
}
.next-5 p.subtitle,
.next-6 p.subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-top: 0;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .next-5 h3.title {font-size: 25px;}
    .next-5 p,
    .next-6 p.subtitle {font-size: 17px;}

    .next-5 p.subtitle {font-size: 18px;}
}

.next .center {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.next.c-gray {background: #F0F7FA;}
.next .icon,
.next .ic-crown {
    display: inline-block;
    width: 50px;
    margin-bottom: 40px;
}

#next-5 {overflow: visible;}

@media (max-width: 650px) {
    #next-5 .center {margin-top: -150px;}
}

.steps {
    display: inline-flex;
    margin-bottom: 40px;
}
.steps li {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #096A8C;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 15px;
    position: relative;
}
.steps li.active {
    background: #096A8C;
    color: #fff;
}
.steps li span {
    position: relative;
    top: -1px;
}
.steps li + li {margin-left: 25px;}
.steps li:after {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background: #096A8C;
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -0.5px;
}
.steps li:last-child:after {display: none;}

.next h2.title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
}

.next small {
    display: inline-block;
    font-size: 15px;
    margin-bottom: 30px;
}

.next .links {
    display: flex;
    flex-direction: column;
}
.next .links a {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 52px;
    background: #096A8C;
    border-radius: 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    padding: 0 55px;
    outline: none;
    user-select: none;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.next .links a:active, 
.next .links a:focus {
    outline: none;
    user-select: none;
}
.next .links a span {
    position: relative;
    z-index: 2;
}
.next .links a + a {margin-top: 9px;}
.next .links a:after {
    content: '';
    display: block;
    background: #61cbc9;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    z-index: 1;
    transition: all 0.3s;
}
.next .links a:hover:after,
.next .links a.active:after {width: 100%;}
.next .links a small {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.next-1 .anim-dot {
    width: 266px;
    height: 272px;
    position: absolute;
    top: -258px;
    left: -100px;
}

.next-2 .anim-dot {
    width: 266px;
    height: 272px;
    position: absolute;
    top: -170px;
    right: -100px;
}
.next-2 .steps {margin-bottom: 40px;}
.next-2 h2.title {margin-bottom: 35px;}

.next-3 .anim-dot {
    width: 266px;
    height: 272px;
    position: absolute;
    top: -307px;
    left: 0;
}

.next-4 .anim-dot {
    width: 266px;
    height: 272px;
    position: absolute;
    top: -259px;
    right: 0;
}

.next .custom-select {
    border: 1px solid #096A8C;
    width: 280px;
    height: 48px;
    border-radius: 40px;
    background: #fff url(../img/ic-arr.svg) no-repeat right 25px center;
    font-size: 18px;
    cursor: pointer;
    padding: 0 25px;
    outline: none;
    user-select: none;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.next .custom-select .selected {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.next .custom-select .drop {
    background: #fff;
    color: #093e52;
    margin-top: 10px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border: 1px solid #096A8C;
}
.next .custom-select .drop .inner::scrollbar {width: 5px;}
.next .custom-select .drop .inner::scrollbar-track {width: 5px;}
.next .custom-select .drop .inner::scrollbar-thumb {
    width: 5px;
    background: #000;
}
.next .custom-select .drop .inner::-webkit-scrollbar {width: 5px;}
.next .custom-select .drop .inner::-webkit-scrollbar-track {width: 5px;}
.next .custom-select .drop .inner::-webkit-scrollbar-thumb {
    width: 5px;
    background: #000;
}
.next .custom-select .drop .option {
    padding: 5px 0;
}
.next .custom-select .drop .option:hover {
    background: var(--color);
    color: #fff;
}

.next.finish {overflow: visible;}
.next.finish .icon {margin-bottom: 15px;}
.next.finish h2.title {
    margin-bottom: 15px;
    font-size: 48px;
}
.next.finish .subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 40px;
}
.next.finish small {
    font-size: 28px;
    font-weight: normal;
}

@media (max-width: 1500px) {
    .next h2.title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .next .links a {
        height: 45px;
        font-size: 15px;
        padding: 0 25px;
    }

    .next .svg-left {
        width: 400px;
        height: 300px;
    }
    .next-2 .svg-right, .next-4 .svg-right {
        width: 500px;
        height: 570px;
    }

    .steps {margin-bottom: 30px;}
    .steps li {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    .steps li + li {margin-left: 20px;}
    .steps li:after {width: 21px;}

    .next-1 .anim-dot {
        top: -126px;
        left: -200px;
    }

    .next-2 .anim-dot {
        top: -70px;
        right: -200px;
    }

    .next-3 .anim-dot {
        top: -205px;
        left: -200px;
    }

    .next-4 .anim-dot {
        top: -158px;
        right: -200px;
    }

    .next-2 .steps {margin-bottom: 30px;}
    .next-2 h2.title {margin-bottom: 30px;}
}

@media (max-width: 1300px) {
    .next .center {position: static;}

    .next-1 .anim-dot {
        width: 200px;
        height: 200px;
        left: 0;
        top: -44px;
    }

    .next-2 .anim-dot {
        width: 200px;
        height: 200px;
        top: -93px;
        right: 0;
    }

    .next-3 .anim-dot {
        width: 200px;
        height: 200px;
        left: 0;
        top: -60px;
    }

    .next-4 .anim-dot {
        width: 200px;
        height: 200px;
        top: -60px;
        right: 0;
    }
}

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

    .next-1 .anim-dot,
    .next-2 .anim-dot,
    .next-3 .anim-dot,
    .next-4 .anim-dot {
        width: 200px;
        height: 200px;
    }
    .next-1 .anim-dot {
        top: -44px;
        left: -20px;
    }
}

@media (max-width: 767px) {
    .next-1 .anim-dot, 
    .next-2 .anim-dot, 
    .next-3 .anim-dot, 
    .next-4 .anim-dot {
        width: 170px;
        height: 170px;
    }

    .next .svg-left {
        width: 300px;
        height: 200px;
        left: -100px;
    }

    .next-2 .svg-right, .next-4 .svg-right {
        width: 400px;
        height: 370px;
    }

    .next {height: calc(100vh - 56px);}
    .next h2.title {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .next .icon,
    .next .ic-crown {
        margin-bottom: 20px;
    }

    .steps {margin-bottom: 20px;}
    .steps li {
        width: 30px;
        height: 30px;
    }
    .steps li + li {margin-left: 20px;}
    .steps li:after {width: 21px;}

    .next .links {
        width: 100%;
        padding: 0 20px;
    }
    .next .links a {height: 48px;}
    .next .links a + a {margin-top: 17px;}

    .next-2 .anim-dot {top: -75px;}

    .next-3 .anim-dot {
        right: 0;
        top: -75px;
    }

    .next-4 .anim-dot {right: 0;}

    .next.finish h2.title {font-size: 30px;}
    .next.finish .subtitle {font-size: 23px;}
    .next.finish .subtitle br {display: none;}
    .next.finish small {font-size: 20px;}
}

@media (max-width: 413px) {
    .next h2.title {font-size: 24px;}
    .next .links a {padding: 0 15px;}
}

/* ------------------ BMI CALCULATOR ------------------ */
.next.next-3 {
    padding: 50px 0;
}

.bmi-calculator {
    background: #fff;
    padding: 13px 25px 20px 25px;
    border-radius: 16px;
    max-width: 465px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0, 62, 82, 0.15), 0 8px 8px rgba(0, 62, 82, 0.05), 0 1px 10px rgba(0, 62, 82, 0.03);
}
.bmi-calculator h5 {
    font-weight: 500;
    font-size: 20px;
}

.range {padding: 70px 0 40px;}
.range .track {
    background: #d7dcde;
    height: 5px;
    position: relative;
}
.range .line span {
    position: absolute;
    top: -3px;
    left: 0;
    bottom: -5px;
    width: 2px;
    background: #d7dcde;
}
.range .line span:nth-child(1) {left: calc(12.5%);}
.range .line span:nth-child(2) {left: calc(12.5% * 2);}
.range .line span:nth-child(3) {left: calc(12.5% * 3);}
.range .line span:nth-child(4) {left: calc(12.5% * 4);}
.range .line span:nth-child(5) {left: calc(12.5% * 5);}
.range .line span:nth-child(6) {left: calc(12.5% * 6);}
.range .line span:nth-child(7) {left: calc(12.5% * 7);}

.range .thumb {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    width: 45px;
    height: 30px;
    background: #378fab;
    border-radius: 10px;
    box-shadow: 0 1px 10px rgba(0,0,0,.04), 0 8px 10px rgba(0,0,0,.1), 0 27px 27px rgba(0,0,0,.1);
    transform: translateY(-50%);
    border-bottom: 1.5px solid #01698b;
    cursor: pointer;
}
.range .thumb:after {
    content: '';
    display: block;
    border: solid #fff;
    border-width: 1px 1px 0 0;
    padding: 3px;
    transform-origin: center;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 16px;
}
.range .thumb:before {
    content: '';
    display: block;
    border: solid #fff;
    border-width: 1px 0 0 1px;
    padding: 3px;
    transform-origin: center;
    transform: rotate(-45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 16px;
}

.range .info {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    background: #C6C6C6;
    border-radius: 7px;
    width: 65px;
    height: 35px;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3px;
    padding: 0;
}
.range .info:after {
    content: '';
    border-left: 7px solid transparent;
    border-top: 7px solid #C6C6C6;
    border-right: 7px solid transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.bmi-calculator .group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.bmi-calculator .label {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: left;
}
.bmi-calculator .select {position: relative;}
.bmi-calculator .select:after {
    content: '';
    display: block;
    width: 8px;
    height: 5px;
    background: url(../img/ic-arr.svg) no-repeat;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}
.bmi-calculator select,
.bmi-calculator input {
    width: 100%;
    height: 45px;
    border-radius: 4px;
    border: 1px solid #c4c4c4;
    padding: 13px 10px;
    color: #707070;
    font-size: 16px;
    font-weight: 500;
}

.bmi-calculator button[type="submit"] {
    width: 230px;
    height: 50px;
    border-radius: 16px;
    background: #00698B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    font-weight: bold;
    border: none;
    margin-top: 35px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.bmi-calculator button[type="submit"] span,
.bmi-calculator button[type="submit"] svg {
    position: relative;
    z-index: 2;
}
.bmi-calculator button[type="submit"]:after {
    content: '';
    display: block;
    background: #61cbc9;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    z-index: 1;
    transition: all 0.3s;
}
.bmi-calculator button[type="submit"]:hover:after {width: 100%;}
.bmi-calculator button[type="submit"] svg {margin-left: 10px;}
.bmi-calculator button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.bmi-calculator button[disabled]:after {display: none;}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    position: relative;
    z-index: 10;
    background: red;
}

.bmi-result {width: 100%;}

.bmi-scale {
    margin-top: 40px;
    transform: scale(0);
    transition: all 0.5s;
    display: none;
}
.bmi-scale .progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 620px;
    margin: 0 auto;
}
.bmi-scale .progress li {
    position: relative;
    list-style: none;
    color: #E52C25;
}
.bmi-scale .progress li div {
    height: 21px;
    width: 100%;
    background: #E52C25;
    position: relative;
}
.bmi-scale .progress li div:after {
    content: '';
    border-left: 10px solid transparent;
    border-top: 10px solid #096A8C;
    border-right: 10px solid transparent;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    opacity: 0;
}
.bmi-scale .progress li.active div:after {opacity: 1;}
.bmi-scale .progress li:first-child div {border-radius: 5px 0 0 5px;}
.bmi-scale .progress li:nth-child(2) div {background: #EF9762;}
.bmi-scale .progress li:nth-child(3) div {background: #6AD6A2;}
.bmi-scale .progress li:nth-child(4) div {background: #51B37F;}
.bmi-scale .progress li:nth-child(5) div {
    background: #45996E;
    border-radius: 0 5px 5px 0;
}
.bmi-scale .progress li:nth-child(2) {color: #EF9762;}
.bmi-scale .progress li:nth-child(3) {color: #6AD6A2;}
.bmi-scale .progress li:nth-child(4) {color: #51B37F;}
.bmi-scale .progress li:nth-child(5) {color: #45996E;}
.bmi-scale .progress li span,
.bmi-scale .progress li p {
    text-align: center;
    white-space: nowrap;
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}
.bmi-scale .progress li p {
    font-weight: 600;
    margin-top: 35px;
}

.bmi-scale .text {
    margin-top: 85px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #0A2240;
}

.bmi-scale .btn {
    font-weight: bold;
    max-width: 230px;
}
.bmi-scale .btn svg {
    fill: #fff;
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.bmi-result.active .bmi-scale {
    display: block;
    animation: scale 0.5s forwards;
}
.bmi-result.active .bmi-calculator {display: none;}

@keyframes scale {
    100% {transform: scale(1);}
}

@media (max-width: 767px) {
    .bmi-calculator {
        padding: 25px 15px 35px 15px;
    }
    .bmi-calculator h5 {font-size: 16px;}
    .range {padding: 70px 0 30px;}
    .bmi-calculator .label {
        font-size: 17px;
        margin-bottom: 8px;
    }
    .bmi-calculator select, .bmi-calculator input {
        height: 40px;
        font-size: 13px;
    }
    .bmi-calculator .group {gap: 25px;}

    .bmi-scale .progress li div {height: 27px;}
    .bmi-scale .progress li:first-child div {border-radius: 3px 0 0 3px;}
    .bmi-scale .progress li:nth-child(5) div {border-radius: 0 3px 3px 0;}
    .bmi-scale .progress li span, .bmi-scale .progress li p {font-size: 10px;}
    .bmi-scale .progress li p {margin-top: 27px;}
    .bmi-scale .text {margin-top: 70px;}
    .bmi-scale .text br {display: none;}
}

@media (max-width: 413px) {
    .bmi-scale .progress li span, .bmi-scale .progress li p {
        font-size: 9px;
    }
    .bmi-calculator h5 {font-size: 15px;}
}

/* ------------------ MEDICATION SLIDER ------------------ */
.medication-slider {
    background: #F0F7FA;
    padding-top:50px;
}

.medication-slider + .section-btn {background: #F0F7FA;}
.medication-slider .splide__slide {padding: 0 12.5px;}
.medication-slider .item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
}
.medication-slider .js-play {
    top: initial;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background: #378fab;
}
.medication-slider .js-play:after {
    border-top: 9px solid transparent;
    border-left: 14px solid #fff;
    border-bottom: 9px solid transparent;
    margin-right: -4px;
}
.medication-slider .js-stop {display: none;}
.medication-slider .item > img {
    display: block;
    width: 100%;
    height: 100%;
}
.medication-slider .item.c-white {color: #fff;}
.medication-slider .item.c-black {color: #005B79;}
.medication-slider .head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px;
}
.medication-slider .head strong {
    display: block;
    font-size: 16px;
}
.medication-slider .item.c-black strong {color: #00698B;}
.medication-slider .head p.tx-small {
    font-size: 19px;
    line-height: 1.3;
    margin-top: 15px;
}
.medication-slider .head p {font-size: 22px;}
.medication-slider .head span {
    display: block;
    font-size: 13px;
    margin-top: 10px;
}
.medication-slider .foot {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 20px;
    text-align: center;
    font-size: 12px;
}
.medication-slider .foot a {
    display: inline-block;
    color: #096A8C;
    text-decoration: underline;
}
.medication-slider .foot a:hover {text-decoration: none;}
.medication-slider .splide__pagination {display: none;}

.splide__pagination {
    position: static;
    margin-top: 40px;
    display: flex;
    align-items: center;
}
.splide__pagination li {
    margin: 0 8px;
}
.splide__pagination button {
    width: 15px;
    height: 15px;
    background: rgba(100, 204, 201, 0.3);
    opacity: 1;
    margin: 0;
    display: block;
}
.splide__pagination button:after {
    content: '';
    display: block;
    border-radius: 50%;
    background: #64CCC9;
    transition: all 0.3s;
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    opacity: 0;
}
.splide__pagination button.is-active {
    background: rgba(100, 204, 201, 0.3);
    transform: none;
}
.splide__pagination button.is-active:after {
    opacity: 1;
}

@media (max-width: 1800px) {
    .medication-slider .foot {font-size: 11px;}
}

@media (max-width: 1600px) {
    .medication-slider .splide__slide {padding: 0 8px;}
    .medication-slider .item {border-radius: 20px;}
    .medication-slider .js-play {zoom: 0.8;}
    .medication-slider .head {padding: 20px;}
    .medication-slider .head strong {font-size: 14px;}
    .medication-slider .head p.tx-small {
        font-size: 13px;
        margin-top: 10px;
    }
    .medication-slider .head span {
        font-size: 9px;
        margin-top: 7px;
    }
    .medication-slider .head p {font-size: 16px;}
    .medication-slider .foot {
        left: 10px;
        right: 10px;
        bottom: 10px;
        font-size: 10px;
    }
}

@media (max-width: 1200px) {
    .medication-slider .head {padding: 15px;}
    .medication-slider .head strong {font-size: 12px;}
    .medication-slider .head p.tx-small {
        font-size: 12px;
        margin-top: 5px;
    }
    .medication-slider .head p {font-size: 14px;}
}

@media (max-width: 768px) {
    .medication-slider .foot {bottom: 8px;}
}

@media (max-width: 767px) {
    .medication-slider .splide__slide {padding: 0 13px;}
    .medication-slider .splide__pagination {display: none;}
}

@media (max-width: 500px) {
    .medication-slider .head strong {font-size: 14px;}
    .medication-slider .head p {font-size: 19px;}
    .medication-slider .head p.tx-small {font-size: 16px;}
    .medication-slider .head span.lifemd_AP {font-size: 11px;}
}

/* ------------------ SPLIDE TWO ------------------ */
.splide-two {
    padding-bottom: 45px;
    pointer-events: none;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}
.splide-two .image {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.splide-two .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .slide-two .image {border-radius: 15px;}
}

/* ------------------ WORKS ------------------ */
.mt-50 {margin-top: 50px;}
.works {
    padding: 30px 0 50px 0;
    position: relative;
    background: #f0f7fa;
}
.works .svg-right {
    width: 423px;
    height: 456px;
    position: absolute;
    top: -30px;
    right: 0;
    z-index: -1;
}
.works .anim-dot {
    width: 235px;
    height: 223px;
    position: absolute;
    top: -110px;
    right: 160px;
}
.works h2.title {
    font-weight: 600;
    font-size: 55px;
    margin-top: 20px;
}
.works h2.title span {color: #61cbc9;}

.works .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 39px;
    margin-top: 35px;
}
.works-item {
    text-align: center;
    position: relative;
}
.works-item .product {
    position: absolute;
    top: 70px;
    right: -125px;
    width: 220px;
    z-index: 2;
}
.works-item .image {
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}
.works-item .image video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.works-item .image img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
}
.works-item h3 {
    margin-top: 30px;
    font-size: 25px;
    font-weight: 600;
}
.works-item h3 span {
    background: linear-gradient(45deg, #61CBCB 0%, #1F89A0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 20px;
}
.works-item p {
    font-size: 16px;
    margin-top: 15px;
}

@media (max-width: 1500px) {
    .works {padding: 30px 0 50px 0;}
    .works .anim-dot {right: 10px;}
    .works h2.title {font-size: 40px;}
    .works .row {
        grid-gap: 30px;
        margin-top: 30px;
    }
    .works-item .image {min-height: 270px;}
    .works-item h3 {
        margin-top: 20px;
        font-size: 20px;
    }
    .works-item p {
        font-size: 13px;
        margin-top: 8px;
    }
    .works-item .product {
        top: 40px;
        right: -85px;
        width: 150px;
        z-index: 2;
    }

    .works .svg-right {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 1300px) {
    .works .center {position: static;}
    .works .anim-dot {
        width: 170px;
        height: 170px;
        top: -60px;
        right: 0;
    }
    .works-item p {font-size: 14px;}
}

@media (max-width: 991px) {
    .works .anim-dot {
        width: 170px;
        height: 170px;
        top: -30px;
    }
    .works {padding: 30px 0 50px 0;}
    .works h2.title {font-size: 35px;}
    .works .row {grid-gap: 20px;}
    .works-item .image {min-height: 220px;}
    .works-item p br {display: none;}
    .works-item .product {
        top: 40px;
        right: -35px;
        width: 120px;
        z-index: 2;
    }
}

@media (max-width: 767px) {
    .works {padding: 30px 0 58px 0;}
    .works .anim-dot {display: none;}
    .works .row {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }
    .works-item .image {
        min-height: 210px;
        width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .works-item p {
        font-size: 15px;
        margin-top: 11px;
    }
    .works-item p br {display: block;}
    .works-item .product {
        top: 30px;
        right: inherit;
        left: 50%;
        width: 120px;
        z-index: 2;
        margin-left: 150px;
        transform: translateX(-50%);
    }

    .works .svg-right {
        width: 250px;
        height: 250px;
        right: -150px;
    }
}

/* ------------------ FAQ ------------------ */
.faq {
    padding: 50px 0 60px;
    position: relative;
}
.faq .svg-right {
    width: 423px;
    height: 456px;
    position: absolute;
    top: -30px;
    right: 0;
    z-index: -1;
}
.faq .heading {margin-bottom: 40px;}
.faq .heading p {
    font-size: 24px;
    font-weight: 500;
    color: #0F5C78;
}

.accordeon {list-style: none;}
.btn-accordeon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px;
    font-size: 24px;
    color: #0F5C78;
    cursor: pointer;
}
.btn-accordeon:hover {color: #4d4d4d;}
.plus {
    width: 16px;
    min-width: 16px;
    height: 16px;
    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: 10px;
    border: 1px solid #E3E3E3;
    background: #fff;
}
.item-accordeon + .item-accordeon {margin-top: 23px;}

.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;}
.inner-accordeon ul {
    list-style: none;
    font-size: 18px;
    color: #0F5C78;
}
.inner-accordeon p {
    font-size: 18px;
    color: #0F5C78;
}
.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: #0F5C78;
}
.content-accordeon {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
} 

.faq .foot {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
}
.faq .foot a {
    color: #093E52;
    text-decoration: underline;
}
.faq .foot a:hover {text-decoration: none;}

@media (max-width: 1300px) {
    .faq .svg-right {
        width: 250px;
        height: 320px;
    }

    .faq {padding: 50px 0 50px;}
    .faq .heading p {font-size: 18px;}

    .btn-accordeon {
        padding: 18px;
        font-size: 20px;
    }
    .item-accordeon + .item-accordeon {margin-top: 15px;}
    .inner-accordeon ul {font-size: 16px;}
    .inner-accordeon ul li + li {margin-top: 20px;}

    .faq .foot {font-size: 15px;}
}

@media (max-width: 767px) {
    .faq {padding: 40px 0 50px;}
    .faq .svg-right {display: none;}
    .faq .heading {margin-bottom: 30px;}
    .faq .heading svg {
        width: 35px;
        height: 35px;
        margin-bottom: 5px;
    }
    .faq .heading p {font-size: 16px;}

    .btn-accordeon {
        padding: 15px 18px;
        font-size: 15px;
    }
    .item-accordeon {border-radius: 7px;}
    .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;
    }

    .faq .foot {
        margin-top: 30px;
        font-size: 12px;
    }
}

@media (max-width: 413px) {
    .faq .heading p {font-size: 14px;}
}

/* ------------------ EXPERIENCE ------------------ */
.experience {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}
.experience .svg-left {
    width: 427px;
    height: 454px;
    position: absolute;
    top: -40px;
    right: -105px;
    z-index: 2;
    transform-origin: center;
    transform: rotate(-7deg);
}
.experience .anim-dot {
    width: 350px;
    height: 350px;
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 2;
}
.experience .center {
    display: flex;
}
.experience:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: #096A8C;
    background-size: cover;
}

.experience-background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: url(../img/bg-home.jpg
	) no-repeat right center;
    background-size: cover;
} 

.experience-content {
    width: 50%;
    margin-left: auto;
    padding: 150px 15px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    color: #fff;
}
.experience-content .stars svg {fill: #fff;}
.experience-content h2.title {
    color: #fff;
    font-size: 40px;
}
.experience-content h2.title span {color: #61cbc9;}
.experience-content [data-src="crown"] {margin-bottom: 25px;}
.experience-content .rating {margin: 19px 0 35px;}
.experience-content .text {
    font-size: 24px;
    margin-bottom: 35px;
}
.experience-content .btn {
    width: 330px;
    height: 51px;
    background: #61cbc8;
}
.experience-content .btn:after {background: #fff;}
.experience-content .btn:hover {color: #076a8c;}
.experience-content .btn-box p {font-size: 14px;}

@media (max-width: 1800px) {
    .experience .anim-dot {
        width: 200px;
        height: 200px;
        top: 15px;
        right: 10px;
    }
}

@media (max-width: 1500px) {
    .experience-content {padding: 80px 15px 80px;}
    .experience-content .text {font-size: 18px;}
    .experience-content h2.title {font-size: 30px;}
    .experience .svg-left {
        width: 300px;
        height: 350px;
    }
}

@media (max-width: 1300px) {
    .experience .anim-dot {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 991px) {
    .experience:after {width: 100%;}
    .experience .center {flex-direction: column;}
    .experience .anim-dot {
        top: -35px;
        width: 170px;
        height: 170px;
    }

    .experience-background {
        position: relative;
        width: initial;
        height: 700px;
        z-index: 2;
        margin-left: -15px;
        margin-right: -15px;
        order: 1;
    }

    .experience-content {width: 100%;}
}

@media (max-width: 767px) {
    .experience-content [data-src="crown"] {
        width: 100px;
        height: 75px;
    }

    .experience .anim-dot {
        width: 140px;
        height: 140px;
        right: 0;
        top: -43px;
    }
    .experience-content .rating {margin: 16px 0 24px;}
    .experience-content {padding: 40px 15px 35px;}
    .experience-content h2.title {
        font-size: 27px;
    }

    .experience-background {height: 430px;}

    .experience .svg-left {
        width: 200px;
        height: 250px;
    }
	
	.experience-background {

		background: url(../img/bg-homemob.jpg
		) no-repeat left center;
		background-size: cover;
	} 
}

@media (max-width: 413px) {
    .experience-content .text {font-size: 15px;}
    .experience-content h2.title {font-size: 23px;}
}

/* ------------------ FOOTER ------------------ */
.footer {
    background: #093e52;
    position: relative;
    z-index: 3
}
.footer-row {
    display: flex;
    margin-right: -15px;
    margin-left: -15px
}
.footer-logo {
    display: inline-block;
    width: 146px;
    height: 41px;
    background: url(../img/logo-inverse.webp) no-repeat;
    margin-bottom: 50px
}
.social a {
    width: 50px;
    height: 50px;
    background-color: #1a4c5e;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: inline-block;
    transition: all .3s;
    margin:1px;
}
.social a:hover {
    background-color: #66d4cf
}
.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)
}
.social a.ic-in {
    background-image: url(../img/insta.png)
}
.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) 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;
}
.footer-copy .center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 15px;
    color: #396273;
    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;
    color: #5a8397;
    font-size: 14px;
    border-top: 1px solid #12495e;
}
.footer-bottom .center {
    display: flex;
    align-items: center;
}
.footer-bottom .text {width: 100%;}
.footer-bottom .image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
}
.footer-bottom .image img:last-child {min-width: 100px;}
.footer-bottom a {color: #5a8397;}

@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 .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 .center {
        font-size: 15px;
        flex-direction: column
    }

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

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

/* ------------------ POPUP ------------------ */
.popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9991;
    background: rgba(0,0,0,.8);
}

.popup {
    position: absolute;
    left: 50%;
    z-index: 9992;
    transform: translateX(-50%);
}

.popup-overlay,
.popup {
    display: none;
    opacity: 0;
}

.popup-overlay.active,
.popup.active {
    display: block;
    animation: opacity 0.5s linear forwards;
}

.popup .head {
    background: var(--color);
    padding: 30px 30px 30px 30px;
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    min-height: 65px;
    margin-right: -2px;
    margin-left: -2px;
}
.popup .head h4 {
    font-size: 44px;
    line-height: 1.2;
}
.popup .head h6 {font-size: 15px;}

/* POPUP INFO */
.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 50%;
    transition: all .3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
}
.popup-close svg {
    fill: #fff;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.popup-important {
    background: #fff;
    max-width: 60%;
    width: 100%;
}
.popup-important .body {
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px;
    font-size: 17px;
    padding-bottom: 150px;
}
.popup-important h5 {
    font-size: 25px;
    line-height: 30px;
    padding: 20px 0;
    margin-top: 20px;
}
.popup-important h5 {
    font-size: 25px;
    line-height: 30px;
    padding: 20px 0;
    margin-top: 20px;
}
.popup-important ul {
    margin-top: 20px;
    margin-left: 25px;
    list-style: none;
}
.popup-important ul li {
    position: relative;
    padding-left: 25px;
}
.popup-important ul li + li {margin-top: 10px;}
.popup-important ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #151a29;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 10px;
}
.popup-important p u {text-decoration: underline;}
.popup-important p a,
.popup-important ul a {color: var(--akcent);}
.popup-important p a:hover,
.popup-important ul a:hover {text-decoration: underline;}
.popup-important p {margin-top: 20px;}

@keyframes opacity {100% {opacity: 1;}}

@media (max-width: 767px) {
    .popup-important {
        max-width: inherit;
        width: inherit;
        top: 30px !important;
        position: fixed;
        bottom: 30px;
        left: 30px;
        right: 30px;
        transform: none;
    }
    .popup .head {
        padding: 10px 30px 15px 30px;
        font-size: 19px;
        min-height: auto;
        line-height: inherit;
    }
    .popup .head h4 {font-size: 24px;}
    .popup .head h6 {
        font-size: 13px;
        margin-top: 15px;
    }

    .popup-important .body {font-size: 15px;}
    .popup-important ul {margin-left: 0;}
    .popup-important ul li {padding-left: 10px;}
    .popup-important ul li:before {
        width: 4px;
        height: 4px;
        margin-top: 9px;
    }
    .popup-important .body h4,
    .popup-important .body h1 {font-size: 20px;}
}

.popup-video .body {
    width: 920px;
    height: 530px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.popup-video .body video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.popup-video > .popup-close {
    right: 10px;
    top: 10px;
}
.popup-video .inner .popup-close {
    width: inherit;
    height: inherit;    
    background: none;
    position: static;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: underline;
    display: inline-block;
    margin-top: 16px;
}
.popup-video .popup-close:hover {
    background: #61CBC8;
}
.popup-video .popup-close svg {
    width: 14px;
    height: 14px;
}
.popup-video .inner .popup-close:hover {
    text-decoration: none;
    background: none !important;
}
.popup-video .tx-c {
    margin-top: 18px;
}
.popup-video .btn {
    height: 48px;
    width: 300px;
    font-weight: bold;
    cursor: pointer;
}
.popup-video .btn svg {
    position: relative;
    z-index: 3;
    margin-right: 6px;
}

@media (max-width: 1450px) {
    .popup-video .body {
        width: 700px;
        height: 400px;
    }
}

@media (max-width: 750px) {
    .popup-video .body {
        width: 350px;
        height: 200px;
    }

    .popup-close {
        width: 30px;
        height: 30px;
    }
    .popup-close svg {
        width: 12px;
        height: 12px;
    }
}

.popup-result {
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
}
.popup-result .next {height: 100vh;} 

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

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

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

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


div.info-right > div > strong {
    font-weight: bold;
    display: block;
    margin:10px auto;
    font-size: 18px;
    position:relative;
    text-align:center;
}
div.info-right > div > strong img {
    width:29px;
    position:relative;
    top:6px;
    left:-1px;
    margin-right:4px;
}

div.info-right > div > strong span {
    font-weight:normal;
}

@media(max-width:400px) {
    div.info-right > div > strong {
        font-size: 5vw;
    }
    div.info-right > div > strong img {
        width:7.5vw;
    }
}
