@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy/Gilroy-Regular.ttf") format("truetype"),
    url('../fonts/Gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy/Gilroy-Bold.ttf") format("truetype"),
    url('../fonts/Gilroy/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy/Gilroy-Black.ttf") format("truetype"),
    url('../fonts/Gilroy/Gilroy-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy/Gilroy-Extrabold.ttf") format("truetype"),
    url('../fonts/Gilroy/Gilroy-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy/Gilroy-Semibold.ttf") format("truetype"),
    url('../fonts/Gilroy/Gilroy-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy/Gilroy-Medium.ttf") format("truetype"),
    url('../fonts/Gilroy/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy/Gilroy-Light.ttf") format("truetype"),
    url('../fonts/Gilroy/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy/Gilroy-UltraLight.ttf") format("truetype"),
    url('../fonts/Gilroy/Gilroy-UltraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy/Gilroy-Thin.ttf") format("truetype"),
    url('../fonts/Gilroy/Gilroy-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}



html,
body {
    margin: auto;
    padding: 0;
    width: 100%;
    height: 100%;
    min-width: 350px;
    min-height: 1000px;
    font-family: 'Gilroy', serif;
    background: #F5F6FB;
}

.bodyWhite {
    background: #fff;
}

.bodyMargin {
    width: 70%;
    margin: auto;
    padding: 50px 0;
}

.menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    width: 70%;
    margin: auto;
    background: #fff;
    height: 100px;
}

.login {
    color: #0091FF;
    border-radius: 30px;
    padding: 10px 24px 10px 36px;
    background: #F5F6FB url(../images/user.svg) no-repeat;
    background-position-x: 18px;
    background-position-y: 11px;
    transition: 0.5s;
}

.login:hover {
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    background: #0091FF url(../images/user_white.svg) no-repeat;
    background-position-x: 18px;
    background-position-y: 11px;
}

.serviceName {
    color: #0091FF;
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    margin-bottom: 10px;
}

.serviceNumber {
    color: #56575E;
    font-size: 64px;
    line-height: 78px;
    font-weight: 700;
}

.serviceBrunch {
    color: #56575D;
    font-size: 16px;
    font-weight: normal;
    margin-top: -14px;
}

.serviceBlock {
    background: #F5F6FB;
    border-radius: 40px;
    padding: 40px 160px 100px 40px;
    flex: 1 1 32%;
    margin: 0 5px 10px 5px;
}

.workText {
    font-size: 16px;
}

.workNumber {
    font-weight: 900;
    font-size: 72px;
    -webkit-text-stroke: 2px #0091FF;
    color: #fff;
}

.workBlock {
    background: #fff;
    border-radius: 40px;
    padding: 40px 40px 60px 40px;
    flex: 1 1 24%;
    margin: 0 5px 10px 5px;
}

.btnWhite {
    cursor: pointer;
    color: #0091FF;
    background: #F5F6FB;
    padding: 10px 32px;
    border-radius: 20px;
    font-weight: 500;
    margin-right: 20px;
    transition: 0.5s;
}

.btnWhite:hover {
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    background: #0091FF;
}

.active {
    color: #F5F6FB;
    background: #0091FF;
}

.chapter {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 32px;
    margin-top: 0;
    font-weight: 500;
}

.line {
    border-bottom: 3px solid #0091FF;
    width: 52px;
    margin-bottom: 4px;
}

.clientBlock {
    border-radius: 40px;
    width: 279px;
    background: #fff no-repeat;
    height: 160px;
    background-position-x: center;
    background-position-y: center;
    margin-right: 10px;
    padding: 0 20px;
    display: flex;
    flex: 0 0 27%;
    align-items: center;
    justify-content: center;
}

@keyframes scrollup {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-100%, 0, 0); }
}

@keyframes scrolldown {
    from {transform: translate3d(-100%, 0, 0);   }
    to {transform: translate3d(0, 0, 0); }
}

.field {
    height: 51px;
    box-shadow: none;
    border: none;
    background: #F5F6FB;
    color: #56575E;
    border-radius: 10px;
    width: 100%;
}

.youtube {
    width: 51px;
    height: 51px;
    border-radius: 30px;
    background: #fff url(../images/youtube.svg) no-repeat;
    background-position: center;
    margin-right: 10px;
    transition: 0.5s;
}

.youtube:hover {
    background: #0091FF url(../images/youtube_white.svg) no-repeat;
    background-position: center;
    cursor: pointer;
    border-radius: 10px;
}

.telegram {
    width: 51px;
    height: 51px;
    border-radius: 30px;
    background: #fff url(../images/telegram.svg) no-repeat;
    background-position: center;
    margin-right: 10px;
    transition: 0.5s;
}

.telegram:hover {
    background: #0091FF url(../images/telegram_white.svg) no-repeat;
    background-position: center;
    cursor: pointer;
    border-radius: 10px;
}

.inst {
    width: 51px;
    height: 51px;
    border-radius: 30px;
    background: #fff url(../images/inst.svg) no-repeat;
    background-position: center;
    transition: 0.5s;
}

.inst:hover {
    background: #0091FF url(../images/inst_white.svg) no-repeat;
    background-position: center;
    cursor: pointer;
    border-radius: 10px;
}

.form-control:focus {
    background: #fff;
    border: 1px solid #0091FF;
    box-shadow: none;
    color: #0091FF;
}

a {
    text-decoration: none !important;
}

.phone {
    white-space: nowrap;
    padding-left: 20px;
    background: url(../images/phone.svg) no-repeat 0 4px;
    font-weight: 600;
    color: #151D28;
}

.phone:hover {
    background: url(../images/phone_blue.svg) no-repeat 0 4px;
    color: #0091FF;
    cursor: pointer;
}

.phone_revert {
    white-space: nowrap;
    padding-left: 20px;
    font-weight: 600;
    background: url(../images/phone_blue.svg) no-repeat 0 4px;
    color: #0091FF;
    margin-top: 28px;
    margin-left: 10px;
}

.its {
    white-space: nowrap;
    background: #F5F6FB url(../images/its_blue.svg) no-repeat 26px 9px;
    font-weight: 400;
    padding: 10px 24px 10px 46px;
    transition: 0.5s;
    border-radius: 30px;
    color: #0091FF;
}

.its:hover {
    background: #0091FF url(../images/its.svg) no-repeat 26px 9px;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
}

input::placeholder {
    color: #56575E !important;
    padding-left: 10px;
}

.modal-dialog {
    max-width: 500px;
}

.modal-content {
    border-radius: 40px;
    box-shadow: 0 4px 20px 0 #00000026;

}
.modal-header {
    border-bottom: none;
}

.modal .close {
    font-size: 40px;
    font-weight: 200;
    margin-right: 10px;
    color: #D1D1D1;
    width: 40px;
    height: 40px;
    padding-top: 3px;
    transition: 0.5s;
}
.modal .close:hover {
    color: #F46581;
    transform: rotate(90deg);
}

.btnSubmit {
    background: #0091FF;
    color: #fff;
    border-radius: 30px;
    width: 100%;
    transition: 0.5s;
    border: none;
    padding: 10px 0;
}

.btnSubmit:hover {
    border-radius: 10px;
    color: #fff;
}

.sTires {
    background: #F5F6FB url(../images/s_tires.png) no-repeat bottom -15px right -25px;
    transition: 0.5s;
    background-size: 200px;
}
.sTires:hover {
    background: #F1F3FF url(../images/s_tires.png) no-repeat bottom right;
    background-size: 200px;
}

.sDisinfection {
    position: relative;
    transition: transform 0.5s;
    overflow: hidden;
    display: inline-table;
}

.sDisinfection:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s_disinfection.png) no-repeat bottom right;
    background-size: 120px;
    transform: rotate(0deg);
    transition: transform 0.5s;
    transform-origin: right bottom -10px;
}

.sDisinfection:hover:before {
    transform: rotate(-10deg) scale(1.1);
    transform-origin: right bottom -10px;
}
.sDisinfection:hover {
    background: #F1F3FF;
}

.sParking {
    background: #F5F6FB url(../images/s_park.png) no-repeat bottom right;
    transition: 0.5s;
    background-size: 120px;
}
.sParking:hover {
    background: #F1F3FF url(../images/s_park.png) no-repeat bottom right;
    background-size: 140px;
}

.sService {
    background: #F5F6FB url(../images/s_service_1.png) no-repeat bottom right -70px;
    transition: 0.5s;
    background-size: 250px;
}
.sService:hover {
    background: #F1F3FF url(../images/s_service_2.png) no-repeat bottom right -20px;
    background-size: 250px;
}

.sWash {
    background: url(../images/s_wash_1.png) no-repeat bottom  right -25px, #F5F6FB url('../images/s_wash_3.png') center;
    transition: 0.5s;
    background-size: 250px, calc(100% + 25px);
}
.sWash:hover {
    background: url(../images/s_wash_1.png) bottom right/ 250px no-repeat, #F1F3FF url('../images/s_wash_2.png') center;
    background-size: 250px, calc(100% + 25px);
}

.sEvacuation {
    background: #F5F6FB url(../images/s_evacuation.png) no-repeat bottom -60px right -95px;
    transition: 0.5s;
    background-size: 370px;
}
.sEvacuation:hover {
    background: #F1F3FF url(../images/s_evacuation.png) no-repeat bottom -60px right -14px;
    background-size: 370px;
}

.more {
    color: #0091FF;
    font-weight: 500;
    text-align: center;
    padding: 18px;
    border-radius: 30px;
    background: #fff;
    transition: 0.5s;
}

.more:hover {
    color: #fff;
    background: #0091FF;
    border-radius: 10px;
    cursor: pointer;
}

.me {
    color: #0091FF;
    background: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    width: fit-content;
    transition: 0.5s;
    height: 51px;
    display: flex;
    align-items: center;
}

.me:hover {
    color: #fff;
    background: #0091FF;
    border-radius: 10px;
    cursor: pointer;
}

.control {
    padding: 40px 38% 0 20px;
    background-image: url(../images/control.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    height: inherit;
}

.analytic {
    padding: 40px 38% 0 20px;
    background-image: url(../images/analytic.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    height: inherit;
}

.branch {
    padding: 40px 38% 0 20px;
    background-image: url(../images/branch.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    height: inherit;
}

.forecast {
    padding: 40px 38% 0 20px;
    background-image: url(../images/forecast.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    height: inherit;
}

.report {
    padding: 40px 38% 0 20px;
    background-image: url(../images/report.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    height: inherit;
}

.grey {
    background-color: #F5F6FB;
}
.white {
    background-color: #fff;
}

.google {
    color: #0091FF;
    border-radius: 30px;
    padding: 5px 20px 5px 60px;
    margin-right: 20px;
    background-repeat: no-repeat;
    background-image: url(../images/google.svg);
    background-position-x: 32px;
    background-position-y: center;
    transition: 0.5s;
    height: 51px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.google:hover {
    color: #fff;
    border-radius: 10px;
    background: #0091FF url(../images/google_white.svg) no-repeat;
    background-position-x: 32px;
    background-position-y: center;
}

.apple {
    color: #0091FF;
    border-radius: 30px;
    padding: 5px 20px 5px 65px;
    margin-right: 20px;
    background-repeat: no-repeat;
    background-image: url(../images/apple.svg);
    background-position-x: 32px;
    background-position-y: center;
    transition: 0.5s;
    height: 51px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apple:hover {
    color: #fff;
    border-radius: 10px;
    background: #0091FF url(../images/apple_white.svg) no-repeat;
    background-position-x: 32px;
    background-position-y: center;
}

.huawei {
    color: #0091FF;
    border-radius: 30px;
    padding: 5px 20px 5px 54px;
    margin-right: 20px;
    background-repeat: no-repeat;
    background-image: url(../images/huawei.svg);
    background-position-x: 20px;
    background-position-y: center;
    transition: 0.5s;
    height: 51px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.huawei:hover {
    color: #fff;
    border-radius: 10px;
    background: #0091FF url(../images/huawei_white.svg) no-repeat;
    background-position-x: 20px;
    background-position-y: center;
}

.contactText {
    color: #151D28;
}

.contactAddress {
    color: #0091FF;
}

.formApplication {
    padding-left: 60px;
    max-width: 430px;
}

.formApplication div {
    color: #151D28;
    font-size: 18px;
}

.footerDownload {
    display: flex;
}

h1, h2, h3 {
    font-family: Gilroy, serif;
}

.mainService {
    font-size: 18px;
    margin-bottom: 20px;
}

.mainWe {
    font-size: 36px;
    font-weight: 500;
    margin: 0;
}

.main {
    display: flex;
    flex-direction: column;
    height: 675px;
    justify-content: center;
    background: url(../images/earth.png) right bottom 50px/500px no-repeat;
    padding-top: 100px;
}

.section-client {
    width: 70%;
    margin: auto;
    padding-top: 50px
}

#app {
    background: #fff url(../images/ellipse.svg) bottom 20px right -40px no-repeat;
    background-size: 700px
}

#contact {
    background: #fff url(../images/clipboard.png) center right -290px no-repeat;
}

.appMargin {
    margin-top: 225px;
}

.clientLogoUp,
.clientLogoDown {
    width: 1794px;
    height: 160px;
}

.prevButton {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.mobileCenter img {
    width: 300px;
}

.contactInfo {
    border-right: 1px solid #EAEAED;
    padding-right: 30px;
}

.contactMain {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 30px;
}

.siteApp {
    display: flex;
}

.mobileInfo {
    color: #151D28;
    font-size: 18px;
    width: 500px;
    background: #F5F6FB;
    height: 229px;
    border-radius: 20px;
    padding-right: 24px;
}

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

.desktop {
    display: block;
}
.mobile {
    display: none;
}

.social {
    margin-bottom: 24px;
    color: #151D28;
    text-align: center;
}

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

.question {
    margin-bottom: 24px;
    color: #151D28
}

.weApp {
    margin-bottom: 24px;
    color: #151D28;
}

.menu_full {
    height: 700px;
    margin-top: -700px;
    transition: 1s;
}

.sector {
    cursor: pointer;
    padding-left: 10px;
}

.newHr {
    margin: 12px 0;
}

.workDescription {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -5px;
}

.accessApp {
    color: #56575E;
    font-size: 18px;
    margin-bottom: 20px;
}

.our_complex {
    font-size: 20px;
    margin: 5px 0;
}

.imgCopy {
    background: url('/images/copy.svg') no-repeat;
    background-size: 20px;
    display: block;
    height: 20px;
    width: 20px;
}

.application-text {
    color: #151D28;
    font-size: 18px;
    margin-left: 40px;
}

.application-prevform {
    padding: 10px 50px 30px 50px;
}

.modal-dialog {
    margin: 30px auto;
}


/* CAROUSEL */
.carousel-inner>.item {
    width: 100%;
    height: 600px;
}

.carousel-inner>.item.active {
    background: inherit;
}

.carousel-indicators li {
    background-color: #D1D1D1;
    border: none;
    width: 8px;
    height: 8px;
    margin: 0;
}
.carousel-indicators .active {
    background-color: #0091FF;
    width: 8px;
    height: 8px;
    margin: 0;
}

.carousel-inner {
    height: inherit;
}

.right.carousel-control, .left.carousel-control {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #0091FF;
    font-size: 70px;
    height: 100%;
    background: none;
    opacity: 1;
}

.right.carousel-control {
    align-items: flex-end;
}

.carousel-indicators {
    margin: auto;
    left: 0;
    right: 0;
    bottom: -40px;
    z-index: 0;
}

.left_arrow {
    background: url('../images/left.svg') no-repeat;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin-left: -60px;
    transition: 500ms;
    opacity: 0;
}

.left_arrow:hover {
    background: url('../images/left_blue.svg') no-repeat;
}

.right_arrow {
    background: url('../images/right.svg') no-repeat;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin-right: -60px;
    transition: 500ms;
    opacity: 0;
}

.right_arrow:hover {
    background: url('../images/right_blue.svg') no-repeat;
}

.carousel:hover .right_arrow {
    margin-right: -30px;
    transition: 500ms;
    opacity: 1;
}

.carousel:hover .left_arrow {
    margin-left: -30px;
    transition: 500ms;
    opacity: 1;
}

#timeCollapse.collapsed div {
    transform: scaleY(-1);
}
/* END CAROUSEL */

/* label | input */
label {
    display: none;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group:focus-within label {
    position: absolute;
    font-weight: 500;
    margin-top: -7px;
    margin-left: 20px;
    background: #fff;
    color: #0091FF;
    font-size: 12px;
    padding: 0 5px;
    display: block;
}

input:focus, .has-error .form-control:focus {
    box-shadow: none;
}
/* END label | input */

/* RATING */
.rating-container .filled-stars {
    color: #FFBC10;
    -webkit-text-stroke: 1px #FFBC10;
    text-shadow: 1px 1px #FFBC10;
}

.rating-container .empty-stars {
    color: #E6E6E6;
}
/* END RATING */

.instructionImg {
    flex: 1 1 25%;
    width: 1%;
}

.instructionArea {
    display: flex;
}

@media (max-width: 1595px) {
    .footerDownload {
        flex-direction: column;
    }

    .footerDownload a {
        margin-bottom: 5px;
    }

    .google {
        background-position-x: 42px;
    }

    .apple {
        background-position-x: 48px;
    }
}

@media (max-width: 1570px)  {
    .mobileCenter {
        margin: auto;
    }

    #app {
        background-size: 670px;
        background-position: bottom 20px center;
    }

    .appMargin {
        margin: 30px 0 40px 0;
    }
}

@media (max-width: 1300px)  {

    #contact {
        height: 1300px;
        background-position: center bottom;
    }

    .bodyTariff {
        width: 100% !important;
    }
}

@media (min-width: 1200px)  {
    .mainService {
        font-size: calc((100vw - 1200px) / (1920 - 1200) * (20 - 16) + 16px);
    }

    .mainWe {
        font-size: calc((100vw - 1200px) / (1920 - 1200) * (36 - 24) + 24px);
    }

    .main {
        background-position: right bottom calc((100vw - 1200px) / (1920 - 1200) * (50 - 90) + 90px);
        background-size: calc((100vw - 1200px) / (1920 - 1200) * (500 - 420) + 420px);
    }
}

@media (min-width: 801px) and (max-width: 1200px) {
    .main {
        height: 700px;
        background-position: center bottom 50px;
        background-size: 400px;
        justify-content: normal;
        padding-top: 140px;
    }

    .mainService {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .mainWe {
        font-size: 24px;
    }
}

@media (min-width: 801px) {

    .menu {
        font-size: calc((100vw - 800px) / (1920 - 800) * (16 - 12) + 12px);
    }

    .phone {
        background: url(../images/phone.svg) no-repeat 0 calc((100vw - 800px) / (1920 - 800) * (4 - 2) + 2px);
    }

    .phone:hover {
        background: url(../images/phone_blue.svg) no-repeat 0 calc((100vw - 800px) / (1920 - 800) * (4 - 2) + 2px);
    }

    .btnWhite {
        margin: 5px 20px 5px 0;
    }

    .downloadText {
        font-size: calc((100vw - 800px) / (1920 - 800) * (16 - 12) + 12px);
    }

    .contactText {
        font-size: calc((100vw - 800px) / (1920 - 800) * (24 - 16) + 16px);
    }

    .contactAddress {
        font-size: calc((100vw - 800px) / (1920 - 800) * (18 - 12) + 12px);
    }
}

@media (max-width: 800px) {

    .bodyMargin {
        width: 90%;
    }

    .menu {
        width: 90%;
    }

    .main {
        background-position: center bottom 50px;
        background-size: 400px;
        height: 680px;
        justify-content: normal;
        font-weight: 500;
    }

    .mainService {
        font-size: 14px;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .mainWe {
        font-size: 20px;
    }

    .chapter {
        font-size: calc((100vw - 800px) / (800 - 320) * (24 - 20) + 24px);
        font-weight: 500;
    }

    .serviceName {
        font-size: 20px;
    }

    .serviceNumber {
        font-size: 56px;
    }

    .serviceBrunch {
        font-size: 14px;
    }

    .prevButton {
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: scroll;
    }

    .contactMain {
        flex-direction: column;
    }

    .formApplication {
        padding-left: 0;
        max-width: 100%;
    }

    .formApplication div {
       // max-width: 320px;
    }

    .contactInfo {
        border: none;
    }

    #app {
        background-size: 670px;
        background-position: bottom 330px right -105px;
    }

    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }

    .siteApp {
        flex-direction: column;
        text-align: center;
        margin: auto;
    }

    .siteApp a {
        margin-bottom: 10px;
    }

    .mobileInfo {
        margin-bottom: 40px;
        width: auto;
    }

    .google, .google:hover {
        background-position-x: calc(50% - 40px);
        margin-right: 0;
    }

    .apple, .apple:hover {
        background-position-x: calc(50% - 30px);
        margin-right: 0;
    }

    .huawei, .huawei:hover {
        background-position-x: calc(50% - 56px);
        margin-right: 0;
    }

    #contact {
        height: 1500px;
        background-position: right -200px bottom;
    }

    .footerBlock {
        flex-direction: column;
    }
    .footerDownload {
        text-align: center;
        margin-bottom: 10px;
    }

    .footerDownload a{
        margin-bottom: 20px;
    }

    .mobileSliderWidth {
        width: 100%
    }

    .me {
        width: auto;
        text-align: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .social {
        text-align: left;
        margin-bottom: 10px;
    }

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

    .question {
        margin-bottom: 10px;
    }

    .weApp {
        margin-bottom: 10px;
    }

    .m_header {
        border-radius: 0 0 10px 10px;
        background: #fff;
        position: fixed;
        width: 100%;
        z-index: 1;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    }

    .menuMobile {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        font-weight: 500;
        width: 90%;
        margin: auto;
        background: #fff;
        height: 56px;
    }

    .login, .login:hover {
        width: 100%;
        background-position-x: calc(50% - 34px);
        display: flex;
        align-items: center;
        justify-content: center;
        background-position-y: calc(50% - 2px);
    }

    .its, .its:hover {
        width: 100%;
        background-position-x: calc(50% - 28px);
        display: flex;
        align-items: center;
        justify-content: center;
        background-position-y: calc(50% - 2px);
    }

    .workDescription {
        flex-direction: column;
    }

    .accessApp {
        font-size: 14px;
    }

    .phone_revert {
        background-position: 0 2px;
    }

    .phone_revert:hover {
        color: #0091FF;
    }

    #contact .application-text {
        margin-left: 0;
    }

    #contact .application-prevform {
        padding: 0;
    }

    .instructionImg {
        width: 100%;
    }

    .instructionArea {
        flex-direction: column;
    }
}

.subscriptionBlock {
    border-radius: 40px;
    padding: 25px 40px 100px 40px;
    flex: 1 1;
    margin: 0 5px 10px 5px;
}

.subscriptionName {
    font-size: 18px;
}

.subBroken {
    background: #F6F8FF url(../images/sub_broke_auto.png) no-repeat bottom right;
}
.subFuel {
    background: #F6F8FF url(../images/sub_empty_fuel.png) no-repeat bottom right;
}
.subEvacuation {
    background: #F6F8FF url(../images/sub_need_evacuation.png) no-repeat bottom right;
}
.subBattery {
    background: #F6F8FF url(../images/sub_battery_dead.png) no-repeat bottom right;
}
.subTires {
    background: #F6F8FF url(../images/sub_flat_tire.png) no-repeat bottom right;
}
.subAccident {
    background: #F6F8FF url(../images/sub_accident.png) no-repeat bottom right;
}

.bodyTariff {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    width: 70%
}

.tariff {
    font-size: 32px;
    margin: auto;
    width: fit-content;
    font-weight: 500;
    padding-bottom: 20px;
}

.tariffBlock {
    background: #F6F8FF;
    border-radius: 40px;
    padding: 40px;
    flex: 1 1;
    margin: 0 5px 10px 5px;
}

.tariffName {
    font-size: 24px;
    font-weight: 500;
    width: fit-content;
    margin: 0 auto 15px;
}

.tariffBrunch {
    color: #151D28;
    text-align: center;
    margin: 20px 0;
}

.commonPriceBLock {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 5px;
}

.priceBlock {
    flex: 1 1;
    background-color: #fff;
    border-radius: 10px;
    color: #FF4500;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.discount {
    background-color: #32D400;
    font-size: 12px;
    border-radius: 7px;
    color: #fff;
    padding: 5px 0;
    margin: 10px;
    font-weight: bold;
}

.term {
    font-weight: 500;
    font-size: 16px;
}

.subPrice {
    font-size: 24px;
    font-weight: 500;
}

.detailsInfo {
    font-weight: bold;
}

.blockDetailsInfo {
    display: flex;
    flex-direction: row;
    gap: 50px;
}
