/* ------------- GENERAL ---------------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    font-family: 'Lato', sans-serif;
    box-sizing: border-box !important;
}

body {
    background-image: url("../img/page-bg.jpg");
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
}

@media only screen and (max-width: 991px) {
    body {
        background-size: 200%;
    }

}

section {
    overflow-x: hidden;
    overflow-x: clip;
}


.ie-blocked-website {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 99999999999;
    background-color: rgba(0,0,0,0.5);
    display: none;
    text-align: center;
}

.ie-blocked-website__title {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.ie-blocked-website__content {
    width: 100%;
    max-width: 550px;
    margin: 100px auto 0px auto;
    background-color: #fff;
    padding: 25px;
}

.ie-blocked-website__description {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 25px;
    text-align: left;
}

.ie-blocked-website__button-container {
    width: 100%;
    text-align: right;
    display: block;
    height: 50px;
}

.ie-blocked-website__button {
    height: 50px;
    background-color: #D72026;
    text-align: center;
    position: relative;
    width: 250px;
    border-radius: 25px;
    float: right;
}

.ie-blocked-website__button a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    padding-top: 11px;
}

.cm-section-title {
    font-size: 60px;
    line-height: 64px;
    color: #fff;
    text-transform: uppercase;
    font-family: "novecento-sans-wide", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.cm-section-subtitle {
    color: #fff;
    font-size: 30px;
    line-height: 34px;
    text-align: center;
}

.cm-section-subtitle b {
    font-weight: 900;
}

@media only screen and (max-width: 1536px) {
    .cm-section-title {
        font-size: 55px;
        line-height: 59px;
    }

    .cm-section-subtitle {
        font-size: 25px;
        line-height: 29px;
    }
}

@media only screen and (max-width: 1366px) {
    .cm-section-title {
        font-size: 45px;
        line-height: 49px;
    }

    .cm-section-subtitle {
        font-size: 20px;
        line-height: 24px;
    }
}

.cm-section-title div {
    font-family: "novecento-sans-wide", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.cm-section-title--center {
    text-align: center;
}

.cm-section__bg-subtitle {
    font-size: 50px;
    line-height: 54px;
    color: #fff;
    background-color: #000;
    padding: 3px 10px;
    font-family: "novecento-sans-wide", sans-serif;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    position: relative;
}

.cm-section__no-bg-subtitle {
    font-size: 50px;
    line-height: 54px;
    color: #fff;
    padding: 3px 10px;
    font-family: "novecento-sans-wide", sans-serif;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
}

.cm-section__no-bg-subtitle div {
    font-family: "novecento-sans-wide", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.cm-section__bg-subtitle div {
    font-family: "novecento-sans-wide", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.cm-content-area {
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding-left: 15px;
    padding-right: 15px;
}

.cm-content-area--medium {
    max-width: 1500px;
}

.cm-content-area--large {
    max-width: 1550px;
}


.cm-slider-dots {
    list-style: none;
    padding-left: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}


.cm-scroller-dot {
    width: 20px;
    height: 8px;
    background-color: #C99D9D;
    margin: 0;
}

.cm-slider-dots .slick-active .cm-scroller-dot {
    background-color: #D72027;
}

.cm-slider-dots li:first-child .cm-scroller-dot {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.cm-slider-dots li:last-child .cm-scroller-dot {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}



.cm-scroller-arrow-prev {
    position: absolute;
    height: 100%;
    top: 0;
    left: -10px;
    display: flex;
    align-items: center;
    z-index: 20;
}

.cm-scroller-arrow-next {
    position: absolute;
    height: 100%;
    top: 0;
    right: -10px;
    display: flex;
    align-items: center;
    z-index: 20;
}

.cm-scroller-arrow-next img {
    margin-top: -33px;
    margin-right: -10px;
}

.cm-scroller-arrow-prev img {
    margin-left: -10px;
    margin-top: -33px;
}




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

    .cm-section__bg-subtitle {
        font-size: 40px;
        line-height: 48px;
    }

    .cm-section__no-bg-subtitle {
        font-size: 40px;
        line-height: 48px;
    }
}

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

    .cm-section__bg-subtitle {
        font-size: 30px;
        line-height: 36px;
    }

    .cm-section__no-bg-subtitle {
        font-size: 30px;
        line-height: 36px;
    }
}


@media only screen and (max-width: 991px) {
    .cm-section-title {
        font-size: 30px;
        line-height: 34px;
    }

    .cm-section__bg-subtitle {
        font-size: 25px;
        line-height: 35px;
    }

    .cm-section__no-bg-subtitle {
        font-size: 25px;
        line-height: 35px;
    }
}


@-webkit-keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.terms-agreement {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 120;
}


.terms-agreement__button {
    position: relative;
    cursor: pointer;
    height: 85px;
    text-decoration: none !important;
    display: block;
    max-width: 375px;
}

.terms-agreement__button_link {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    font-weight: bold;
    text-align: center;
    height: 85px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/btn-bg.png");
    background-repeat: no-repeat;
    padding-top: 15px;
    margin-left: -5px;
}

@media only screen and (max-width: 991px) {
    .terms-agreement__button_link {
        font-size: 18px;
        line-height: 18px;
    }

    .terms-agreement {
        max-width: 275px !important;
    }

    .terms-agreement__button_link {
        color: #fff;
        font-size: 20px;
        height: 62px;;
    }
}

.terms-agreement__button_link div {
    position: relative;
    z-index: 1;
}

.terms-agreement__button_link:after {
    position: absolute;
    z-index: 0;
    left: -5px;
    right: 10px;
    top: 15px;
    bottom: -5px;
    content: ' ';
    background-color: red;
}


.terms-agreement__checkbox-area {
    width: 100%;
    max-width: 375px;
}

.terms-agreement__checkbox-text a {
    text-decoration: underline;
    color: #fff;
}

.terms-agreement__checkbox {
    width: 36px;
    height: 22px;
    padding: 2px;
    background-color: #E3E3E3;
    border-radius: 11px;
    cursor: pointer;
    transition: all linear 0.2s;
    float: left;
}

.terms-agreement__checkbox--active {
    background-color: #00DD23;
}

.terms-agreement__checkbox_circle {
    transition: all linear 0.2s;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    margin-left: 0px;
}

.terms-agreement__checkbox--active .terms-agreement__checkbox_circle {
    margin-left: 14px;
}

.terms-agreement__checkbox-text{
    font-size: 12px;
    font-weight: 300;
    margin-left: 50px;
    color: #fff;
    margin-bottom: 10px;
}

.terms-agreement__button-text {
    position: relative;
    z-index: 4;
    color: #fff;
}


.terms-agreement__hover-info {
    position: absolute;
    top: 66px;
    left: 0;
    top: -50px;
    background-color: #d72027;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    display: none;
}

.terms-agreement__hover-info:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #D72026;
    position: absolute;
    bottom: -8px;
}

/* ------------- END OF GENERAL ---------------- */

.terms-agreement--green .terms-agreement__button_link:after {
    background: rgb(82,190,190);
    background: linear-gradient(180deg, rgba(82,190,190,1) 0%, rgba(82,190,190,1) 50%, rgba(205,24,23,1) 100%);
}

/* ------------- COOKIE STYLES ---------------- */

#cookie-info-box {
    padding: 30px;
    position: relative;
    border-bottom: 1px solid #d71920;
    top: 0px;
    overflow: hidden;
    display: none;
    background-color: #fff;
    z-index: 9999999999;
}

#cookie-info-box .cookie-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

#cookie-info-box .cookie-text {
    font-size: 14px;
    line-height: 1.5;
}

#cookie-info-box .close-cookie {
    position: absolute;
    top: 15px;
    right: 15px;
}

.cookie-more-info p {
    margin: 0;
    font-size: 14px;
}

.cookie-more-info a {
    text-decoration: underline;
    color: #000;
}

#close-cookie {
    cursor: pointer;
    line-height: 1;
}

.button--cookie-wrapper {
    display: block;
    text-align: right;
}

#cookie-info-box .button--cookie {
    line-height: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
    cursor: pointer;
    background: #D72027;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    width: auto;
    padding: 10px;
    letter-spacing: 0.02em;
    position: relative;
    text-decoration: none;
}

/* ------------- END OF COOKIE STYLES ---------------- */

/* ------------- START SECTION ---------------- */

.start-section {
    min-height: 1000px;
    position: relative;
    padding-top: 35px;
    padding-bottom: 50px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 28%);
}

.start-section__imag-desktop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1300px;
}

.start-section__logo__logo-wrapper {
    display: block;
    background-color: #ffffff;
    max-width: 340px;
    width: 100%;
    height: 79px;
    margin-left: -15px;
    text-align: right;
    padding-right: 15px;
    padding-top: 14px;
    position: relative;
    z-index: 10;
}

.start-section__logo__logo-wrapper img {
    width: 280px;
    height: 77px;
    object-fit: contain;
}

.start-section__right-content {
    width: 450px;
    background-color: #fff;
    position: absolute;
    z-index: 5;
    right: 0;
    top: 150px;
    padding-top: 25px;
    padding-left: 15px;
    padding-bottom: 15px;
}

.start-section__right-content:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: -49px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 320px 0;
    border-color: transparent #fff transparent transparent;
}

.start-section__right-content--shadow {
    z-index: 2;
    background-color: rgba(0,0,0,0.5);
    height: 320px;
    right: 0px;
    top: 160px;
    width: 460px;
}

.start-section__right-content--shadow:before {
    border-color: transparent rgba(0,0,0,0.5) transparent transparent !important;
}

.start-section__right-content-title {
    font-size: 25px;
    font-weight: 900;
    color: #000;
    line-height: 29px;
    text-align: left;
}

.start-section__content-features {
    width: 100%;
    margin-top: 25px;
}

.start-section__content-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.start-section__content-feature div img {
    width: 65px;
}

.start-section__content-feature-pointer {
    margin-right: 10px;
    width: 43px;
}

.start-section__prize {
    position: absolute;
    width: 350px;
    border-radius: 30px;
    background-color: rgba(255,255,255, 0.3);
    padding: 35px 20px 15px 40px;
    bottom: 150px;
    right: 40px;
    color: #fff;
    height: 200px;
    font-size: 20px;
    line-height: 25px;
}

.start-section__prize img {
    position: absolute;
    left: -60px;
    top: -30px;
    height: 250px;
}

.start-section__slogan-mobile {
    display: none;
}

.start-section__prize--mobile {
    display: none;
}

.start-section__imag-desktop-mobile {
    display: none;
}

.start-section__container {
    width: 100%;
}

@media only screen and (max-width: 1683px) {
    .start-section__imag-desktop {
        margin-left: -100px
    }

    .start-section__prize {
        right: 25px;
        bottom: 280px
    }
}

@media only screen and (max-width: 1536px) {
    .start-section {
        min-height: 800px;
    }

    .start-section__imag-desktop {
        width: 1090px;
        margin-left: -100px
    }

    .start-section__prize {
        right: 25px;
        bottom: 80px
    }

}

@media only screen and (max-width: 1366px) {
    .start-section {
        min-height: 700px;
    }

    .start-section__imag-desktop {
        width: 900px;
        margin-left: -100px
    }

    .start-section__prize {
        right: 25px;
        bottom: 0px
    }

}


@media only screen and (max-width: 1200px) {
    .start-section {
        min-height: 700px;
    }

    .start-section__imag-desktop {
        width: 800px;
        margin-left: -100px
    }

    .start-section__prize {
        right: 25px;
        bottom: 0px
    }

}

@media only screen and (max-width: 1100px) {
    .start-section {
        min-height: 700px;
    }

    .start-section__imag-desktop {
        width: 700px;
        margin-left: -100px
    }

    .start-section__prize {
        right: 25px;
        bottom: 0px
    }

}


@media only screen and (max-width: 991px) {
    .start-section__imag-desktop {
        display: none;
    }

    .start-section__prize {
        display:none;
    }

    .start-section__right-content--shadow {
        display: none;
    }

    .start-section__right-content {
        width: 100%;
        background-color: #fff;
        position: relative;
        z-index: 5;
        right: unset;
        top: unset;
        padding-top: 25px;
        padding-left: 15px;
        padding-bottom: 15px;
        max-width: 350px;
        margin: 0 auto;
        box-shadow: -10px 10px rgba(0, 0, 0, 0.5);
    }

    .start-section__right-content:before {
        display: none;
    }

    .start-section__slogan-mobile {
        display: block;
        max-width: 300px;
        margin: 50px auto 25px auto;
    }

    .start-section__prize--mobile {
        display: block;
        position: relative;
        right: unset;
        top: unset;
        margin: 25px auto;
        font-size: 18px;
        line-height: 24px;
        max-width: 276px;
        width: 100%;
        padding-top: 27px;
    }

    .start-section__imag-desktop-mobile {
        display: block;
        max-width: 600px;
        width: 105%;
        margin: 0 auto;
    }

    .start-section__right-content-title {
        text-align: center;
    }

    .start-section__container {
        padding-left: 15px;
        padding-right: 10px
    }
}

@media only screen and (max-width: 768px) {
    .start-section__logo__logo-wrapper {
        display: block;
        background-color: #ffffff;
        max-width: 214px;
        width: 100%;
        height: 66px;
        margin-left: -15px;
        text-align: right;
        padding-right: 16px;
        padding-top: 6px;
    }
    .start-section__logo__logo-wrapper img {
        width: 180px;
        height: 77px;
        object-fit: contain;
    }
}


/* -------------- end of start section ------------- */

/* -------------- start of child section ------------- */

.child-section {
    position: relative;
    padding: 50px 0px;
    background-color: rgba(0,0,0, 0.2);
    background-blend-mode: multiply;
}

.child-section__child-img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.child-section__content-column {
    position: relative;
    padding-top: 250px
}

.child-section__title {
    color: #fff;
    font-size: 70px;
    line-height: 74px;
    text-transform: uppercase;
    font-family: "novecento-sans-wide", sans-serif;
    font-weight: 800;
    font-style: normal;
    position: absolute;
    width: 800px;
    left: -230px;
    top: 60px;
}

.child-section__subtitle {
    text-align: left;
}

.child-section__title-bg {
    position: relative;
    z-index: 3;
    background-color: #000;
    max-width: 430px;
}

.child-section__title-bg:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: -20px;
    border-style: solid;
    border-width: 0 20px 72px 0;
    border-color: transparent #000 transparent transparent;
}

.child-section__title div {
    font-family: "novecento-sans-wide", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.child-section__features {
    margin-top: 50px;
    width: 100%;
}

.child-section__feature {
    display: flex;
    margin-bottom: 25px;
}

.child-section__feature img {
    width: 57px;
    margin-right: 20px;
}

.child-section__feature div {
    font-size: 25px;
    color: #fff;
}

.child-section__subtitle-2 {
    max-width: 600px;
    margin-top: 50px;
}

@media only screen and (max-width: 1536px) {
    .child-section__content-column {
        padding-top: 220px
    }

    .child-section__title {
        font-size: 55px;
        line-height: 59px;
        width: 630px;
        left: -220px;
        top: 60px;
    }

    .child-section__title-bg {
        position: relative;
        z-index: 3;
        background-color: #000;
        max-width: 340px;
    }

    .child-section__title-bg:after {
        border-width: 0 20px 60px 0;
    }

    .child-section__feature img {
        width: 48px;
    }


    .child-section__feature div {
        font-size: 25px;
    }

}

@media only screen and (max-width: 1366px) {
    .child-section__content-column {
        padding-top: 200px
    }

    .child-section__title {
        font-size: 45px;
        line-height: 49px;
        width: 520px;
        left: -200px;
        top: 60px;
    }

    .child-section__title-bg {
        position: relative;
        z-index: 3;
        background-color: #000;
        max-width: 280px;
    }

    .child-section__title-bg:after {
        border-width: 0 20px 50px 0;
    }

    .child-section__feature img {
        width: 41px;
    }


    .child-section__feature div {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1250px) {
    .child-section__title {
        left: -150px;
    }

    .child-section__title-bg {
        position: relative;
        z-index: 3;
        background-color: #000;
        max-width: 280px;
    }
}

@media only screen and (max-width: 991px) {
    .child-section {
        padding-top: 0px;
    }

    .child-section__title {
        position: relative;
        left: unset;
        text-align: center;
        max-width: 300px;
        margin: 25px auto 50px auto;
        top: unset;
        font-size: 40px;
        line-height: 44px;
    }

    .child-section__title-bg {
        position: relative;
        z-index: 3;
        background-color: #000;
        max-width: 270px;
        margin: 0 auto;
    }

    .child-section__content-column {
        padding-top: unset;
    }

    .child-section__title-bg:after {
        border-width: 0 20px 45px 0;
    }

    .child-section__subtitle {
        text-align: center;
    }

    .child-section__child-img {
        width: 100%;
        position: relative;
        z-index: 2;
        margin-top: -70px;
    }
}


/* -------------- end of child section ------------- */

/* -------------- start of peopay-section section ------------- */

.peopay-section {
    padding: 50px 0px;
    position: relative;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 28%);
}

.peopay-section__left-ab {
    position: absolute;
    left: 0;
    bottom: 0;
}

.peopay-section__right-ab {
    position: absolute;
    right: 0;
    top: 200px
}


.peopay-section__header {
    display: flex;
    object-fit: contain;
    max-width: 1170px;
    margin: 0px auto 50px auto;
}

.peopay-section__header-mobile {
    display: none;
}

.peopay-section__column {
    display: flex;
    flex-direction: column;
}

.peopay-section__column-1 {
    position: relative;
}

.peopay-section__column-plus {
    content: ' ';
    position: absolute;
    width: 64px;
    height: 64px;
    top: 0px;
    right: -50px;

}

.peopay-section__column-img {
    display: flex;
    max-width: 315px;
    width: 100%;
    margin: 0px auto 50px auto;
}

.peopay-section__column-img-2 {
    max-width: 294px;
}

.peopay-column__less-more-btn {
    text-align: center;
    margin-bottom: 15px;
}

.peopay-column__less-more-btn img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.peopay-section__column__title {
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 900;
    font-size: 30px;
}

.peopay-column__body {
    display: none;
    flex-direction: column;
    width: 100%;
}

.peopay-column__body--active {
    display: flex;
}

.peopay__feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.peopay__feature div {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
}

.peopay__feature img {
    display: flex;
    object-fit: contain;
    margin-right: 20px;
    width: 57px;
}

.peopay-column__note {
    color: #fff;
}

.peopay-column__note--center {
    text-align: center;
}

.peopay-column__note a {
    color: #fff;
}

.peopay-column__note--left {
    margin-left: 75px;
}

@media only screen and (max-width: 1536px) {
    .peopay-section__header {
        max-width: 970px;
    }

    .peopay__feature div {
        font-size: 20px;
    }

    .peopay__feature img {
        width: 47px;
    }

    .peopay-column__note {
        font-size: 15px;
    }

    .peopay-column__note--left {
        margin-left: 65px;
    }

}

@media only screen and (max-width: 1366px) {
    .peopay-section__header {
        max-width: 830px;
    }

    .peopay__feature div {
        font-size: 15px;
    }

    .peopay-section__column-img {
        margin-bottom: 25px;
    }

    .peopay__feature img {
        width: 40px;
    }

    .peopay-section__column__title {
        font-size: 25px;
    }

    .peopay-section__left-ab {
        position: absolute;
        left: -100px;
    }

    .peopay-section__right-ab {
        position: absolute;
        right: -100px;
        top: 200px
    }

    .peopay-column__note--left {
        margin-left: 60px;
    }

}

@media only screen and (max-width: 991px) {
    .peopay-section__header {
        display: none;
    }

    .peopay-section__header-mobile {
        display: flex;
        object-fit: contain;
        margin: 0px auto 50px auto;
        max-width: 345px;
        width: 100%;
    }

    .peopay-section__column-plus {
        position: relative;
        margin: 50px auto;
        right: unset;
    }

    .peopay__feature img {
        margin-right: 15px;
    }

    .peopay-section__left-ab {
        position: absolute;
        left: unset;
        right: -20px;
        transform: rotate(180deg);
        width: 100px;
        bottom: -50px;
    }

    .peopay-section__right-ab {
        position: absolute;
        width: 60px;
        right: 0px;
        top: 350px
    }

    .peopay-column__note--left {
        margin-left: 55px;
    }
}

/* -------------- end of peopay-section section ------------- */

/* -------------- start of kids-rotator section ------------- */

.kids-section {
    padding: 50px 0px;
    position: relative;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 28%);
}

.kids-section__header {
    display: flex;
    object-fit: contain;
    max-width: 930px;
    margin: 0px auto 100px auto;
}

.kids-section__header-mobile {
    display: none;
}

.kids-section__column {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 30px;
    width: 100%;
    background-color: rgba(255,255,255, 0.3);
    min-height: 220px;
    margin-bottom: 75px;
}

.kids-section__column div {
    color: #fff;
    font-size: 25px;
    line-height: 29px;
    text-align: center;
}

.kids-section__column img {
    width: 105px;
    height: 105px;
    margin-top: -62px;
    margin-bottom: 15px;
    object-fit: contain;
}

.kids-section__desktop-tiles {
    width: 100%;
}

.kids-section__mobile-tiles {
    display: none;
}

.kids-section__scroller .slick-track {
    padding-top: 50px;
}

.kids-section__scroller .cm-scroller-arrow-next {
    right: -10px
}

.kids-section__scroller .cm-scroller-arrow-prev {
    left: -20px
}

.kids-section__scroller .cm-scroller-arrow-next img {
    width: 20px;
}

.kids-section__scroller .cm-scroller-arrow-prev img {
    width: 20px;
}

.kids-section__scroller .cm-scroller-arrow-prev {
    left: -10px
}

.kids-section__main-img-1 {
    width: 100%;
    object-fit: contain;
}

.kids-section__title-main-1 {
    text-align: right;
    margin-bottom: 25px;
}

.kids-section__subtitle-main-1 {
    text-align: right;
}

.kids-section__main-img-2 {
    width: 100%;
}

.kids-section__subtitle-main-2 {
    text-align: left;
    max-width: 550px;
}

.kids-section__stores {
    margin-top: 100px;
    display: flex;
}

.kids-section__stores a {
    display: flex;
}

.kids-section__stores a img {
    width: 100%;
    object-fit: contain;
}

.kids-section__stores-play {
    margin-right: 15px;
}

.kids-section__stores-apple {
    margin-right: 15px;
}

.kids-section__stores--mobile {
    display: none;
}

@media only screen and (max-width: 1536px) {
    .kids-section__header {
        max-width: 775px;
    }

    .kids-section__stores-play {
        max-width: 240px;
    }

    .kids-section__stores-apple {
        max-width: 212px;
    }
}

@media only screen and (max-width: 1366px) {
    .kids-section__header {
        max-width: 660px;
    }

    .kids-section__column div {
        font-size: 20px;
        line-height: 25px;
    }

    .kids-section__stores-play {
        max-width: 204px;
    }

    .kids-section__stores-apple {
        max-width: 182px;
    }
}


@media only screen and (max-width: 991px) {
    .kids-section__header {
        display: none;
    }

    .kids-section__header-mobile {
        display: block;
        width: 100%;
        max-width: 325px;
        margin: 0px auto 50px auto;
    }

    .kids-section__desktop-tiles {
        display: none;
    }

    .kids-section__mobile-tiles {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .kids-section__column {
        margin-left: 5px;
        margin-right: 5px;
    }

    .kids-section__title-main-1 {
        text-align: center;
        mrgin-bottom: 50px;
    }

    .kids-section__subtitle-main-1 {
        text-align: center;
        margin-bottom: 50px;
    }

    .kids-section__stores {
        flex-direction: column;
        align-items: center;
    }

    .kids-section__stores-play {
        margin-right: unset;
        margin-bottom: 15px;
    }

    .kids-section__stores-apple {
        margin-right: unset;
    }

    .kids-section__subtitle-main-2 {
        text-align: center;
        margin: 50px auto 50px auto;
    }

    .kids-section__stores--desktop {
        display: none;
    }

    .kids-section__stores--mobile {
        display: flex;
        margin-top: 25px;
    }
}

/* -------------- end of kids-rotator section ------------- */

/* -------------- start of phone-rotator section ------------- */

.phone-rotator-section {
    padding: 50px 0px;
    background-color: rgba(0,0,0, 0.2);
    background-blend-mode: multiply;
}

.phone-rotator-section__title {
    text-align: center;
    max-width: 1316px;
    margin: 0 auto 50px auto;
}

.phone-rotator-section__title .cm-section__bg-subtitle {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 15px;
    position: relative;
}

.phone-rotator-section__title .cm-section__bg-subtitle:before {
    content: ' ';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 72px 0;
    border-color: transparent #000 transparent transparent;
    position: absolute;
    left: -30px;
    top: 0
}

.phone-rotator__slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.phone-rotator__slide {
    display: flex !important;
    align-items: center;
}

.phone-rotator__slide-img {
    margin-right: 100px;
}

.phone-rotator__slide-title {
    color: #fff;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 50px;
    width: 100%;
}

.phone-rotator__slide-underline {
    width: 250px;
}

.phone-rotator__slide-desc {
    color: #fff;
    font-size: 30px;
    line-height: 38px;
    margin-top: 25px;
    max-width: 440px;
}

.phone-rotator__slider .cm-scroller-arrow-next {
    right: unset;
    left: 370px;
}


@media only screen and (max-width: 1536px) {
    .phone-rotator-section__title {
        max-width: 1100px;
    }

    .phone-rotator-section__title .cm-section__bg-subtitle {
        max-width: 500px;
    }

    .phone-rotator-section__title .cm-section__bg-subtitle:before {
        border-width: 0 30px 66px 0;
    }

    .phone-rotator__slide-title {
        font-size: 40px;
        line-height: 44px;
    }

    .phone-rotator__slide-desc {
        font-size: 25px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 1366px) {
    .phone-rotator-section__title {
        max-width: 800px;
    }

    .phone-rotator-section__title .cm-section__bg-subtitle:before {
        border-width: 0 30px 55px 0;
    }

    .phone-rotator-section__title .cm-section__bg-subtitle {
        max-width: 400px;
    }

    .phone-rotator__slide-title {
        font-size: 30px;
        line-height: 35px;
    }

    .phone-rotator__slide-desc {
        font-size: 20px;
        line-height: 25px;
    }
}

@media only screen and (max-width: 991px) {
    .phone-rotator-section__title {
        max-width: 650px;
    }

    .phone-rotator-section__title .cm-section__bg-subtitle:before {
        border-width: 0 30px 52px 0;
    }

    .phone-rotator-section__title .cm-section__bg-subtitle {
        max-width: 350px;
    }

    .phone-rotator__slide {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .phone-rotator__slider-wrapper {
        max-width: 350px;

    }

    .phone-rotator__slide-title {
        font-size: 25px;
        line-height: 30px;
        text-align: center;
    }

    .phone-rotator__slide-desc {
        font-size: 20px;
        line-height: 25px;
        text-align: center;
    }

    .phone-rotator__slide-img {
        margin-right: unset;
        max-width: 250px;
    }

    .phone-rotator__slider .cm-scroller-arrow-next {
        left: unset;
        right: 10px;
    }

    .phone-rotator__slider .cm-scroller-arrow-next img {
        margin-top: -130px
    }

    .phone-rotator__slider .cm-scroller-arrow-prev {
        left: 0;
    }

    .phone-rotator__slider .cm-scroller-arrow-prev img {
        left: 0;
        margin-top: -130px;
    }

    .phone-rotator__slide-underline {
        margin: 0 auto;
    }

}


/* -------------- end of phone-rotator section ------------- */

/* -------------- start of whats-more section ------------- */

.whats-more-section {
    padding: 50px 0px;
    position: relative;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 28%);
}

.whats-more-section__title {
    display: flex;
    object-fit: contain;
    margin: 0px auto 50px auto;
    max-width: 619px;
}

.whats-more-section__title--mobile {
    display: none;
}

.whats-more-section__subtitle div {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.whats-more-section__main-img {
    width: 100%;
}

.whats-more-section__main-img-mobile {
    display: none;
}

.whats-more-section__left {
    position: absolute;
    bottom: 200px;
    left: -200px;
}

.whats-more-section__right {
    position: absolute;
    right: -160px;
    top: 250px;
}

.whats-more__scroller {
    max-width: 990px;
    margin: 0 auto;
}

.whats-more__phone {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1536px) {
    .whats-more-section__title {
        max-width: 515px;
    }

    .whats-more-section__main-img {
        max-width: 890px;
        margin: 0 auto;
        width: 100%;
        display: block;
    }

    .whats-more-section__left {
        position: absolute;
        bottom: 200px;
        left: -250px;
    }

    .whats-more-section__right {
        position: absolute;
        right: -160px;
        top: 250px;
    }

}

@media only screen and (max-width: 1366px) {
    .whats-more-section__title {
        max-width: 440px;
    }

    .whats-more-section__main-img {
        max-width: 710px;
    }

    .whats-more-section__left {
        position: absolute;
        bottom: 100px;
        left: -250px;
    }

    .whats-more-section__right {
        position: absolute;
        right: -180px;
        top: 200px;
    }
}

@media only screen and (max-width: 991px) {
    .whats-more-section__title {
        display: none;
    }

    .whats-more-section__title--mobile {
        display: flex; !important;
        width: 100%;
    }

    .whats-more-section__main-img {
        display: none;
    }

    .whats-more-section__main-img-mobile {
        display: block;
        width: 100%;
    }

    .whats-more-section__left {
        position: absolute;
        bottom: unset;
        top: 300px;
        width: 150px;
        left: -50px;
    }

    .whats-more-section__right {
        position: absolute;
        right: -100px;
        top: 320px;
        width: 250px
    }
}


/* -------------- end of whats-more section ------------- */

/* -------------- start of video section ------------- */

.video-section {
    padding: 50px 0px 100px 0px;
    position: relative;
}

.video-section__gradient {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0) 100%);
}

.video-section__scroller-wrapper {
    max-width: 960px;
    margin: 50px auto 0px auto;
}

.video-section__title {
    position: relative;
    text-align: center;
    z-index: 1;
    margin: 0px auto 50px auto;
    max-width: 965px;
}

.video-section__title div {
    z-index: 2;
    position: relative;
}

.video-section__title img {
    width: calc(100% + 100px);
    position: absolute;
    bottom: -20px;
    left: -50px;
    z-index: 0;
}

.video-section__scroller-slider {
    width: 100%;
}

.video-section__scroller-slide-img {
    width: 100%;
    cursor: pointer;
}

.video-section__scroller-slider .cm-scroller-dot {
    width: 80px;
}

.video-section__scroller-slider .cm-scroller-arrow-next {
    margin-right: -50px;
}


.video-section__scroller-slider .cm-scroller-arrow-prev {
    margin-left: -50px;
}

.video-full-screen__lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 9999;
    display: none;
    padding-left: 50px;
    padding-right: 50px;
}

.video-full-screen__close {
    position: absolute;
    color: #fff;
    font-weight: 900;
    font-size: 30px;
    right: 50px;
    top: 50px;
    user-select: none;
    cursor: pointer;
}

.video-full-screen__video {
    width: calc(100vw - 100px);
    height: calc(((100vw - 100px) / 16) * 9);
    margin-top: 100px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.video-full-screen__video iframe {
    width: 100%;
    height: 100%;
}



@media only screen and (max-width: 1366px) {
    .video-section__title img {
        bottom: -20px;
    }

    .video-section__title {
        position: relative;
        text-align: center;
        z-index: 1;
        max-width: 720px;
        margin: 0 auto 50px auto;
    }
}

@media only screen and (max-width: 991px) {
    .video-section__title {
        margin-bottom: 50px;
    }

    .video-section__title {
        max-width: 480px;
        margin-bottom: 25px;
    }

    .video-section__title img {
        left: 0;
        right: unset;
        bottom: -10px;
        width: 150%;
    }
}

/* -------------- start of video section ------------- */


/* -------------- start of howto section ------------- */

.howto-section {
    position: relative;
    padding: 50px 0px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 28%);
}

.howto-section__image {
    max-width: 400px;
    width: 100%;
    display: flex;
    object-fit: contain;
    margin: 0px auto 50px auto;
}

.howto-section__desc {
    max-width: 520px;
    margin: 0px auto 50px auto !important;
}

.howto-section__right {
    position: absolute;
    top: 0;
    right: -178px;
    max-width: 240px;
}

.howto-section__column {
    position: relative;
}

.howto-section__column-1 {
    padding-right: 50px;
}

.howto-section__column-2 {
    padding-left: 50px;
}

.howto-section__column:after {
    content: ' ';
    width: 80px;
    height: 100px;
    background-image: url("../img/x.png");
    background-size: 100%;
    position: absolute;
    top: 100px;
    right: -50px
}

@media only screen and (max-width: 991px) {
    .howto-section__right {
       display: none;
    }

    .howto-section__column-1 {
        padding-right: unset;
    }

    .howto-section__column-2 {
        padding-left: unset;
    }

    .howto-section__column:after {
        display: block;
        top: unset;
        right: unset;
        position: relative;
        bottom: 0;
        margin: 25px auto 0px auto;
    }

    .howto-section__image {
        max-width: 265px;
    }

}

/* -------------- end of howto section ------------- */



/* -------------- start of phone switch section ------------- */

.phone-switch-section {
    position: relative;
    padding: 50px 0px;
    background-color: rgba(0,0,0, 0.2);
    background-blend-mode: multiply;
}

.phone-switch-section__title {
    position: relative;
    text-align: center;
    z-index: 1;
    margin: 0px auto 50px auto;
    max-width: 950px;
}

.phone-switch-section__title div {
    z-index: 2;
    position: relative;
}

.phone-switch-section__title img {
    width: calc(100% + 100px);
    position: absolute;
    bottom: -40px;
    left: -50px;
    z-index: 0;
}

.phone-switch-section__wrapper {
    max-width: 1520px;
    margin: 50px auto 50px auto;
    padding-left: 20px;
    padding-right: 20px;

}

.phone-section__tab {
    width: 100%;
    display: none;
    align-items: center;
}

.phone-section__tab--active {
    display: flex;
}

.phone-switch-section__wrapper__img {
    width: 100%;
    display: flex;
    max-width: 600px;
    flex: 1;
}

.phone-switch-section__column {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.phone-switch-section__column-1 {
    padding-right: 20px;
}

.phone-switch-section__column-2 {
    padding-left: 20px;
}

.phone-section__cloud {
    width: 100%;
    border-radius: 30px;
    background-color: rgba(255,255,255, 0.3);
    padding: 25px 15px;
    margin-bottom: 25px;
}

.phone-section__cloud-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center;
}

.phone-section__cloud-desc {
    color: #fff;
    font-size: 15px;
    text-align: center;
}

.phone-section__tab-scroller {
    display: none;
}

.phone-switch-section__switch {
    max-width: 760px;
    margin: 0px auto 100px auto;
    background-color: #C5C4C2;
    display: flex;
    height: 78px;
}

.phone-switch-section__switch-btn {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 900;
    font-size: 40px;
    color: #fff;
    position: relative;
    user-select: none;
}

.phone-switch-section__switch-btn-1:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 78px 40px;
    border-color: transparent transparent #C5C4C2 transparent;
    left: -40px;
    top: 0;
}

.phone-switch-section__switch-btn-2:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 78px 40px 0 0;
    border-color: #C5C4C2 transparent transparent transparent;
    right: -40px;
    top: 0;
}

.phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-1 {
    background-color: #D10A15
}

.phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-1:before {
    border-color: transparent transparent #D10A15 transparent;
}

.phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-1:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 78px 40px 0 0;
    border-color: #D10A15 transparent transparent transparent;
    right: -40px;
    top: 0;
}

.phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-2 {
    background-color: #6259E6
}

.phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-2:after {
    border-color: #6259E6 transparent transparent transparent;;
}

.phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-2:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 78px 40px;
    border-color: transparent transparent #6259E6 transparent;
    left: -40px;
    top: 0;
}

@media only screen and (max-width: 1536px) {
    .phone-switch-section__switch {
        max-width: 620px;
        height: 64px;
    }

    .phone-switch-section__switch-btn-2:after {
        border-width: 64px 40px 0 0;
    }

    .phone-switch-section__switch-btn-1:before {
        border-width: 0 0 64px 40px;
    }

    .phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-1:after {
        border-width: 64px 40px 0 0;
    }

    .phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-2:before {
        border-width: 0 0 64px 40px;
    }

    .phone-switch-section__switch-btn {
        font-size: 30px;
    }
}

@media only screen and (max-width: 1366px) {
    .phone-switch-section__title img {
        bottom: -20px;
    }

    .phone-switch-section__title {
        position: relative;
        text-align: center;
        z-index: 1;
        max-width: 700px;
        margin: 0 auto 50px auto;
    }

    .phone-switch-section__wrapper__img {
        width: 100%;
        display: flex;
        max-width: 450px;
        flex: 1;
    }

    .phone-switch-section__switch {
        max-width: 530px;
        height: 55px;
    }

    .phone-switch-section__switch-btn-2:after {
        border-width: 55px 40px 0 0;
    }

    .phone-switch-section__switch-btn-1:before {
        border-width: 0 0 55px 40px;
    }

    .phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-1:after {
        border-width: 55px 40px 0 0;
    }

    .phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-2:before {
        border-width: 0 0 55px 40px;
    }

    .phone-switch-section__switch-btn {
        font-size: 25px;
    }
}

@media only screen and (max-width: 991px) {
    .phone-switch-section__title {
        margin-bottom: 50px;
    }

    .phone-switch-section__title {
        max-width: 320px;
        margin-bottom: 25px;
    }

    .phone-switch-section__title img {
        left: 0;
        right: unset;
        bottom: -10px;
        width: 150%;
    }

    .phone-section__tab {
        flex-direction: column;
    }

    .phone-switch-section__wrapper__img {
        margin: 0 auto;
    }

    .phone-switch-section__column {
        display: none;
    }

    .phone-switch-section__wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .phone-section__tab-scroller {
        display: block;
        width: 100%;
        margin-top: 50px;
    }

    .phone-section__cloud {
        margin-left: 15px;
        margin-right: 15px;
        min-height: 300px;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .phone-switch-section__switch {
        max-width: 260px;
        height: 40px;
        margin-bottom: 50px;
    }

    .phone-switch-section__switch-btn-2:after {
        border-width: 40px 20px 0 0;
        right: -20px;
    }

    .phone-switch-section__switch-btn-1:before {
        border-width: 0 0 40px 20px;
        left: -20px;
    }

    .phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-1:after {
        border-width: 40px 20px 0 0;
        right: -20px;
    }

    .phone-switch-section__switch-btn--active.phone-switch-section__switch-btn-2:before {
        border-width: 0 0 40px 20px;
        left: -20px;
    }

    .phone-switch-section__switch-btn {
        font-size: 20px;
    }

}


/* -------------- end of phone switch section ------------- */



/* -------------- start of cards scroller section ------------- */

.cards-scroller-section {
    padding: 50px 0;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 28%);
}

.cards-scroller-section__title {
    text-align: center;
    margin-bottom: 50px;
}

.cards-scroller-section_slider-wrapper {
    max-width: 1100px;
    margin: 0px auto 50px auto;
}

.cards-scroller-section_slide {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    transition: all linear 0.2s;
}

.cards-scroller-section_slide.slick-center {
    transform: scale(1.15);
}

.cards-scroller-section_slide img {
    width: 100%;
}

.cards-scroller-section_slider .slick-track {
    padding-top: 30px;
    padding-bottom: 50px;
}

@media only screen and (max-width: 1160px) {
    .cards-scroller-section_slider-wrapper {
        max-width: 920px;
    }
}

@media only screen and (max-width: 991px) {
    .cards-scroller-section_slide {
        transform: scale(1);
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        transition: all linear 0.2s;
    }
}

@media only screen and (max-width: 450px) {
    .cards-scroller-section_slide {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        transition: all linear 0.2s;
    }
}


/* -------------- end of cards scroller section ------------- */

/* -------------- start of lg scroll section ------------- */

.lg-scroll-section {
    padding: 100px 0px;
    position: relative;
    min-height: 500px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 28%);
}

.news-left {
    position: absolute;
    top: 180px;
    left: -100px;
    max-width: 400px
}

.news-right {
    position: absolute;
    top: 180px;
    right: -200px;
    max-width: 400px
}


.lg-scroll__title {
    position: relative;
    text-align: center;
    z-index: 1;
    margin: 0px auto 50px auto;
    max-width: 925px;
}

.lg-scroll__title div {
    z-index: 2;
    position: relative;
}

.lg-scroll__title img {
    width: calc(100% + 100px);
    position: absolute;
    bottom: -40px;
    left: -50px;
    z-index: 0;
}

.lg-scroller__subtitle-border {
    display: block;
    position: relative;
    max-width: 430px;
    margin: 0 auto;
}

.lg-scroller__subtitle-border img {
    position: absolute;
    bottom: -3px;
    right: 0;
}

.lg-scroller__subtitle {
    margin-bottom: 50px;
}

.lg-section__subtitle-2 {
    max-width: 550px;
    text-align: center;
    margin: 0px auto 50px auto;
}

.lg-section__subtitle-2 .cm-section__bg-subtitle:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 55px 0;
    border-color: transparent #000 transparent transparent;
    left: -20px;
    top: 0;
}

.lg-scroll-column {
    display: flex;
    width: 100%;
    color: #fff;
    align-items: center;
    margin-bottom: 50px;
}

.lg-scroll-column img {
    object-fit: contain;
    margin-right: 15px;
    height: 150px;
}

.lg-scroll-column__text {
    font-size: 24px;
    line-height: 28px;
    position: relative;
}

.lg-scroll-column__text img {
    width: 100%;
    margin-left: -10px;
    height: unset;
    margin-top: 25px;
    max-width: 300px;
}

.lg-scroller__subtitle-3 {
    margin-bottom: 100px;
}

.lg-scroll-section__horizontal-content {
    width: 100%;
}

.lg-section__scroller {
    width: 100%;
}

.lg-section__scroller .cm-scroller-arrow-prev {
    top: 300px;
    align-items: flex-start;
}

.lg-section__scroller .cm-scroller-arrow-next {
    top: 300px;
    align-items: flex-start;
}

.first-slide-top {
    display: flex;
    width: 100%;
    align-items: center;
}

.second-slide-top {
    display: flex;
    width: 100%;
    align-items: center;
}

.third-slide-top {
    display: flex;
    align-items: center;
}

.fourth-slide-top {
    display: flex;
    align-items: center;
}


.lg-scroll-section__slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lg-scroll-section__horizontal-element {
    min-height: 440px;
    max-width: 1050px;
    margin: 0 auto;
}

.lg-scroll-section__horizontal-element-1 {
    max-width: 991px;
}

.lg-scroll-section__horizontal-element--last {
    max-width: 600px;
    margin: 0 auto;
}

.lg-scroll-section__horizontal-element__body {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    align-items: center;
}

.lg-scroll-section__horizontal-element__body-container {
    position: relative;
    border-radius: 30px;
    padding: 15px;
    width: 530px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    text-align: center;
}


.lg-scroll-section__horizontal-element__phone {
    margin-left: 25px;
}

.lg-coin-img {
    position: absolute;
    right: -40px;
    bottom: -40px;
}

.lg-diamond-img-3 {
    position: absolute;
    left: -35px;
    top: -45px;
    transform: rotate(-90deg);
}

.lg-scroll-section__horizontal-element__body-features {
    display: block;
    width: 100%;
    margin-top: 50px;
}


.lg-scroll-section__horizontal-element__body-features-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.lg-scroll-section__horizontal-element__body-features-column {
    flex: 1;
}

.lg-scroll-section__horizontal-element__body-features-title {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 900;
}

.lg-scroll-section__horizontal-element__body-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.horizontal-element__body__separator {
    margin-bottom: 10px;
}

.lg-scroll-section__horizontal-element__feature-bulb {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 900;
    background-color: #1F1D4C;
    margin-right: 10px;
}

.lg-scroll-section__horizontal-element__body-container--top {
    margin-top: -50px
}

.lg-scroll-section__horizontal-element__feature-txt {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
}

.lg-scroll-section__horizontal-element__body-feature-7 {
    margin-top: 0px;
}

.lg-diamond-img {
    top: -50px;
    left: -50px;
    position: absolute;
}

.lg-diamond-img-2 {
    position: absolute;
    top: -50px;
    right: -30px;
}

.lg-coin-img-2 {
    position: absolute;
    top: -60px;
    right: 00px;
}

.lg-section__element-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lg-section__element-step--fake {
    opacity: 0;
}

.lg-section__element-step {
    width: 173px;
    margin-bottom: 25px;
}

.lg-section__element-title {
    display: flex;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.lg-section__element-title img {
    height: 41px;
    object-fit: contain;
    margin-right: 15px;
}

.lg-section__element-step-body {
    width: 100%;
    border-radius: 22px;
    background-color: #262D64;
    padding: 10px 5px;
    height: 305px;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
}

.lg-section__element-step-label {
    width: 100%;
    margin-top: 15px
}

.lg-section__element-step-body-p {
    padding-left: 15px;
    position: relative;
    margin-bottom: 3px;
}

.lg-section__element-step-body-p::before {
    content: ' ';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    border: solid 1px #fff;
    top: 6px;
    left: 3px;
}

.lg-section__element-step-body-p--full::before {
    background-color: #fff;
}

.lg-content-lg-wrapper {
    position: relative;
    width: calc(100% - 60px);
    margin: 50px auto 0px auto;
}

.lg-content-arrow-right {
    position: absolute;
    top: calc(50% - 45px);
    right: -30px;
    width: 20px;
}

.lg-content-arrow-left {
    position: absolute;
    top: calc(50% - 45px);
    left: -30px;
    width: 20px;
}

.lg-scroll-section__horizontal-element__body-container--last {
    margin-right: unset !important;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.lg-scroll-section__horizontal-element__phone-6 {
    margin: 0 auto;
}


@media only screen and (max-width: 1536px) {
    .lg-scroller__subtitle-border {
        max-width: 330px;
    }

    .lg-scroller__subtitle-border img {
        position: absolute;
        bottom: -3px;
        right: 0;
        max-width: 200px;
    }

    .lg-scroll-column__text {
        font-size: 20px;
        line-height: 24px;
    }

    .lg-scroller__subtitle {
        max-width: 800px;
        margin: 25px auto;
    }
}

@media only screen and (max-width: 1366px) {
    .lg-scroll__title img {
        bottom: -20px;
    }

    .lg-scroll__title {
        position: relative;
        text-align: center;
        z-index: 1;
        max-width: 760px;
        margin: 0 auto 50px auto;
    }

    .lg-section__subtitle-2 {
        max-width: 350px;
    }


    .lg-section__subtitle-2 .cm-section__bg-subtitle:after {
        border-width: 0 20px 45px 0;
    }



    .lg-scroll-column__text {
        font-size: 15px;
        line-height: 18px;
    }

    .lg-scroll-column__text img {
        margin-bottom: unset;
    }

    .news-left {
        position: absolute;
        top: 180px;
        left: -150px;
        max-width: 400px
    }

    .news-right {
        position: absolute;
        top: 180px;
        right: -230px;
        max-width: 400px
    }
}

@media only screen and (max-width: 1020px) {
    .first-slide-top .lg-scroll-section__horizontal-element__body-container {
        padding-top: 15px;
    }
}

.lg-scroll-section__horizontal-element__body-features-row-mobile {
    display: none;
}

.lg-scroll-section__horizontal-element__phone-6-mobile {
    display: none !important;
}

.lg-scroll-section__horizontal-element__phone-4-mobile {
    display: none !important;
}

.lg-scroll-section__horizontal-element__body-container--veritcal-padding {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

@media only screen and (max-width: 991px) {
    .lg-scroll-section {
        padding-top: 0px;
    }

    .lg-scroll__title {
        margin-bottom: 50px;
    }


    .lg-scroll-section__horizontal-element__body-container--veritcal-padding {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .lg-scroll-column {
        flex-direction: column;
        max-width: 300px;
        margin: 0px auto 50px auto;;
    }

    .lg-scroll-column img {
        margin-bottom: 25px;
    }

    .lg-scroll-column__text {
        text-align: center;
    }

    .lg-scroll-column__text img {
        display: none;
    }

    .lg-scroll__title {
        max-width: 320px;
        margin-bottom: 25px;
    }

    .lg-scroll__title img {
        left: unset;
        right: 0;
        bottom: -10px;
        width: 150%;
    }

    .lg-section__subtitle-2 {
        max-width: 320px;
    }

    .lg-section__subtitle-2 .cm-section__bg-subtitle:after {
        border-width: 0 20px 42px 0;
    }

    .lg-content-arrow-right {
       display: none;
    }

    .lg-content-arrow-left {
        display: none;
    }

    .lg-content-lg-wrapper {
        width: 100%;
    }

    .cm-content-area--full-width-mobile {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0
    }

    .news-left {
       display: none;
    }

    .news-right {
        display: none;
    }

    .lg-scroll-section__horizontal-element {
        min-height: 440px;
        max-width: 324px;
        margin: 0 auto;
    }

    .lg-scroll-section__horizontal-content {
        max-width: 325px;
        margin: 0 auto;
    }

    .lg-scroll-section__horizontal-element__body-container {
        position: relative;
        border-radius: 30px;
        padding: 15px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.3);
        color: #fff;
        font-size: 15px;
        line-height: 19px;
        text-align: center;
    }

    .lg-scroll-section__horizontal-element__phone-1 {
        margin-top: 15px;
    }

    .lg-coin-img {
        position: absolute;
        right: -29px;
        bottom: -34px;
        width: 91px;
    }

    .lg-scroll-section__horizontal-element__feature-bulb {
        flex: 1;
        max-width: 24px;
    }

    .lg-scroll-section__horizontal-element__feature-txt {
        flex: 1;
    }

    .lg-scroll-section__horizontal-element__body-features-column-2 {
        padding-left: 5px;
    }



    .first-slide-top {
        flex-direction: column;
    }

    .lg-scroll-section__horizontal-element__body-features-row-desktop {
        display: none;
    }

    .lg-scroll-section__horizontal-element__body-features-row-mobile {
        display: flex;
    }

    .lg-scroll-section__horizontal-element__feature-txt {
        font-size: 12px;
    }

    .lg-scroll-section__horizontal-element__feature-bulb {
        font-size: 13px;
    }

    .lg-scroll-section__horizontal-element__body-feature-7 {
        margin-top: -12px;
    }

    .second-slide-top {
        flex-direction: column-reverse;
    }

    .lg-scroll-section__horizontal-element__phone-3 {
        width: 100%
    }

    .third-slide-top {
        flex-direction: column-reverse;
        margin-top: 20px;
    }

    .lg-scroll-section__horizontal-element__phone-3 {
        width: 100%;
        margin-top: 15px;
    }

    .lg-scroll-section__horizontal-element__phone-1 {
        width: 100%;
    }

    .lg-diamond-img-2 {
        position: absolute;
        top: -31px;
        right: -11px;
        max-width: 60px;
    }

    .fourth-slide-top {
        flex-direction: column;
        align-items: center;
        margin-top: 100px;
    }

    .lg-scroll-section__horizontal-element__phone-4 {
        width: 100%;
        display: none !important;
    }

    .lg-scroll-section__horizontal-element__phone-4-mobile {
        width: 100%;
        display: block !important;
        max-width: 180px;
        margin-left: unset !important;
    }

    .lg-scroll-section__horizontal-element__phone-6 {
        width: 100%;
        display: none !important;
    }

    .lg-scroll-section__horizontal-element__phone-6-mobile {
        display: block !important;
        margin-top:-20px;
        margin-left: unset !important;
    }

    .lg-section__element-step {
        max-width: calc(50% - 5px);
        height: auto;
    }

    .lg-section__element-step-body {
        min-height: 320px;
        font-size: 10px;
    }

    .lg-section__element-step-body-p {
        font-size: 10px;
    }

    .lg-section__element-step-body-1 {
        min-height: 250px;
        height: 250px !important;
    }

    .lg-section__element-step-body--last {
        min-height: 200px;
        height: 200px !important;
    }

    .lg-section__element-title {
        font-size: 14px;
    }

    .lg-section__element-title img {
        height: 25px;
        object-fit: contain;
        margin-right: 15px;
    }

    .lg-section__scroller .cm-scroller-arrow-prev {
        top: 200px;
        align-items: flex-start;
        left: 0;
    }

    .lg-section__scroller .cm-scroller-arrow-next {
        top: 200px;
        align-items: flex-start;
        right: 0;
    }

    .lg-section__scroller .cm-scroller-arrow-prev img {
        width: 15px !important;
    }

    .lg-section__scroller .cm-scroller-arrow-next img {
        width: 15px !important;
    }

    .lg-scroll-section__horizontal-element__body-features {
        margin-top: unset;
    }

}


/* -------------- end of lg scroll section ------------- */

/* -------------- start of zero-section ------------ */

.zero-section {
    padding: 50px 0px;
    position: relative;
    background-color: rgba(0,0,0, 0.2);
    background-blend-mode: multiply;
}

.zero-section__right {
    position: absolute;
    right: -150px;
    top: 0;
}

.zero-section__title {
    position: relative;
    text-align: center;
    z-index: 1;
    margin: 0px auto 50px auto;
    max-width: 870px;
}

.zero-section__title div {
    z-index: 2;
    position: relative;
}

.zero-section__title img {
    width: calc(100% + 100px);
    position: absolute;
    bottom: -40px;
    left: -50px;
    z-index: 0;
}

.zero-section__zeros-wrapper {
    margin-top: 50px;
}

.zero-section__zero-tile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 25px;
}

.zero-section__zero-tile img {
    width: 200px;
    margin-bottom: 25px;
    display: flex;
    align-self: center;
    margin-right: -15px;
}

.zero-section__zero-tile div {
    color: #fff;
    text-align: center;
    font-size: 23px;
}

.zero-section__middle-text {
    font-size: 25px;
    text-align: center;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 1366px) {
    .zero-section__title img {
        bottom: -20px;
    }

    .zero-section__title {
        position: relative;
        text-align: center;
        z-index: 1;
        max-width: 560px;
        margin: 0 auto 50px auto;
    }

}

@media only screen and (max-width: 991px) {
    .zero-section__title {
        margin-bottom: 50px;
    }

    .zero-section__title {
        max-width: 320px;
        margin-bottom: 25px;
    }

    .zero-section__title img {
        left: 0;
        right: unset;
        bottom: -10px;
        width: 150%;
    }

    .zero-section__right {
        position: absolute;
        right: -170px;
        top: 200px;
    }

    .lg-diamond-img-3 {
        position: absolute;
        max-width: 60px;
        lefT: -20px;
        top: -30px;
        transform: rotate(-90deg);
    }

}

.zero_section__faq-container {
    margin-top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.zero_section__faq-container .terms-agreement {
    max-width: 400px;
}

.zero_section__faq-container .cm-section-subtitle {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: -25px;
    font-size: 26px;
}

.zero-section__faq-header {
    margin-left: -25px;
    width: 100%;
    max-width: 400px;
}

.zero-section__faq-header--mobile {
    display: none;
}

@media only screen and (max-width: 991px) {
    .zero_section__faq-container .cm-section-subtitle {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .zero_section__faq-container {
        margin-top: 0px;
    }

    .zero-section__faq-header {
        margin-left: 0px;
        width: 100%;
        max-width: 200px;
    }

    .zero-section__faq-header {
        display: none;
    }

    .zero-section__faq-header--mobile {
        display: block;
        margin-left: -25px;
    }
}


/* -------------- end of zero-section ------------ */

/* -------------- start of last-section ------------ */

.last-section {
    padding: 50px 0px;
    position: relative;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 28%);
}

.last-section__title {
    position: relative;
    text-align: center;
    z-index: 1;
    margin-bottom: 50px;
}

.last-section__title div {
    z-index: 2;
    position: relative;
}

.last-section__title img {
    width: calc(100% + 100px);
    position: absolute;
    bottom: -20px;
    left: -50px;
    z-index: 0;
}

.last-section__columns-wrapper {
    max-width: 1100px;
    margin: 50px auto;
}

.last-section__column {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.last-section__column-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 34px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.last-section__img-1 {
    max-width: 250px;
    display: flex;
    object-fit: contain;
    margin: 0 auto 25px auto;
}

.last-section__img-2 {
    max-width: 350px;
    width: 100%;
    display: flex;
    object-fit: contain;
    margin: 0 auto 25px auto;
}

.last-section__column .terms-agreement {
    margin: 0 auto;
    max-width: 375px;
}

.last-section__column-desc {
    font-size: 25px;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
}

.last-section__left {
    position: absolute;
    top: 0;
    left: -30px;
    max-width: 100px;
}

@media only screen and (max-width: 1366px) {
    .last-section__title {
        position: relative;
        text-align: center;
        z-index: 1;
        max-width: 760px;
        margin: 0px auto 25px auto;
    }
}

@media only screen and (max-width: 991px) {
    .last-section__column {
       margin-bottom: 50px;
    }

    .last-section__title {
        max-width: 320px;
        margin-bottom: 25px;
    }

    .last-section__title img {
        left: unset;
        right: 0;
        bottom: -10px;
        width: 150%;
    }

    .last-section__left {
        position: absolute;
        top: 300px;
        left: -50px;
        max-width: 100px;
    }
}


.cm-new-video {
    width: 100%;
}

/* -------------- end of last-section ------------ */

/* -------------- footer ------------- */

.page-footer {
    width: 100%;
    position: relative;
    z-index: 6;
}

.footer-header {
    height: 62px;
    width: 100%;
    text-align: center;
    mix-blend-mode: multiply;
    background-size: cover;
    background-color: #EC4041;
}

.footer-body {
    width: 100%;
    background-color: #750A0A;
}

.footer-header__logo {
    margin-top: 20px;
}

.footer-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-content__links a {
    color: #fff;
    font-size: 12px;
    display: block;
    text-decoration: underline;
}

.footer__content__description {
    color: #fff;
    margin-top: 20px;
    font-size: 12px;
}

.footer__content__description__ol {
    margin-left: 15px;
}

.footer__content__description a {
    color: #fff;
    font-size: 12px;
    text-decoration: underline;
}

/* ------------- END OF footer ---------------- */
