/* reset */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0-modified | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
}

/* make sure to set some focus styles for accessibility */
:focus {
    outline: 0;
}

body {
    line-height: 1;
    text-rendering: auto /*https://frontender.info/text-rendering/*/;
    text-decoration-skip: objects;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;

}

*,
*:before,
*:after {
    box-sizing: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

/* fonts */

@font-face {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/SFProDisplay-Regular.woff2') format('woff2'),
    url('../fonts/SFProDisplay-Regular.woff') format('woff');
}

@font-face {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/SFProDisplay-Medium.woff2') format('woff2'),
    url('../fonts/SFProDisplay-Medium.woff') format('woff');
}

@font-face {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/SFProDisplay-Semibold.woff2') format('woff2'),
    url('../fonts/SFProDisplay-Semibold.woff') format('woff');
}

@font-face {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/SFProDisplay-Bold.woff2') format('woff2'),
    url('../fonts/SFProDisplay-Bold.woff') format('woff');
}

@font-face {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/SFProDisplay-Heavy.woff2') format('woff2'),
    url('../fonts/SFProDisplay-Heavy.woff') format('woff');
}

/* spinner */

.spinner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dedede;
    border-radius: 16px;
}

.spinner__item {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    /*margin: 10px 10px 0 0;*/
    vertical-align: middle;
}

.spinner__item:before {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: solid 2px #ccc;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: _spinner 1s infinite linear;
    content: "";
}

@keyframes _spinner {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

/* animation */

._anim._ascent,
._anim ._ascent {
    transform: translateY(2%);
    opacity: 0;
    transition: opacity 0.8s ease 0s, transform 0.8s ease 0s;
}

._anim._ascentFull,
._anim ._ascentFull {
    transform: translateY(100%);
    /*opacity: 0;*/
    transition: opacity 0.8s ease 0s, transform 0.8s ease 0s;
}

._anim._appearance,
._anim ._appearance {
    opacity: 0;
    transition: opacity 1.2s ease 0s;
}

._anim._scale,
._anim ._scale {
    opacity: 0;
    transform: scale(0);
    transition: transform 1.1s ease 0.1s;
    transform-origin: center;
}

._anim._run-right,
._anim ._run-right {
    transform: translateX(-5%);
    opacity: 0;
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

._anim._run-left,
._anim ._run-left {
    transform: translateX(5%);
    opacity: 0;
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

._anim._delay-1,
._anim ._delay-1 {
    transition-delay: 0.5s;
}

._anim._delay-2,
._anim ._delay-2 {
    transition-delay: 1s;
}

._anim._delay-3,
._anim ._delay-3 {
    transition-delay: 1.5s;
}

._anim._delay-4,
._anim ._delay-4 {
    transition-delay: 2s;
}

._anim ._delay-item-0 {
    transition-delay: 1.1s;
}

._anim ._delay-item-1 {
    transition-delay: 1.2s;
}

._anim ._delay-item-2 {
    transition-delay: 1.3s;
}

._anim ._delay-item-3 {
    transition-delay: 1.4s;
}

._anim ._delay-item-4 {
    transition-delay: 1.5s;
}

._anim ._delay-item-5 {
    transition-delay: 1.6s;
}

._anim ._delay-item-6 {
    transition-delay: 1.7s;
}

._anim ._delay-item-7 {
    transition-delay: 1.8s;
}

._anim ._delay-item-8 {
    transition-delay: 1.9s;
}

._anim ._delay-item-9 {
    transition-delay: 2s;
}

._anim ._delay-item-10 {
    transition-delay: 2.1s;
}

._anim ._delay-item-11 {
    transition-delay: 2.2s;
}

._anim ._delay-item-12 {
    transition-delay: 2.3s;
}

._anim._complete {
    transform: scale(1) translateY(0) translateX(0);
    opacity: 1;
}
._anim._complete ._ascent,
._anim._complete ._ascentFull,
._anim._complete ._appearance,
._anim._complete ._scale,
._anim._complete ._run-right,
._anim._complete ._run-left {
    transform: scale(1) translateY(0) translateX(0);
    opacity: 1;
}

@keyframes _rotateRight {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes _rotateLeft {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(-360deg);
    }
}

/* style */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.html--fix {
    overflow: hidden;
    padding-right: 15px;
}

.page {
    min-width: 320px;
    font: 500 17px/1.5 "SF Pro Display";
    overflow-x: hidden;
}

.page__content {
    position: relative;
    z-index: 1;
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 15px;
}

.page__button {
    margin: 0;
    padding: 9px 25px 10px;
    color: #fff;
    font: 600 20px/1.3 "SF Pro Display";
    background: #000;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: background .15s;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
}

.page__button:hover {
    background: #262626;
}

.page__button:active {
    background: #4d4d4d;
}

.page__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* header */

.header {
    background: #F4F4F4;
    border: 1px solid #EAEAEA;
    position: sticky;
    top: 0;
    z-index: 9998;
}

@supports (backdrop-filter: blur(5px)) or (-webkit-backdrop-filter: blur(5px)) {

    .header {
        background: rgb(244, 244, 244, .8);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo {
    flex-shrink: 0;
    margin: 0 4px;
    width: 228px;
    height: 43px;
    background: url(../img/ru/logo.svg) center bottom/contain no-repeat;

    /*position: relative;*/
    /*top: 5px;*/
    /*width: 129px;*/
    /*height: 26px;*/
    /*background: url(../img/logo-yenence.svg) center bottom/contain no-repeat;*/
}

.header__logo--kz,
.header__logo--pl,
.header__logo--en {
    width: 253px;
    background: url(../img/en/logo.svg) center bottom/contain no-repeat;
}

.header__menu {
    flex-grow: 1;
}

.header__list {
    display: flex;
    justify-content: end;
}

.header__item {
    flex-shrink: 0;
    margin: 0 22px;
}

.header__link {
    display: block;
    height: 100%;
    padding: 26px 0 26px;
    color: #000;
    font: 600 16px/26px "SF Pro Display";
    text-decoration: none;
    transition: color .15s;
    user-select: none;
}

.header__link:hover {
    color: #006BE9;
}

.header__link:active {
    color: #005fcc;
}

.header__sub {
    font: 400 12px/1 "SF Pro Display";
    display: none;
}

/* offer */

.offer {
    position: relative;
    margin: 51px 0 0;
}

.offer__shadow {
    position: absolute;
    top: 134px;
    left: calc(50% - 415px);
    z-index: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    box-shadow: 0 0 1977px 196px rgba(255, 184, 0, 0.12);
    transform: rotate(45deg);
}

.offer__shadow--alt {
    top: -270px;
    left: calc(50% + 245px);
    box-shadow: 0 0 1977px 196px rgba(189, 255, 0, 0.1);
}

.offer__container {
    display: flex;
    justify-content: space-between;
}

.offer__item {
    position: relative;
}

.offer__item:last-child {
    left: 20px;
}

.offer__title {
    font: 800 35px/1.2 "SF Pro Display";
}

.offer__text {
    max-width: 400px;
    margin: 21px 0;
    font: 500 20px/1.4 "SF Pro Display";
}

.offer__p {
    margin: 10px 0;
}

.offer__imgMenu {
    width: 535px;
    height: 405px;
    margin: 0 7px;
    border-radius: 10px;
}

.offer__imgApp {
    position: absolute;
    top: 102px;
    left: -37px;
    width: 177px;
    height: 381px;
    border-radius: 8px;
    box-shadow: 0 4px 50px -20px rgba(0, 0, 0, 0.6)
}

.offer__button {
    margin: 35px 0 0;
}

/* company */

.company {
    margin-top: 42px;
}

.company__list {
    padding: 9px 19px 10px;
    overflow: hidden;
    font-size: 0;
    white-space: nowrap;
    background: #F4F4F4;
    border-radius: 6px;
}

.company__item {
    display: inline-block;
    margin: 0 35px 0 0;
    vertical-align: middle;
    background: center/contain no-repeat;
    position: relative;
}

.company__item:last-child {
    margin: 0 0 0 -8px;
}

.company__item--pizza-smile {
    top: -2px;
}

.company__item--papa-doner {
    top: 2px;
}

.company__item--pizza-planet {
    top: 1px;
}

.company__item--can-bei {
    top: 1px;
}

.company__item--uhg {
    bottom: 2px;
}

.company__item--dudu {
    bottom: 2px;
}

.company__item--einstein {
    margin: 0 38px 0 5px;
    top: 1px;
}

.company__item--sin-art {
    margin-right: 41px;
}

.company__img {
    object-fit: contain;
}

.company__hint {
    margin: 10px 0 0;
    color: #7c7c7c;
    font: 500 14px/1.2 "SF Pro Display";
    text-align: center;
}

/* modules */

.modules {
    position: relative;
    margin: 53px 0 0;
}

.modules__shadow {
    position: absolute;
    top: 134px;
    left: calc(50% - 337px);
    z-index: 1;
    width: 0;
    height: 0;
    box-shadow: 0 0 1977px 196px rgba(255, 184, 0, 0.1);
    transform: rotate(45deg);
}

.modules__container {
    display: flex;
    min-height: 465px;
    background: #E5D9CB;
    border-radius: 15px;
}

.modules__info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 380px;
    margin: 0 50px 0 0;
    padding: 30px 0 30px 23px;
}

.modules__control {
    display: flex;
    align-items: flex-start;
    margin: 0 -5px 0 -15px;
}

.modules__tab {
    margin: 0 5px;
    padding: 6px 11px;
    color: #006BE9;
    font: 500 15px/1.2 "SF Pro Display";
    text-align: left;
    vertical-align: top;
    background: rgba(255, 255, 255, 0);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, color .1s;
}

.modules__tab:hover {
    color: #0059bf;
}

.modules__tab:active {
    color: #004696;
}

.modules__tab--active {
    color: #000;
    background: #fff;
    cursor: default;
}

.modules__tab--active:hover,
.modules__tab--active:active {
    color: #000;
}

.modules__description {
    display: none;
}

.modules__description--active {
    display: block;
}

.modules__title {
    max-width: 284px;
    margin: 16px 0 0;
    font: 800 30px/1.2 "SF Pro Display";
}

.modules__text {
    flex-grow: 1;
    margin: 9px 0 25px 0;
    font: 500 17px/1.5 "SF Pro Display";
}

.modules__p {
    margin: 10px 0;
}

.modules__slider {
    position: relative;
    flex-grow: 1;
}

.modules__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s, visibility .2s;
}

.modules__slide--active {
    visibility: visible;
    opacity: 1;
}

.modules__preview {
    display: flex;
    height: 100%;
    margin: 0 -16px;
    padding: 36px 35px 0 35px;
    position: relative;
    overflow: hidden;
}

.modules__column {
    width: 220px;
    margin: 0 16px;
    position: relative;
}

.modules__wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .6s .4s;
    opacity: 0;
}


.modules__column:last-child .modules__wrapper {
    transition-delay: 0s;
}

.modules__wrapper--active {
    opacity: 1;
    transition-delay: 0s;
}

.modules__hint {
    font: 500 15px/19px "SF Pro Display";
    min-height: 38px;
    text-align: center;
}

.modules__img {
    margin: 18px 0 0;
    width: 100%;
    box-shadow: 0 4px 50px -20px rgba(0, 0, 0, 0.6);
    border-radius: 12px 12px 0 0;
    object-fit: cover;
}


@keyframes fade {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    50% { /* 6s */
        opacity: 1;
    }
    55% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeAlt {
    0% {
        opacity: 1;
    }
    5% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.fade--second {
    z-index: 1;
    animation-name: fade;
    opacity: 0;
    animation-delay: 3s;
    animation-duration: 7s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.modules__features {
    position: absolute;
    top: 102px;
    width: 177px;
    left: -63px;
    z-index: 2;
}

.modules__feature {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.modules__feature.fade--first {
    box-shadow: 0 4px 50px -20px rgba(0, 0, 0, 0.6);
}


.modules__gallery {
    width: 554px;
    height: 405px;
    margin: 30px 0 0;
    position: relative;
    display: flex;
    justify-content: end;
}

.modules__galleryImage {
    position: absolute;
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: right;
    border-radius: 12px;
}

.modules__galleryImage.fade--first {
    /*box-shadow: 0 4px 50px -20px rgba(0, 0, 0, 0.6);*/
}


/* integration */

.integration {
    margin: 70px 0 0;
}

.integration__container {
    position: relative;
    padding: 37px 0 50px;
    overflow: hidden;
    background: #5F606B;
    border-radius: 15px;
}

.integration__title {
    color: #fff;
    font: 800 30px/1.2 "SF Pro Display";
    text-align: center;
}

.integration__text {
    max-width: 480px;
    margin: 12px auto 0;
    color: #fff;
    font: 500 17px/1.5 "SF Pro Display";
    text-align: center;
}

.integration__schema {
    display: flex;
    justify-content: center;
    margin: 53px 0 0;
}

.integration__gear {
    position: absolute;
    right: -126px;
    bottom: -10px;
    width: 288px;
    height: 277px;
    background: url(../img/gear.svg) center/contain no-repeat;
    animation: _rotateRight 100s infinite linear;
}

.integration__gear--alt {
    top: 52px;
    right: auto;
    bottom: auto;
    left: -99px;
    width: 198px;
    height: 190px;
    animation: _rotateLeft 100s infinite linear;
}

/* map */

.map {
    margin: 70px 0 0;
}

.map__container {
    display: flex;
    background: #E7E7E7;
    border-radius: 15px;
}

.map__info {
    width: 429px;
    padding: 27px 74px 35px 23px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.map__title {
    font: 800 50px/1.05 "SF Pro Display";
}

.map__text {
    flex-grow: 1;
    margin: 2px 0 30px;
    font: 500 17px/1.5 "SF Pro Display";
}

.map__p {
    margin: 10px 0;
}

.map__canvas {
    width: 555px;
    min-height: 401px;
    margin: 30px 0;
    overflow: hidden;
    background: #cccccc;
    border-radius: 10px;
}

.map__team {
    margin: 30px 0;
    width: 555px;
    min-height: 401px;
}

.map__img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.map__marker {
    left: 1px;
    width: 10px !important;
    height: 10px !important;
    background: red;
    border: 2px solid white;
    border-radius: 50%;
}

.map__tooltip {
    color: #fff;
    background: #2b2b2b;
    border: none;
}

.map__tooltip::before {
    display: none;
}

/* review */

.review {
    margin: 70px 0 0;
}

.review__container {
    padding: 32px 42px 60px;
    background: #5F606B;
    border-radius: 15px;
}

.review__title {
    color: #fff;
    font: 800 30px/1.2 "SF Pro Display";
    text-align: center;
}

.review__tabs {
    display: flex;
    justify-content: center;
    margin: 26px 0 0;
}

.review__tab {
    margin: 5px;
    padding: 0 10px;
    color: #fff;
    font: 500 15px/32px "SF Pro Display";
    background: rgba(0, 0, 0, 0);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: color .2s, background .2s;
}

.review__tab:hover {
    color: #d9d9d9;
}

.review__tab:active {
    color: #b3b3b3;
}

.review__tab:disabled {
    color: #fff;
    cursor: default;
    opacity: .3;
}

.review__tab--active {
    color: #000;
    background: #fff;
    cursor: default;
}

.review__tab--active:hover,
.review__tab--active:active {
    color: #000;
}

.review__wrapper {
    position: relative;
    height: 367px;
    margin: 36px 0 0;
}

.review__list {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 0 84px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility .3s;
}

.review__list--active {
    visibility: visible;
    opacity: 1;
}

/* video-slider */

.vslider {
}

.vslider-button-prev,
.vslider-button-next {
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    width: 40px;
    height: 40px;
    background: url(../img/arrow.svg) center/contain no-repeat;
    cursor: pointer;
    transition: opacity .3s;
}

.vslider-button-next {
    right: 0;
    left: auto;
    transform: rotate(180deg);
}

.vslider-button-disabled {
    cursor: default;
    opacity: .3;
}

.vslider__slide {
    position: relative;
    height: 100%;
    cursor: pointer;
}

.vslider__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.vslider__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 115px;
    padding: 15px 18px;
    background: rgba(0, 0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    border-radius: 15px 15px 0 0;
}

.vslider__title,
.vslider__subtitle {
    overflow: hidden;
    color: #fff;
    font: 700 18px/24px 'SF Pro Display';
    white-space: nowrap;
    text-overflow: ellipsis;
}

.vslider__subtitle {
    font: 500 15px/19px 'SF Pro Display';
}

.vslider__button {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    color: #111;
    font: 500 18px/1 'SF Pro Display';
    background: rgba(255, 255, 255, 0.6);
    border-radius: 7px;
    backdrop-filter: blur(3px);
    transition: opacity .3s ease;
}

.vslider__slide:hover .vslider__button {
    opacity: .8;
}

.vslider__slide:active .vslider__button {
    opacity: .6;
}

/* tariff */

.tariff {
    margin: 104px 0 0;
}

.tariff__container {
    padding: 30px 0 40px;
    border: 1px solid #BFBFBF;
    border-radius: 15px;
}

.tariff__title {
    font: 800 40px/1.2 "SF Pro Display";
    text-align: center;
}

.tariff__subtitle {
    font: 500 20px/1.5 "SF Pro Display";
    text-align: center;
}

.tariff__list {
    display: flex;
    justify-content: center;
    margin: 37px -10px 0;
}

.tariff__item {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 0 25px;
    padding: 20px 22px 25px;
    background: #ECEBE9;
    border-radius: 15px;
}

.tariff__item:last-child {
    color: #fff;
    background: #5F606B;
}

.tariff__name {
    font: 600 25px/1.2 "SF Pro Display";
}

.tariff__subName {
    margin-top: 11px;
    font: 500 15px/20px "SF Pro Display";
    color: inherit;
    opacity: .5;
}

.tariff__include {
    margin: 6px 0 20px;
}

.tariff__point {
    position: relative;
    margin: 8px 0;
    padding: 0 0 0 24px;
    font: 500 17px/26px "SF Pro Display";
    white-space: pre-line;
}

.tariff__point::before {
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 19px;
    height: 15px;
    background: url(../img/tick.svg) center/contain no-repeat;
    content: "";
}

.tariff__point:last-child::before {
    display: none;
}

.tariff--point .tariff__point {
    padding-left: 14px;
    font: 500 15px/22px "SF Pro Display";
}

.tariff--point .tariff__point:before {
    top: -1px;
    width: 8px;
    background: none;
    color: #039200;
    content: '•'
}

.tariff__text {
    flex-grow: 1;
    margin: 4px 0 0;
    font: 500 17px/26px "SF Pro Display";
}

.tariff--point .tariff__text {
    margin-top: 24px;
    font: 500 15px/20px "SF Pro Display";
}

.tariff_p {
    margin: 10px 0;
}

.tariff__button {
    color: #000;
    background: #fff;
}

.tariff__button:hover {
    background: #e6e6e6;
}

.tariff__button:active {
    background: #cccccc;
}

.faq {
    margin: 73px 0 0;
}

.faq__container {
    display: flex;
    padding: 29px 51px 80px 38px;
    background: #F3EFE4;
    border-radius: 15px;
}

.faq__offer {
    flex-shrink: 0;
    width: 253px;
    margin: 0 72px 0 0;
}

.faq__title {
    font: 800 30px/1.2 "SF Pro Display";
}

.faq__text {
    margin: 6px 0 24px;
    font: 500 17px/1.5 "SF Pro Display";
}

.faq__button {
    background: #888178;
}

.faq__button:hover {
    background: #66615a;
}

.faq__button:active {
    background: #4d4943;
}

.faq__list {
    list-style: decimal;
    margin: 11px 0 0;
}

.faq__item {
    font-weight: 700;
    margin: 0 0 19px;
    padding: 0 60px 13px 0;
    cursor: pointer;
    position: relative;
}

.faq__item::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    background: #CFCBC2;
    content: '';
}

.faq__item:last-child::after {
    display: none;
}

.faq__item::before {
    position: absolute;
    top: 9px;
    right: 5px;
    display: block;
    width: 13px;
    height: 8px;
    background: url(../img/tick-mobile.svg) center/contain no-repeat;
    transform: rotate(180deg);
    transition: transform .2s;
    content: '';
}

.faq__item--active::before {
    transform: rotate(0deg);
}

.faq__answer {
    margin: 6px -37px 0 0;
    font: 500 15px/1.5 "SF Pro Display";
    overflow: hidden;
    transition: height .3s;
    cursor: text;
}

.faq__item:not(.faq__item--active) .faq__answer {
    height: 0 !important;
}

.faq__answer > p + p {
    margin: 7px 0 0 0;
}

.faq__answer strong {
    font-weight: 700;
}

.faq__answer a {
    color: #217D00;
    text-decoration: underline;
}

.faq__join {
    position: absolute;
    bottom: 40px;
    left: 363px;
    padding: 0 16px;
}

/* footer */

.footer {
    margin: 60px 0 0;
    padding: 50px 0 60px;
    background: #333339;
}

.footer__container {
    display: flex;
}

.footer__info {
    margin: 0 100px 0 0;
    padding: 3px 0 0;
}

.footer__logo {
    width: 228px;
    height: 31px;
    background: url(../img/ru/logo_white.svg) center/contain no-repeat;
}

.footer__logo--kz,
.footer__logo--pl,
.footer__logo--en {
    width: 253px;
    height: 31px;
    background: url(../img/en/logo_white.svg) center/contain no-repeat;
}

.footer__cliche {
    color: #fff;
    font: 400 15px/30px "SF Pro Display";
    max-width: 250px;
}

.footer__city {
    font: 400 13px/1.2 "SF Pro Display";
}

.footer__p {
    margin: 8px 0;
    line-height: 1.6;
    padding: 3px 0;
}

.footer__docs {
    margin: 25px 0 0;
}

.footer__file {
    font: 400 15px/1.5 "Sf Pro Display";
    color: #ffffff;
    display: block;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

.footer__file:hover {
    color: #e6e6e6;
}

.footer__file:active {
    color: #cccccc;
}

.footer__copy {
    color: #5b5b63;
    font: 400 13px/1.6 "SF Pro Display";
}

.footer__partners {
    display: inline-block;
    margin: 37px 0 0;
    color: #fff;
    font: 400 18px/30px "SF Pro Display";
    text-decoration: none;
    transition: color .15s;
}

.footer__partners:hover {
    color: #e6e6e6;
}
.footer__partners:active {
    color: #cccccc;
}

.footer__partnersMobile {
    display: flex;
    justify-content: center;
}

.footer__partnersMobile .footer__partners {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 24px;
}

.footer__partnersMobile .footer__partnersLogo {
    position: relative;
    top: 1px;
}

.footer__partnersMobile svg {
    height: 15px;
}

.footer__partnersLogo {
    vertical-align: middle;
    margin: 0 6px 0 1px;
}

.footer__nav {
    flex-grow: 1;
    margin: 1px 0 0;
}

.footer__list {
    margin: -15px 0 28px;
}

.footer__item {
    margin: 15px 0;
}

.footer__link {
    position: relative;
    padding: 0 0 0 22px;
    color: #fff;
    font: 400 18px/22px "SF Pro Display";
    text-decoration: none;
    white-space: nowrap;
}

.footer__link:hover {
    color: #e6e6e6;
}

.footer__link:active {
    color: #ccc;
}

.footer__link--support {
    color: #FF4949;
}

.footer__link::before {
    position: absolute;
    left: -10px;
    top: 0;
    display: block;
    background: center/contain no-repeat;
    content: "";
}

.footer__link--program::before {
    width: 20px;
    height: 22px;
    background-image: url(../img/program.svg);
}

.footer__link--support::before {
    width: 19px;
    height: 20px;
    background-image: url(../img/support.svg);
}

.footer__link--director::before {
    width: 20px;
    height: 19px;
    background-image: url(../img/mail.svg);
}

.footer__link--support:hover {
    color: #d93f3f;
}

.footer__link--support:active {
    color: #b33232;
}

.footer__button {
    min-width: 205px;
    color: #000;
    background: #FFC27B;
}

.footer__button:hover {
    background: #e6ae6e;
}

.footer__button:active {
    background: #cc9a62;
}

.footer__app {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 390px;
    color: #fff;
}

.footer__rating {
    width: 213px;
    height: 62px;
    background: url(../img/rating2.svg) center/contain no-repeat;
    margin: -7px 0 0;
}

.footer__qr {
    margin: 50px 0 0;
    width: 100px;
    height: 100px;
    background: url(../img/qr.svg) center/contain no-repeat;
}

.footer__qrText {
    margin: 11px 0 0;
    font: 400 15px/1.2 "SF Pro Display";
    text-align: center;

}

.footer__systems {
    display: flex;
    align-items: end;
    justify-content: center;
    margin: 33px 0 0;
    background: center/contain no-repeat;
}

.footer__system {
    margin: 0 9px;
}

.footer__system--visa {
    width: 48px;
    height: 16px;
    background-image: url(../img/systems/visa.svg);
}

.footer__system--master {
    width: 26px;
    height: 17px;
    background-image: url(../img/systems/master.svg);
}

.footer__system--apple {
    width: 18px;
    height: 22px;
    background-image: url(../img/systems/apple.svg);
}

.footer__system--google {
    width: 19px;
    height: 20px;
    background-image: url(../img/systems/google.svg);
}

.footer__system--huawei {
    width: 24px;
    height: 20px;
    background-image: url(../img/systems/huawei.svg);
}

.mYoutube,
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .6);
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility .3s;
}

.mYoutube {
    flex-direction: row;
    align-items: center;
}

.modal__wrapper {
    overflow-y: scroll;
}

.mYoutube__content iframe {
    max-height: 60vh;
}

.modal--active {
    visibility: visible;
    opacity: 1;
}

.modal__form {
    position: relative;
    width: 390px;
    max-width: 390px;
    margin: 25px auto;
    padding: 0 40px 35px;
    background: #fff;
    border-radius: 15px;
}

.modal__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 64px;
    height: 64px;
    background: url(../img/close.svg) no-repeat 50% 50% / 15px auto;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity .15s;
}

.mYoutube .modal__close {
    background-size: 20px;
    opacity: .5;
}

.modal__close:hover {
    opacity: 0.6;
}

.modal__header {
    padding: 25px 14px 4px 0;
    font: 800 22px/1.2 'sf pro display';
    text-align: left;
    margin: 0 auto 10px;
}

.modal__header i {
    font-size: 20px;
}

.modal__text {
    margin: -6px 0 16px;
    font: 400 16px/1.2 'sf pro display';
    max-width: 250px;
}

.modal__field {
    position: relative;
    margin: 0 0 16px;
}

.modal__group {
    margin: 22px 0 0;
}

.modal__agreement {
    margin: 20px 0;
    color: #999;
    font: 400 16px/19px "SF Pro Display";
}

.modal__buttonField {
    margin: 22px 0 0;
}

.modal__submit {
    width: 100%;
    height: 45px;
    color: #fff;
    font: 600 19px/20px "sf pro display", arial;
    text-align: center;
    background: #29C266;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 200ms;
}

.modal__submit:hover {
    background-color: #209950;
}

.modal__submit::before {
    content: attr(data-text);
}

.modal__submit--loading {
    cursor: default !important;
    pointer-events: none;
}

.modal__submit--loading::before {
    content: "" !important;
}

.modal__submit--loading > .modal__ico {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    vertical-align: middle;
    background-color: #aaa;
    border-radius: 50%;
    transform: scale(0.8);
    opacity: 0.1;
    animation-name: modal__animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.modal__submit--loading > .modal__ico {
    background-color: white
}

.modal__ico:nth-child(1) {
    animation-delay: 0.33s
}

.modal__ico:nth-child(2) {
    animation-delay: 0.66s
}

.modal__ico:nth-child(3) {
    animation-delay: 0.99s
}

@keyframes modal__animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.2);
        opacity: 0.1;
    }
}

.modal__title {
    font: 800 18px/1.2 "SF Pro Display";
}

.modal__delimiter {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    margin: 24px 0 0;
}

/* field */

.modal__label div { /* убираем кнопки сторонних расширений */
    display: none;
}

.modal__label {
    display: block;
    position: relative;
    padding: 20px 10px 3px 10px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    cursor: text;
    transition: border-color 200ms;
}

.modal__label:hover, .modal__label:focus-within {
    border-color: #ddd;
}

.modal__caption {
    display: block;
    position: absolute;
    font: 600 14px/18px "sf pro display";
    color: #C5C5C5;
    top: 1px;
    left: 10px;
    transform: translateY(12px);
    transition: all 150ms;
    transform-origin: 0 50%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 95%;
}

.modal__input:not(.modal__input:placeholder-shown) ~ .modal__caption,
.modal__input:focus ~ .modal__caption {
    transform: translateY(3px) scale(.80);
    max-width: 116%;
    color: #000;
}

.modal__input {
    display: block;
    height: 20px;
    appearance: none;
    border: 0;
    font: 500 16px/20px "sf pro display";
    padding: 0;
    width: 100%;
    resize: none;
    background: transparent;
}

.modal__input--error {
    display: none;
    color: #ff0000;
    font: 500 13px/16px "sf pro display";
    margin: 4px 0 0 10px;
}

.modal__input--errorVisible {
    display: inline-block;
}

.modal__code {
    display: block !important;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 104px;
    background: #F7DC58;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    font: 700 13px/15px 'SF Pro Display';
    color: #000;
    text-align: center;
    padding: 5px 9px;
}

/* autogrow */

.autogrow {
    display: grid;
    font: 400 16px/19px "SF Pro Display", sans-serif;
}

.autogrow::after {
    white-space: pre-wrap;
    visibility: hidden;
    content: attr(data-model) " ";
}

.autogrow__textarea {
    height: auto;
    overflow: hidden;
    resize: none;
}

.autogrow__textarea,
.autogrow::after {
    grid-area: 1 / 1 / 2 / 2;
    /*padding: 11px 15px;*/
    padding: 0;
    font: inherit;
    word-break: break-word;
}

.modal__support {
    display: none;
}

.modal--support .modal__join {
    display: none;
}

.modal--support .modal__support {
    display: block;
}

/* checkbox */

.cbx a {
    text-decoration: none;
    color: #0075FF !important;
}
.cbx a:hover {
    text-decoration: underline;
}

.cbx {
    margin: 10px 0;
    position: relative;
    display: block;
    padding: 2px 5px 2px 25px;
    cursor: pointer;
}

.cbx__input {
    display: none;
}

.cbx__status {
    position: absolute;
    top: 3px;
    left: 0;
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #000;
    border-radius: 2px;
    transition: border-color .2s;
}

.cbx__status::before {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 14px;
    height: 14px;
    background: url(../img/checkbox_3.svg) center/contain no-repeat;
    opacity: 0;
    transition: opacity .2s;
    content: "";
}

.cbx__caption {
    font: 400 15px/1 'SF Pro Display';
    transition: color .150s;
    user-select: none;
}

.cbx__input:checked ~ .cbx__status {
    border-color: transparent;
}

.cbx__input:checked ~ .cbx__status::before {
    opacity: 1;
}

.cbx__input:active ~ .cbx__caption {
    color: #555;
}

.cbx__input:active ~ .cbx__status {
    border-color: #555;
}

/*.cbx__input:disabled ~ .cbx__caption {*/
/*    color: #808080;*/
/*}*/

/*.cbx__input:disabled ~ .cbx__status {*/
/*    border-color: #cacaca;*/
/*}*/

/*.cbx__input:disabled ~ .cbx__status::before {*/
/*    background: #5f5f5f;*/
/*}*/

.modal__hide {
    display: none;
}

.modal__sended {
    display: none;
}

.modal__completeText {
    font: 600 20px/1.2 "SF Pro Display";
    padding: 40px 0 17px;
    width: 220px;
    text-align: center;
    margin: 0 auto;
}

.modal__animation {
    width: 168px;
    height: 151px;
    margin: 0 auto;
}

.modal__thank {
    margin: 10px auto;
    display: block;
    padding: 0 16px;
    background: none;
    border-radius: 5px;
    border: 1px solid #000;
    font: 700 16px/40px "SF Pro Display";
    cursor: pointer;
    transition: all .2s;
}

.modal__thank:hover {
    background: #fafafa;
}

.modal__thank:active {
    background: #eee;
    color: #444;
}

.modal--sended .modal__sended {
    display: block;
}

.modal--sended .modal__fields {
    display: none;
}

/* fix */

.leaflet-control-zoom-out span {
    position: relative;
    top: -2px;
}

/* mobile */

.header__burger {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;

    align-items: center;
    justify-content: center;
    width: 45px;
}

.header__burgerIcon {
    position: relative;
    width: 16px;
    height: 12px;
}

.header__burgerIcon span,
.header__burgerIcon::before,
.header__burgerIcon::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 1px;
    transition: all .2s ease-in 0s;
    content: "";
}

.header__burgerIcon::after {
    bottom: 0;
}

.header__burgerIcon span {
    top: 5px;
}

.header__burger--active span {
    transform: scale(0);
}

.header__burger--active .header__burgerIcon::before {
    transform: translateY(5px) rotate(45deg);
}

.header__burger--active .header__burgerIcon::after {
    transform: translateY(-5px) rotate(-45deg);
}

@media (min-width: 1030px) {

    .page__mobile {
        display: none;
    }

    .modal__wrapper {
        overflow-y: scroll;
        scrollbar-color: #3d3d3d rgba(0, 0, 0, 0);
        scrollbar-width: thin;
    }

    .modal__wrapper::-webkit-scrollbar {
        background: transparent;
    }

    .modal__wrapper::-webkit-scrollbar-thumb {
        background-color: #3d3d3d;
        border-radius: 3px;
    }
}

/*стили для модалки руководителя*/
.modalDirector__modal {
    max-width: 1030px;
    margin: 25px auto;
    padding: 64px 110px;
    background: #fff;
    border-radius: 16px;
    position: relative;
}

.modal--sended .modalDirector__modal {
    max-width: 715px;
    padding: 128px 59px 77px 59px;
}

.modalDirector__close {
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 30px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: .8;
    transition: .3s ease;
    background: #ECEBE9 url(../img/close2.svg) no-repeat 50% 50% / 14px auto;
}

.modalDirector__close:hover {
    opacity: 1;
}

.modalDirector__info {
    margin-left: 38px;
}

.modalDirector__title {
    color: #000;
    font: 800 34px/110% 'SF Pro Display';
    max-width: 474px;
}

.modalDirector__descr {
    color: #000;
    font: 500 20px/130% 'SF Pro Display';
    margin: 32px 0;
    max-width: 600px;
}

.modalDirector__form {
    padding: 40px;
    background: #ECEBE9;
    border-radius: 12px;
}

.modal--sended .modalDirector__info {
    display: none;
}

.modal--sended .modalDirector__form {
    display: none;
}

.modalDirector__fields {
    display: flex;
    align-items: center;
}

.modalDirector__field {
    width: 100%;
}

.modalDirector__field--right {
    margin-right: 16px;
}

.modalDirector__label {
    display: block;
    position: relative;
    padding: 39px 16px 15px 16px;
    background: #fff;
    border-radius: 12px;
    cursor: text;
}

.modalDirector__label--error {
    background: #FAE2E2;
}

.modalDirector__label--error .modalDirector__caption {
    color: #E82F2D;
}

.modalDirector__caption {
    display: block;
    position: absolute;
    font: 500 18px / 22px "sf pro display";
    color: #C5C5C5;
    top: 14px;
    left: 16px;
    transform: translateY(13px);
    transition: all 150ms;
    transform-origin: 0 50%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 95%;
}

.modalDirector__modal .modal__input {
    font: 500 18px / 135% "sf pro display";
}

.modal__input:not(.modal__input:placeholder-shown) ~ .modalDirector__caption,
.modal__input:focus ~ .modalDirector__caption {
    transform: translateY(2px) scale(.80);
}

.modalDirector__textarea {
    margin: 16px 0;
}

.modalDirector__buttonWrap {
    width: 357px;
    margin-right: 16px;
}

.modalDirector__button {
    display: block;
    cursor: pointer;
    background: #000;
    color: #fff;
    border-radius: 12px;
    font: 600 22px/16px "SF Pro Display";
    width: 100%;
    transition: background .15s;
    padding: 27px 0;
    text-align: center;
    border: 0;
}

.modalDirector__button:hover {
    background: #262626;
}

.modal__submit--loading .modalDirector__buttonText {
    display: none;
}

.modalDirector__animation {
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.modal__sended .modalDirector__title {
    font: 700 33px/28px 'SF Pro Display';
    text-align: center;
    max-width: unset;
}

.modal__sended .modalDirector__descr {
    font: 500 20px/28px 'SF Pro Display';
    margin: 24px auto 128px auto;
    color: #AEAEAE;
    text-align: center;
}

.modal__sended .modalDirector__buttonWrap {
    margin: 0 auto;
}

.modalDirector__checkboxWrap {
    display: block;
    padding-left: 36px;
    position: relative;
    font: 400 15px/15px 'SF Pro Display';
    cursor: pointer;
}

.modalDirector__checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.modalDirector__checkbox--error .modalDirector__checkmark {
    border-color: #E82F2D;
    background: #FAE2E2;
}

.modalDirector__checkmark {
    position: absolute;
    top: -6px;
    left: 0;
    height: 28px;
    width: 28px;
    border: 2px solid #9F9F9F;
    border-radius: 4px;
}

.modalDirector__checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.modalDirector__checkboxWrap input:checked ~ .modalDirector__checkmark:after {
    display: block;
}

.modalDirector__checkboxWrap .modalDirector__checkmark:after {
    left: 9px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal__captcha {
    display: none;
    align-items: center;
    margin: 0 -5px 16px -5px;
}

.modal__captcha .modal__field {
    width: calc(50% - 10px);
    height: 45px;
    margin: 0 5px;
}

.modal__captchaImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 1030px) {

    .html--fix {
        padding: 0;
    }

    .html--burger {
        overflow: hidden;
    }

    .page__content {
        z-index: auto;
    }

    .page__button {
        padding: 10px 25px;
        font-size: 15px;
        min-height: 35px;
    }

    .header {
        position: relative;
        border: none;
    }

    .header__content {
        height: 45px;
        z-index: 999;
        transform: none !important;
    }

    .page__desktop {
        display: none;
    }

    .header__logo {
        width: 150px;
        height: 20px;
    }

    .header__burger {
        display: flex;
    }

    .header__menu {
        position: fixed;
        top: 45px;
        left: 0;
        z-index: 1;
        width: 100%;
        height: calc(100% - 45px);
        padding-left: 15px;
        overflow: auto;
        background: #333;
        transform: translateX(-100%);
        transition: transform .3s;
    }

    .header__burger--active ~ .header__menu {
        transform: translateX(0);
    }

    .header__list {
        flex-direction: column;
        padding-bottom: 40px;
        color: #fff;
        margin: 20px 0 0 5px;
    }

    .header__item {
        margin: 0 0 15px 0;
    }

    .header__link {
        font-size: 20px;
        padding: 0;
        margin: 0;
    }

    .header__sub {
        font-size: 15px;
        margin: 2px 0 0 0;
        opacity: .7;
    }

    .header__link,
    .header__link:active,
    .header__link:hover {
        color: #fff;

    }

    .company__item {
        margin-right: 25px;
        margin-left: 5px;
    }

    .company__img {
        object-fit: cover;
        max-height: 23px;
    }

    .offer {
        margin-top: 19px;
    }

    .offer__shadow {
        top: 134px;
        left: calc(50% - 117px);
    }

    .offer__container {
        flex-direction: column;
    }

    .offer__item:first-child {
        order: 2;
    }

    .offer__item:last-child {
        left: auto;
    }

    .offer__imgMenu {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0 5.94vw 0 0;
    }

    .offer__imgApp {
        top: 24%;
        right: 0;
        left: auto;
        width: 27.50vw;
        height: auto;
    }

    .offer__title {
        width: 61.56vw;
        margin: 19px 0 0;
        font-size: 19px;
        font-weight: 800;
    }

    .offer__text {
        width: 70.31vw;
        margin-top: 10px;
        margin-bottom: 0;
        font-size: 15px;
    }

    .offer__p {
        margin: 7px 0;
    }

    .offer__button {
        margin-top: 10px;
    }

    .company {
        margin-top: 27px;
    }

    .company__list {
        overflow: scroll;
        border-radius: 0;
        -ms-overflow-style: none; /* IE и Edge */
        scrollbar-width: none; /* Firefox */
    }

    .company__list::-webkit-scrollbar {
        display: none;
    }

    .company__hint {
        font-size: 13px;
        line-height: 17px;
    }

    .modules {
        margin-top: 42px;
        padding: 0 15px;
    }

    .modules__container {
        flex-direction: column;
        height: auto;
        border-radius: 8px;
    }

    .modules__info {
        z-index: auto;
        margin: 15px auto 0;
        padding: 0;
        align-items: center;
    }

    .modules__control {
        margin: 0 -7px;
        gap: 3px;
    }

    .modules__tab {
        font-size: 14px;
        line-height: 16px;
        padding: 5px 9px;
        margin: 0;
        text-align: center;
    }

    @media (max-width: 374px) {

        .modules__control {
            gap: 0;
        }

        .modules__tab {
            font-size: 12px;
            line-height: 14px;
        }
    }

    @media (max-width: 340px) {

        .modules__tab {
            font-size: 11px;
        }
    }

    .modules__title {
        margin-top: 15px;
        font-size: 19px;
        text-align: center;
        max-width: none;
    }

    .modules__text {
        font-size: 15px;
        line-height: 21px;
        margin-bottom: 10px;
        text-align: center;
    }

    .modules__slider {
        height: 344px;
    }

    .modules__slider[data-idx="0"] {
        height: 451px;
    }

    .modules__slider[data-idx="1"] {
        height: 340px;
    }

    .modules__slider[data-idx="2"] {
        height: 315px;
    }

    .modules__preview {
        justify-content: center;
        margin: 0;
        position: relative;
        padding-top: 15px;
    }

    .modules__hint {
        width: 160px;
        font-size: 13px;
        line-height: 15px;
        min-height: 30px;
        margin: 0 auto;
    }

    .modules__column {
        align-items: center;
        position: absolute;
        animation: fade 12s linear infinite;
        height: 100%;
    }

    .modules__column:last-child {
        opacity: 0;
        animation: fadeAlt 12s linear infinite;
    }

    .modules__gallery {
        width: 100%;
        height: auto;
        justify-content: center;
    }

    .modules__galleryImage {
        width: 100%;
        height: auto;
        max-width: 354px;
        max-height: 268px;
    }

    .modules__features {
        width: 27.50vw;
        position: absolute;
        top: 80px;
        right: 10px;
        left: auto;
    }

    .modules__feature {
        max-width: 111px;
    }

    .integration {
        margin-top: 20px;
        padding: 0 15px;
    }

    .integration__container {
        padding: 21px 0 35px;
        border-radius: 8px;
    }

    .integration__title {
        font-size: 19px;
    }

    .integration__text {
        margin-top: 8px;
        font-size: 15px;
        padding: 0 15px;
    }

    .integration__schema {
        margin-top: 28px;
        padding: 0 20px;
    }

    .integration__schema img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
        max-width: 500px;
    }

    .map {
        margin-top: 20px;
        padding: 0 15px;
    }

    .map__container {
        flex-direction: column;
        align-items: center;
        padding-top: 21px;
        padding-bottom: 24px;
        border-radius: 8px;
    }

    .map__info {
        width: auto;
        padding: 0;
    }

    .map__title {
        font-size: 19px;
        text-align: center;
        width: 100%;
    }

    .map__text {
        margin: 0;
    }

    .map__p {
        margin: 15px 4px;
        text-align: center;
        font-size: 15px;
    }

    .map__canvas {
        width: 100%;
        height: 205px;
        margin: 0;
    }

    .review {
        margin-top: 20px;
        padding: 0 15px;
    }

    .review__container {
        padding: 21px 0 40px;
        border-radius: 8px;
    }

    .review__title {
        padding: 0 14px;
        font-size: 19px;
    }

    .review__tabs {
        margin-top: 14px;
        padding: 0 20px;
    }

    .review__tab {
        flex-basis: auto;
        font-size: 15px;
        line-height: 16px;
        padding: 4px 10px;
        margin: 2px;
    }

    .review__wrapper {
        height: 280px;
        margin-top: 21px;
    }

    .review__list {
        padding: 0;
    }

    .vslider-button-prev,
    .vslider-button-next {
        display: none;
    }

    .vslider__wrapper {
        border-radius: 8px 8px 0 0;
        padding: 6px 8px;
    }

    .vslider__img {
        border-radius: 8px;
    }

    .vslider__title {
        font-size: 17px;
        line-height: 1.2;
    }

    .vslider__subtitle {
        font-size: 11px;
        line-height: 1.4;
    }

    .vslider__button {
        height: auto;
        padding: 3px;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        border-radius: 3px;
        right: 10px;
        left: 10px;
        bottom: 10px;
    }

    .mYoutube {
        overflow-y: auto;
    }

    .mYoutube__content iframe {
        min-width: 320px;
        width: 95vw !important;
        max-height: 90vh;
    }

    .tariff {
        margin-top: 20px;
        padding: 0 15px;
    }

    .tariff__container {
        padding: 21px 15px 17px;
        border-radius: 8px;
    }

    .tariff__list {
        align-items: flex-start;
        margin: 19px -5px 0;
    }

    .tariff__item {
        margin: 0 5px;
        padding: 13px 11px 12px;
        border-radius: 6px;
    }

    .tariff__item:last-child {
        background: #0C111C;
    }

    .tariff__include {
        margin: 1px 0 5px 0;
    }

    .tariff__title {
        font-size: 19px;
    }

    .tariff__subtitle {
        font-size: 15px;
    }

    .tariff__name {
        font-weight: 700;
        font-size: 15px;
    }

    .tariff__point {
        font-size: 13px;
        line-height: 16px;
        padding-left: 14px;
        margin: 9px 0 11px;
    }

    .tariff__point:last-of-type {
        margin-top: 13px;
    }

    .tariff__point:before {
        width: 10px;
        top: 1px;
        left: -1px;
    }

    .tariff__text {
        font-size: 13px;
        line-height: 16px;
        margin: 0 0 5px 0;
    }

    .tariff .page__button {
        font-size: 13px;
        border-radius: 4px;
    }

    .tariff__mButton {
        background: #293240;
    }

    .faq {
        margin-top: 20px;
        padding: 0 15px;
    }

    .faq__container {
        flex-direction: column;
        align-items: flex-start;
        padding: 19px 15px 22px;
        border-radius: 8px;
    }

    .faq__offer {
        position: relative;
        width: 270px;
        margin: 0;
    }

    .faq__title {
        font-size: 19px;

    }

    .faq__woman {
        position: absolute;
        right: 27px;
        bottom: -25px;
        z-index: 1;
        padding: 20%;
        background: url(../img/woman.png) right bottom/contain no-repeat;
    }

    .faq__text {
        font-size: 13px;
        margin: 15px 0;
    }

    .faq__list {
        position: relative;
        margin-top: 13px;
        list-style: none;
        z-index: -1;
    }

    .faq__item {
        position: relative;
        margin: 0;
        padding: 15px 40px 12px 0;
        font-weight: 700;
        font-size: 15px;
        line-height: 20px;
    }

    .faq__list::before,
    .faq__item::after {
        position: absolute;
        right: -15px;
        bottom: 0;
        left: -15px;
        display: block;
        height: 1px;
        background: #CFCBC2;
        content: '';
    }

    .faq__list::before {
        top: 0;
        bottom: auto;
    }

    .faq__item::before {
        top: 21px;
    }

    .faq__answer {
        margin: 5px 0 0 0;
        font-size: 15px;
    }

    .footer {
        margin-top: 52px;
        padding: 24px 0 22px;
    }

    .footer__container {
        flex-direction: column;
    }

    .footer__app {
        order: 0;
        width: auto;
    }

    .footer__info {
        order: 1;
        margin: 40px 0 0;
        padding: 0;
        opacity: .5;
    }

    .footer__nav {
        order: 2;
        margin: 32px 0 0;
    }

    .footer__rating {
        margin: 14px 0 0;
    }

    .footer__logo {
        margin: 0 auto;
    }

    .footer__list {
        text-align: center;
        padding: 0 5px;
    }

    .footer__item {
        display: inline-block;
        margin: 3px 7px;
    }

    .footer__link::before {
        display: none;
    }

    .footer__link {
        padding: 0;
        font-size: 15px;
    }

    .footer__link--support {
        margin: 10px 0;
        padding: 8px 20px;
        border: 1px solid #FF4949;
        border-radius: 6px;
    }

    .footer__item:last-child {
        margin: 26px 0 0;
        display: block;
    }

    .footer__cliche {
        margin: 0 auto;
    }

    .footer__p {
        font-weight: 400;
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        opacity: .6;
    }

    .footer__p:last-child {
        line-height: 1.2;
        margin: 0;
    }

    .footer__docs {
        margin: 10px auto 18px;
    }

    .footer__file {
        text-align: center;
        font-size: 14px;
        line-height: 1.6;
        margin: 5px 0;
    }

    .modal__form {
        width: auto;
        min-width: 100%;
        margin-bottom: 0;
        border-radius: 15px 15px 0 0;
        padding: 0 16px 80px;
    }

    .modal__header {
        font: 800 20px/1.2 "SF Pro Display";
        text-align: left;
        padding-left: 0;
        padding-right: 35px;
        padding-top: 20px;
    }

    .modal__text {
        font-size: 15px;
    }

    .modal__submit {
        padding: 0 26px;
        text-align: left;
    }

    .growl {
        right: 10px;
    }

    .modal__completeText {
        padding-top: 58px;
    }

}




/* lang */


/* en */


/* ru */

@media (min-width: 1030px) {


    html[lang="ru"] .offer__button {
        margin-top: 12px;
    }

    html[lang="ru"] .company {
        margin-top: 120px;
    }

    html[lang="ru"] .company__item {
        margin-right: 33px;
    }

    html[lang="ru"] .map__title {
        font: 800 30px/1.09 "SF Pro Display";
    }

    html[lang="ru"] .map__text {
        margin-top: 8px;
    }
}

/* kz */

@media (min-width: 1030px) {


    html[lang="kz"] .offer__button {
        margin-top: 12px;
    }

    html[lang="kz"] .company {
        margin-top: 120px;
    }

    html[lang="kz"] .company__item {
        margin-right: 33px;
    }

    html[lang="kz"] .map__title {
        font: 800 30px/1.09 "SF Pro Display";
    }

    html[lang="kz"] .map__text {
        margin-top: 8px;
    }
}

@media(max-width: 700px) {
    .modalDirector__modal {
        margin: 25px 16px;
        padding: 26px 24px;
        background: #ECEBE9;
        border-radius: 12px;
    }

    .modalDirector__close {
        top: 21px;
        right: 24px;
        background-color: #D3D3D3;
    }

    .modalDirector__form {
        padding: 0;
    }

    .modalDirector__info {
        margin: 0;
    }

    .modalDirector__title {
        font: 800 28px/normal 'SF Pro Display';
    }

    .modalDirector__descr {
        font: 500 16px/normal 'SF Pro Display';
        margin: 20px 0;
    }

    .modalDirector__fields {
        flex-direction: column;
    }

    .modalDirector__field--right {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .modalDirector__fields--bootom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .modalDirector__label {
        padding: 28px 16px 12px 16px;
    }

    .modalDirector__caption {
        top: 7px;
        transform: translateY(13px);
    }

    .modalDirector__textarea {
        margin: 10px 0 20px 0;
    }

    .modalDirector__buttonWrap {
        width: 100%;
        margin-right: 0;
        margin-top: 16px;
    }

    .modalDirector__button {
        padding: 18px 0;
        font: 600 16px/16px "SF Pro Display";
    }

    .modalDirector__checkboxWrap {
        padding-left: 24px;
        font: 400 12px / 5px 'SF Pro Display';
    }

    .modalDirector__checkmark {
        width: 16px;
        height: 16px;
    }

    .modalDirector__checkboxWrap .modalDirector__checkmark:after {
        left: 4px;
        top: 1px;
        width: 5px;
        height: 8px;
        border: solid #000;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .modal--sended .modalDirector__modal {
        padding: 71px 26px 24px 26px;
        background: #fff;
    }

    .modal--sended .modalDirector__close {
        display: none;
    }

    .modal--sended .modalDirector__title {
        font: 800 25px/27px 'SF Pro Display';
    }

    .modal--sended .modalDirector__descr {
        font: 500 16px/21px 'SF Pro Display';
        margin: 141px auto 26px auto;
    }
}