@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: rgb(226, 216, 208);
    color: rgb(5, 1, 2);
}

header {
    background: rgb(54, 45, 46);
    color: rgb(228, 227, 225);
    padding-left: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    height: 21vh;
    z-index: 10;
}

.logo {
    width: auto;
    height: 40%;
}

.header_logo_sticks {
    display: none;
}

.header_contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
    height: 100%;
    width: 50%;
}

.header_contact_button {
    filter: brightness(85%);
    width: auto;
    height: 30%;
    z-index: 2;
}

#header_contact_button:hover {
    background: transparent;
    transform: translateY(-10%);
    /* Поднимаем кнопку */
}


.number {
    font-size: 5vh;
    font-weight: 600;
}

.header_sticks {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-right: 3rem;
    width: 6%;
    height: 25%;
    cursor: pointer;
    z-index: 1;
    /* Сделаем объект кликабельным */
}

.header_stick {
    width: 100%;
    height: 20%;
    background-color: rgb(247, 237, 231);
    border-radius: 3vw;
    transition: 0.5s ease-in-out;
}

.header_sticks.animate .header_stick:nth-child(1) {
    transform: translateY(200%) rotate(45deg);
}

.header_sticks.animate .header_stick:nth-child(2) {
    width: 0;
}

.header_sticks.animate .header_stick:nth-child(3) {
    transform: translateY(-200%) rotate(-45deg);
}


.sidebar {
    position: fixed;
    width: 25%;
    height: 100%;
    background-color: rgb(37 31 30 / 93%);
    color: white;
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    transition: 0.5s ease-in-out;
    align-items: center;
    z-index: 0;
    right: -25%;
    justify-content: center;
    top: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 15px;
}

.animated_text {
    text-decoration: none;
    color: white;
    display: inline-block;
    position: relative;
    font-size: 4vh;
    cursor: pointer;
    font-weight: 400;
}

.animated_text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    /* Расстояние от текста */
    width: 0;
    height: 7%;
    /* Толщина линии */
    border-radius: 10vw;
    background: #f5f5f5;
    /* Цвет линии */
    transition: width 0.5s ease;
    /* Плавное появление */
}

.animated_text:hover::after {
    width: 100%;
    /* Полная ширина при наведении */
}


.sidebar.show {
    right: 0;
    /* Показываем меню */
}


.home_section {
    display: flex;
    justify-content: center;
    height: 80vh;
}

.section {
    display: flex;
    flex-direction: row;
    padding: 3rem;
    justify-content: space-between;
    width: 100%;

}

.form_window_cross {
    position: absolute;
    margin-top: 1%;
    left: 88%;
    width: 6%;
    height: 15%;
    display: flex;
    align-items: center;
}

.form_window_cross_1 {
    position: relative;
    left: 25%;
    width: 80%;
    height: 10%;
    background: white;
    transform: rotate(45deg);
    border-radius: 10vw;
}

.form_window_cross_2 {
    position: relative;
    right: 25%;
    width: 80%;
    height: 10%;
    background: white;
    transform: rotate(135deg);
    border-radius: 10vw;
}

.form_window {
    display: none;
    justify-content: center;
    height: 80vh;
    width: 100%;
    background: rgb(54, 45, 46);
    padding-top: 3rem;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.582);
    position: fixed;
    z-index: 3;
    /* оконо всплывающее*/
}

.discription {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background: rgb(247, 237, 231);
    width: 57%;
    height: 100%;
    border-radius: 3vw;
    padding: 1rem;
    padding-left: 4.5rem;
    padding-right: 4.5rem;
    overflow: hidden;
}

.text {
    font-weight: 400;
    font-size: 4.8vh;
}

.text_h2 {
    font-weight: 800;
    margin-bottom: 10%;
}

.block_order {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
    height: 100%;
}

.button_1 {
    display: block;
    color: rgb(244, 244, 244);
    padding: 0.8rem;
    text-align: center;
    background-color: rgb(54, 45, 46);
    width: 100%;
    height: 25%;
    border-radius: 3vw;
    font-size: 6vh;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease;
    z-index: 1;
    border: none;
}

.button_1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    /* Начальная ширина */
    height: 100%;
    background: linear-gradient(rgb(240, 229, 218));
    border-radius: 3vw;
    transition: width 0.8s ease;
    z-index: -1;
    /* Под текстом */
}

.button_1:hover {
    border: 10px solid rgb(20, 20, 20);
    color: rgb(32, 32, 32);
    /* Меняем цвет текста при наведении */
}

.button_1:hover::before {
    border-radius: 0;
    width: 100%;
    /* Заполняем всю кнопку */
}


.mini_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(54, 45, 46);
    width: 100%;
    height: 18vh;
    font-size: 3.8vh;
    font-weight: 400;
    color: rgb(230, 230, 230);
}

.mini_section_p {
    color: rgb(146, 146, 146);
}

.car-image {
    height: 70%;
    width: 100%;
    border-radius: 3vw;
    object-fit: cover;
    /* Заполняет блок с обрезкой */
    object-position: center;
    /* Фокусировка на центре */
}

.car-class {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(5, 1, 2);
    background: rgb(226, 216, 208);
    height: 87vh;
    padding: 2rem 3rem;
    padding-bottom: 0;
    font-size: 3.8vh;
    font-weight: 400;
}

.car-class-h3-mob {
    display: none;
}

.car-class-title {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 2%;
}

.car-class-h3-1 {
    font-size: 5vh;
    font-weight: 800;
}

.car-class-h3-2 {
    color: rgb(95, 90, 96);
    font-size: 5vh;
    font-weight: 800;
}

.car-class-choice {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 4%;
    margin: 2% 0;
}

.class_of_car {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5%;
    border-radius: 2vw;
    height: 100%;
    width: 10%;
    transition: width 0.5s ease;
}

.active {
    cursor: pointer;
    position: relative;
    width: 15%;
    height: 100%;
    background: rgb(54 45 46 / 18%);
    border-radius: 2vw;
    font-weight: 600;
}

.h4_car {
    font-size: 3.8vh;
    font-weight: 500;
}

.beebika-image {
    width: 133px;
    height: 54px;
}

.auto_view_block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 54%;
}

.pictures_and_buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    height: 100%;
}

.Toyota-image {
    height: 75%;
    width: 70%;
    border-radius: 3vw;
    object-fit: cover;
    object-position: center;
}

.button_back_further {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 18%;
    width: 70%;
    gap: 5%;
}

.button_back {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(54, 45, 46);
    width: 55%;
    height: 100%;
    color: rgb(226, 216, 208);
    font-size: 95%;
    border-radius: 3vw;
    padding: 0.3rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.button_back::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    /* Начальная ширина */
    height: 100%;
    background: linear-gradient(rgb(73, 63, 64));
    border-radius: 3vw 0 0 3vw;
    transition: width 0.3s ease;
    z-index: -1;
    /* Под текстом */
}

.button_back:hover {
    color: white;
    /* Меняем цвет текста при наведении */
}

.button_back:hover::before {
    width: 100%;
    /* Заполняем всю кнопку */
}

.button_further {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(54, 45, 46);
    width: 55%;
    height: 100%;
    color: rgb(226, 216, 208);
    font-size: 95%;
    border-radius: 3vw;
    padding: 0.3rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.button_further::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    /* Начальная ширина */
    height: 100%;
    background: linear-gradient(rgb(73, 63, 64));
    border-radius: 0 3vw 3vw 0;
    transition: width 0.3s ease;
    z-index: -1;
    /* Под текстом */
}

.button_further:hover {
    color: white;
    /* Меняем цвет текста при наведении */
}

.button_further:hover::before {
    width: 100%;
    /* Заполняем всю кнопку */
}

.name_and_price {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    width: 45%;
}

.title_and_description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40%;
}

.name_auto {
    font-size: 180%;
    font-weight: 700;
}

.strip {
    background-color: rgb(5, 1, 2);
    width: 30%;
    height: 5%;
    border-radius: 3vw;
}

.car_description {
    color: rgb(95, 90, 96);
    font-size: 80%;
    font-weight: 500;
}

.price_and_button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 40%;
    width: 100%;
}

.price_of_car {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    font-size: 110%;
    font-weight: 600;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(54, 45, 46);
    color: rgb(230, 230, 230);
    font-size: 95%;
    font-weight: 600;
    border: none;
    border-radius: 3vw;
    height: 55%;
    width: 50%;
    padding: 1%;
    cursor: pointer;
    transition: all 0.8s ease;
}

.button:hover {
    background: rgb(58, 50, 50);
    transform: translateY(-10%);
    /* Поднимаем кнопку */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    /* Тень */
}

.button_mob {
    display: none;
}

.is_going-image {
    display: none;
}

.why-us {
    padding-left: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: rgb(226, 216, 208);
    height: 70vh;
}

.why-us-block {
    width: 100%;
    padding: 1rem 3rem;
    padding-bottom: 4%;
    padding-right: 0;
}

.why-us-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 50%;
}

.why-us-decoration {
    display: flex;
    justify-content: center;
    width: 76%;
    height: 10%;
    gap: 3%;
    position: relative;
    right: 20%;
}

.why-us-stik {
    background: rgba(54, 45, 46, 0.158);
    width: 60%;
    height: 100%;
    border-radius: 0 10vw 10vw 0;
}

.why-us-circle {
    background: rgba(54, 45, 46, 0.158);
    width: 8%;
    height: 100%;
    border-radius: 10vw;
}

.why-us-title {
    display: flex;
    gap: 2%;
}

.why-us-title-1 {
    color: rgb(95, 90, 96);
    font-size: 5vh;
    font-weight: 800;
}

.why-us-title-2 {
    font-size: 5vh;
    font-weight: 800;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 55%;
    padding-left: 4%;
    font-size: 4.3vh;
    font-weight: 400;
    gap: 10%;
}

.why-us-picture {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 40%;
}

.why-us-filling {
    display: flex;
    align-items: center;
    padding-left: 6%;
    height: 60%;
    width: 100%;
    background: rgb(54, 45, 46);
    border-radius: 10vw 0 0 10vw;
}

.lady-image {
    border-radius: 10vw;
    box-shadow: 0 0 0 7px rgb(226, 216, 208);
    position: relative;
    left: 3vh;
    height: 60%;
    width: auto;
}

.night_city-image {
    border-radius: 10vw;
    box-shadow: 0 0 0 7px rgb(226, 216, 208);
    z-index: 1;
    height: 60%;
    width: auto;
}

.young_woman-image {
    border-radius: 10vw;
    box-shadow: 0 0 0 7px rgb(226, 216, 208);
    position: relative;
    right: 3vh;
    height: 60%;
    width: auto;
}

.form {
    display: flex;
    justify-content: center;
    height: 80vh;
    background: rgb(226, 216, 208);
    padding-top: 3rem;
}

.form_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(119 109 104);
    ;
    width: 90%;
    height: 90%;
    border-radius: 3vw;
    gap: 2%;
}

.form_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2vh;
}

.form_reservation {
    color: rgb(231, 231, 231);
    font-size: 5vh;
    font-weight: 800;
}

.from_time {
    font-size: 2vh;
    font-weight: 500;
    color: rgb(165, 165, 165);
}

.form_date {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 45%;
    gap: 2%;
}

.form_section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 80%;
    gap: 10%;
}

.form_sect {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 40%;
    width: 100%;
}

.form_name {
    color: rgb(221, 221, 221);
    font-size: 2.5vh;
    font-weight: 600;
    padding-left: 7%;
}

.form_select {
    background-color: rgb(185, 185, 185);
    width: 100%;
    border: none;
    height: 76%;
    border-radius: 10vh;
    font-size: 2vh;
    font-weight: 400;
    padding-left: 4vh;
}
.form_input {
    background-color: rgb(185, 185, 185);
    width: 100%;
    border: none;
    height: 76%;
    border-radius: 10vh;
    font-size: 2vh;
    font-weight: 400;
    padding-left: 4vh;
}

.form_send {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 25%;
    width: 50%;
    gap: 6%;
}

.form_price {
    color: rgb(221, 221, 221);
    font-size: 3.5vh;
    font-weight: 700;
}

.form_agreement {
    font-size: 1.3vh;
    font-weight: 500;
    color: rgb(175, 175, 175);
}

.form_button {
    background-color: rgb(54, 45, 46);
    border-radius: 5vh;
    border: none;
    height: 60%;
    width: 100%;
    color: rgb(240, 240, 240);
    font-size: 3vh;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.form_button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    /* Начальная ширина */
    height: 100%;
    background: linear-gradient(rgb(235, 228, 220));
    border-radius: 3vw;
    transition: width 0.5s ease;
    z-index: -1;
    /* Под текстом */
}

.form_button:hover {
    color: rgb(31, 31, 31);
    /* Меняем цвет текста при наведении */
}

.form_button:hover::before {
    width: 100%;
    /* Заполняем всю кнопку */
}

.reviews {
    width: 100%;
    height: 70vh;
    background: radial-gradient(circle at top left, rgb(226, 216, 208), rgba(54, 45, 46, 0.384));
}

.reviews_text {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 1%;
    padding-bottom: 2rem;
}

.reviews_title-1 {
    padding-left: 4rem;
    color: rgb(95, 90, 96);
    font-size: 5vh;
    font-weight: 800;
}

.reviews_title-2 {
    font-size: 5vh;
    font-weight: 800;
}

.reviews_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5%;
    align-items: center;
    width: 100%;
    height: 80%;
}

.reviews_coments {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80%;
}

.reviews_com {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
    width: 50%;
    height: 90%;
}

.reviews_com_block {
    display: flex;
    flex-direction: column;
    gap: 12%;
    padding: 5%;
    width: 70%;
    height: 90%;
    background-color: rgb(235, 235, 235);
    border-radius: 3vh;
}

.reviews_com_block_user{
    color: rgb(19, 19, 19);
    font-size: 2vw;
    font-weight: 700;
}

.reviews_com_block_text{
    color: rgba(19, 19, 19, 0.938);
    font-size: 1.5vw;
    font-weight: 400;
}


.reviews_com_right {
    width: auto;
    height: 25%;
    background-color: rgba(78, 67, 69, 0.247);
    border-radius: 3vh;
    padding: 3%;
}

.reviews_com_left {
    width: auto;
    height: 25%;
    background-color: rgba(54, 45, 46, 0.247);
    border-radius: 3vh;
    padding: 3%;
    transform: rotate(180deg);
}

.reviews_dots {
    display: flex;
    justify-content: center;
    height: 10%;
    width: 20%;
    gap: 3%;
}

.reviews_dot {
    background-color: rgb(87, 79, 80);
    width: 5%;
    height: 40%;
    border-radius: 2vh;
}

.reviews_button {
    height: 20%;
    width: 40%;
    background-color: rgb(54, 45, 46);
    border: none;
    border-radius: 10vh;
    color: rgb(235, 235, 235);
    font-size: 3.5vh;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.7s ease;
}

.reviews_button:hover {
    background: rgb(58, 50, 50);
    transform: translateY(-10%);
    /* Поднимаем кнопку */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    /* Тень */
}

.write_com {
    align-items: center;
    padding: 0 3%;
    height: 80vh;
    width: 100vw;
    top: 20%;
    position: fixed;
    z-index: 10;
    background-color: rgb(226, 216, 208);
    display: none;
}

.write_com_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 3%;
    padding: 3% 4%;
    gap: 5%;
    width: 100%;
    height: 85%;
    background: rgb(54, 45, 46);
    border-radius: 4vw;
    font-size: 2vh;
    color: white;
}

.write_com_name_input {
    display: flex;
    flex-direction: column;
    gap: 5%;
    height: 25%;
}

.write_com_coments_input {
    display: flex;
    flex-direction: column;
    gap: 2%;
    height: 45%;
}

.write_com_button{
    height: 20%;
    font-size: 3vw;
    font-weight: 600;
    border: none;
    background: rgba(228, 222, 219, 0.342);
    color: rgb(247, 247, 247);
    border-radius: 3vw;
}

.write_com_input {
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 2% 3%;
    border-radius: 3vw;
    height: 100%;
    width: 100%;
    background: rgb(228, 223, 219);
    ;
    font-size: 1.2vw;
    border: none;
    text-align: start;
}

.form_window_cross_com {
    position: absolute;
    left: 90%;
    top: 12%;
    width: 6%;
    height: 12%;
    display: flex;
    align-items: center;
    z-index: 11;
}


.write_com_text {
    font-weight: 600;
    margin-left: 2%;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 3rem;
    height: 70vh;
    background: rgb(226, 216, 208);
}

.contact_title {
    display: flex;
    width: 100%;
    padding-left: 3rem;
    gap: 1%;
}

.contact_title_1 {
    font-size: 5vh;
    font-weight: 800;
}

.contact_title_2 {
    font-size: 5vh;
    font-weight: 800;
    color: rgb(95, 90, 96);
}

.contact_block {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 90%;
    gap: 20%;
}

.contact_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 50%;
}

.contact_text_number {
    color: rgb(44, 44, 44);
    font-size: 3.6vh;
    font-weight: 500;
}

.contact_number {
    color: rgb(34, 34, 34);
    font-size: 5vh;
    font-weight: 600;
}

.contact_messenger {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4%;
    height: 45%;
    width: 50%;
    background-color: rgba(54, 45, 46, 0.795);
    border: none;
    border-radius: 6vh;
    color: rgb(238, 238, 238);
    font-size: 2.5vh;
    font-weight: 400;
}

.contact_button {
    width: auto;
    height: 30%;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 4rem;
    width: 100%;
    height: 30vh;
    /*background: radial-gradient(circle at top left, white, blue);*/
    background: radial-gradient(rgb(37, 31, 32), rgba(54, 45, 46, 0.966));
    color: rgb(201, 201, 201);
    font-size: 2.3vh;
    font-weight: 200;
}

.car-class-button_mob {
    display: none;
}

.toast {
  visibility: hidden;
  min-width: 220px;
  max-width: 90vw;
  background: #222;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px 24px;
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 9999;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.toast.show {
  visibility: visible;
  opacity: 1;
}
.toast.error {
  background: #d32f2f;
}
.toast.success {
  background: #388e3c;
}

.button_mob_back, .button_mob_next {
        display: none;
    }

@media (max-width: 1023px) {

    header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 20vh;
        padding: 0;

    }

    .header_logo_sticks {
        padding: 0 2.7rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 45%;
        width: 100%;
    }

    .logo {
        display: none;
    }

    .logo_mob {
        width: auto;
        height: 60%;
    }

    .header_sticks {
        display: none;

    }

    .header_sticks_mob {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 11%;
        height: 29%;
        z-index: 1;
    }

    .header_stick {
        height: 20%;
        width: 100%;
    }

    .sidebar {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgb(37 31 30 / 93%);
        color: white;
        backdrop-filter: blur(30px);
        display: flex;
        flex-direction: column;
        transition: 0.5s ease-in-out;
        align-items: center;
        z-index: 0;
        right: -100%;
        justify-content: center;
        top: 0;
    }

    .animated_text {
        display: inline-block;
        position: relative;
        font-size: 9vw;
        cursor: pointer;
        font-weight: 400;
    }

    .animated_text::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        /* Расстояние от текста */
        width: 0;
        height: 7%;
        /* Толщина линии */
        border-radius: 10vw;
        background: #f5f5f5;
        /* Цвет линии */
        transition: width 0.5s ease;
        /* Плавное появление */
    }

    .animated_text:hover::after {
        width: 100%;
        /* Полная ширина при наведении */
    }

    .form_window {
        left: 100%;
    }


    .header_contacts {
        justify-content: space-between;
        padding: 0 2.7rem;
        width: 100%;
        height: 35%;
    }

    .number {
        font-size: 3.4vh;
    }

    .header_contact_button {
        height: 50%;
    }



    .home_section {
        height: 65vh;
    }

    .section {
        flex-direction: column;
        align-items: center;
        padding: 1rem 2rem;
        gap: 3%;
    }

    .discription {
        width: 100%;
        height: 50%;
        padding: 0 12%;
        border-radius: 4vh;
    }

    .text {
        font-size: 2vh;
        font-weight: 500;
    }

    .text_h2 {
        font-size: 3vh;
        margin-bottom: 5%;
    }

    .block_order {
        flex-direction: column-reverse;
        width: 100%;
        height: 50%;
    }

    .car-image {
        height: 57%;
        border-radius: 4vh;
    }

    .button_1 {
        padding: 0;
        height: 35%;
        font-size: 4.8vh;
        font-weight: 500;
        border-radius: 4vh;
    }



    .mini_section {
        margin-top: 5%;
        font-size: 2vh;
        height: 13vh;
    }



    .car-class {
        justify-content: space-between;
        height: 110vh;
        padding: 0;
        padding-top: 8%;
    }

    .car-class-title {
        flex-direction: column;
    }

    .car-class-h3-mob {
        padding-left: 8%;
        display: flex;
        flex-direction: column;
    }

    .car-class-h3-mob-1 {
        flex-wrap: wrap;
        display: flex;
        gap: 3%;
    }

    .car-class-h3-mob-2 {
        font-size: 4.5vh;
        font-weight: 800;
    }

    .car-class-h3-mob-3 {
        font-size: 4.5vh;
        font-weight: 800;
        color: rgb(95, 90, 96);
    }

    .car-class-h3-mob-4 {
        font-size: 4.5vh;
        font-weight: 800;
        color: rgb(95, 90, 96);
    }

    .car-class-h3-1 {
        display: none;
        font-size: 4vh;
        font-weight: 800;
    }

    .car-class-h3-2 {
        display: none;
        font-size: 4vh;
        font-weight: 800;
    }

    .beebika-image {
        width: 85px;
        height: 35px;
    }

    .h4_car {
        font-size: 1.8vh;
        font-weight: 500;
    }

    .car-class-choice {
        display: grid;
        margin-top: 5%;
        grid-template-columns: 45% 45%;
        grid-template-rows: 30% 30% 30%;
        height: 30%;
    }

    .active {
        border-radius: 6vw;
    }

    .class_of_car {
        width: 100%;
    }

    .auto_view_block {
        padding-bottom: 10%;
        background-color: rgba(54, 45, 46, 0.075);
        display: flex;
        flex-direction: column;
        height: 55%;
        gap: 5%;
    }

    .pictures_and_buttons {
        justify-content: space-between;
        gap: 5%;
        width: 100%;
        height: 55%;
    }


    .Toyota-image {
        width: 100%;
        border-radius: 0;
        height: 70%;
    }

    .button_back_further {
        font-size: 3vh;
        height: 23%;
        width: 85%;
        justify-content: center;
        gap: 1%;
    }

    .button_back {
        border-radius: 10vw 0 0 10vw;
        background: rgba(54 45 46 / 56%);
    }

    .button_further {
        border-radius: 0 10vw 10vw 0;
        background: rgba(54 45 46 / 56%);
    }

    .name_and_price {
        padding: 0 7%;
        width: 100%;
        height: 45%;
    }

    .title_and_description {
        align-items: flex-start;
        width: 100%;
        height: 35%;
    }

    .name_auto {
        font-size: 3.7vh;
        font-weight: 700;
    }

    .car_description {
        font-weight: 400;
    }

    .strip {
        display: none;
    }

    .price_and_button {
        height: 60%;
        align-items: flex-start;
    }

    .price_of_car {
        margin-top: 2%;
        width: 100%;
        justify-content: flex-end;
        font-size: 3.7vh;
        font-weight: 500;
    }

    /*.button {
    position: relative;
    right: 7%;
    width: 73%;
    border-radius: 0 10vw 10vw 0;
    font-size: 3.8vh;
    font-weight: 600;
}*/

    .button {
        display: none;
    }

    .car-class-button_mob {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 50%;
        gap: 0;
    }

    .button_mob_1 {
        color: rgb(244, 244, 244);
        padding: 0.8rem;
        text-align: center;
        border: none;
        background-color: rgb(54, 45, 46);
        width: 55%;
        height: 100%;
        border-radius: 10vw;
        font-size: 6vw;
        font-weight: 600;
    }

    .is_going-image {
        display: block;
        height: 10%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }


    .why-us {
        margin-top: 10%;
        flex-direction: column;
        padding: 0 2rem;
        height: 80vh;
        padding-bottom: 10%;
    }



    .why-us-title-1 {
        font-size: 4.5vh;
    }

    .why-us-title-2 {
        font-size: 4.5vh;
    }

    .why-us-text {
        justify-content: flex-end;
        height: 70%;
        width: 100%;
        gap: 10%;
    }

    .why-us-decoration {
        width: 80%;
        height: 15%;
        gap: 5%;
    }

    .why-us-circle {
        width: 13%;
    }

    .why-us-list {
        display: grid;
        grid-template-rows: 15% 27% 15%;
        height: 100%;
        width: 100%;
        padding-left: 1.6rem;
        font-size: 3.3vh;
        font-weight: 400;
    }

    .why-us-picture {
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 25%;

    }

    .why-us-filling {
        padding: 0;
        position: relative;
        justify-content: center;
        height: 100%;
        width: 100%;
        border-radius: 20vw;
    }

    .lady-image {
        border-radius: 16vw;
        box-shadow: 0 0 0 3px rgb(226, 216, 208);
        height: 70%;
        width: auto;
    }

    .night_city-image {
        border-radius: 16vw;
        box-shadow: 0 0 0 3px rgb(226, 216, 208);
        height: 70%;
        width: auto;
    }

    .young_woman-image {
        border-radius: 16vw;
        box-shadow: 0 0 0 3px rgb(226, 216, 208);
        height: 70%;
        width: auto;

    }







    .form {
        height: 120vh;
        padding-top: 2rem;
    }

    .form_block {
        padding: 0 2rem;
        border-radius: 0;
        width: 95%;
        height: 100%;
        border-radius: 6vw;
    }

    .form_title {
        height: 15%;
    }

    .form_reservation {
        text-align: center;
        font-size: 8vw;
    }

    .from_time {
        width: 80%;
        font-size: 1.8vh;
        text-align: center;
    }

    .form_section {
        height: 30%;
    }

    .form_sect {
        height: 45%;
    }

    .form_date {
        margin-top: 8%;
        flex-direction: column;
        width: 100%;
        height: 60%;
        gap: 5%;
    }

    .form_send {
        margin-bottom: 10%;
        height: 16%;
        width: 100%;
        gap: 9%;
    }

    .form_agreement {
        text-align: center;
        width: 90%;
        font-size: 2vw;
    }

    .form_price {
        font-size: 5vw;
        font-weight: 600;
    }

    input[type="text"] {
        color: rgba(26, 26, 26, 0.822);
    }





    /*<img src="images/is_going.png" alt="car" class="is_going-image">*/
    .reviews {
        padding: 5% 10%;
        margin-top: 15%;
    }

    .reviews_text {
        flex-wrap: wrap;
    }

    .reviews_title-1 {
        padding: 0;
        font-size: 4.5vh;
    }

    .reviews_title-2 {
        font-size: 4.5vh;
    }

    .reviews_block {
        height: 70%;
    }

    .reviews_com_left {
        display: none;
    }

    .reviews_com_right {
        display: none;
    }

    .reviews_com_block {
        width: 100%;
    }

    .reviews_coments {
        width: 100%;
        height: 75%;
    }

    .reviews_com {
        width: 100%;
    }

    .reviews_dot {
        width: 18%;
    }

    .reviews_dots {
        display: none;
    }

    .reviews_button {
        width: 100%;
    }

    .reviews_button:hover {
        background: rgb(54, 45, 46);
        transform: translateY(0);
        /* Поднимаем кнопку */
        box-shadow: 0 rgba(0, 0, 0);
        /* Тень */
    }

    .write_com_block{
        justify-content: space-between;
        padding: 7%;
        height: 95%;
        border-radius: 7vw;
    }

    .write_com_input{
        height: 60%;
    }

    .form_window_cross_com{
        top: 1%;
        width: 15%;
        left: 80%;
    }

    .form_window_cross_1{
        height: 10%;
    }

    .form_window_cross_2{
        height: 10%;
    }
    
    .write_com_input{
        border-radius: 7vw;
    }

    .write_com_name_input{
        height: 18%;
    }

    input[type="text"] {
        padding: 5%;
        font-size: 6vw;
        color: rgba(26, 26, 26, 0.822);
    }

    textarea[type="text"] {
        height: 85%;
        padding: 5%;
        font-size: 6vw;
        color: rgba(26, 26, 26, 0.822);
    }

    .write_com_button{
        height: 17%;
        font-weight: 700;
        font-size: 8vw;
        border-radius: 7vw;
    }

    .write_com_coments_input{
        height: 60%;
    }

    .contact {
        padding: 10% 10%;
    }

    .contact_title {
        flex-wrap: wrap;
        padding: 0;
    }

    .contact_title_1 {
        font-size: 4.5vh;
    }

    .contact_title_2 {
        font-size: 4.5vh;
    }

    .contact_block {
        width: 100%;
        flex-direction: column;
        gap: 0%;
    }

    .contact_text {
        width: 100%;
    }

    .button_back_further_mob {
        display: flex;
        justify-content: center;
        height: 20%;
        width: 100%;
        gap: 3%;
    }

    .button_mob_back, .button_mob_next {
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        border-radius: 4vh;
        height: 100%;
        width: 80%;
        text-align: center;
        background: rgba(54, 45, 46, 0.363);
        color: rgba(221, 221, 221, 0.979);
        font-size: 2.7vh;
        font-weight: 400;
    }

    .contact_messenger {
        padding: 0 5%;
        height: 60%;
        width: 100%;
    }

    .reviews_com_block{
        padding: 10%;
    }

    .reviews_com_block_user{
        font-size: 6vw;
    }
    
    .reviews_com_block_text{
        font-size: 5.5vw;
    }

    .footer {
        height: 22vh;
    }

}