* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
}

img {
    object-fit: contain;
    width: 100%;
    height: auto;

}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
}
.text-center{
    text-align: center;
}
a {
    text-decoration: none;
    transition: all 0.2s linear;
}

.btn {
    padding: 16px 60px 16px 30px;
    font-weight: 600;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    position: relative;
}

.btn:hover {
    color: #fff;
    background-color: #c78e66;
    border: 1px solid #c78e66;
}

.btn:hover::after {
    background-image: url(../img/arrow_white.svg);
}

.btn::after {
    content: "";
    width: 10px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/arrow.svg);
    display: block;
    position: absolute;
    z-index: 2;
    top: calc(50% - 9px);
    right: 30px;
}

.btn--white {
    color: #30363a;
    background-color: #fff;
    border: 1px solid #30363a;
}

.btn--black {
    background-color: #30363a;
    color: #fff;
    border: 1px solid #30363a;
}

.btn--transparent {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.header_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.footer__menu-item a:hover,
.footer__phone-value:hover,
.footer__policy:hover,
.header__menu_item a:hover,
.header__phone_block a:hover,
.link:hover,
.map-contact__email a:hover,
.map-contact__phone:hover {
    color: #c78e66;
    text-decoration: underline;
}

.header-mobile__logo,
.header__logo {
    max-width: 200px;
}

header {
    background-color: #30363a;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 27px 0;
}

.header-mobile {
    display: none;
}

.header__phone_block a {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;

    display: flex;
    align-items: center;
}

.header__phone_block {
    height: 20px;
    padding-right: 20px;
    border-right: 1px solid #ffffff20;

    display: flex;
    flex-direction: row;
    gap: 10px;
}

.header__menu_item a {
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.header__description_text {
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 1px;
    color: #fff;
}

.header__desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    max-width: 1920px;
    margin: auto;
    padding: 0 40px;
}

.header__logo {
    display: flex;
    align-items: center;
    
    padding: 0 30px 0 0;
    border-right: 1px solid #c78e66;
    height: 50px;
}

.header__description_block {
    margin: 0 30px;
}

.header__user_block {
    margin: 0 40px 0 20px;
}

.header__user:hover path {
    fill: #c78e66;
}

.header__menu_list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto 0 5px;
}

.header__menu_item {
    margin: 0 15px;
}

.banner {
    width: 100%;
    height: 100vh;
    height: 50vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: contain; */
    background-image: url(../img/banner.jpg);
    background-image: url(../img/1920x640_Audi-покупают-здесь.jpg);
}

.banner__wrapper {
    max-width: 1920px;
    padding: 100px;
    padding: 30px;
    margin: auto;
}

.banner__text {
    text-align: center;
    /* width: fit-content;
	margin: auto;
	background-color: #30363a80;
	box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
	padding: 20px; */
    text-shadow: 3px 3px 1px #000;
}

.banner__subtitle {
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* color: #181b1d; */
    color: #fff;
    margin-bottom: 10px;
}

.banner__title {
    font-weight: 300;
    font-size: 80px;
    text-transform: uppercase;
    line-height: 80px;
    /* color: #181b1d; */
    color: #fff;
}

.model {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.model__detal,
.model__img {
    width: 50%;
    display: flex;
}

.model__wrapper {
    width: 100%;
}

.model__img img {
    object-fit: cover;
}

.model__detal {
    padding: 100px 139px;
}

.model-description__up {
    text-transform: uppercase;
}

.model--left .model__detal,
.model--right .model__img {
    order: 1;
}

.model--left .model__img,
.model--right .model__detal {
    order: 2;
}

.model--white {
    background: #f2f2f2;
}

.model--white .model-description__soon {
    color: #7d8082;
}

.model--white .model-description__title {
    color: #30363a;
}

.model--white .model-description__price {
    color: #c78e66;
}

.model--white .model-description__name {
    color: #7d8082;
}

.model--white .model-description__value {
    color: #181b1d;
}

.model--white .btn--white {
    background: #f2f2f2;
}

.model--white .btn--white:hover {
    background: #c78e66;
}

.model--white .model_item {
    border-bottom-color: #181b1d10;
}

.model--gray {
    background: #30363a;
}

.model--gray .model-description__soon {
    color: #fff;
}

.model--gray .model-description__title {
    color: #fff;
}

.model--gray .model-description__price {
    color: #c78e66;
}

.model--gray .model-description__name {
    color: #cacaca;
}

.model--gray .model-description__value {
    color: #fff;
}

.model--gray .model_item {
    border-bottom-color: #ffffff10;
}

.model--black {
    background: #181b1d;
}

.model--black .model-description__soon {
    color: #fff;
}

.model--black .model-description__title {
    color: #fff;
}

.model--black .model-description__price {
    color: #c78e66;
}

.model--black .model-description__name {
    color: #cacaca;
}

.model--black .model-description__value {
    color: #fff;
}

.model--black .model_item {
    border-bottom-color: #ffffff10;
}

.model__btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.model-description__soon {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 1px;
}

.model-description__title {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 60px;
    line-height: 60px;
}

.model-description__price {
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.model__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    list-style: none;
}

.model__btn {
    margin-right: 30px;
    padding: 16px 60px 16px 30px;
    font-weight: 600;
    font-size: 11px;
    line-height: 18px;
}

.model_item {
    padding: 20px 0 20px 40px;
    display: flex;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    position: relative;
}

.model-description__name {
    margin-right: auto;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
}

.model-description__value {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-align: right;
}

.model_item::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.model_item--fuel::before {
    background-image: url(../img/fuel.svg);
}

.model_item--acceleration::before {
    background-image: url(../img/acceleration.svg);
}

.model_item--power::before {
    background-image: url(../img/power.svg);
}

.model_item--space::before {
    background-image: url(../img/space.svg);
}

.model_item--warranty::before {
    background-image: url(../img/warranty.svg);
}

.purchase {
    width: 100%;
    min-height: 100vh;
    background-image: url(../img/purchase_bg2.png), url(../img/purchase-bgZ.webp);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.purchase__wrapper {
    max-width: 1920px;
    min-height: 100%;
    padding: 100px 0;
    margin: auto;
}

.purchase__title {
    font-weight: 300;
    font-size: 60px;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 165px;
}

.purchase__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 150px;
}

.purchase__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 470px;
    margin: 0 50px;
}

.purchase-item__title {
    font-weight: 300;
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.purchase-item__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.purchase-item__img {
    background-color: #c78e66;
    border-radius: 50%;
    margin-bottom: 40px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-item__img path {
    fill: #fff;
}

.cars {
    background: #f2f2f2;
    padding: 100px;
}

.сars__wrapper {
    max-width: 1920px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.сars__title {
    font-weight: 300;
    font-size: 60px;
    line-height: 60px;
    color: #30363a;
    text-transform: uppercase;
    margin-bottom: 100px;
}

.сars__list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: start;
    width: 100%;
    margin-bottom: 70px;
}

.сars__list:last-child {
    margin-bottom: 0;
}

.сars__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    max-width: 30%;
}

.purchase-item,
.сars__item {
    transition: 0.3s all ease-in-out;
}

.purchase-item:hover,
.сars__item:hover {
    transform: scale(1.02);
}

.сars__item:nth-child(2) {
    margin: 0 40px;
}

.сars__img {
    width: 100%;
}

.сars__img img {
    height: auto;
	object-fit: cover;
    display: flex;
}

.сars-description {
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: stretch;
    width: 100%;
    flex: 1;
}

.сars-description__name {
    color: #30363a;
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.сars-description__price {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #7d8082;
    margin-bottom: 20px;
}

.сars-description__list {
    list-style: none;
    width: 100%;
    margin-bottom: 10px;
}

.сars-description__item {
    padding: 10px 10px 10px 20px;
    position: relative;
    border-bottom: 1px solid #dedede;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #30363a;
}

.сars-description__item::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 9px);
    left: 0;
    width: 10px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/arrow.svg);
}

.map {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.map__wrapper {
    max-width: 100%;
    width: 100%;
    margin: auto;
    position: relative;
}

.map-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    padding: 30px;
    max-width: 540px;
    box-shadow: 0 0 10px rgba(0, 49, 69, 0.1);
    position: absolute;
    min-height: 350px;
    top: calc(50% - 175px);
    left:  112px;
}

.yandex_map {
    height: 600px;
    position: relative;
	top: 0;
	left: 0;
}


.map-contact__name {
    font-weight: 400;
    font-size: 26px;
    line-height: 30px;
    color: #30363a;
    margin-bottom: 10px;
}

.map-contact__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #7d8082;
    margin-bottom: 30px;
}

.map-contact__email,
.map-contact__phone,
.map-contact__place,
.map-contact__time {
    padding-left: 40px;
    position: relative;
    color: #30363a;
    margin-bottom: 20px;
}

.map-contact__email::before,
.map-contact__phone::before,
.map-contact__place::before,
.map-contact__time::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.map-contact__place {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.map-contact__place::before {
    background-image: url(../img/place.svg);
}

.map-contact__phone {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: #30363a;
}

.map-contact__phone::before {
    background-image: url(../img/phone.svg);
}

.map-contact__time {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.map-contact__time::before {
    background-image: url(../img/time.svg);
}

.map-contact__email {
    margin-bottom: 30px;
}

.map-contact__email::before {
    background-image: url(../img/email.svg);
    top: 0;
}

.map-contact__email a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #30363a;
    display: block;
    margin-bottom: 5px;
}

.test-drive {
    width: 100%;
    min-height: 100vh;
    background-image: url(../img/td_1.png), url(../img/test-drive-bgZ.webp);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.test-drive__wrapper {
    padding: 100px;
    width: 100%;
    max-width: 1920px;
    margin: auto;
    display: block;
}

.test-drive__block {
    max-width: 550px;
    margin-right: auto;
    color: #fff;
}

.test-drive__title {
    font-weight: 300;
    font-size: 60px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.test-drive__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 60px;
}

footer {
    width: 100%;
    background: #30363a;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.footer__wrapper {
    max-width: 1920px;
    margin: auto;
    padding: 40px 110px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.footer__up {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    margin-bottom: 50px;
}

.break {
    flex-basis: 100%;
    height: 0;
    margin-bottom: 40px;
}

.footer__logo {
    padding-right: 30px;
    border-right: 1px solid #c78e66;
    margin-right: 30px;
    max-width: 150px;
}

.footer__description {
    margin-right: auto;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 1px;
    color: #fff;
}

.footer__menu-list {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.footer__menu-item {
    margin-right: 40px;
}

.footer__menu-item a {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.footer__menu-item:last-child {
    margin-right: 0;
}

.footer__phone {
    margin-right: 100px;
}

.footer__phone-value {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.footer__phone-name {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #cacaca;
    margin-bottom: 10px;
}

.footer__place {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #cacaca;
    margin-right: auto;
}

.footer__place-name {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-social__list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.footer-social__item {
    margin-left: 20px;
}

.footer-social__item a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #181b1d;
    border-radius: 50%;
}

.footer-social__item a:hover {
    background: #c78e66;
}

.footer__down {
    border-top: 1px solid #ffffff10;
    padding-top: 40px;
    display: flex;
    flex-direction: row;
}

.footer__cop_text {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #cacaca;
    margin-right: 30px;
}

.footer__policy {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    margin-right: 15px;
}

.footer__made {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #cacaca;
    margin-left: auto;
}

/* .swiper {
    height: 800px;
} */

.swiper-button-next,
.swiper-button-prev {
    color: #c78e66;
}

.href {
    position: absolute;
    top: -100px;
}

/*  */

.header__menu_item--additional {
    position: relative;
}

.header__additional_menu_list {
    display: none;
    flex-direction: column;
    gap: 10px;

    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
    list-style: none;
    width: 300px;
    background-color: #30363a;
    box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
}

.header__additional_menu_list.open {
    display: flex;
}

.header__additional_menu_list li {
    color: #cacaca;
    font-size: 10px;
    line-height: 14px;
}

.header__social {
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.header__social--telegram {
    background-image: url('/img/icons-telegram-app.svg');
}

.header__social--vk {
    background-image: url('/img/icons-vk-circled.png');
}

.header__social--youtube {
    background-image: url('/img/icons-youtube.svg');
}

.header__social--max {
    background-image: url('/img/Max_logo_white.svg');
}

.mobile_menu__menu_item.mobile_menu__menu_item--social {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.mobile_menu__menu_item--address p {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 10px;
}

.mobile_menu__menu_item--address ul {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
    color: #ffffff;
    list-style: disc;
    padding-left: 40px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.сars__btn {
    margin-bottom: 10px;
    margin-top: auto;
    width: 100%;
}

.сars__btn:last-child {
    margin-bottom: 0;
    margin-top: 0;
}

@media (max-width: 1920px) {

    .banner__wrapper .footer__wrapper,
    .model__wrapper,
    .purchase__wrapper,
    .test-drive__wrapper,
    .сars__wrapper {
        max-width: 1550px;
    }
}

@media (max-width: 1550px) {

    /* .swiper {
        height: 550px;
    } */

    .banner__wrapper .footer__wrapper,
    .model__wrapper,
    .purchase__wrapper,
    .test-drive__wrapper,
    .сars__wrapper {
        max-width: 1366px;
    }

    header {
        padding: 10px 0;
    }
    
    .header__menu_item a {
        font-size: 10px;
    }

    .header__description_text {
        font-size: 10px;
        line-height: 10px;
    }

    .header__menu_item {
        margin: 0 20px 0 0;
    }

    .header__menu_item:last-child {
        margin: 0;
    }

    .header__menu_item a {
        font-size: 10px;
        line-height: 14px;
    }

    .header__phone_block a {
        font-size: 14px;
        line-height: 14px;
    }

    .btn {
        padding: 11px 48px 11px 20px;
        font-size: 9px;
        line-height: 18px;
    }

    .btn::after {
        width: 8px;
        height: 14px;
        top: calc(50% - 7px);
    }

    .banner__subtitle {
        font-size: 24px;
        line-height: 24px;
    }

    .banner__title {
        font-size: 60px;
        line-height: 60px;
    }

    .model-description__soon {
        font-size: 12px;
        line-height: 12px;
    }

    .model-description__price {
        font-size: 20px;
        line-height: 20px;
    }

    .model-description__name,
    .model-description__value {
        font-size: 14px;
        line-height: 14px;
    }

    .model-description__title {
        font-size: 40px;
        line-height: 40px;
    }

    .model_item {
        padding: 12px 0 12px 40px;
    }

    .model__detal {
        padding: 50px 102px;
    }

    .model__list {
        margin-bottom: 40px;
    }

    .purchase-item__img {
        width: 70px;
        height: 70px;
    }

    .purchase__title {
        font-size: 40px;
        line-height: 40px;
    }

    .purchase-item__img svg {
        width: 30px;
        height: 30px;
    }

    .purchase-item__title {
        font-size: 30px;
        line-height: 30px;
    }

    .purchase-item__description {
        font-size: 14px;
        line-height: 150%;
    }

    .cars {
        padding: 70px 80px;
    }

    .сars__title {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 70px;
    }

    .сars-description__name {
        font-size: 30px;
        line-height: 30px;
    }

    .сars-description__price {
        font-size: 14px;
        line-height: 14px;
    }

    .сars-description__item {
        font-size: 12px;
        line-height: 150%;
    }

    .сars-description__item::before {
        width: 8px;
        height: 14px;
        top: calc(50% - 7px);
    }

    .map-contact {
        max-width: 375px;
    }

    .map-contact__name {
        font-size: 20px;
        line-height: 24px;
    }

    .map-contact__description {
        font-size: 12px;
        line-height: 150%;
    }

    .map-contact__place {
        font-weight: 400;
        font-size: 12px;
    }

    .map-contact__phone {
        font-size: 16px;
        line-height: 150%;
    }

    .map-contact__time {
        font-size: 12px;
        line-height: 150%;
    }

    .map-contact__email a {
        font-size: 12px;
        line-height: 150%;
    }

    .map-contact__email,
    .map-contact__phone,
    .map-contact__place,
    .map-contact__time {
        padding-left: 30px;
    }

    /* .map__wrapper {
        padding: 70px 0 70px 80px;
    } */

    .test-drive__title {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .test-drive__description {
        font-size: 14px;
        line-height: 150%;
        margin-bottom: 30px;
    }

    .test-drive__block {
        max-width: 375px;
    }
}

@media (max-width: 1366px) {

    .banner__wrapper,
    .footer__wrapper,
    .model__wrapper,
    .purchase__wrapper,
    .test-drive__wrapper,
    .сars__wrapper {
        max-width: 1024px;
    }

    .footer__menu-list {
        flex-direction: column;
    }

    .footer__menu-item {
        margin: 10px 0 0;
    }

    .purchase__item {
        margin: 0 20px;
    }

    .test-drive__wrapper {
        padding: 50px 100px;
    }

    .footer__menu-item {
        margin-right: 20px;
    }

    .header__desktop {
        display: none;
    }

    .header-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background: #30363a;
    }

    .close_menu .mobile_menu__open {
        display: none;
    }

    .close_menu .header-mobile__toggle.close,
    .header-mobile__toggle.open,
    .mobile_menu__close {
        display: none;
    }

    .close_menu .header-mobile__toggle.open,
    .close_menu .mobile_menu__close,
    .header-mobile__toggle.close {
        display: block;
    }

    .header-mobile__toggle {
        width: 20px;
        height: 20px;
        background: 0 0;
        border: none;
    }

    .header-mobile__first {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        height: 70px;
        max-width: 700px;
        margin: auto;
    }

    .header-mobile__second {
        position: fixed;
        top: 70px;
        background: #30363a;
        width: 100%;
        left: 0;
        border-top: 1px solid #c78e66;
    }

    .header-mobile__phone,
    .header-mobile__user {
        display: flex;
        width: 20px;
        height: 20px;
    }

    .close_menu .mobile_menu__close {
        padding: 10px 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 320px;
        margin: auto;
    }

    .header-mobile__description_block {
        font-weight: 400;
        font-size: 10px;
        line-height: 15px;
        text-transform: uppercase;
        color: #fff;
        margin-left: 0;

        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .header-mobile__user_block {
        margin: 0;
    }

    .mobile_menu__open {
        min-height: calc(100vh - 70px);
        padding: 20px;
        max-width: 450px;
        margin: auto;
    }

    .link {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        text-transform: uppercase;
        color: #fff;
    }

    .mobile_menu__description {
        font-weight: 400;
        font-size: 16px;
        line-height: 16px;
        text-transform: uppercase;
        color: #ffffff;
        margin-bottom: 20px;
    }

    .header__description_block {
        margin-bottom: 20px;
    }

    .mobile_menu__menu_list {
        list-style: none;
        width: 100%;
        margin-bottom: 50px;
    }

    .mobile_menu__menu_item {
        padding: 16px 0;
        width: 100%;
        border-bottom: 1px solid #ffffff10;
    }

    .mobile_menu__menu_item:last-child {
        border: none;
    }

    .mobile_menu__open .header-mobile__phone,
    .mobile_menu__open .header-mobile__user {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: auto;
        height: auto;
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #ffffff;
    }
}

@media (max-width: 1024px) {

    /* .swiper {
        height: 1110px;
    } */

    .banner__wrapper,
    .footer__wrapper,
    .model__wrapper,
    .purchase__wrapper,
    .test-drive__wrapper,
    .сars__wrapper {
        max-width: 768px;
        min-height: none;
    }

    .banner__subtitle {
        font-size: 16px;
        line-height: 16px;
    }

    .banner__title {
        font-size: 40px;
        line-height: 40px;
    }

    .model {
        flex-direction: column;
    }

    .model__img {
        width: 100%;
        order: 1;
    }

    .model__detal {
        order: 2;
        padding: 50px 100px;
        width: 100%;
    }

    .model--right .model__img,
    .model--left .model__img {
        order: 1;
    }

    .model--right .model__detal,
    .model--left .model__detal {
        order: 2;
    }

    .model-description__up {
        text-align: center;
    }

    .model__btns {
        align-items: center;
        justify-content: center;
    }

    .footer__up {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .footer__menu {
        display: none;
    }

    .footer__logo {
        margin-bottom: 15px;
        padding-bottom: 15px;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #C78E66;
    }

    .break {
        margin-bottom: 30px;
    }

    .footer__phone {
        margin-bottom: 20px;
    }

    .footer__place {
        margin-bottom: 30px;
    }

    .footer-social__item {
        margin: 0 20px 0 0;
    }

    .footer__down {
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .footer__cop_text,
    .footer__policy,
    .footer__made {
        margin-bottom: 20px;
    }

    .footer__wrapper {
        padding: 30px 100px;
    }
}

@media (max-width: 768px) {

    .banner {
        background-image: url('/img/banner-mob.jpg');
        background-image: url('../img/853x1280_Audi-покупают-здесь.jpg');
        background-size: cover;
        background-position: center bottom;
        height: 60vh;
    }

    .banner__wrapper,
    .footer__wrapper,
    .model__wrapper,
    .purchase__wrapper,
    .test-drive__wrapper,
    .сars__wrapper {
        width: 100%;
        max-width: 100%;
    }

    .purchase__item {
        max-width: 100%;
        text-align: center;
        padding: 50px 50px 150px 50px;
    }

    .purchase-item__img {
        margin: 0 auto 30px;
    }

    .purchase__list {
        position: relative;
    }

    .purchase__list .slick-arrow {
        display: none !important;
    }

    .purchase__list .slick-dots {
        display: flex;
        flex-direction: row;
        position: absolute;
        bottom: 0;
        list-style: none;
    }

    .purchase__list .slick-dots li {
        width: 10px;
        height: 10px;
        background: #FFFFFF20;
        border-radius: 50%;
        border: none;
        margin: 10px;
    }

    .purchase__list .slick-dots .slick-active,
    .purchase__list .slick-dots li:hover {
        background: #C78E66;
    }

    .purchase__list .slick-dots button {
        width: 0;
        height: 0;
        border: none;
        font-size: 0
    }

    .purchase {
        min-height: auto;
    }

    .purchase__title {
        margin-bottom: 50px;
    }

    .purchase__list {
        margin-bottom: 20px;
    }

    .cars {
        padding: 70px 0;
    }

    .сars__item:nth-child(2) {
        margin: 0;
    }

    .сars__item.slick-slide {
        padding-right: 20px;
    }

    .slick-arrow {
        display: none !important;
    }

    .model__detal {
        padding: 30px 20px;
    }

    .model-description__soon {
        margin-bottom: 10px;
    }

    .model-description__price {
        font-size: 16px;
        line-height: 16px;
    }

    .model-description__title {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .model__btn {
        margin: auto;
    }

    .purchase__title {
        font-size: 30px;
        line-height: 30px; 
        text-align: center;
        margin-bottom: 20px;
    }

    .purchase__wrapper {
        padding: 30px 0;
    }

    .purchase-item__img {
        width: 50px;
        height: 50px;
    }

    .purchase-item__img svg{
        width: 20px;
        height: 20px;
    }

    .purchase__item {
        padding: 20px 20px 50px 20px;
    }

    .purchase-item__title {
        font-size: 20px;
line-height: 20px;
    }

    .purchase-item__description {
        font-size: 14px;
line-height: 150%;
    }

    .сars__title {
        font-size: 30px;
    line-height: 30px;
     text-align: center;
     margin-bottom: 30px;
    }

    .cars {
        padding: 30px 0;
    }

    .сars-description {
        padding: 30px 20px;
    }

    .сars-description__name {
        font-size: 20px;
        line-height: 20px;
    }

    .сars-description__price {
        font-size: 14px;
        line-height: 14px;
    }

    .сars-description__list {
        display: none;
    }

    .map__wrapper {
        height: fit-content;
    }

    .map-contact {
        width: 100%;
        max-width: 100%;
        position: relative;
        left: 0;
        bottom: auto;
        top: auto;
        height: auto;
    }   

    .yandex_map {
        height: 300px;
    }
    
    /* .map__wrapper {
        padding: 170px 0 0 0;
    } */

    .map-contact__description {
        margin-bottom: 20px;
    }

    .test-drive {
        min-height: auto;
    }
    .test-drive__wrapper {
        padding: 86px 20px;
    }

    .test-drive__title {
        font-size: 30px;
        line-height: 30px;  
        text-align: center;  
        margin-bottom: 30px;
    }

    .test-drive__description {
        font-size: 14px;
        text-align: center;
        line-height: 150%;
        margin-bottom: 30px;
    }

    .test-drive__btn {
        margin: auto;
    }

    .test-drive__block {
        max-width: auto;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        margin: auto;
    }

    .footer__wrapper {
        padding: 30px 20px;
    }

    .banner__wrapper {
        padding: 100px 20px;
        padding: 50px 20px;
    }
}
/* 
.callback__wrapper {
    display: none;
}

.callback__wrapper.open-modal,
.callback__wrapper.open-modal-test_drive {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #00000080;
    z-index: 2000;
}

.test_drive_callback,
.callback__block  {
    display: none;
}

.open-modal .callback__block,
.open-modal-test_drive .test_drive_callback {
    max-width: 750px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 45px;
    position: relative;
}

.callback__title {
    font-weight: 300;
    font-size: 30px;
    line-height: 30px;
    color: #181b1d;
    text-align: center;
    margin-bottom: 30px;
}

.callback__done {
    display: none;
} */


.popup {
    display: none;
}

.popup.popup_show {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #00000080;
    z-index: 2000;
}

.container-fluid {
    position: relative;
    margin: auto;
    background-color: #fff;
    max-height: 100vh;
    padding: 50px;

}

.popup-text .container-fluid {
    width: 100%;
    max-width: 768px;
}

.popup__close {
    background: transparent;
    border: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.popup__close path {
    fill: #181b1d;
}

.popup__close:hover path {
    fill: #C78E66;
}

.popup__title {
	font-weight: 300;
	font-size: 35px;
	margin-top: 40px;
	line-height: 1;
	text-transform: uppercase;
    text-align: center;
}

.popup__text {
	margin-top: 35px;
}

.popup__text p {
	margin-bottom: 30px;
}

.popup__content {
    max-height: 100%;
    overflow-y: auto;
    height: auto;
}

.popup__text {
	line-height: 1.7;
	margin-top: 30px;

	padding-right: 15px;
}


form {
    width: 95%;
	margin: auto;
}

.callback__name,
.callback__phone,
.callback__email,
.callback__choose {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.label_value {
    font-weight: 300;
    font-size: 30px;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}

.callback__name input,
.callback__phone input,
.callback__email input,
.callback__choose select {
    font-weight: 300;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px #eeeeee solid;
    background-color: #ffffff;
}



.callback__name input:focus-visible,
.callback__phone input:focus-visible,
.callback__email input:focus-visible,
.callback__choose select:focus-visible  {
    font-weight: 300;
    font-size: 30px;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    outline: 2px #C78E66 solid !important;
}

.callback__checkbox {
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%
}

.callback__btn {
    width: 100%;
}


.callback__checkbox input {
    display: none;
}

.callback__checkbox .label_value  {
    padding-left: 30px;
    position: relative;
    font-size: 14px;
}

.callback__checkbox .label_value a {
    color: #7d8082;
    
}

.callback__checkbox .label_value a:hover {
    color: #c78e66;
    text-decoration: underline;
}

.callback__checkbox .label_value::before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    left: 0;
    display: block;
    border: 1px #eeeeee solid;
    box-sizing: border-box;
    border-radius: 2px;
    background-repeat: no-repeat;
    transform: rotate(90deg);
    cursor: pointer;
    background-size: 105%;
	background-position: -4px -6px;
}

.callback__checkbox .label_value::before:hover {
    border: 1px #C78E66 solid;
} 

.callback__checkbox input:checked + .label_value::before {

    background-image: url("../img/arrow.svg");
}   


.popup-form .container-fluid {
    width: 100%;
    max-width: 600px;
}

.footnote__block {
    color: #ffffff;
    font-size: 10px;
    padding: 20px;
}

.footnote__small {
    margin: 10px 0;
    color: #cacaca;
}

.error {
    position: relative;
    font-size: 12px;
    color: #C78E66
}
.callback__checkbox_block .callback__polite {
    max-width: 500px;
    width: 100%;
	text-align: center;
	font-size: 14px;
    padding: 5px 10px;
    margin: 0 auto 20px;
}


@media (max-width: 768px) {
    .popup__text {
        line-height: 1.7;
        margin-top: 30px;

        font-size: 14px;
    }

    .popup__title {
        font-size: 27px;
    }

    
    .footnote__small {
        font-size: 8px;
    }

    .label_value {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .container-fluid {
        padding: 20px;
    }

    .сars__item {
        max-width: 100%;
    }
    

}
.banner__btn{
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 3vh;
}
.banner__btn .model__btns{
    display: inline-flex;
}