@media only screen and (max-width:1800px) {
    body {
        background-size: cover;
    }
}

@media only screen and (max-width:1200px) {
    .header-log h1 {
        font-size: 25px;
    }

    .head-middle a {
        font-size: 25px;
    }

    .head-right a {
        font-size: 20px;
    }
}

@media only screen and (max-width:1000px) {
    .header-log h1 {
        display: none;
    }
}

@media only screen and (max-width:900px) {
    .form-input {
        width: 100%;
        margin-left: 20px;
        margin-right: 20px;
    }

    .foot-left {
        display: none;
    }

    .date {
        margin-right: 0px;
    }
}

@media only screen and (max-width: 750px) {
    .hamburger-menu {
        display: block;
    }

    .hhha {
        display: none;
    }

    .footer {
        padding-top: 0;
        height: 220px;
        padding-right: 50px;
    }

    .head-middle {
        display: none;
    }

    /* скрываем чекбокс */
    #menu__toggle {
        opacity: 0;
    }

    /* стилизуем кнопку */
    .menu__btn {
        display: flex;
        /* используем flex для центрирования содержимого */
        align-items: center;
        /* центрируем содержимое кнопки */
        position: fixed;
        top: 25px;
        right: 40px;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 1;
    }

    /* добавляем "гамбургер" */
    .menu__btn>span,
    .menu__btn>span::before,
    .menu__btn>span::after {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #000000;
    }

    .menu__btn>span::before {
        content: '';
        top: -8px;
    }

    .menu__btn>span::after {
        content: '';
        top: 8px;
    }

    /* контейнер меню */
    .menu__box {
        display: block;
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        margin: 0;
        padding: 80px 0;
        list-style: none;
        text-align: center;
        background-color: #ECEFF1;
        box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
        transition: 400px;
    }

    .menu_box_show {
        top: 0px;
    }

    /* элементы меню */
    .menu__item {
        display: block;
        padding: 12px 24px;
        color: #333;
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
    }

    #menu__toggle:checked~.menu__btn>span {
        transform: rotate(-45deg);
    }

    #menu__toggle:checked~.menu__btn>span::before {
        top: 0;
        transform: rotate(0);
    }

    #menu__toggle:checked~.menu__btn>span::after {
        top: 0;
        transform: rotate(-90deg);
    }

    #menu__toggle:checked~.menu__box {
        visibility: visible;
        left: 0;
    }

    .menu__item:hover {
        background-color: #CFD8DC;
    }

    .menu__btn>span,
    .menu__btn>span::before,
    .menu__btn>span::after {
        transition-duration: .25s;
    }

    .menu__box {
        transition-duration: .25s;
    }

    .menu__item {
        transition-duration: .25s;
    }
}

@media only screen and (max-width: 650px) {
    .top-form {
        display: block;
    }

    .form-input {
        height: fit-content;
        margin-left: 0;
    }

    .footer {
        display: block;
        position: relative;
        height: fit-content;
        padding-top: 20px;
        margin-top: 220px;
    }

    .foot-right {
        margin-top: 30px;
    }
}


@media only screen and (max-width: 550px) {
    .veh-info {
        display: block;
    }

    .veh-info input {
        margin-top: 10px;
    }

    .veh-h1 {
        display: block;
    }

    .form-input {
        transform: translateY(-0%) !important;
        top: 80px;
    }

    .cs-infor {
        display: block;
    }

    .cs-infor input {
        margin-bottom: 10px !important;
    }

    .footer {
        display: block;
        position: initial;
        height: fit-content;
        padding-top: 20px;
        margin-top: 78px;
    }
}

@media only screen and (max-width: 360px) {
    .form-input {
        padding: 10px;
    }
}