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

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

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

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

@font-face {
    font-family: 'Greycliff CF';
    src: url('/fonts/greycliff-cf/GreycliffCF-DemiBold.woff2') format('woff2'),
        url('/fonts/greycliff-cf/GreycliffCF-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

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

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

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

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

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

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

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

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

:root {
    --color: #0A1C2B;
    --c-akcent: #0A1C2B;
    --c-akcent2: #B12028;
    --campton: 'Campton', sans-serif;
    --greycliff: 'Greycliff CF', sans-serif;
}

body {
    font: 300 21px/1.4 var(--campton);
    color: var(--color);
    font-smoothing: antialiased;
    -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);}

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

@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-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--c-akcent);
}
.btn-box h5 {
    font-size: 15px;
    margin-top: 13px;
    display: inline-flex;
    align-items: center;
    color: #091938;
}
.btn-box h5 svg {
    margin-left: 3px;
    position: relative;
    top: 1px;
    fill: #096A8C;
}
.btn-box p {
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    margin-top: 0;
}
.btn-box p strong {
    font-weight: 500;
    position: relative;
}
.btn-box p strong svg {
    position: absolute;
    bottom: 2px;
    left: 100%;
    margin-left: 4px;
    fill: #096A8C;
}
.btn-box a:not(.btn) {
    color: #0b4053;
    text-decoration: underline;
}
.btn-box a:not(.btn):hover {text-decoration: none;}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    width: 350px;
    font-size: 17px;
    font-weight: 500;
    background: #23f197;
    border-radius: 11px;
    color: #091938;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: shadow-pulse 3s infinite;
}
.btn b {font-weight: bold;}
.btn span,
.btn b {
    position: relative;
    z-index: 2;
}
.btn svg {
    fill: #091938;
    margin-left: 10px;
    width: 8px;
    height: 13px;
    transition: all 0.3s;
    position: relative;
    top: 1px;
    z-index: 2;
}
.btn:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background: #051C3A;
    width: 0;
    transition: all 0.3s;
}
.btn:hover {color: #fff;}
.btn:hover:after {width: 100%;}
.btn:hover svg {
    transform: translateX(10px);
    fill: #fff;
}

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

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

@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-weight: 300;
}
.btn-box p strong {font-weight: 500;}

.btn-fix {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 99;
    padding: 10px;
    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: #25F097;
    color: var(--color);
    padding: 12px 10px 14px 10px;
    animation: shadow-pulse 3s infinite;
    border-radius: 16px;
}
.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;
}

@media (max-width: 1500px) {
    .btn {
        height: 45px;
        width: 300px;
        font-size: 15px;
        border-radius: 10px;
    }
    .btn svg {
        width: 7px;
        height: 12px;
    }

    .btn-box h5 {font-size: 13px;}
    .btn-box p {font-size: 13px;}
}

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

    .btn {
        height: 55px;
        width: 350px;
        font-size: 18px;
    }
    .btn svg {
        width: 7px;
        height: 12px;
        top: 1px;
    }
    .btn-box h5 {
        font-size: 13px;
        margin-top: 10px;
    }
    .btn-box p {font-size: 13px;}
}

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

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

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

@media (max-width: 413px) {
    .btn-box {width: 100%;}
    .btn {
        height: 50px;
        width: inherit;
        font-size: 17px;
    }
    .popup .btn{
        width:100%;
    }
    .btn-box h5 {
        font-size: 14px;
        margin-top: 17px;
    }
    .btn-box p {
        font-size: 14px;
    }
}

/* ------------------ ICONS ------------------ */
[data-src="crown"] {
    display: inline-block;
    width: 100px;
    height: 72px;
    line-height: 0;
}
.ic-crown {
    display: inline-block;
    width: 100px;
    height: 72px;
}

@media (max-width: 991px) {
    [data-src="crown"],
    .ic-crown {
        width: 80px;
        height: 55px;
    }
}

@media (max-width: 767px) {
    [data-src="crown"],
    .ic-crown {
        width: 75px;
        height: 55px;
    }
}

/* ------------------ HOME ------------------ */
.home {
    position: relative;
    font-family: var(--greycliff);
    background: url(../img/bg-steps.png) no-repeat;
    background-position:left top;
}
/*.home:before {
    content: '';
    display: flex;
    position: absolute;
    top: -210px;
    left: 0;
    background: url(../img/bg-steps.png) no-repeat center;
    background: url(../webp/bg-steps.svg) no-repeat center;
    width: 1920px;
    height: 1769px;
    z-index: -2;
}*/
.home .svg-left {
    position: absolute;
    top: -15px;
    left: -5px;
    width: 312px;
    height: 429px;
}

.home .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 80px;
    padding: 50px 15px 58px 15px;
    max-width: 1190px;
}

.home-slider .main-slider .splide__slide {
    overflow: hidden;
    border-radius: 25px;
}
.home-slider .main-slider .splide__slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home-slider .thumbnail-slider {
    margin-top: 15px;
    margin-left: -4.5px;
    margin-right: -4.5px;
}
.home-slider .thumbnail-slider .splide__track {overflow: visible;}
.home-slider .thumbnail-slider .splide__slide {
    padding: 0 4.5px;
    border: none !important;
}
.home-slider .thumbnail-slider .wrap {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s;
    display: flex;
}
.home-slider .thumbnail-slider .wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.home-slider .thumbnail-slider .splide__slide.is-active .wrap,
.home-slider .thumbnail-slider .splide__slide:hover .wrap {
    box-shadow: 0 5px 10px rgba(0, 62, 82, 0.2);
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.home-content .title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--c-akcent);
}
.home-content .title > span {
    background: linear-gradient(90deg, #096A8C, #63C7C7);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}
.home-content .title .sup {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    top: -19px;
/*  top: -12px;*/
    color: #64C8C8;
}

.home-content .subtitle {
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--c-akcent);
}

.home-list {
    list-style: none;
    margin: 15px 0 25px;
}
.home-list li {
    font-size: 20px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.home-list li:nth-child(1) .icon * {fill: #083e52;}
.home-list li:nth-child(2) {animation-delay: 0.8s !important;}
.home-list li:nth-child(3) {animation-delay: 1s !important;}
.home-list li + li {margin-top: 15px;}
.home-list .ic-wrap {
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 8px;
    margin-right: -10px;
}
.home-list .ic-wrap .icon {max-width: 60px;}
.home-list li:nth-child(2) .ic-wrap .icon {max-width: 35px;}
.home-list .ic-one {
    width: 26px;
    height: 26px;
}
.home-list .ic-one svg * {fill: #000 !important;}
.home-list .ic-two {
    width: 26px;
    height: 26px;
}
.home-list .ic-two svg * {stroke: #000;}
.home-list .ic-three {
    width: 26px;
    height: 21px;
}

.home-content .btn-box {
    max-width: 460px;
    width: 100%;
    animation-delay: 1s !important;
}
.home-content .btn {width: 100%;}

.home-fda {
    display: inline-block;
    margin-top: auto;
    min-width: 440px;
    text-align: center;
    padding: 40px 15px 15px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    border: 1px solid #cdb179;
    border-radius: 20px;
    width: 87%;
    font-smoothing: auto;
    -webkit-font-smoothing: auto;
}
.home-fda a {
    font-size: 10px;
    font-weight: 300;
    color: #091938;
    text-decoration: underline;
}
.home-fda a:hover {text-decoration: none;}
.home-fda .icon {
    width: 80px;
    height: 80px;
    padding: 0 5px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 50%;
}
.home-fda .icon:after {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    right: -5px;
    left: -5px;
    bottom: -5px;
    border-radius: 50%;
    z-index: -1;
}
.home-fda .icon img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
}
.home-fda .icon img:first-child {
    display: block;
    animation: spin 5s linear infinite;
}
.home-fda span {color: #cdb179;}

@keyframes spin {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@media (max-width: 1500px) {
    .home .svg-left {
        width: 250px;
        height: 340px;
    }

    .home .center {
        gap: 24px 50px;
        padding: 40px 15px 50px 15px;
        max-width: 1000px;
    }

    .home-slider .main-slider .splide__slide {border-radius: 20px;}
    .home-slider .thumbnail-slider .wrap {border-radius: 14px;}
    .home-list .ic-wrap {top: 6px;}
    .home-content .title {font-size: 33px;}
    .home-list li {
        font-size: 16px;
        gap: 15px;
    }
    .home-list li + li {margin-top: 10px;}

    .home-content .btn-box {max-width: 360px;}

    .home-fda {
        padding: 35px 10px 10px;
        font-size: 11px;
        border-radius: 17px;
        margin-left: 0;
        width: 354px;
        min-width:unset;
    }
    .home-fda .icon {
        width: 65px;
        height: 65px;
    }
    .home-fda .icon img {
        margin-top: -32.5px;
        margin-left: -32.5px;
    }
}

@media (max-width: 991px) {
    .home .svg-left {
        width: 200px;
        height: 300px;
    }

    .home .center {gap: 24px 35px;}

    .home-slider .thumbnail-slider .wrap {max-height: 75px;}

    .home-content .title {font-size: 23px;}
    .home-content .subtitle {font-size: 12px;}

    .home-list {margin: 10px 0 13px;}
    .home-list li {
        font-size: 13px;
        gap: 10px;
    }
    .home-list .ic-wrap {min-width: 50px;}
    .home-list .ic-wrap .icon {max-width: 50px;}
    .home-list li:nth-child(2) .ic-wrap .icon {max-width: 25px;}

    .home-list li + li {margin-top: 7px;}

    .home-content .btn-box {max-width: 320px;}

    .home-fda {
        min-width: 320px;
        font-size: 12px;
        max-width: 316px;
        min-width: unset;
        padding: 27px 10px 10px 10px;
        font-size: 10px;
        max-width: unset;
        min-width: unset;
        width: 320px;
    }
    .home-fda .icon {
        width: 55px;
        height: 55px;
    }
    .home-fda .icon img {
        margin-top: -27.5px;
        margin-left: -27.5px;
    }
}

@media (max-width: 750px) {
    .home .svg-right {
        position: absolute;
        top: -5px;
        right: -5px;
    }

    .home .image {
        position: absolute;
        top: 200px;
        right: 0;
    }
    .home .center {grid-template-columns: 1fr;}
    .home-content {
        order: -1;
        position: relative;
        align-items: center;
    }
    .home-content .title {font-size: 47px;}
    .home-content .subtitle {
        font-size: 20px;
        margin-top: 10px;
    }

    .home-list {margin: 40px 0 35px;}
    .home-list li {
        font-size: 20px;
        gap: 20px;
    }
    .home-list li + li {margin-top: 30px;}

    .home-fda {
        padding: 50px 30px 25px 30px;
        font-size: 15px;
        margin-top: 60px;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .home-fda .icon {
        width: 80px;
        height: 80px;
    }
    .home-fda .icon img {
        margin-top: -40px;
        margin-left: -40px;
    }

    .home-slider {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .home .center {padding: 25px 15px 40px 15px;}

    .home-content {align-items: flex-start;}
    .home-content .title {font-size: 30px;}
    .home-content .title .sup {top: -15px;}
    .home-content .subtitle {
        font-size: 18px;
        margin-top: 10px;
        color: #0a1c2b;
    }

    .home .svg-right {
        position: absolute;
        top: -2px;
        right: -5px;
        width: 200px;
        height: 200px;
    }

    .home-list {margin: 30px 0 20px;}
    .home-list li {
        font-size: 19px;
        gap: 10px;
    }
    .home-list li + li {margin-top: 20px;}

    .home .image {
        position: absolute;
        top: 186px;
        right: -10px;
        max-width: 135px;
    }

    .home-content .btn-box {
        max-width: inherit;
        position: relative;
        z-index: 2;
    }
    .home-slider .thumbnail-slider {margin-top: 10px;}
    .home-slider .thumbnail-slider .splide__slide {padding: 0 4px;}

    .home-fda {
        padding: 55px 10px 15px 10px;
        font-size: 12px;
        margin-top: 40px;
    }
    .home-fda .icon {
        width: 90px;
        height: 90px;
    }
    .home-fda .icon img {
        margin-top: -45px;
        margin-left: -45px;
    }
}

@media (max-width: 413px) {
    .home-content .title {
        font-size: 30px;
    }
    .home-list li {
        font-size: 18px;
        gap: 10px;
    }
    .home .image {
        top: 170px;
        max-width: 115px;
    }

    .home-fda {
        font-size: 14px;
        padding-top: 45px;
    }
    .home-fda .icon {
        width: 80px;
        height: 80px;
    }
    .home-fda .icon img {
        margin-top: -40px;
        margin-left: -40px;
    }
}

@media (max-width: 390px) {
    .home-content .title {font-size: 28px;}
    .home-list li {font-size: 17px;}
}

@media (max-width: 375px) {
    .home-content .subtitle {font-size: 16px;}
    .home-fda {font-size: 13px;}
    .home-content .title {font-size: 27px;}
    .home-list li {font-size: 17px;}
}

@media (max-width: 370px) {
    .home-list li {font-size: 16px;}
}

/* ------------------ INFO ------------------ */
.info {
/*    padding: 70px 0 120px;*/
    padding: 70px 0 70px;
    position: relative;
}
.info .anim-dot {
    width: 216px;
    height: 221px;
    position: absolute;
    top: -200px;
    right: -100px;
}
.info.c-gray {background: #F7F7F7;}
.info .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 77px;
    position: relative;
}
.info-left h2 {
    font-weight: 600;
    font-size: 47px;
/*    font-size: 53px;*/
    line-height: 1.1;
}
.info-left p {
    font-weight: 500;
    margin-top: 15px;
}
.info-left a {
    color: var(--color);
    font-size: 14px;
    text-decoration: underline;
    margin-top: 20px;
    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-right ul li svg {
    width: 20px;
    min-width: 20px;
    height: 16px;
    margin-right: 11px;
    position: relative;
    top: 8px;
}

.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;
}
.rating .stars svg + svg {margin-left: 4px;}
.rating span {
    font-size: 17px;
    position: relative;
    top: 1px;
}

.info-right .rating {justify-content: center;}

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

.info-2 {padding: 75px 0 80px 0;}
.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: 225px;}*/
.info-2 .btn {width: 270px;}

.info-3 {padding: 65px 0 85px 0}
.info-3 h2 {
    font-size: 55px;
/*    line-height: 1.4;*/
    line-height: 1.2;
}

@media (max-width: 1500px) {
/*    .info {padding: 40px 0 70px;}*/
    .info {padding: 40px 0 40px;}
    .info .anim-dot {
        right: -200px;
        top: -130px;
    }
/*    .info-left h2 {font-size: 43px;}*/
/*    .info-left h2 {font-size: 37px;}*/
    .info-left h2 {font-size: 34px;}
    .info-left p {font-size: 15px;}
    .info-right ul li svg {
        width: 15px;
        min-width: 15px;
        height: 11px;
        margin-right: 9px;
        top: 6px;
    }
    .info-right ul + .btn {margin-top: 25px;}
    .info-1 .btn {width: 250px;}

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

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

@media (max-width: 991px) {
    .info .anim-dot {
        width: 135px;
        height: 135px;
    }

/*    .info {padding: 25px 0 50px;}*/
    .info {padding: 25px 0 25px;}
    .info .center {grid-gap: 30px;}
/*
    .info-left h2 {font-size: 35px;}
   .info-1 .info-left h2 {font-size: 28px;}
*/
    .info-left p {font-size: 13px;}
/*    .info-right ul br {display: none;}*/

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

@media (max-width: 767px) {
/*    .info {padding: 25px 0 40px;}*/
    .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: 7px;
/*		font-size: 16px;*/
	}
    .info-right ul li svg {
        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 .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: 37px;}*/
    .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;}
}

@media (max-width:500px){
	.info-3 .info-left  h2 { font-size: 35px;}
}
@media (max-width:450px){
	.info-1 .info-left h2 { font-size: 26px;}
	.info-3 .info-left  h2 { font-size: 35px;}
}
@media (max-width: 420px) {
/*    .info-left h2 {font-size: 31px;}*/
/*    .info-left p {font-size: 18px;}*/
/*    .info-right ul li + li {font-size: 18px;}*/
    .info-2 .info-left h2 {font-size: 31px;}
	.info-3 .info-left  h2 { font-size: 33px;}

    .rating .stars svg {
        width: 17px;
        height: 17px;
    }
    .rating span {font-size: 16px;}
}
@media (max-width:375px){
	.info-3 .info-left  h2 { font-size: 30px;}
}
@media (max-width:365px){
	.info-left h2 { font-size: 23px;}
}

/* ------------------ SPLIDE ONE ------------------ */
.splide-one {
    padding-bottom: 100px;
    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: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.next .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.next.c-gray {background: #F7F7F7;}
.next .icon,
.next .ic-crown {
    display: inline-block;
    width: 100px;
    height: 75px;
    margin-bottom: 40px;
}

.steps {
    display: inline-flex;
    margin-bottom: 40px;
}
.steps li {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #0A1C2B;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 15px;
    position: relative;
}
.steps li.active {
    background: var(--c-akcent);
    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: var(--c-akcent);
    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;
    align-items: center;
    height: 55px;
    background: var(--c-akcent);
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    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: var(--c-akcent2);*/
    background: #23f197 ;
    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-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-5 .anim-dot {
    width: 266px;
    height: 272px;
    position: absolute;
    top: -150px;
    left: 0;
}

.next .custom-select {
    border: 1px solid #0A1C2B;
    width: 280px;
    height: 48px;
    border-radius: 40px;
    background: #fff url(../img/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;
    margin-top: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.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 h2.title, .next.finish h3.title-1 {margin-bottom: 25px;}
.gold{
color:#ccb179 !important
}

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

    .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;*/
        top: -150px;
        right: -200px;
    }

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

    .next-4 .anim-dot {
        top: -158px;
        right: -200px;
    }    
	.next-5 .anim-dot {
        top: -205px;
        left: -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;
    }
	.next-5 .anim-dot {
        width: 200px;
        height: 200px;
		
        left: 0;
        top: -60px;
    }

}

@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 
    .next-5 .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, 
    .next-4 .anim-dot {
        width: 170px;
        height: 170px;
    }

    .next {min-height: 780px;}
    .next .center {margin-top: -100px;}
    .next h2.title {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .next .icon,
    .next .ic-crown {
        width: 60px;
        height: 40px;
        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-5 .anim-dot {
        right: 0;
        top: -75px;
    }
}

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

/* ------------------ SPLIDE TWO ------------------ */
.splide-two {
    padding-bottom: 45px;
    pointer-events: none;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
	background: #F7F7F7;
}
.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 ------------------ */
.works {
    padding: 30px 0 100px 0;
    position: relative;
}
.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: #D6AD60;}

.works .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 39px;
    margin-top: 35px;
}
.works-item {text-align: center;}
.works-item .image {
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}
.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: 30px;
    font-weight: 600;
}
.works-item p {
    font-size: 20px;
    margin-top: 15px;
}

@media (max-width: 1500px) {
    .works {padding: 30px 0 70px 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: 16px;
        margin-top: 8px;
    }
}

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

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

/* ------------------ EXPERIENCE ------------------ */
.experience {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}
.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: url(../img/bg-quick.jpeg) no-repeat center;
    background-size: cover;
}

.experience-background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: url(../img/bg-online-1.jpg?1) no-repeat 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 h2.title {
    color: #fff;
    font-size: 40px;
}
.experience-content h2.title span {color: #D6AD60;}
.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: #D6AD60;
    color: var(--color);
}
.experience-content .btn:hover {color: #fff;}
.experience-content .btn-box p {
    font-size: 14px;
    color: #fff;
    margin-top: 13px;
}

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

@media (max-width: 1500px) {
    .experience-content {padding: 50px 15px 50px;}
    .experience-content .text {font-size: 18px;}
    .experience-content h2.title {font-size: 30px;}
}

@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: 500px;
        z-index: 2;
        margin-left: -15px;
        margin-right: -15px;
        order: 1;
    }

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

@media (min-width:500px) and (max-width: 991px) {
    .experience-background{
        height: 78vw;
    }
}
@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-background {height: 78vw;}
}

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

/* ------------------ 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.popup-important .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 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%;
    height:90vh;
}
.popup-important .body {
    height: 55vh;
    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;}
.text-danger {
    color: #c70003 !important;
}

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

@media (max-width: 1024px) {
    .popup.active {
        overflow:hidden;
    }
    .popup-important .body {
        height: 70vh;
    }
    .popup .head h4 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .popup-important {
        position: fixed !important;
        width: 100%;
        max-width: 90%;
        top: 30px !important;
        position: fixed;
        bottom: 30px;
        left: 30px;
        right: 30px;
        transform: none;
    }
    .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;}
}





/* PAGE-TRANSITION */
.page-transition {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background-color:#0a1c2b;
	color: #FFFFFF;
	text-align: center;
	z-index: 9;
	display: none;
}
.page-transition h3.title {
	font-size: 40px;
    font-weight: 600;
    margin: 30px 0 25px 0;
    line-height: 1.2;
}


.page-transition  p.subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-top: 0;
    line-height: 1.3;
}


.page-transition div {
	position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

@media screen and (max-width: 767px) {

	.page-transition div { width:80%; }
	.page-transition h3.title { font-size: 21px; }
	.page-transition  p.subtitle {    font-size: 15px;}
	
}
 
/* 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;
    }
}


.popup-important .body{
    padding-bottom: 50px;
}

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

