:root {
    --clr-black: #08151D;
    --clr-green: #ACCE01;
    --clr-blue: #003376;
    --clr-blue-light: #445DC1;
    --clr-white: #ffffff;
    --clr-grey: #dbdbdb;
    --clr-grey-bg: #f1f1f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--clr-black);
    font-size: 1.8rem;
    font-weight: 400;
}

.container {
    max-width: 1600px;
    padding: 0 70px;
    margin: 0 auto;
    position: relative;
}
a {
    text-decoration: none;
}
ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

.flex-s-c {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.flex-s-s {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.flex-s-e {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}

.flex-c-c {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-e-c {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.flex-b-c {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.flex-b-e {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.flex-s-e {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}
.flex-c-b {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}
.flex-c-b > div {
    width: 100%;
}
section {
    margin: 70px 0;
}
.main {
    margin: 10px 0  20px 0!important;
}
.services {
    margin-top: 20px !important;
}
.column-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}
.col-2parts {
    grid-area: 1/2/2/4;
}
.col-3parts {
    grid-area: 1/2/2/5;
}
/*****************HEADER****************/
header .column-grid {
    background: var(--clr-blue);
    padding: 10px 20px;
    border-radius: 5px;
}
.green-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-green);
    margin-right: 7px;
}
.logo-wrap {
    display: flex;
    align-items: center;
}
.header-nav,
.logo-title {
    color: var(--clr-white);
}
.logo-title {
    font-size: 2.2rem;
    font-weight: 500;
}
.header-call {
    color: var(--clr-blue);
    background: var(--clr-white);
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    font-weight: 500;
}
.header-nav-wrap {
    gap: 30px;
}
.hum-menu {
    width: 50px;
    height: 40px;
    background: url(images/hum-menu.png);
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
header .col-3parts .flex-e-c {
    gap: 20px;
}
.contact-info p {
    color: var(--clr-white);
    font-size: 1.6rem;
    opacity: 0.7;
    font-weight: 300;
}
.contact-info .flex-e-c {
    gap: 0px !important;
}
.header-nav {
    color: var(--clr-white);
    position: relative;
    padding-bottom: 5px;
}

.header-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;

    width: 0;
    height: 1px;
    background: var(--clr-white);

    transition: width 0.35s ease;
}

.header-nav:hover::after {
    width: 100%;
}
/***************MAIN*******************/
.main-block {
    width: 100%;
    height: 600px;
    background: url(images/main.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
h1 {
    font-weight: 500;
    color: var(--clr-white);
    font-size: 10rem;
    line-height: 70%;
    letter-spacing: -1px;
}
.h1-subtitle {
    color: var(--clr-white);
    font-size: 2.8rem;
    margin-bottom: 10px;
    padding-left: 5px;
}
.h1-span {
    font-size: 6rem;
    font-weight: 400;
    padding-left: 5px;
}
.btn-wrap {
    margin-top: 40px;
}
.btn-wrap .flex-s-c {
    gap: 15px;
}
.type-1 {
    padding: 15px 30px;
    background: var(--clr-blue-light);
    color: var(--clr-white);
    border-radius: 5px;
    cursor: pointer;
}
.type-2 {
    padding: 15px 30px;
    background: var(--clr-white);
    opacity: 0.6;
    color: var(--clr-blue);
    border-radius: 5px;
    cursor: pointer;
}
/***********SERVICES*************/
.section-title {
    color: var(--clr-blue);
    font-size: 2rem;
    font-weight: 500;
}
h3 {
    font-size: 3.8rem;
    font-weight: 500;
}
.service-raw {
    margin-top: 40px;
}
.service-raw .column-grid:first-child {
    border-top: 1px solid var(--clr-grey);
}
.service-raw .column-grid {
    padding: 30px 0;
    border-bottom: 1px solid var(--clr-grey);
}
.service-raw .col-3parts {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.num {
    font-size: 2rem;
    font-weight: 600;
}
.service-title {
    font-weight: 600;
    font-size: 2rem;
    padding-right: 20px;
}
.service-description {
    opacity: 0.7;
}
/*************TRUCKS*********************/
.section-text {
    font-size: 2.6rem;
    margin-top: 15px;
}
.truck-wrap, .cases-wrap {
    width: 100%;
    margin-top: 40px;
}

.truck-scroll, .cases-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}

.truck-wrap  .flex-s-s,
.cases-wrap  .flex-s-s {
    gap: 15px;
    flex-wrap: nowrap; /* запрещаем перенос */
     align-items: stretch; 
}

.truck-block {
    background: var(--clr-grey-bg);
    flex-shrink: 0; 
    margin-bottom: 15px;
    flex: 0 0 calc((100% - 60px) / 4);
    border-radius: 5px;
    padding: 10px 10px 20px 10px;
}
.truck-block img {
    width: 100%;
}
.truck-title {
    font-size: 2rem;
    font-weight: 500;
    margin: 10px 0 5px 0;
}
.truck-text {
    opacity: 0.7;
    font-size: 1.6rem;
}
.truck-block .flex-b-c {
    margin: 10px 0;
}
.truck-block .type-1 {
    text-align: center;
    padding: 10px 0px;
    margin-top: 20px;
    font-size: 1.6rem;
}
.table-title {
    font-weight: 500;
    font-size: 1.6rem;
}
.table-text {
    font-size: 1.5rem;
}
.truck-block-devider {
    width: 100%;
    height: 1px;
    background: var(--clr-grey);
    margin: 20px 0;
}
/**************DESTINATIN*************/
.destination-wrap {
    width: 100%;
    height: 480px;
    background: url(images/destination.png);
    background-position: center right;
    background-repeat: no-repeat;
        background-size: cover;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 70px 40px;
}
.section-title-type-2 {
    color: var(--clr-blue-light);
} 
.destination-title {
    font-size: 4rem;
    line-height: 100%;
    color: var(--clr-white);
    width: 40%;
    margin: 5px 0 20px 0;
}
.circle-blue {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
    background: var(--clr-blue-light);
}
.destination-wrap .flex-s-c p {
    color: var(--clr-white);
    opacity: 0.5;
}
.destination-wrap .flex-s-c {
    margin: 7px 0;
}
.call-to-action  {
    display: block;
    padding: 15px 30px;
    color: var(--clr-white);
    background: var(--clr-blue-light);
    text-align: center;
     width: fit-content;
     border-radius: 5px;
     margin-top: 40px;
}
/*************advANTAGES*************/
.adv-block-1 {
    grid-area: 1/2/2/4;
}
.adv-block-2 {
    grid-area: 1/4/2/5;
}
.adv-block-3 {
    grid-area: 2/1/3/2;
}
.adv-block-4 {
    grid-area: 2/2/3/3;
}
.adv-block-5 {
    grid-area: 2/3/3/4;
}
.adv-block-6 {
    grid-area: 2/4/3/5;
}
.advantages-wrap {
    margin-top: 40px;
}
.advantages-wrap .column-grid >div {
    padding: 20px;
    background: var(--clr-grey-bg);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 100px;
}
.adv-title {
    font-weight: 500;
    font-size: 2rem;
}
.adv-text {
    opacity: 0.7;
}
/************CASES**********/
.case-block {
        background: var(--clr-grey-bg);
    flex-shrink: 0;
    margin-bottom: 15px;
    flex: 0 0 calc((100% - 60px) / 4);
    border-radius: 5px;
}

.case-block  img {
    width: 100%;
}
.case-block-text-wrap {
    padding: 10px 15px 20px 15px;
}
.case-block-title {
    font-weight: 500;
    margin-bottom: 10px;
}
.case-block-text {
    font-size: 1.6rem;
    opacity: 0.7;
}
/********************FAQ***************/

.faq-wrap {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--clr-grey);
    padding: 20px 10px;
    border-radius: 5px;
}
.faq-item:first-child {
    border-top: 1px solid var(--clr-grey);
}
.active .faq-answer  {
    border-top: 1px solid var(--clr-white);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--clr-black);
    position: relative;
}
.active .faq-question {
    margin-bottom: 10px;

}

/* ГОРИЗОНТАЛЬНАЯ ЛИНИЯ */

.faq-question::after,
.faq-question::before {
    content: "";
    position: absolute;
    right: 0;
    width: 16px;
    height: 2px;
    background: var(--clr-black);
    transition: .3s ease;
}

/* ВЕРТИКАЛЬНАЯ */

.faq-question::before {
    transform: rotate(90deg);
}

/* ОТКРЫТО = МИНУС */

.faq-item.active .faq-question::before {
    opacity: 0;
    transform:
        rotate(90deg)
        scaleY(0);
}

/* ОТВЕТ */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height .35s ease,
        opacity .35s ease;
    padding-right: 40px;
}

.faq-answer p {
    margin-top: 18px;
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--clr-grey-dark);
    font-weight: 300;
}

.faq-item.active .faq-answer {

    max-height: 300px;
    opacity: 1;
}

/* HOVER */
.faq-item.active {
     background:var(--clr-blue-light)
}

.faq-item.active button, .faq-item.active p {
    color: var(--clr-white);
}
.faq-item.active .faq-question::after,
.faq-item.active .faq-question::before {
    background: var(--clr-white);
}
/*************FOOTER************/
footer {
    padding: 70px 0 30px 0;
    background: var(--clr-blue);
}
footer a, footer p, footer h3 {
    color: var(--clr-white) !important;
    display: block;
}
footer a, footer p {
    font-weight: 300;
}
.contacts-wrap {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}
.footer-nav {
    padding: 30px 0;
    margin: 10px 0 30px 0;
    border-top: 1px solid var(--clr-grey);
    border-bottom: 1px solid var(--clr-grey);
}
.contacts-title {
    font-weight: 400;
}
.contacts-text {
    opacity: 0.7;
    margin: 5px 0;
}
.contacts-data > div {
    margin-bottom: 20px;
}
.footer-nav .flex-s-c {
gap: 30px;
}
.footer-nav .flex-s-c a {
    opacity: 0.7;
    transition: 0.3s;
}
.footer-nav .flex-s-c a:hover {
    opacity: 1;
}
.up {
    width: 40px;
    cursor: pointer;
}
.up img {
    width: 100%;
}
.copywrite p, .copywrite a {
    font-size: 1.4rem;
    opacity: 0.5;
    transition: 0.3s;
}
.copywrite a:hover {
    opacity: 1;
}
.agency {
    white-space: nowrap;
}
/***************MBILE MENU************/
.drop-menu-wrap {
    position: fixed;
    top: 0px;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--clr-blue);
    overflow-y: scroll;
    animation: menuShow 0.3s linear;
    z-index: 11000;
    display: none;
}

@keyframes menuShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframe menuShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframe menuShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.menu-close {
    width: 25px;
    height: 25px;
    background: url(images/hum-menu-close.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.drop-menu-top {
    padding: 18px 0;
    border-bottom: 1px solid var(--clr-grey);
}
.logo-descr {
    color: var(--clr-white);
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid var(--clr-white);
    font-size: 1.6rem;
    opacity: 0.7;
}
.drop-menu-wrap .container {
    padding: 0 90px;
}
.drop-menu-body a {
    display: block;
    color: var(--clr-white);
}
.drop-menu-body .circle-blue {
    background: var(--clr-white);
    width: 7px;
    height: 7px;
    opacity: 0.7;
}
.drop-menu-body .flex-s-c {
    margin: 15px 0;
}
.drop-menu-body {
    padding: 20px 0;
}
.drop-menu-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--clr-white);
}
.drop-menu-bottom a, .drop-menu-bottom p {
    color: var(--clr-white);
    display: block;
}
.drop-menu-bottom p, .drop-menu-body p {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--clr-white);
}
.drop-menu-bottom a {
    font-weight: 300;
    margin: 10px 0;
    opacity: 0.7;
}
.drop-menu-bottom p:last-child {
    font-weight: 300;
    margin: 10px 0;
    opacity: 0.7;
}
.drop-menu-body a {
    opacity: 0.7;
}

/**********MODAL*************/
.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(8,21,29,.75);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.25s;
    z-index:9999;
}

.modal-overlay.active{
    opacity:1;
    visibility:visible;
}

.modal-window{
    width:100%;
    max-width:600px;
    background:var(--clr-white);
    border-radius:10px;
    padding:30px;
    max-height: 90vh;   /* важно */
    overflow-y: auto;   /* скролл внутри */
}
.modal-window{
    scrollbar-width: thin;
}

.modal-window::-webkit-scrollbar{
    width:6px;
}

/* СВЕТЛО-СИНЯЯ ЛИНИЯ (track) */
.modal-window::-webkit-scrollbar-track {
    background: rgba(0, 123, 255, 0.12); /* светло-синий */
    border-radius: 10px;
}

/* СИНИЙ ПОЛЗУНОК */
.modal-window::-webkit-scrollbar-thumb {
    background: var(--clr-blue-light);
    border-radius: 10px;
}

/* hover эффект */
.modal-window::-webkit-scrollbar-thumb:hover {
    background: var(--clr-blue);
}
.devider-line {
    width: 100%;
    height: 1px;
    background: var(--clr-blue);
    margin-bottom: 30px;
}
.modal-head h2 {
    color: var(--clr-blue);
}
.modal-head{
    margin-bottom:15px;
}

.modal-close{
    cursor:pointer;
    font-size:3rem;
    color: var(--clr-blue);
}

/* INPUTS */
.input-wrap{
    margin-bottom:25px;
}

.input-wrap label{
    display:block;
    margin-bottom:6px;
    font-size:1.4rem;
    color:var(--clr-blue);
}

.input-wrap input,
.input-wrap textarea{
    width:100%;
    padding:12px;
    border:1px solid var(--clr-grey);
    border-radius:5px;
    font-size:1.6rem;
    transition:.2s;
}
.input-wrap textarea{
    height:100px;
    resize:none;
}

/* ERROR */
.input-error{
    border:1px solid #ff3b3b !important;
    background:rgba(255,59,59,.06);
}

/* GRID */
.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 10px;
}
.grid-2 .input-wrap {
    margin-bottom: 0;
}
#extraFields {
    margin-top: 25px;
}

/* 🌍 CITY SCROLL */
.city-quick{
    display:flex;
    gap:8px;
    margin-top:8px;

    overflow-x:auto;
    white-space:nowrap;

    padding-bottom:6px;

    -webkit-overflow-scrolling:touch;
    scrollbar-width:thin;

    position:relative;
}

.city-quick span{
    flex:0 0 auto;
    font-size:1.2rem;
    padding:4px 10px;
    background:#eef3ff;
    border-radius:20px;
    cursor:pointer;
    transition:.2s;
}

.city-quick span:hover{
    background:var(--clr-blue-light);
    color:var(--clr-white);
}

/* scrollbar */
.city-quick::-webkit-scrollbar{
    height:4px;
}

.city-quick::-webkit-scrollbar-thumb{
    background:var(--clr-blue-light);
    border-radius:10px;
}

/* hint scroll fade */
.city-quick::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:25px;
    height:100%;
    background:linear-gradient(to left, #fff, transparent);
    pointer-events:none;
}

/* CHECKBOXES */
.checkbox-wrap{
    display:flex;
    gap:15px;
    margin:25px 0;
    flex-wrap:wrap;
}

.checkbox-wrap label{
    display:flex;
    align-items:center;
    gap:10px;
    font-size: 1.4rem;
    padding:10px 12px;

    border:1px solid var(--clr-grey);
    border-radius:8px;

    cursor:pointer;
    transition:.2s;
    user-select:none;
}

.checkbox-wrap label:hover{
    border-color:var(--clr-blue-light);
    background:#f5f8ff;
}

.checkbox-wrap input{
    transform:scale(1.2);
    cursor:pointer;
}

/* hidden */
.hidden{
    display:none;
}

/* trust */
.trust-text{
    font-size:1.3rem;
    opacity:.6;
    margin:10px 0 15px;
}

/* button */
.modal-btn{
    width:100%;
    padding:14px;
    background:var(--clr-blue-light);
    color:var(--clr-white);
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-size:1.6rem;
}

/* bot */
.bot-field{
    position:absolute;
    left:-9999px;
}

/* LOCK SCROLL */
.modal-open{
    position:fixed;
    width:100%;
    overflow:hidden;
}
.input-wrap.error label {
    color: #ff3b3b;
}

.input-wrap.error input,
.input-wrap.error textarea {
    border: 1px solid #ff3b3b !important;
    background: rgba(255, 59, 59, .06);
}
.modal-btn {
    transition: 0.2s ease;
}

.modal-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(20%);
}
.input-wrap input:focus,
.input-wrap textarea:focus {
    outline: none;
    box-shadow: none;
}
.input-wrap:focus-within label {
    color: var(--clr-blue-light);
}

.input-wrap:focus-within input,
.input-wrap:focus-within textarea {
    border: 1px solid var(--clr-blue-light);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
}
.svyaz {
    display: none;
}
/*********MOBILE**********/
@media screen and (max-width: 1500px) {
    .container {
        max-width: 1440px;
        padding: 0 20px;
    }
    .drop-menu-wrap .container {
    padding: 0 40px;
}
    .main-block {
        height: 580px;
    }
    section {
        margin: 50px 0;
    }
    .destination-wrap {
        padding: 50px 40px;
    }
    .service-raw, .truck-wrap, .cases-wrap, .advantages-wrap, .faq-wrap {
        margin-top: 30px;
    }
    footer {
        padding-top: 50px;
    }
    .service-raw .column-grid {
        padding: 20px 0;
    }
}
@media screen and (max-width: 1439px) {
     .container {
        max-width: 1280px;
    }
        .main-block {
        height: 520px;
    }
    html {
        font-size: 55.5%;
    }
    .destination-wrap {
        height: 420px;
    }
    .advantages-wrap .column-grid >div {
        gap: 70px;
    }
}
@media screen and (max-width: 1279px) {

   .container {
        max-width: 1024px;
    }
    section {
        margin: 30px 0;
    }
    footer {
        padding-top: 30px;
    }
    .footer-nav {
        padding: 20px 0;
        margin-bottom: 20px;
    }
    h1 {
        font-size: 8rem;
    }
    .h1-span {
        font-size: 5rem;
    }
    h3 {
        font-size: 3.4rem;
    }
    .up {
        width: 35px;
    }
    .contact-info {
        display: none;
    }
        .main-block {
        height: 450px;
        padding: 50px 20px;
    }

    .service-title {
        font-size: 2.2rem;
    }
        .destination-wrap {
            height: 380px;
        padding: 30px 0 30px 20px;
    }
    .advantages-wrap .column-grid >div {
        gap: 50px;
    }
    .faq-question::after, .faq-question::before {
        height: 1px;
    }
    .truck-wrap .flex-s-s, .cases-wrap .flex-s-s {
        gap: 10px;
    }
    .section-text {
        font-size: 2.4rem;
    }
    .table-text,   .table-title {
    font-size: 1.4rem;
    }
    .truck-block-devider {
        margin: 15px 0;
    }
    .destination-title {
        width: 50%;
    }
    .destination-wrap {
        height: 360px;
    }
    .truck-block {
        flex: 0 0 calc((100% - 40px) / 4);
        padding: 7px 7px 15px 7px;
    }
    .column-grid {
        gap: 10px;
    }
}
@media screen and (max-width: 1023px) {

   .container {
        max-width: 960px;
    }
    .main-block {
        height: 400px;
        padding: 30px 20px;
    }
    .h1-span {
        font-size: 4.5rem;
    }
    .service-title {
        font-size: 2rem;
    }
    h3 {
        font-size: 3.2rem;
    }
    .truck-block {
        flex: 0 0 calc((100% - 30px) / 3);
        padding: 10px 10px 20px 10px;
    }
    .case-block {
        flex: 0 0 calc((100% - 30px) / 3);
    }
    .table-text,   .table-title {
        font-size: 1.6rem;
    }
    .truck-scroll, .cases-scroll {
        overflow-x: scroll;
    }
    .destination-wrap {
        height: 340px;
    }
    .destination-title {
        font-size: 3.8rem;
    }
    .adv-block-1 {
    grid-area: 1 / 1 / 2 / 3;
    }
    .adv-block-2 {
        grid-area: 1 / 3 / 2 / 5;
    }
    .adv-block-3 {
        grid-area: 2 / 1 / 3 / 3;
    }
    .adv-block-4 {
        grid-area: 2 / 3 / 3 / 5;
    }
    .adv-block-5 {
        grid-area: 3 / 1 / 4 / 3;
    }
    .adv-block-6 {
        grid-area: 3 / 3 / 4 / 5;
    }
    .section-title {
        font-size: 1.8rem;
    }
    
}
@media screen and (max-width: 959px) {
    .container {
        max-width: 820px;
    }
    .main-block {
        height: 340px;
    }
    header .column-grid {
        padding: 7px 15px;
    }
    .drop-menu-wrap .container {
        padding: 0 25px;
    }
    .drop-menu-top {
        padding: 15px 0;
    }
    .hum-menu {
        width: 40px;
    }
    .header-call {
        padding: 7px 10px;
    }
    .header-nav-wrap {
        gap: 20px;
    }
    .h1-subtitle {
        font-size: 2.4rem;
    }
        h1 {
        font-size: 6.5rem;
    }
        .h1-span {
        font-size: 4rem;
    }
    .type-1, .type-2 {
        padding: 12px 20px;
    }
    .services .column-grid,
    .trucks .column-grid,
    .column-grid-adv-1,
    .cases .column-grid,
    .faq .column-grid,
    footer .column-grid {
        display: block;
    }
    .section-title {
        margin-bottom: 10px;
    }
    h3 {
        font-size: 3rem;
    }
    .num {
        font-size: 1.6rem;
        color: var(--clr-blue-light);
    }
    .service-raw .column-grid {
        padding: 15px 0;
    }
    .truck-block {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .case-block {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .table-text, .table-title {
        font-size: 1.8rem;
    }
        .destination-wrap {
        height: 280px;
    }
        .destination-title {
        font-size: 3rem;
        margin-bottom: 10px;
        line-height: 110%;
    }
    .call-to-action {
        padding: 12px 20px;
        margin-top: 20px;
    }
    .circle-blue {
        width: 7px;
        height: 7px;
    }
    .service-raw, .truck-wrap, .cases-wrap, .advantages-wrap, .faq-wrap {
        margin-top: 20px;
    }
    .case-block-title {
        font-size: 2rem;
    }
    .section-text {
        font-size: 2.2rem;
    }
    footer .section-title {
        opacity: 0.7;
    }
    .copywrite .flex-b-c {
        display: block;
    }
      .copywrite p {
        margin: 5px 0;
      }
      .footer-nav .flex-s-c {
    gap: 20px;
}
}
@media screen and (max-width: 819px) {

    .container {
        max-width: 430px;
        padding: 0 15px;
    }
    .header-nav-wrap, .header-call, .logo-descr {
        display: none;
    }
    .logo-title {
        text-wrap: nowrap;
    }
    header .col-3parts {
        display: flex;
        justify-content: flex-end;
    }
    header .column-grid {
        padding: 7px 10px;
    }
        .drop-menu-wrap .container {
        padding: 0px 20px;
    }
    .menu-close {
        width: 22px;
        height: 22px;
    }
    .main-block {
      width: 100%;
    height: 80vh !important;
    background: url(images/main-mobile.png);
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}
.main-block {
    padding: 40px 10px;
}
h1 {
    font-size: 5rem;
}
.h1-span {
    font-size: 2.8rem;
}
.type-1, .type-2 {
    padding: 12px 13px;
}
.main-block {
    display: block;
    padding-top: 47%;
    position: relative;
}
.btn-wrap {
    position: absolute;
    bottom: 20px;
    right: 10px;
    left: 10px;
}
.btn-wrap .flex-s-c {
    gap: 10px;
}
h3 {
    font-size: 2.6rem;
	font-weight:600;
}
.service-raw .col-3parts {
    display: block;
}
.service-title {
    padding: 0;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
    .truck-block, .case-block {
        flex: 0 0 calc((100% - 100px) / 1);
    }
        .table-text, .table-title {
        font-size: 1.6rem;
    }
 .destination-wrap {
    width: 100%;
    background: url(images/destination-mobile.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    padding: 230px 15px 30px 15px;
}
    .destination-title {
        width: 100%;
        font-size: 2.6rem;
    }
    .advantages-wrap .column-grid {
    display: block;
    }
      .advantages-wrap .column-grid div {
        margin-bottom: 10px;
        padding: 15px;
      }
      .num {
        font-size: 1.8rem;
        margin-bottom: 5px;
      }
      .call-to-action {
        width: 100%;
        text-align: center;
      }
      .copywrite {
        padding-bottom: 40px;
      }
      .footer-nav .flex-s-c {
        display: block;
      }
      .footer-nav a {
        margin: 10px 0;
      }
      .up {
        display: none;
      }
/*SVYAZ*/
    .svyaz {
        display: block;
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        background: var(--clr-blue);
        z-index: 1000;
        padding: 2px 0;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        border-top: 1px solid var(--clr-white);
    }

    .svyaz a {
        font-size: 1.6rem;
        color: var(--clr-white);
    }

    .svyaz-block {
        width: 50%;
    }

    .svyaz-block img {
        width: 20px;
        margin-right: 7px;
    }

    .bottom-menu {
        width: 55px;
        height: 45px;
        background: url(images/menu-mob.png);
        background-position: center;
        background-size: 90%;
        background-repeat: no-repeat;
    }
    .modal-window {
        max-width: 95%;
        padding: 20px 15px;
    }
    .city-quick span {
        margin-bottom: 5px;
    }
    .contacts-wrap {
        grid-template-columns: 1fr;
    }
	  .drop-menu-body a {
        font-size: 2rem;
    }
}
@media screen and (max-width: 429px) {
    .container {
        max-width: 100%;
    }
    .btn-wrap .flex-s-c {
        display: block;
    }
      .btn-wrap .flex-s-c div {
        text-align: center;
        margin: 10px 0;
      }
      .faq-question {
        padding-right: 40px;
      }

}
@media screen and (max-width: 390px) {
    .h1-subtitle {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
        h1 {
        font-size: 4.5rem; 
    line-height: 80%;   }
        .h1-span {
        font-size: 2.6rem;
    }
        .truck-block, .case-block {
        flex: 0 0 calc((100% - 80px) / 1);
    }
}
@media screen and (max-width: 375px) {
    section {
        margin: 30px 0;
    }
    .main-block {
        height: 450px;
    }
        .h1-span {
        font-size: 2.4rem;
    }
    .btn-wrap {
        bottom: 10px;
    }
            .truck-block, .case-block {
        flex: 0 0 calc((100% - 60px) / 1);
    }
}
@media screen and (max-width: 375px) {
    h1 {
        font-size: 4rem;
    }
        .h1-span {
        font-size: 2.2rem;
    }
        .truck-block, .case-block {
        flex: 0 0 calc((100% - 60px) / 1);
    }
    h3 {
        font-size: 2.4rem;
    }
}