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

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

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

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

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

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

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

/* ------------------ BUTTONS ------------------ */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--c-akcent);
    color: #fff;
    height: 55px;
    padding: 0 28px;
    position: relative;
    font-family: var(--campton);
    text-align: center;
    border-radius: 30px;
    font-weight: 500;
    font-size: 19px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    animation: shadow-pulse 3s infinite;
    overflow: hidden;
}
.btn span {
    position: relative;
    z-index: 2;
}
.btn:after {
    content: '';
    display: block;
    background: var(--c-akcent2);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    z-index: 1;
    transition: all 0.3s;
}
.btn:hover {color: #fff;}
.btn:hover:after {width: 100%;}

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

/* ------------------ 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;
    }
}

/* ------------------ HEADER ------------------ */
#header {
    margin-top: 56px;
    padding-top: 90px;
}

.logo {
    display: inline-block;
    line-height: 0;
    cursor:default;
}
.logo svg {
    width: 220px;
    height: 57px;
}

@media (max-width: 1500px) {
    #header {padding-top: 50px;}
    .logo svg {
        width: 170px;
        height: 45px;
    }
}

@media (max-width: 991px) {
    #header {padding-top: 35px;}
}

@media (max-width: 886px) {
    #header {margin-top:45px;}
}

@media (max-width: 768px) {
    #header{margin-top:23.2vw;}
}

@media (max-width: 767px) {
    #header {padding-top: 20px;}
}

/* ------------------ INFO ------------------ */
.info {
    padding: 70px 0 120px;
    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: 70px;*/
    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-3 {padding: 65px 0 85px 0}
.info-3 h2 {
    font-size: 55px;
    line-height: 1.4;
}

@media (max-width: 1500px) {
    .info {padding: 40px 0 70px;}
    .info .anim-dot {
        right: -200px;
        top: -130px;
    }
/*    .info-left h2 {font-size: 43px;}*/
    .info-left h2 {font-size: 37px;}
    .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 .center {grid-gap: 30px;}
/*    .info-left h2 {font-size: 35px;}*/
    .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: 39px;
        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;}
    .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-left h2 { font-size: 35px;}
}
@media (max-width:444px){
	.info-left h2 { font-size: 32px;}
}
@media (max-width: 413px) {
    .info-left h2 {font-size: 28px;}
    .info-left p {font-size: 16px;}
    .info-2 .info-left h2 {font-size: 31px;}

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

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

.splide__pagination li {display: none;}

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

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

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

/* ------------------ NEXT ------------------ */
.next {
    height: 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);
    cursor:pointer;
}
.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);
    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 .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;
        right: -200px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1800px) {
    .experience .anim-dot {
        width: 200px;
        height: 200px;
        top: 15px;
        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;}
}

/* ------------------ FOOTER ------------------ */
.footer {
    background: #1a274b;
    margin-top: -1px;
}
.footer .center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
}

.footer-copy {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #3e4f7d;
    font-size: 16px;
    color: #6676a2;
}
.footer-copy .copy {position:  relative;}
.footer-copy .copy small {
    position: absolute;
    left: 0;
    bottom: 100%;
    white-space: nowrap;
}
.footer-copy p {margin-right: auto;}
.footer-copy a {
    color: #6676a2;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
}
.footer-copy a:hover {text-decoration: underline;}
.footer-copy span {
    display: inline-block;
    padding: 0 17px;
    vertical-align: middle;
}
.footer-copy .legitscript {
    display: block;
    line-height: 0;
    margin-left: 30px;
    max-width:100px;
}

@media screen and (max-width: 1300px) {
    .footer-copy {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 13px;
    }
    .footer-copy .legitscript {
        margin-left: 20px;
        max-width: 120px;
    }
}

@media screen and (max-width: 750px) {
    .footer {padding: 30px 0 120px 0;}
    .footer-copy .copy {min-width: 100%;}
    .footer-copy {
        position: relative;
        border-top: none;
        min-width: 100%;
        padding: 0;
    }
    .footer-copy:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 15px;
        right: 15px;
        background: #3e4f7d;
        height: 1px;
    }
    .footer .center {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-copy span {padding: 0 5px;}
    .footer-copy p {
        text-align: center;
        min-width: 100%;
        margin-bottom: 15px;
    }
    .footer-copy .legitscript {
        margin-left: 0;
        max-width: 100px;
        order: -1;
        margin-left: auto !important;
        margin-right: auto;
        margin-bottom: 30px;
    }
    .footer-copy a {margin-left: 0 !important;}
    .footer-copy:before {display: none;}
    .footer-copy .copy small {
        left: 0;
        right: 0;
        text-align: center;
    }
}

/* ------------------ 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;}
}





/* 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%);
}

