@font-face {
    font-family: 'Gotham Pro'; /* Имя шрифта */
    src: url(../fonts/font/GothamProNarrow-Bold.ttf); /* Путь к файлу со шрифтом */ 

}
@font-face {
    font-family: 'Gotham Pro Light'; /* Имя шрифта */
    src: url(../fonts/font/GothamPro-Light.ttf); /* Путь к файлу со шрифтом */


}


* {
    font-family: 'Gotham Pro';
    font-weight: bold;
    font-style: normal;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    position: relative;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'open sans';
    -webkit-font-smoothing: antialiased;
    /*background-image: linear-gradient(to top, #3580e6 0%, #2d313e 100%) !important;*/
}

.main {
    background-image: linear-gradient(to top, #3580e6 0%, #2d313e 100%);
}

.wrapper {
    height: 100% !important;
    margin: 0 auto;
    overflow: hidden;
}

.navbar {
    padding: 0 !important;
}

p {
    font-family: 'Gotham Pro Light';
    font-weight: 300;
}

.title {
    display: flex;
    flex-direction: column;
    margin: 0 0 1rem;
    font-size: clamp(22px, 2.5vw, 40px);
    font-weight: bold;
    color: white;
    text-align: center;
}

.title-sub_second {
    font-size: clamp(24px, 3.5vw, 50px);
}

.title-sub_third {
    font-size: clamp(36px, 4.5vw, 60px);
}

/* landscape view */
@media screen and (min-width: 640px) {
    .title {
        text-align: initial;
    }
}

/* pc view */
@media screen and (min-width: 1600px) {
    .title {
        font-size: clamp(40px, 3.5vw, 70px);
    }

    .title-sub_second {
        font-size: clamp(50px, 4.5vw, 80px);
    }

    .title-sub_third {
        font-size: clamp(60px, 5.5vw, 90px);
    }
}

.pluses {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.plus {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 10px;
}

.plus-img {
    width: 65px;
    height: 65px;
}

.plus-text {
    font-size: clamp(14px, 2vw, 18px);
    color: #ffffff;
    font-family: sans-serif;
    font-weight: 300;
    text-align: center;
}

/* landscape view */
@media screen and (min-width: 640px) {
    .plus {
        width: 24%;
    }
}

.opportunity {
    display: flex;
    justify-content: space-between;
    padding: 0 0 2rem;
    color: white;
    font-size: clamp(16px, 1.8vw, 20px);
}

.opportunity-wrap_img {
    width: 30%;
    display: flex;
    justify-content: center;
}

.opportunity-img {
    /*max-width: 100px;*/
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.opportunity-wrap_text {
    width: 65%;
}

.opportunity-title {
    font-size: clamp(18px, 2vw, 30px);
    font-weight: bolder;
}

.opportunity-text {
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: initial;
}

.questions {
    max-width: 720px;
    margin: 0 auto;
}

.question {
    padding: 0 0 2rem;
}

.question-title {
    font-size: clamp(18px, 2.8vw, 36px);
    font-weight: bold;
}

.question-text {
    margin-top: 0.5rem;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: initial;
}


/* page 1 */
.page1 {
    min-height: 100vh;
    height: calc(100vw * 568 / 320);
    display: grid;
    grid-template-rows: auto auto 1fr;
    padding: 0.5rem 1rem;
    background-image: url('../img/page1mob/1screen_bg_graphic.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: #2D313E;
}

.page1__logo {
    height: 10vh;
}

.page1-button {
    width: 202px;
    height: 64px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.19);
    font-weight: bold;
    border-radius: 32px;
    background-color: #ecf0f1;
}

.page1-wrap {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.page1-wrap_info {
    width: 100%;
    display: grid;
    grid-template-rows: 1fr 1fr auto auto;
    padding: 0 0 1rem;
}

.page1-inner_btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 0 15px;
}

.page1-inner_scroll {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.page1-text {
    font-size: clamp(16px, 1.4vw, 24px);
}

.page1-text_second {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

/* landscape view */
@media screen and (min-width: 640px) {

    .page1 {
        position: relative;
        height: calc(100vw * 1080 / 1920);
        min-height: initial;
        background-image: url('../img/page1/1screen_bg_yellow.png');
        /*background-size: contain;*/
    }

    .page1-wrap_info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr 1fr;
    }

    .page1-text {
        margin: 0 0 5px;
    }

    .page1-inner_btn {
        grid-column-start: 1;
        grid-row-start: 2;
        justify-content: flex-start;
        margin: 0 auto 10px;
    }

    .page1-text_second {
        grid-column-start: 2;
        grid-row-start: 2;
    }

    .page1-inner_scroll {
        position: absolute;
        left: 0;
        bottom: 10px;
    }
}

/* pc view */
@media screen and (min-width: 1200px) {
    .mobView_page1 {
        display: none;
    }

    .page1-text {
        width: 30%;
        margin: 0 0 1rem;
    }

    .page1-wrap_info {
        display: block;
    }

    .page1-text_second {
        justify-content: flex-start;
        text-align: left;
    }

    .page1-inner_scroll {
        bottom: 7%;
    }
}

/* page 2 */
.page2 {
    padding: 55vw 1rem 0.5rem;
    background-image: url('../img/page2mob/background_page2.png');
    background-repeat: no-repeat;
    background-size: 100%;
}

.page2-wrap {
    max-width: 1920px;
    width: 100%;
    padding: 0 0 1rem;
    margin: 0 auto;
}

.page2-wrap_btn {
    display: flex;
    justify-content: center;
}

.page2-title {
    color: white;
    font-size: clamp(24px, 3.5vw, 50px);
    font-weight: bold;
    text-align: center;
}

.page2-title_first, .page2-inner_text {
    display: none;
}

.page2-button {
    width: 202px;
    height: 64px;
    font-weight: bold;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.19);
    border-radius: 32px;
    background-color: #b4ff00;
}

/* landscape view */
@media screen and (min-width: 640px) {
    .page2 {
        padding: 0.5rem 1rem clamp(0.5rem, 4vw, 70px);
        background-image: url('../img/page2/2screen_bg_yellow.png'), url('../img/page2/2screen_border_element.png');
        background-size: 100%, auto;
        background-position: left top, 100% 45%;
    }

    .page2-wrap_info {
        width: 66%;
        display: grid;
        margin: 0 0 0 auto;
    }

    .page2-title {
        text-align: initial;
        font-size: clamp(36px, 4.5vw, 60px);
    }

    .page2-title_first {
        display: initial;
        font-size: clamp(24px, 3.5vw, 50px);
    }

    .page2-inner_text {
        display: initial;
        margin: 0 0 1rem;
        font-size: clamp(16px, 1.4vw, 24px);
    }

    .page2-text_last {
        margin: 0;
    }
}

/* pc view */
@media screen and (min-width: 1440px) {
    .page2-title {
        font-size: clamp(60px, 5vw, 90px);
    }

    .page2-title_first {
        display: initial;
        font-size: clamp(50px, 3.5vw, 80px);
    }

    .page2-wrap_info {
        padding: 0 0 7vw;
    }
}

@media screen and (min-width: 1600px) {
    .page2-title_first {
        display: initial;
        font-size: clamp(50px, 4vw, 80px);
    }
}

/* page 3 */
.page3 {
    padding: 0 0 clamp(50px, 8vw, 150px);
    background-image: url('../img/page3/3screen_border_element1_left.png'), url('../img/page3/3screen_border_element2_right.png');
    background-repeat: no-repeat;
    background-position: left 5vh, right bottom;
    background-size: 15px, 75px;
}

.page3-wrap {
    max-width: 1920px;
    padding: 0.5rem 2rem;
    margin: 0 auto;
}

.page3-title {
    color: white;
    font-size: clamp(24px, 3.5vw, 50px);;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.page3-text {
    color: white;
    font-size: clamp(16px, 1.8vw, 20px);
    text-align: center;
}

.page3-graphic {
    width: 100%;
}

.page3-graphic_desktop {
    display: none;
}

@media screen and (min-width: 640px) {
    .page3-title, .page3-text {
        text-align: initial;
    }

    .page3-graphic_mob {
        display: none;
    }

    .page3-graphic_desktop {
        display: initial;
        margin-top: -100px;
    }
}

/* tablet view */
@media screen and (min-width: 768px) {
    .page3 {
        background-size: 20px, 120px;
    }
}

/* page 4 */
.page4 {
    padding: 0.5rem 1rem clamp(50px, 7vw, 120px);
    background-image: url('../img/page4/4screen_border_element_left.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 75px;
}

.page4-wrap {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.page4-title, .page4-text {
    padding: 0 0 2rem;
    color: white;
    font-size: clamp(24px, 3.5vw, 50px);;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.page4-text {
    padding: 0 0 1rem;
}

.page4-inner {
    padding: 0 0 1rem;
}

.page4-inner_count {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page4-map {
    width: 100%;
}

.page4-counter {
    display: flex;
    justify-content: space-between;
    padding: 0 0 1rem;
}

.page4-number {
    width: 24%;
}

.page4-button {
    width: 202px;
    height: 64px;
    margin: 0 auto;
    font-weight: bold;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.19);
    border-radius: 32px;
    background-color: #b4ff00;
}

@media screen and (min-width: 640px) {
    .page4-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .page4-inner {
        padding: 0;
    }

    .page4-inner_map {
        width: 60%;
    }

    .page4-inner_count {
        width: 38%;
    }
}

/* page 5 */
.page5 {
    padding: 0.5rem 1rem clamp(0.5rem, 4vw, 70px);
    background-image: url('../img/page5/5screen_border_element_right.png');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: 80px;
}

.page5-title {
    padding: 0 0 2rem;
    color: white;
    font-size: clamp(24px, 3.5vw, 50px);;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.page5-wrap {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.page5-inner_images {
    display: none;
}

/* tablet view */
@media screen and (min-width: 992px) {
    .page5 {
        background-size: 180px;
    }

    .page5-wrap {
        display: flex;
        justify-content: center;
    }

    .page5-inner_images {
        display: initial;
        padding: 0 0.5rem 0 0;
    }

    .page5-inner_opportunities {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page5-img {
        max-height: 300px;
    }

    .opportunity:first-child, .opportunity:last-child {
        transform: translateX(-30px);
    }

    .opportunity-wrap_img {
        display: none;
    }

    .opportunity-wrap_text {
        width: 100%;
    }
}

/* pc view */
@media screen and (min-width: 1200px) {
    .page5-img {
        max-height: 400px;
    }
}

@media screen and (min-width: 1400px) {
    .page5-img {
        max-height: 500px;
    }
}

/* page 6 */
.page6 {
    padding: 0.5rem 1rem clamp(0.5rem, 4vw, 70px);
    color: white;
}

.page6-wrap {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.page6-wrap_title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 0 2rem;
}

.page6-inner_title {
    display: flex;
    /*flex-direction: row-reverse;*/
}

.page6-inner_titleTop {
    width: 83%;
}

.page6-inner_titleBottom {
    width: 67%;
}

.page6-title {
    font-size: clamp(24px, 3.5vw, 50px);;
    font-weight: bold;
    text-align: center;
}

.page6-img_chat {
    height: clamp(20px, 3.5vw, 60px);
    margin: 0 4px 0 0;
}

.page6-button, .page8-button {
    width: 172px;
    height: 50px;
    box-shadow: 0 0 51px rgba(0, 0, 0, 0.32);
    border-radius: 50px;
    background-color: #b4ff00;
    font-size: 15px;
    font-weight: bold;
}

input.page6-input ,input.page8-input {
    width: 100% !important;
    height: 50px;
    color: #a3a3a3;
    font-family: 'Gotham Pro Light';
    font-size: clamp(20px, 3vw, 24px);
    background-color: #ecf0f1;
    border-radius: 12px;
}

@media screen and (min-width: 768px) {
    .page6 {
        background-image: url('../img/page6/5screen_border_element_left.png');
        background-repeat: no-repeat;
        background-position-x: left;
        background-position-y: top;
        background-size: 120px
    }
}

@media screen and (min-width: 992px) {
    .page6-formTitle {
        line-height: 70px;
        background-image: url('../img/page6/arrow.png');
        background-repeat: no-repeat;
        background-position-x: right;
        background-position-y: bottom;
        background-size: 120px;
    }

    input.page6-input ,input.page8-input {
        height: 70px;
    }

    .page6-button, .page8-button {
        width: 200px;
        height: 70px;
        font-size: 20px;
    }
}

/* page 7 */
.page7 {
    padding: 0.5rem 1rem clamp(0.5rem, 4vw, 70px);
    color: white;
    background-image: url('../img/page5/5screen_border_element_right.png'), url('../img/page6/5screen_border_element_left.png');
    background-repeat: no-repeat;
    background-position: right top, left bottom;
}

.page7-title {
    font-size: clamp(24px, 3.5vw, 50px);;
    font-weight: bold;
    text-align: center;
}

.page7-wrap {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.page7__font__size-p {
    font-size: 2vh;
}

/* page 8 */
.page8 {
    padding: 0.5rem 1rem;
    color: white;
    background-image: url('../img/page8/Layer_21.png');
    background-repeat: repeat-x;
    background-position-y: bottom;
}

.page8-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 2rem;
    font-size: clamp(20px, 3.5vw, 60px);
    font-weight: bold;
    text-align: center;
}

.page8-title_sub {
    padding: 0 0 1rem;
    font-size: clamp(16px, 2.8vw, 40px);
}

.page8-titleText_small {
    font-size: clamp(18px, 3vw, 45px);
}

.page8-wrap {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.page8-wrap_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 2rem;
}

.page8-wrap_footer {
    display: flex;
    flex-wrap: wrap;
}

.page8-button_big {
    width: 221px;
    height: 70px;
    box-shadow: 0 0 51px rgba(0, 0, 0, 0.32);
    border-radius: 70px;
    background-color: #ecf0f1;
    font-size: 20px;
    color: #303030 !important;
}

.page8-games {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 0 2rem;
}

.page8-game {
    width: 23%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page8-game img {
    max-width: 50px;
    width: 90%;
}

.page8-inner {
    width: 50%;
    padding: 0 0 2rem;
}

.page8-inner_logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.page8-inner_logo img {
    width: 100%;
    max-width: 120px;
}

.page8-text {
    color: white;
}

.page8-phone {
    color: white;
    font-size: clamp(20px, 3vw, 24px);
}

.page8-phone:hover {
    color: #b4ff00;
    text-decoration: none;
}

@media screen and (min-width: 640px) {
    .page8-wrap_footer {
        flex-wrap: initial;
        justify-content: space-between;
        align-items: center;
    }

    .page8-games {
        max-width: 300px;
        padding: 0 2rem 1rem 0;
    }

    .page8-inner {
        width: auto;
        padding: 0 2rem 1rem 0;
    }

    .page8-inner_logo {
        padding: 0 0 1rem;
    }
}

@media screen and (min-width: 992px) {
    .page8-games {
        max-width: 400px;
    }
}

/* pc view */
@media screen and (min-width: 1440px) {
    .page8-game img {
        max-width: 70px;
    }

    .page8-games {
        max-width: 600px;
    }
}

/* unl slick */
.unl-logo {
    width: 290px;
    margin: 20px;
}

.prosto {
    background-color: #FF8A66;
}

.become-partner {
    background-color: #F06292;
}

.sent-example {
    background-color: #4EB5AC;
}

.sent-contact {
    background-color: #64B5F6;
}

.iteration {
    background-color: #292f43;
}

.footer {
    background-color: #4EB5AC;
}

.footer-img {
    width: 80px;
}

.section-height {
    /* height: 100vh; */
}

.example-integration {
    width: 100%;
}

.integration {
    font-family: Arial;
    width: 90%;
    display: block;
    margin: 0 auto;
}

h3 {
    background: #fff;
    color: #3498db;
    font-size: 36px;
    line-height: 100px;
    margin: 10px;
    padding: 2%;
    position: relative;

}

.action {
    display: block;
    margin: 100px auto;
    width: 100%;

}

.action a {
    display: inline-block;
    padding: 5px 10px;
    background: #f30;
    color: #fff;
    text-decoration: none;
}

.action a:hover {
    background: #000;
}

.gallery .size--img {
    width: 250px;
    padding: 10px;
}


b {
    display: block;
    padding: 10px;
}

button {
    padding: 5px 10px;
}

.spotlight-img {
    width: 30vw;
    max-width: 300px;
    margin: 1vh 1vw;
}

.spotlight-img {
    display: inline-block;
    height: 20vw;
    max-height: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (min-width: 1024px) {
    .spotlight-img {
        width: 15vw;
        max-width: 300px;
        margin: 1vh 1vw;
    }

    .spotlight-img {
        display: inline-block;
        height: 10vw;
        max-height: 200px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media screen and (min-width: 1520px) {
    .spotlight-img {
        width: 30vw;
        max-width: 300px;
        margin: 1vh 1vw;
    }

    .spotlight-img {
        display: inline-block;
        height: 20vw;
        max-height: 200px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

.spotlight.image {
    cursor: pointer;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    top: 16%;
    left: auto;
    color: white;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    top: 16%;
    right: auto;
    color: white;
}

@media screen and (min-width: 900px) {
    .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
        left: 50px;
        top: 50%;
    }

    .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
        right: 50px;
        top: 50%;
    }
}


/* modal */
.modal-backdrop {
    display: none;
}

.modal-top-100 {
    top: 100%;
}

.modal-top-200 {
    top: 200%;
}

.modal-top-300 {
    top: 300%
}

.modal-top-700 {
    top: 700%
}

.modal-blue {
    background-image: linear-gradient(to top, #3580e6 0%, #2d313e 100%);
}

.modal-yellow {
    background-color: #ebbe24;
}

.button_modal--green {
    background: #b4ff00;
}

.button_modal--green:hover {
    background: #febd35;
    box-shadow: 0 5px 5px rgba(230, 156, 0, 0.24);
}

.close-btn {
    width: 25px;
    height: 25px;
}

.element-border-radius {
    border-radius: 25px;
}

.modal-header {
    border: none;
}

.modal-footer {
    border: none;
}