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

body, html, .wrapper {
    height: 100%;
    overflow: hidden;
}

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

.d-none {display: none;}

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

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

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

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

/* ------------------ 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);}
.btn svg {
    width: 7px;
    height: 11px;
    top: 1px;
}

@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);
    transition: all 0.3s;
    opacity: 0;
}
.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;
}

.btn-fix {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    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: flex;
}
.btn-fix a {
    background: #0F5C78;
    border-radius: 13px;
    color: #fff;
    padding: 5px 15px;
    font-size: 18px;
    text-align: center;
    width: 100%;
}
.btn-fix a > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.btn-fix a > div svg {
    width: 7px;
    height: 10px;
    fill: #fff;
    position: relative;
    top: 3px;
}
.btn-fix a p {font-size: 15.5px;}

@media (max-width: 500px) {
    .btn-fix {
        opacity: 1;
        transform: translateY(100%);
        transition: all 0.3s;
    }
}

/* ------------------ HEADER ------------------ */
#header {
    background: #E2F2F3;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 991;
}
.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;}

/* ------------------ HOME ------------------ */
.home {
    padding: 70px 0;
    height: 100%;
    position: relative;
    background: #cad1e2;
}
.home .center {
    position: relative;
    z-index: 2;
    text-align: center;
}
.logo {
    width: 150px;
    height: 45px;
    display: inline-block;
    vertical-align: middle;
    background: url(../img/logo.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 2;
}
.home .bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transform: scale(1.1);
}
.home .bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
}

.home .title {
    font-size: 70px;
    line-height: 1.2;
    transition: all 1s 1s;
    padding-top: 50px;
}
.quize-show .home .title {
    transform: translateY(-200%);
}

#cannellamedia {display: none !important;}

@media (max-width: 1600px) {
    .home {padding: 50px 0;}
    .home .title {font-size: 50px;}
    .logo {zoom: 0.8;}
}

@media (max-width: 991px) {
    .logo {zoom: 0.6;}
}

@media (max-width: 767px) {
    .logo {
        position: static;
        margin-bottom: 20px;
        transition: all 1s 0.5s;
    }

    .quize-show .home .logo {
        transform: translateY(-300%);
    }

    .home {padding: 80px 0;}
    .home .title {
        font-size: 40px;
        padding-top: 0;
        color: #fff;
    }
}

@media (max-width: 500px) {
    .home {padding: 67px 0;}
    .home .logo {
        background: url(../img/logo-white.svg) no-repeat center;
        background-size: contain;
        margin-bottom: 30px;
        zoom: 1;
    }
    .home .title {
        font-size: 8vw;
        text-align: left;
    }
    .quize-show .home .logo {transform: none;}
}

/* ------------------ QUIZ ------------------ */
#quize {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -100%;
    z-index: 15;
    transition: all 1s 0.5s;
    overflow: hidden;
}
#quize .track {
    height: 100%;
    width: 100%;
    transition: transform 1s;
}

.btn-back {
    position: fixed;
    top: 50px;
    left: 15px;
    z-index: 90;
    background: none;
    border: none;
    transform-origin: center;
    transform: rotate(-180deg);
    cursor: pointer;
    transition: all 0.5s 0.5s;
}
.btn-back.hide {
    opacity: 0;
    visibility: hidden;
}
.btn-back svg {
    width: 20px;
    height: 20px;
    fill: #096A8C;
}

.progress {
    position: absolute;
    top: 55px;
    right: 15px;
    z-index: 90;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: opacity 0.5s 0.5s;
    opacity: 0;
    animation: opacity 0.5s 2s linear forwards;
}

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

.progress.hide {
    opacity: 0;
    visibility: hidden;
}
.progress span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: bold;
    margin-top: -1px;
    margin-left: -1px;
}
.full-circle {
    --color-border-subtle-2: #ccc;
    stroke: var(--color-border-subtle-2);
    stroke-width: 3;
    fill: transparent;
}

.progress-bar {
    --color-text-accent: #17d2cb;
    stroke: var(--color-text-accent);
    stroke-width: 3;
    fill: transparent;
    stroke-dasharray: 103.87; /* Довжина кола: 2 * π * r (r = 16.5) */
    stroke-dashoffset: 103.87; /* Початково приховано */
    transition: stroke-dashoffset 0.3s ease-in-out;
}

.quize-show #quize {bottom: 0;}

.next {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 30px 30px 0 0;
    padding: 50px 30px 50px 30px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}
.next:first-child {
    width: 800px;
    height: auto;
    bottom: 0;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    transition: 
        height 0.3s linear, 
        width 0.3s linear, 
        bottom 0.3s linear, 
        left 1s 1s linear,
        transform 1s 1s linear;
}
.quize-full .next {
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0;
    transform: none;
    left: 0;
    opacity: 1;
    visibility: visible;
}

.next.result {
    transform: translateY(100%);
}

.next .icon {
    display: inline-block;
    width: 50px;
    min-width: 50px;
    height: 50px;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px auto;
}
.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;
    transition: all 1s;
}
.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 .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 .link {
    margin-top: 20px;
    font-size: 13px;
    color: #076a8c;
    position: relative;
}
.next .link:after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #076a8c;
    transition: all 0.3s;
}
.next .link:hover:after {width: 0;}

.result {
    padding: 0 !important;
    overflow: hidden;
    opacity: 0;
    text-align: left;
    display: block;
    z-index: 9;
}
.result .inner {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    position: relative;
}
.result .inner > .center {
    padding-top: 300px;
    position: relative;
    z-index: 2;
}
.result .inner > .center .logo {
    top: 80px;
    position: absolute;
}
.result .inner .bg-inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right -400px;
    transform: scale(1.5);
    transition: all 0.5s 1s;
}

@media (max-width: 1600px) {
    .steps {
        margin: 0 auto 25px auto;
        zoom: 0.9;
    }  

    .next {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .next:first-child {width: 600px;}
    .next .icon {
        width: 45px;
        min-width: 45px;
        height: 45px;
        margin-bottom: 25px;
    }
    .next h2.title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .next .links a {
        height: 45px;
        font-size: 14px;
        padding: 0 35px;
    }
}

@media (max-width: 1500px) {
    .result .inner .bg-inner {object-position: right -300px;}
}

@media (max-width: 991px) {
    .next:first-child {width: 550px;}
}

@media (max-width: 767px) {
    .steps {
        margin: 0 auto 25px auto;
        zoom: 0.8;
    }

    .next .icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
        margin-bottom: 25px;
    }
    .next:first-child {
        width: 450px;
        padding: 30px 15px 30px 15px;
    }
    .next h2.title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .result {padding: 0;}

    .btn-back {top: 70px;}
    .progress {top: 75px;}
}

@media (max-width: 500px) {
    .next:first-child {width: 100%;}
    .next h2.title {font-size: 25px;}
    .next .links a {
        height: 40px;
        font-size: 13px;
        padding: 0 20px;
    }

    .result .inner > .center {padding-top: 250px;}
    .result .inner .bg-inner {
        object-position: right -50px;
        height: 50%;
    }
}

/* ------------------ INFO ------------------ */
.info {
    padding: 70px 0 70px;
    position: relative;
    background: #fff;
}
.info + .medication-slider {padding-bottom: 0;}
.info .svg-right {
    position: absolute;
    top: 105px;
    right: -5px;
    width: 320px;
}
.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;
    flex-direction: column;
    align-items: start;
}
.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-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 .btn {
    margin-top: 50px;
    width: inherit;
    padding-left: 25px;
    padding-right: 25px;
}

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

@media (max-width: 1600px) {
    .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;}

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

    .info .center {grid-gap: 0 40px;}

    .info-right ul {font-size: 18px;}
}

@media (max-width: 1200px) {
    .info-right ul br {display: none;}
}

@media (max-width: 991px) {
    .info {
        padding-bottom: 50px;
        padding-top: 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-right ul {font-size: 16px;}

    .info .svg-right {
        right: -100px;
        width: 250px;
    }
}

@media (max-width: 767px) {
    .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;}

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

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

    .info .svg-right {
        top: inherit;
        bottom: 0;
        right: -150px;
    }
}

@media (max-width: 500px) {
    .info {padding-top: 30px;}
    .info-left h2 {font-size: 32px;}
    .rating span {font-size: 16px;}
    .rating .stars svg {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 413px) {
    .info-left h2 {font-size: 31px;}
    .info-left p {font-size: 16px;}

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


/* ------------------ PATIENTS ------------------ */
.patients {
    padding: 50px 0 100px 0;
    position: relative;
    color: #0f5c78;
    background: #fff;
    font-smoothing: auto;
    -webkit-font-smoothing: auto;
}
.patients .center {max-width: 1543px;}

.patients:after {
    content: '';
    display: block;
    background: linear-gradient(90deg, #fff, transparent);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
}
.patients .svg-line {
    position: absolute;
    top: -70px;
    right: 0;
    z-index: -1;
}
.patients .svg-line:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0, transparent, #fff);
}

.patients .svg-left {
    position: absolute;
    left: 0;
    bottom: -100px;
    transform-origin: center;
    transform: rotate(260deg);
}

.patients .svg-right {
    position: absolute;
    right: 0;
    bottom: -5px;
}

.patients .subtitle {font-size: 18px;}

.text-bottom {
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    margin-top: 15px;
    position: relative;
    z-index: 3;
    color: #096A8C;
}

.main-slider {
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
}

.main-slider .svg-line {
    position: absolute;
    right: 100%;
    top: 100%;
    margin-top: -190px;
    margin-right: -150px;
}
.main-slider .svg-line:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(90deg, transparent, #fff);
}
.main-slider .slide {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 0 60px;
    padding: 0 20px;
    height: 100%;
}
.main-slider .image {
    padding-left: 86px;
    position: relative;
}

.main-slider .position {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}
.main-slider .position .before {animation-delay: 0.2s !important;}

.main-slider .before {
    max-width: 172px;
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}
.main-slider .before img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.main-slider .before .label {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 63px;
    height: 21px;
    border-radius: 30px;
    font-family: var(--addingtoncf);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    background: rgba(255, 255, 255, .8);
    text-align: center;
    color: #096A8C;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-slider .before .label span {
    position: relative;
    top: -1px;
}

.main-slider .weight {
    width: 100%;
    box-shadow: 3px 4px 6.2px 6px rgba(0, 0, 0, 0.03);
    border-radius: 27px;
    color: #096A8C;
    font-size: 24px;
    font-weight: 500;
    padding: 13px 20px;
    background: #fff;
    margin-top: 35px;
    text-align: center;
    animation-delay: 0.4s !important;
}
.main-slider .weight div {padding: 3px 0;}
.main-slider .weight strong {
    font-size: 50px;
    line-height: 1;
    border-top: 1px solid rgba(9, 106, 140, .25);
    border-bottom: 1px solid rgba(9, 106, 140, .25);
    display: block;
    padding: 4px 0 8px 0;
}

.main-slider .after {
    border-radius: 27px;
    overflow: hidden;
    height: 100%;
    max-width: 450px;
    position: relative;
}
.main-slider .after img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.main-slider .after .label {
    position: absolute;
    right: 15px;
    bottom: 20px;
    width: 86px;
    height: 29px;
    border-radius: 30px;
    font-family: var(--addingtoncf);
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    background: rgba(255, 255, 255, .8);
    text-align: center;
    color: #096A8C;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-slider .after .label span {
    position: relative;
    top: -2px;
}
.main-slider .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 50px 0;
}
.main-slider .content h6 {
    font-size: 24px;
    font-weight: normal;
    color: #096A8C;
    margin-bottom: 34px;
}
.main-slider .content h3 {
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 35px;
    animation-delay: 0.1s;
}
.main-slider .content h3 span {color: #67CCCA;}
.main-slider .content p {
    font-size: 21px;
    line-height: 1.4;
    animation-delay: 0.2s;
    margin-bottom: 30px;
}
.main-slider .content p strong {font-weight: 600;}
.main-slider .content .btn {
    padding: 0 43px;
    animation-delay: 0.3s;
    margin-top: auto;
    gap: 0 11px;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}
.main-slider .content .btn span:first-letter {text-transform: uppercase;}
.main-slider .content .btn svg {
    fill: #fff;
    position: relative;
    z-index: 2;
}
.main-slider .splide__arrow {
    opacity: 1;
    width: 29px;
    height: 60px;
    border-radius: 0;
    background: none;
    outline: none;
}
.main-slider .splide__arrow:after {
    display: block;
    content: '';
    background: url(../img/patients/arr.svg) no-repeat center;
    transform-origin: center;
    width: 29px;
    height: 60px;
}
.main-slider .splide__arrow svg {display: none;}
.main-slider .splide__arrow--prev:after {transform: rotate(-180deg);}
.main-slider .splide__arrow--prev {left: -50px;}
.main-slider .splide__arrow--next {right: -50px;}

.thumbnail-slider {
    z-index: 2;
    margin-top: 50px;
}
.thumbnail-slider .splide__track {padding: 10px 0;}
.thumbnail-slider:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    background: linear-gradient(90deg, #fff 20%, transparent);
}
.thumbnail-slider:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    background: linear-gradient(90deg, transparent 20%, #fff);
}
.thumbnail-slider .slide {
    position: relative;
    display: flex;
    justify-content: end;
    padding-left: 37px;
    height: 100%;
    min-height: 255px;
}
.thumbnail-slider a {color: #0f5c78;}
.thumbnail-slider .position {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 75px;
}
.thumbnail-slider .before {
    height: 106px;
    position: relative;
    border-radius: 11px;
    overflow: hidden;
}
.thumbnail-slider .before img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-slider .before .label {
    right: 5px;
    bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-slider .weight {
    width: 100%;
    margin-top: 15px;
    background: #FFFFFF;
    box-shadow: 1.30324px 1.73765px 2.69336px 2.60647px rgba(0, 0, 0, 0.03);
    border-radius: 11px;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    padding: 5px 8px;
}
.thumbnail-slider .weight div {padding: 3px 0;}
.thumbnail-slider .weight strong {
    display: block;
    border-top: 1px solid rgba(9, 106, 140, 0.25);
    border-bottom: 1px solid rgba(9, 106, 140, 0.25);
    font-size: 19px;
    line-height: 1.2;
}

.thumbnail-slider .after {
    border-radius: 11px;
    overflow: hidden;
    height: 100%;
    max-width: 195px;
    transition: all 0.3s;
}
.thumbnail-slider .after:hover {box-shadow: 0 0 10px rgba(0,0,0,.3)}
.thumbnail-slider .after img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-slider .label {
    position: absolute;
    right: 6px;
    bottom: 9px;
    background: rgba(255,255,255,.8);
    color: #096A8C;
    border-radius: 30px;
    width: 38px;
    height: 12px;
    font-family: var(--addingtoncf);
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumbnail-slider .label span {
    position: relative;
    top: -1px;
}

.thumbnail-slider .splide__track--nav>.splide__list>.splide__slide {border: none !important;}

.main-slider .splide__pagination {display: none;}

@media (max-width: 1700px) {
    .main-slider {padding: 0 50px;}
    .main-slider .slide {
        grid-template-columns: 500px 1fr;
        gap: 0 50px;
    }
    .main-slider .splide__arrow--prev {left: 0;}
    .main-slider .splide__arrow--next {right: 0;}
    .main-slider .content h3 {font-size: 40px;}
    .main-slider .content p {font-size: 18px;}
}

@media (max-width: 1600px) {
    .patients {
        padding-top: 0;
        padding-bottom: 50px;
    }
    .main-slider .slide {grid-template-columns: 450px 1fr;}
    .main-slider .position {zoom: 0.8;}
    .main-slider .content h6 {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .main-slider .content h3 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .main-slider .content p {
        font-size: 15px;
    }
    .main-slider .content .btn {
        min-width: inherit;
        padding: 0 40px;
    }
    .main-slider .splide__arrow {zoom: 0.8;}
}

@media (max-width: 1200px) {
    .main-slider {padding: 0 40px;}
    .main-slider .slide {
        grid-template-columns: 350px 1fr;
        gap: 0 30px;
    }
    .main-slider .position {zoom: 0.6;}
    .main-slider .image {padding-left: 50px;}
    .main-slider .content h6 {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .main-slider .content h3 {
        font-size: 23px;
        margin-bottom: 20px;
    }
    .main-slider .content p {font-size: 14px;}
    .main-slider .content p br {display: none;}
    .main-slider .content .btn {padding: 0 30px;}
    .main-slider .splide__arrow {zoom: 0.6;}

    .thumbnail-slider .slide {
        min-height: 200px;
        max-height: 200px;
        max-width: 190px;
    }
    .thumbnail-slider .position {zoom: 0.9;}
    .thumbnail-slider .weight {margin-top: 10px;}
}

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

    .main-slider {padding: 0 25px;}
    .main-slider .slide {
        grid-template-columns: 300px 1fr;
        gap: 0 20px;
    }
    .main-slider .image {padding-left: 35px;}
    .main-slider .content h3 br {display: none;}
    .main-slider .splide__arrow {zoom: 0.4;}

    .thumbnail-slider .slide {
        min-height: 170px;
        max-height: 170px;
        max-width: 170px;
        padding-left: 40px;
    }
    .thumbnail-slider .position {zoom: 0.8;}
}

@media (max-width: 767px) {
    .main-slider {padding: 0;}
    .main-slider .slide {
        grid-template-columns: 1fr;
        gap: 30px 20px;
        padding: 0;
    }
    .main-slider .content {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .main-slider .content .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .main-slider .image {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .main-slider .svg-line {display: none;}

    .splide__pagination {
        bottom: 0;
        padding: 0;
        display: flex;
        gap: 0 7px;
        margin-bottom: -40px;
    }
    .splide__pagination li {line-height: 0;}
    .splide__pagination button {
        margin: 0;
        width: 7px;
        height: 7px;
        background: rgba(103,204,202,.25);
        border-radius: 50%;
        opacity: 1;
    }
    .splide__pagination button.is-active {
        background: rgba(9,106,140,.5);
        transform: none;
    }

    .thumbnail-slider {margin-top: 65px;}
    .main-slider .after .label span {top: -1px;}
    .main-slider .before .label span {top: -1px;}
    .thumbnail-slider .label span {top: -0.5px;}
}

@media (max-width: 550px) {
    .patients .svg-line {display: none;}
    .main-slider .splide__track {overflow: visible;}
    .main-slider .splide__pagination {
        gap: 0 5px;
        margin-top: 25px;
        opacity: 0;
    }
    .main-slider .splide__pagination li {margin: 0;}
    .main-slider .slide {
        display: flex;
        flex-direction: column;
    }
    .main-slider .after {border-radius: 18px;}
    .main-slider .image {padding-left: 70px;}
    .main-slider .before {border-radius: 18px;}
    .main-slider .content {justify-content: start;}
    .main-slider .position {zoom: 0.7;}
    .main-slider .weight {
        border-radius: 18px;
        margin-top: 20px;
    }
    .main-slider .after .label {
        position: absolute;
        right: 13px;
        bottom: 13px;
        width: 70px;
        height: 25px;
        font-size: 20px;
    }
    .main-slider .content h3 {
        font-size: 8.28vw;
        margin-bottom: 30px;
    }
    .main-slider .content h6 {display: none;}
    .main-slider .content p {font-size: 4.37vw;}
    .main-slider .content p br {display: none;}
    .main-slider .before .label {
        right: 50%;
        transform: translateX(50%);
    }

    .thumbnail-slider {margin-top: 60px;}
    .thumbnail-slider:before,
    .thumbnail-slider:after {display: none;}
    .thumbnail-slider .after {
        max-width: inherit;
        width: 100%;
        border-radius: 10px;
    }
    .thumbnail-slider .slide {
        padding-left: 35px;
        min-height: inherit;
        max-width: 170px;
    }

    .thumbnail-slider .position {zoom: 0.7;}

    .thumbnail-slider .before {
        height: 100px;
        border-radius: 10px;
        overflow: hidden;
    }
    .thumbnail-slider .before .label {
        right: 50%;
        bottom: 3px;
        transform: translateX(50%);
    }

    .thumbnail-slider .weight {
        margin-top: 8px;
        padding: 0px 8px;
        border-radius: 10px;
    }
    .thumbnail-slider .weight strong {
        padding: 0 0 1px 0;
    }

    .thumbnail-slider .label {bottom: 6px;}
    .main-slider .content p {margin-bottom: 40px;}
    .main-slider .content .btn {
        width: 95%;
        margin-top: auto;
    }
}

@media (max-width: 413px) {
    .main-slider .position {zoom: 0.7;}
}

@media (max-width: 390px) {
    .main-slider .position {zoom: 0.65;}
}

@media (max-width: 375px) {
    .main-slider .position {zoom: 0.6;}
}

/* ------------------ MEDICATION SLIDER ------------------ */
.medication-slider {
    background: #F0F7FA;
    padding-top: 50px;
    padding-bottom: 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;}
}

/* ------------------ WORKS ------------------ */
.mt-50 {margin-top: 30px;}
.works {
    padding: 0 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;
}
.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: 0 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 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 .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;
    }
}

/* ------------------ ACHIEVE ------------------ */
.achieve {
    padding-top: 49px;
    position: relative;
    overflow: hidden;
}
/*.achieve .splide__track {overflow: visible;}*/
.achieve .center {
    position: relative;
}
.achieve .center .svg-left {
    position: absolute;
    top: 300px;
    right: 100%;
    margin-right: -25px;
    z-index: -1;
}

.achieve .svg-right {
    position: absolute;
    top: -100px;
    right: 0;
}

.box-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: flex-end;
}

.box-head p {
    font-size: 20px;
    font-weight: 500;
}
.box-head p strong {font-weight: 600;}
.box-head .btn {margin-top: 20px;}

.achieve .box-head {
    margin-bottom: 57px;
}

.achieve-slider.first {
    margin-right: -650px;
    margin-left: -10px;
}
.achieve .splide {cursor: grab;}
.achieve-slider .slide {height: 100%;}
.achieve-slider.first .splide__track {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px !important;
}
.achieve-slider.second .splide__track {overflow: visible;}
.achieve-slider .slide .wrap {
    height: 100%;
    min-height: 648px;
    position: relative;
    padding: 26px 15px 0 30px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.achieve-slider .slide:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: #F1F7FA;
    border-radius: 22px;
    transition: all 0.3s;
}
.achieve-slider .slide:hover:after {transform: scale(1.01);}

.achieve-slider .slide.slide-fill:after {
    background: linear-gradient(186.35deg, #FAF6EE -106.62%, #E0F4F3 -36.73%, #E0F4F3 -4.4%, #00698B 101.99%);
}

.achieve-slider .slide .head {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.achieve-slider .slide h3 {
    font-size: 31px;
    font-weight: 500;
    display: inline-flex;
    align-items: start;
}
.achieve-slider .slide h3 svg {
    width: 14px;
    height: 16px;
    fill: var(--akcent);
    position: relative;
    top: 10px;
}
.achieve-slider .slide .head p {
    font-size: 17px;
    font-weight: 500;
}
.achieve-slider .slide .head p + p {margin-top: 10px;}

.achieve-slider .head div:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: end;
}
.achieve-slider .label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 33px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    background: #FDEDE3;
    gap: 5px;
    white-space: nowrap;
    padding: 0 15px;
}
.achieve-slider .label + .label {margin-top: 8px;}
.achieve-slider .label svg {
    width: 12px;
    height: 9px;
}
.achieve-slider .label:nth-child(2) {background: #E0EFF8;}
.achieve-slider .label:nth-child(3) {background: #FBF7EF;}

.achieve-slider .slide:not(.slide-fill) .image img {max-width: 316px;}
.achieve-slider .slide .btn-universal_popup {animation: none;}

.achieve-slider .image {margin: auto;}
.achieve-slider .image img {width: 100%;}
.achieve-slider .image.circle {
    position: absolute;
    left: 0;
    bottom: 0;
}
.achieve-slider .image.circle:after {
    content: '';
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #F2D5D5;
    position: absolute;
    left: -75px;
    bottom: -93px;
    transition: all 0.3s;
}
.achieve-slider .image.circle.c-blue:after {background: #C8F1F0;}
.achieve-slider .image.circle.c-green:after {background: #CFE4CF;}
.achieve-slider .image.circle.c-violet:after {background: #D3D8EA;}
.achieve-slider .image.circle img {
    position: relative;
    z-index: 2;
}

.achieve-slider .slide.slide-fill .image {
    position: relative;
    top: -40px;
}

.achieve-slider .slide .foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 17px 15px 17px;
}
.achieve-slider .slide .foot p {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    position: relative;
    gap: 7px;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
}
.achieve-slider .slide .foot p:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00FC2E;
    position: relative;
    top: 1px;
    animation: shadow-pulse 3s infinite;
}
.achieve-slider .slide .foot .btn {
    min-width: 157px;
    font-size: 14px;
    gap: 5px;
    padding: 0 20px;
    min-height: 52px;
    border-radius: 40px;
    width: auto;
}
.achieve-slider .slide.slide-fill .btn {
    background: #fff;
    color: var(--akcent);
}
.achieve-slider .slide.slide-fill .btn:hover {color: #fff;}

.achieve-slider.second {margin-right: 0;}

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

.achieve .content {padding: 43px 0 0;}
.achieve .content h3 {
    font-weight: 500;
    font-size: 25px;
}
.achieve .content a {text-decoration: underline;}
.achieve .content a:hover {text-decoration: none;}
.achieve .content p:first-child {line-height: 1.2;}
.achieve .content p strong {
    font-size: 15px;
    font-weight: 500;
}
.achieve .content p:nth-child(3) {
    font-size: 11px;
    margin-top: 13px;
}

.achieve-slider.second .image {max-width: 235px;}
.achieve-slider.second .slide:not(.slide-fill) .foot .btn {width: 100%;}

@media (max-width: 1600px) {
    .achieve {padding-top: 40px;}
    .achieve .center {max-width: 1200px;}
    .achieve-slider.first {margin-right: -350px;}
    .box-head p {font-size: 14px;}
    .box-head .btn {margin-top: 15px;}
    .achieve .box-head {margin-bottom: 40px;}
    .achieve .svg-right {
        width: 170px;
        height: 420px;
    }
    .achieve-slider .slide .wrap {
        padding: 15px 15px 0 20px;
        min-height: 450px;
    }
    .achieve-slider .slide h3 {font-size: 25px;margin-right:-50%;}
    .achieve-slider .slide .head p {font-size: 13px;}
    .achieve-slider .slide .head p + p {margin-top: 7px;}
    .achieve-slider .label {
        min-height: 25px;
        border-radius: 30px;
        font-size: 13px;
        padding: 0 10px;
    }
    .achieve-slider .slide .foot p {font-size: 15px;}
    .achieve-slider .slide .foot p:before {
        width: 12px;
        height: 12px;
        top: -1px;
    }
    .achieve-slider .slide .foot .btn {
        min-width: 120px;
        padding: 0 20px;
        min-height: 40px;
    }
    .achieve-slider .image {zoom: 0.8;}
    .achieve .content {padding: 30px 0 0;}
}   

@media (max-width: 1200px) {
    .achieve-slider .slide .wrap {min-height: 400px;}
    .achieve-slider .image {zoom: 0.7;}
    .box-head p br {display: none;}
}

@media (max-width: 991px) {
    .achieve h2.title div br {display: none;}
    .achieve .svg-right {right: -100px;}
}

@media (max-width: 767px) {
    .box-head {grid-template-columns: 1fr;}
    .achieve .content br {display: none;}
    .achieve-slider.first {
        margin-right: 0;
        margin-left: 0;
    }
    .achieve-slider.first .splide__track {
        overflow: visible;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0 !important;
    }
    .achieve .center .svg-left {top: 290px;}
}

@media (max-width: 500px) {
    .achieve .title svg {display: none;}
    .achieve .svg-right {display: none;}
    .achieve h2.title div br {display: block;}

    .box-head p {font-size: 15px;}
    .box-head p br {display: block;}
    .achieve .box-head {margin-bottom: 35px;}
    .achieve .box-head .btn {display: none;}

    .achieve .center .svg-left {display: none;}

    .achieve-slider .slide .wrap {
        padding: 10px 20px 0 15px;
        border-radius: 16px;
        min-height: 450px;
    }
    .achieve-slider .slide:after {border-radius: 16px;}
    .achieve-slider .slide h3 {font-size: 27px;}
    .achieve-slider .slide .head p {
        font-size: 13.5px;
        margin-top: 3px;
        font-weight: 600;
    }
    .achieve-slider .label:first-child {margin-top: 10px;}
    .achieve-slider .slide.slide-fill .btn {
        min-height: 38px;
        font-size: 15px;
        padding: 0 25px;
    }
    .achieve-slider .label svg {
        width: 10px;
        height: 7px;
    }
    .achieve-slider .slide .foot p:before {
        width: 9px;
        height: 9px;
        top: 0.5px;
    }

    .achieve .content {
        padding: 50px 0 0;
        font-size: 4vw;
    }
    .achieve .content br {display: block;}
    .achieve .content p:last-child {
        font-size: 13px;
        margin-top: 25px;
        line-height: 1.5;
    }
    .achieve .content p:nth-child(3) {font-weight: 500;}
    .achieve .content p a {
        text-decoration: underline;
        display: inline-block;
    }
    .achieve .content p a:hover {text-decoration: none;}
}

@media (max-width: 413px) {
    .box-head p br,
    .achieve .content p br {display: none !important;}

    .achieve-slider .slide h3 {font-size: 25px;}
}

/* ------------------ 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;
}
.last-ic-crown {
    width: 56px;
    margin-bottom: 10px;
}
.experience-content .stars svg {fill: #fff;}
.experience-content h2.title {
    color: #fff;
    font-size: 40px;
    margin-bottom: 0;
}
.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;
    padding-bottom: 30px;
}
.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;
}

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

/*.animated.fade-text {opacity: 1;}*/
.animated.fade-text.show {
    animation: none;
    animation: opacity 0.3s 0.1s linear both;
}
.animated.fade-text.show > span {
    opacity: 0;
    display: inline-block;
    transform: rotate(5deg) translateY(50%) translateX(-5%);
    transform-origin: left center;
    animation: fade-text 0.3s ease-in-out both;
}
.animated.fade-text.show > span:nth-child(2) {animation-delay: 0.03s;}
.animated.fade-text.show > span:nth-child(3) {animation-delay: 0.06s;}
.animated.fade-text.show > span:nth-child(4) {animation-delay: 0.09s;}
.animated.fade-text.show > span:nth-child(5) {animation-delay: 0.12s;}
.animated.fade-text.show > span:nth-child(6) {animation-delay: 0.15s;}
.animated.fade-text.show > span:nth-child(7) {animation-delay: 0.18s;}
.animated.fade-text.show > span:nth-child(8) {animation-delay: 0.21s;}
.animated.fade-text.show > span:nth-child(9) {animation-delay: 0.24s;}
.animated.fade-text.show > span:nth-child(10) {animation-delay: 0.27s;}
.animated.fade-text.show > span:nth-child(11) {animation-delay: 0.30s;}

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

@keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

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

@keyframes bottom {
    0% {
        transform: translateY(10%);
        opacity: 0;
    }

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

@keyframes fade-text {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: rotate(0) translateY(0) translateX(0);
    }
}

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