/* import fonts */

@font-face {
    font-family: "Roboto";
    src: url(../fonts/Roboto-Thin.ttf) format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url(../fonts/Roboto-ExtraLight.ttf) format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url(../fonts/Roboto-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url(../fonts/Roboto-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: "Roboto";
    src: url(../fonts/Roboto-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url(../fonts/Roboto-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url(../fonts/Roboto-ExtraBold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

/* import fonts END */

/* **************************************************************************************************************************************** */

/* css reset */

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

img,
picture {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

address {
    font-style: normal;
}

input,
button,
textarea,
select {
    font: inherit;
    outline: none;
    color: #cccccc;
}

input,
button,
select {
    width: 100%;
    margin: 0;
    border: none;
    border-bottom: 0.4px solid var(--3, #c89e64);
    box-shadow: none;
    border-radius: 0;
    padding: 5px 15px;
    background: transparent;
}

input::-moz-placeholder {
    color: #cccccc;
}

input::-webkit-input-placeholder {
    color: #cccccc;
}

input:-ms-input-placeholder {
    color: #cccccc;
}

input::placeholder {
    color: #cccccc;
}

button {
    cursor: pointer;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url(../img/ico-select.svg);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    display: block;
    color: #cccccc;
    width: 100%;
    padding-left: 15px;
    padding-right: 35px;
    border: none;
    border-bottom: 0.4px solid #c89e64;
}

.select::-ms-expand {
    display: none;
}

.select:hover {
    border-color: #cccccc;
}

.select:focus {
    border-color: #cccccc;
    box-shadow: none;
    box-shadow: none -moz-mac-focusring;
    color: inherit;
    outline: none;
}

.select option {
    font-weight: normal;
}

body {
    min-height: 100vh;
    line-height: 1.3;
}

ul,
ol {
    list-style: none;
}

:focus {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

blockquote,
q {
    quotes: none;
}

q:before,
q:after {
    content: "";
}

a,
ins {
    text-decoration: none;
    color: inherit;
}

sub,
sup {
    vertical-align: baseline;
    position: relative;
    font-size: 0.8em;
}

sup {
    top: -5px;
}

sub {
    bottom: -2px;
}

pre {
    font: inherit;
}

/* css reset END */

/* **************************************************************************************************************************************** */

/* common styles */

html {
    overflow-x: hidden;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    background-color: #0e0f13;
    position: relative;
    font-weight: 300;
    padding: 0px;
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
    color: #fff;
}

.compensate-for-scrollbar {
    margin: 0 auto !important;
    overflow: auto !important;
}

.fancybox-button svg {
    pointer-events: none;
}

.resp_table {
    width: 100%;
}

.resp_table tr td:before {
    display: none;
}

.resp_table img {
    max-width: unset;
    width: unset;
    display: block;
    width: 100%;
}

.form_title {
    color: inherit;
    font-size: 20px;
    padding: 0px;
    margin: 0px;
    text-align: center;
    padding-bottom: 20px;
}

.form_title span {
    display: block;
    white-space: nowrap;
}

input,
textarea,
select,
button,
.btn {
    height: 50px;
}

form .form-group-wrapper {
    display: flex;
    gap: 10px;
}

form .form-group-wrapper .form-group {
    width: 49%;
}

form .form-group-wrapper .btn {
    width: 100%;
}

form .form-group {
    margin-bottom: 10px;
    position: relative;
}

form .form-group.circle:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #c89e64;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
}

.has-danger input,
.has-danger select,
.has-danger textarea {
    border-width: 2px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c86461;
}

form .form-group.circle input,
form .form-group.circle select {
    padding-left: 24px;
}

#form_popup {
    display: none;
}

.popup_container {
    width: 520px;
    max-width: 100%;
    padding: 30px;
    overflow: hidden !important;
    position: relative;
    box-sizing: border-box;
    background: #0e0f13;
    text-align: center;
    padding-bottom: 30px;
    border-radius: 24px;
}

.alert.fancybox-content {
    overflow: hidden;
    background: #0e0f13;
}

.not_agree button {
    background-color: #cccccc !important;
    cursor: auto !important;
    color: white !important;
}

.agree_field {
    font-size: 12px;
    line-height: 100%;
    position: relative;
    display: inline-block;
    padding-left: 20px;
    top: 0px;
    font-weight: 300;
}

.agree_field a {
    color: inherit;
    text-decoration: underline;
}

.agree_field input {
    position: absolute;
    top: -1px;
    left: 0px;
    margin: -0px;
    height: auto;
    width: auto !important;
}

.agree_field > span {
    padding-left: 25px;
    display: inline-block;
}

.main {
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
}

.raw {
    display: flex;
}

.column-2 {
    width: 50%;
}

.column-3 {
    width: 33.333%;
}

.column-4 {
    width: 25%;
}

.bg_color1 {
}

.title {
}

.subtitle {
}

.text {
}

.desc {
}

.comment {
}

.text_color1 {
}

.block-title_white {
}

.text_thn {
}

.text_bld {
}

.text_left {
}

.text_right {
}

.text_upp {
}

.btn {
    background: #c89e64;
    color: #1b1c22;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #c89e64;
    position: relative;
    text-decoration: none;
    transition: all 0.3s linear;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.btn span {
    display: inline-block;
    width: 100%;
}

.btn:hover {
    background-color: #b28548;
    border-color: #b28548;
}

.btn_glass {
    color: #fff;
    background-color: transparent;
    border-color: #c89e64;
}

.btn_glass:hover {
    background-color: #c89e64;
    border-color: #c89e64;
    color: #1b1c22;
}

.addr {
    padding-left: 53px;
    background: url(../img/ico-loc.svg) 0 50% no-repeat;
}

.logo-block {
}

.logo {
}

.phone {
}

/* common styles END */

/*************************************************************************************************************************/

.header .mob-menu-btn {
    display: none;
}

.header {
    background: #101115;
}

.header__container {
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.header__addr {
}

.header__addr-text {
}

.header__addr-text_sm {
    font-size: 12px;
    color: #4b4c4e;
    padding-bottom: 3px;
}

.header__content-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 49.5%;
}

.header__logo-block {
}

.header__logo {
}

.header__logo img {
}

.header__phone {
    display: block;
}

.header__phone-text {
    display: block;
}

.header__phone-text_sm {
    font-size: 12px;
    color: #4b4c4e;
    padding-bottom: 3px;
}

.header__btn {
    width: 250px;
}

.menu-wrap {
    background: linear-gradient(90deg, #101115 0%, #252731 49%, #101115 100%);
    padding: 10px 0;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu__part {
    display: flex;
    gap: 30px;
}

.menu__part img {
}

.menu__item {
    /*text-transform: uppercase;
      */
    font-size: 14px;
    display: flex;
    gap: 5px;
    align-items: center;
    align-items: center;
    /* gap: 4px;
      transition: all .3s linear;
      -webkit-transition: all .3s linear;
      -moz-transition: all .3s linear;
      -ms-transition: all .3s linear;
      -o-transition: all .3s linear; */
}

.menu__item:hover {
    color: #c89e64;
}

.menu__item-text {
}

.menu__item-text_sm {
    color: #c89e64;
    font-size: 10px;
}

/**************************************************************************************************************/

.banner {
    overflow: hidden;
    position: relative;
}

.banner_item {
    overflow: hidden;
}

.banner__container {
}

.banner__content {
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 1;
    color: #000;
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
}

.slide3 .title1 {
    color: #ffffff;
    text-align: center;
    padding: 30px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(7px);
    font-size: 48px;
    width: fit-content;
}

.slide3 .title1 b {
    text-transform: uppercase;
    display: block;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    width: 60px;
    height: 60px;
    left: 100px;
    background: url("../img/arrow.svg") 50% no-repeat;
}

.banner .swiper-button-next {
    left: unset;
    right: 100px;
    transform: scale(-1, 1);
}

.banner .swiper-button-prev:after,
.banner .swiper-button-next:after {
    display: none;
}

.banner__title-block {
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.57);
    background: linear-gradient(102deg, rgba(255, 255, 255, 0.80) 29.31%, rgba(255, 255, 255, 0.00) 86.76%);
    padding: 20px 45px 30px;
}

.banner__title-profit {
    background: #101115;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    padding: 14px 21px 14px 72px;
    position: relative;
    display: inline-block;
}

.banner__title-profit:before {
    content: url(../img/ico-gradient-circle.svg);
    position: absolute;
    top: 6px;
    left: 11px;
}

.banner__title-profit:after {
    content: url(../img/ico-clock.svg);
    position: absolute;
    top: 15px;
    left: 21px;
}

.banner__title {
    font-weight: 200;
    font-size: 48px;
    /* text-transform: uppercase; */
    /*padding-top: 8px;*/
    text-align: center;
}

.banner__title .title1 {
    font-size: 36px;
    font-weight: 400;
}

.banner__title .title1 b {
    font-size: 48px;
}

.banner__title .title2 {
    font-size: 28px;
    font-weight: 400;
}

.banner__title .title3 {
    font-weight: 400;
    width: fit-content;
    color: #ffffff;
    font-size: 28px;
    border-radius: 100px;
    border: 1px solid #C89E64;
    background: linear-gradient(90deg, #101115 0.08%, #373737 98.29%);
    padding: 10px 15px 10px 70px;
    margin: 5px auto -60px;
    position: relative;
}

.banner__title .title3:before {
    content: '';
    position: absolute;
    width: 42px;
    height: 48px;
    background: url("../img/title_ico.svg") 50% no-repeat;
    top: 4px;
    left: 15px;
}

.banner__title .br_mob {
    display: none;
}

.banner__bg {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
}

.banner__bg img {
}

.banner_description {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.slide2 .banner__content {
    left: 0;
    width: 100%;
    padding-top: 84px;
}

.slide2 .banner__content .title1 {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
}

.slide2 .banner__content .title1 .br_mob {
    display: none;
}

.banner .swiper-pagination-bullet {
    width: 40px;
    height: 6px;
    border-radius: 20px;
    background: #FFFFFF;
}

.banner .swiper-pagination-bullet-active {
    width: 80px;
    background: #FFFFFF;
}

.run_now {
    display: flex;
    align-items: center;
    background: #c89e64;
    overflow: hidden;
    position: relative;
    bottom: 0;
    width: 100%;
}

.run_now_cont {
    white-space: nowrap;
    animation: runstring 30s infinite linear;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    padding: 18px 0;
}

.run_now_cont div {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
}

.run_now_cont div:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background: #000000;
    margin-right: 26px;
}

@keyframes runstring {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/**************************************************************************************************************/

.timer {
    background: #101115;
    padding: 30px 0;
}

.timer__container {
}

.timer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timer__info {
}

.timer__title {
    font-size: 24px;
    font-weight: 400;
    padding-bottom: 25px;
}

.timer__form {
}

.timer__form input {
    border-radius: 50px;
    width: 100%;
    border: 1px solid #c89e64;
}

.timer__timer {
}

.timer__timer div[id*="timer"] {
}

.timer__timer span[id*="timer"] {
}

/**************************************************************************************************************/

.cars {
    background: url(../img/bg-cars.svg) 50% -355px no-repeat;
    padding-top: 180px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.car {
    /*overflow: hidden;*/
}

.car__container {
}

.car__content {
    border: 0.3px solid var(--2, #4b4c4e);
    border-radius: 60px;
    background: radial-gradient(
            49.35% 58.92% at 64.03% 50%,
            #212225 0%,
            #121317 63.38%,
            #101115 100%
    );
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    padding: 22px 35px 33px 35px;
}

.car_date {
    font-weight: 400;
    width: fit-content;
    color: #ffffff;
    font-size: 24px;
    border-radius: 100px;
    border: 1px solid #4B4C4E;
    background: #101115;
    padding: 10px 15px 10px 70px;
    position: absolute;
    top: -26px;
    left: 27px;
}

.car_date:before {
    content: '';
    position: absolute;
    width: 42px;
    height: 48px;
    background: url("../img/ico_time.svg") 50% no-repeat;
    top: 2px;
    left: 13px;
}

.car__content:before {
    content: url(../img/bg-car.png);
    position: absolute;
    z-index: -1;
    top: calc(50% - 118px);
    left: 0;
}

.car__info {
}

.car__title {
    font-size: 64px;
    font-weight: 200;
}

.car__profit {
    margin-top: 13px;
    font-size: 24px;
    font-weight: 300;
    position: relative;
    padding: 4px 21px 5px 63px;
    background: #1b1c22;
    border-radius: 50px;
    display: block;
    transition: all 0.3s linear;
}

.car__profit:hover {
    color: #c89e64;
}

.car__profit:before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    z-index: -1;
    top: -1px;
    left: -1px;
    background: linear-gradient(19deg, #101115 15.32%, #c89e64 102.06%);
    border-radius: 50px;
}

.car__profit:after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    top: -2px;
    left: 0px;
    background: url(../img/ico-car-profit.svg) 50% no-repeat #c89e64;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.car__profit-text {
}

.car__profit-text b {
    font-size: 1.2em;
    font-weight: 500;
}

.car__props {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    margin-top: 25px;
    gap: 42px;
}

.car__props-item {
    padding-left: 60px;
    position: relative;
}

.car__props-item:before {
    content: url(../img/ico-gradient-circle.svg);
    position: absolute;
    top: -12px;
    left: 0;
}

.car__props-item:after {
    content: url(../img/ico-car-props1.svg);
    position: absolute;
    top: -2px;
    left: 10px;
}

.car__props-item_ico2:after {
    content: url(../img/ico-car-props2.svg);
}

.car__props-item_ico3:after {
    content: url(../img/ico-car-props3.svg);
}

.car__props-item_ico4:after {
    content: url(../img/ico-car-props4.svg);
    top: -4px;
    left: 14px;
}

.car__image {
}

.car__image img {
}

.car__gallery {
    max-width: 14%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.car__gallery .swiper-wrapper {
}

.car__gallery-item {
    overflow: hidden;
    border-radius: 24px;
}

.car__gallery-item:nth-child(n+4) {
    display: none;
}

.car__btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
}

.car__btn {
    width: 32%;
}

/**************************************************************************************************************/

#instock {
    margin-top: 85px;
    background: url(../img/bg-complects.png) 50% 200px no-repeat;
}

#instock .compl-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

#instock .compl-title__text {
    font-size: 48px;
}

#instock .compl-title__compl {
    color: #1b1c22;
    font-size: 24px;
    align-items: center;
    background: #c89e64;
    font-weight: 500;
    border-radius: 50px;
    width: 45%;
    text-align: center;
    padding: 8px 0;
}

#instock .compl-techs {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
}

#instock .compl-tech-param {
    width: 30%;
    padding: 10px 0 9px 13px;
    border-left: 0.4px solid var(--3, #c89e64);
    font-size: 16px;
}

#instock .compl-tech-param.param1 {
    padding-left: 0;
    border: none;
}

#instock .compl-tech-param.param2 {
}

#instock .compl-tech-param.param3 {
}

#instock .compl-tech-param.param4 {
    padding-left: 0;
    border: none;
}

#instock .compl-tech-param.param5 {
}

#instock .compl-tech-param.param6 {
}

#instock .compl-tech-text1 {
    font-size: 14px;
    color: #c89e64;
    padding-bottom: 10px;
}

#instock .compl-tech-text2 {
}

.instock_title {
    font-size: 48px;
    font-weight: 200;
    text-transform: uppercase;
}

#filter_table {
    display: none;
}

.filter_quick_menu {
    background: linear-gradient(90deg, #101115 0%, #18191d 49%, #101115 100%);
    border-radius: 50px;
    padding: 28px 10px 27px 10px;
    display: flex;
    justify-content: space-evenly;
    font-size: 24px;
    margin-top: 20px;
}

.filter_quick_menu li {
    cursor: pointer;
    border-bottom: 0.5px solid transparent;
    padding-bottom: 4px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.filter_quick_menu li.current,
.filter_quick_menu li:hover {
    border-bottom: 0.5px solid var(--3, #c89e64);
}

.filter_quick_menu li .quick-menu-text-sm {
    font-size: 16px;
    font-weight: 400;
    color: #c89e64;
}

.filter_quick_menu li span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tb_complects {
    width: 100%;
    border-collapse: collapse;
    margin: 0px auto;
    margin-top: 50px;
}

.tb_complects tbody {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 80px;
    justify-content: center;
}

.tb_complects tr {
    width: 46%;
    display: flex;
    flex-direction: column;
    background: radial-gradient(
            111.58% 68.98% at 50% 46.61%,
            #212225 0%,
            #121317 61.18%,
            #101115 100%
    );
    border-radius: 50px;
    border: 0.3px solid var(--2, #4b4c4e);
    padding: 50px 60px;
}

.tb_complects.limit tr:nth-child(n + 5) {
    display: none;
}

.tb_complects tr:first-child {
    display: none;
}

.tb_complects tr th {
}

.tb_complects tr td {
}

.tb_complects_showmore {
    padding-bottom: 5px;
    color: inherit;
    font-size: 14px;
    margin-top: 19px;
    text-align: center;
    margin-top: 25px;
    display: block;
    width: 110px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.tb_complects_showmore:hover {
    border-color: #b28548;
}

.tb_complects tr .btns {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tb_complects tr .btns .btn {
    width: 100%;
}

/****************************************************************************************************/

.tradein {
    margin-top: 90px;
}

.tradein__container {
}

.tradein__content {
    background: radial-gradient(
            111.58% 68.98% at 50% 46.61%,
            #212225 0%,
            #121317 61.18%,
            #101115 100%
    );
    border-radius: 50px;
    border: 0.3px solid var(--2, #4b4c4e);
    padding-bottom: 25px;
    padding-right: 0;
    position: relative;
    z-index: 1;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.tradein__content:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../img/bg-tradein1.png) 0 100% no-repeat;
    z-index: -1;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.tradein__title {
    font-size: 64px;
    font-weight: 200;
    text-align: right;
    margin-left: auto;
    border-radius: 50px 50px 0 0;
    -webkit-border-radius: 50px 50px 0 0;
    -moz-border-radius: 50px 50px 0 0;
    -ms-border-radius: 50px 50px 0 0;
    -o-border-radius: 50px 50px 0 0;
    background: #101115;
    padding-top: 25px;
    padding-right: 65px;
}

.tradein__desc {
    text-align: right;
    font-size: 24px;
    font-weight: 200;
    /* max-width: 320px; */
    margin-left: auto;
    padding-right: 65px;
    /* margin-top: 14px; */
    background: #101115;
    padding-bottom: 20px;
}

.tradein__form {
    max-width: 310px;
    margin-left: auto;
    margin-top: 13px;
    margin-right: 65px;
}

.tradein__form .btn {
    margin-top: 20px;
}

.tradein__img {
    position: absolute;
    bottom: 55px;
    left: -180px;
}

.tradein__img img {
}

/**************************************************************************************************************/

.credit {
    margin-top: 100px;
    overflow: hidden;
}

.credit__bg {
    width: 1920px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.credit__container {
    position: relative;
}

.credit__content {
    position: absolute;
    bottom: 100px;
    z-index: 1;
}

.credit__title {
    font-size: 64px;
    font-weight: 200;
}

.credit__desc {
    font-size: 24px;
    font-weight: 200;
}

.credit__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

/**************************************************************************************************************/

.contacts {
    margin-top: 100px;
}

.contacts__container {
    position: relative;
}

.contacts__title-main {
    font-size: 64px;
}

.contacts__content {
    position: absolute;
    z-index: 1;
    background: #1b1c22;
    border-radius: 50px;
    overflow: hidden;
    top: 215px;
}

.contacts__img {
}

.contacts__img img {
}

.contacts__title {
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-left: 30px;
}

.contacts__title-logo {
    margin-right: 10px;
    padding-right: 13px;
    border-right: 1px solid #c89e64;
}

.contacts__title-logo img {
}

.contacts__title-text {
    font-size: 15px;
    font-weight: 400;
}

.contacts__info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts__info-item {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 16px;
    font-weight: 400;
}

.contacts__info-item img {
}

.contacts__info-text {
}

.contacts__phone {
}

/**************************************************************************************************************/

#map1 {
    height: 550px;
    width: 100%;
    max-width: 100%;
    margin-top: 75px;
}

/**************************************************************************************************************/

.footer {
    padding: 20px 0;
    color: inherit;
    font-size: 14px;
}

.footer__container {
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__dislamer-btn {
    color: inherit;
    text-decoration: none;
}

.footer__info {
}

.footer__madein {
    display: flex;
    gap: 5px;
}

.footer__policy {
    color: inherit;
    text-decoration: none;
}

.footer__disclamer {
    font-size: 14px;
    display: none;
    text-align: left;
    padding-top: 35px;
}

/* **************************************************************************************************************************************** */

/* media */

/* desktop and laptops */

@media only screen and (min-width: 1280px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1280px) and (max-width: 1800px) {
    .addr {
    }

    .logo-block {
    }

    .logo {
    }

    .phone {
    }

    /*************************************************************************************************************************/
    .header {
    }

    .header__container {
    }

    .header__content {
    }

    .header__addr {
    }

    .header__addr-text {
    }

    .header__addr-text_sm {
    }

    .header__content-part {
    }

    .header__logo-block {
    }

    .header__logo {
    }

    .header__logo img {
    }

    .header__phone {
    }

    .header__phone-text {
    }

    .header__phone-text_sm {
    }

    .header__btn {
    }

    .menu-wrap {
    }

    .menu {
    }

    .menu__part {
    }

    .menu__part img {
    }

    .menu__item {
    }

    .menu__item-text {
    }

    .menu__item-text_sm {
    }

    /**************************************************************************************************************/
    .banner {
    }

    .banner__container {
    }

    .banner__content {
    }

    .banner__title-block {
    }

    .banner__title-profit {
    }

    .banner__title {
    }

    .banner__title b {
    }

    .banner__bg {
    }

    .banner__bg img {
    }

    /**************************************************************************************************************/
    .timer {
    }

    .timer__container {
    }

    .timer__content {
    }

    .timer__info {
    }

    .timer__title {
    }

    .timer__form {
    }

    .timer__form input {
    }

    .timer__timer {
    }

    .timer__timer div[id*="timer"] {
    }

    .timer__timer span[id*="timer"] {
    }

    /**************************************************************************************************************/
    .cars {
    }

    .car {
    }

    .car__container {
    }

    .car__content {
    }

    .car__info {
    }

    .car__title {
    }

    .car__profit {
    }

    .car__profit-text {
    }

    .car__props {
    }

    .car__props-item {
    }

    .car__image {
    }

    .car__image img {
    }

    .car__gallery {
    }

    .car__gallery .swiper-wrapper {
    }

    .car__gallery-item {
    }

    .car__btns {
    }

    .car__btn {
    }

    /**************************************************************************************************************/
    #instock {
    }

    #instock .compl-title {
    }

    #instock .compl-title__text {
    }

    #instock .compl-title__compl {
    }

    #instock .compl-techs {
    }

    #instock .compl-tech-param {
    }

    #instock .compl-tech-param.param1 {
    }

    #instock .compl-tech-param.param2 {
    }

    #instock .compl-tech-param.param3 {
    }

    #instock .compl-tech-param.param4 {
    }

    #instock .compl-tech-param.param5 {
    }

    #instock .compl-tech-param.param6 {
    }

    #instock .compl-tech-text1 {
    }

    #instock .compl-tech-text2 {
    }

    .instock_title {
    }

    #filter_table {
    }

    .filter_quick_menu {
    }

    .filter_quick_menu li {
    }

    .filter_quick_menu li span {
    }

    .tb_complects {
    }

    .tb_complects tr {
    }

    .tb_complects.limit tr:nth-child(n + 5) {
    }

    .tb_complects tr:first-child {
    }

    .tb_complects tr th {
    }

    .tb_complects tr td {
    }

    .tb_complects_showmore {
    }

    .tb_complects tr .btns {
    }

    .tb_complects tr .btns .btn {
    }

    /****************************************************************************************************/
    .tradein {
    }

    .tradein__container {
    }

    .tradein__content {
    }

    .tradein__title {
    }

    .tradein__desc {
    }

    .tradein__form {
    }

    .tradein__img {
    }

    .tradein__img img {
    }

    /**************************************************************************************************************/
    .credit {
    }

    .credit__bg {
    }

    .credit__container {
    }

    .credit__content {
    }

    .credit__title {
    }

    .credit__desc {
    }

    .credit__form {
    }

    /**************************************************************************************************************/
    .contacts {
    }

    .contacts__container {
    }

    .contacts__title-main {
    }

    .contacts__content {
    }

    .contacts__img {
    }

    .contacts__img img {
    }

    .contacts__title {
    }

    .contacts__title-logo {
    }

    .contacts__title-logo img {
    }

    .contacts__title-text {
    }

    .contacts__info {
    }

    .contacts__info-item {
    }

    .contacts__info-item img {
    }

    .contacts__info-text {
    }

    .contacts__phone {
    }

    /**************************************************************************************************************/
    #map1 {
    }

    /**************************************************************************************************************/
    .footer {
    }

    .footer__container {
    }

    .footer__content {
    }

    .footer__dislamer-btn {
    }

    .footer__info {
    }

    .footer__madein {
    }

    .footer__policy {
    }

    .footer__disclamer {
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1600px) {
    .addr {
    }

    .logo-block {
    }

    .logo {
    }

    .phone {
    }

    /*************************************************************************************************************************/
    .header {
    }

    .header__container {
    }

    .header__content {
    }

    .header__addr {
    }

    .header__addr-text {
    }

    .header__addr-text_sm {
    }

    .header__content-part {
    }

    .header__logo-block {
    }

    .header__logo {
    }

    .header__logo img {
    }

    .header__phone {
    }

    .header__phone-text {
    }

    .header__phone-text_sm {
    }

    .header__btn {
    }

    .menu-wrap {
    }

    .menu {
    }

    .menu__part {
    }

    .menu__part img {
    }

    .menu__item {
    }

    .menu__item-text {
    }

    .menu__item-text_sm {
    }

    /**************************************************************************************************************/
    .banner {
    }

    .banner__container {
    }

    .banner__content {
    }

    .banner__title-block {
    }

    .banner__title-profit {
    }

    .banner__title {
    }

    .banner__title b {
    }

    .banner__bg {
    }

    .banner__bg img {
    }

    /**************************************************************************************************************/
    .timer {
    }

    .timer__container {
    }

    .timer__content {
    }

    .timer__info {
    }

    .timer__title {
    }

    .timer__form {
    }

    .timer__form input {
    }

    .timer__timer {
    }

    .timer__timer div[id*="timer"] {
    }

    .timer__timer span[id*="timer"] {
    }

    /**************************************************************************************************************/
    .cars {
    }

    .car {
    }

    .car__container {
    }

    .car__content {
    }

    .car__info {
    }

    .car__title {
    }

    .car__profit {
    }

    .car__profit-text {
    }

    .car__props {
    }

    .car__props-item {
    }

    .car__image {
    }

    .car__image img {
    }

    .car__gallery {
    }

    .car__gallery .swiper-wrapper {
    }

    .car__gallery-item {
    }

    .car__btns {
    }

    .car__btn {
    }

    /**************************************************************************************************************/
    #instock {
    }

    #instock .compl-title {
    }

    #instock .compl-title__text {
    }

    #instock .compl-title__compl {
    }

    #instock .compl-techs {
    }

    #instock .compl-tech-param {
    }

    #instock .compl-tech-param.param1 {
    }

    #instock .compl-tech-param.param2 {
    }

    #instock .compl-tech-param.param3 {
    }

    #instock .compl-tech-param.param4 {
    }

    #instock .compl-tech-param.param5 {
    }

    #instock .compl-tech-param.param6 {
    }

    #instock .compl-tech-text1 {
    }

    #instock .compl-tech-text2 {
    }

    .instock_title {
    }

    #filter_table {
    }

    .filter_quick_menu {
    }

    .filter_quick_menu li {
    }

    .filter_quick_menu li span {
    }

    .tb_complects {
    }

    .tb_complects tr {
    }

    .tb_complects.limit tr:nth-child(n + 5) {
    }

    .tb_complects tr:first-child {
    }

    .tb_complects tr th {
    }

    .tb_complects tr td {
    }

    .tb_complects_showmore {
    }

    .tb_complects tr .btns {
    }

    .tb_complects tr .btns .btn {
    }

    /****************************************************************************************************/
    .tradein {
    }

    .tradein__container {
    }

    .tradein__content {
    }

    .tradein__title {
    }

    .tradein__desc {
    }

    .tradein__form {
    }

    .tradein__img {
    }

    .tradein__img img {
    }

    /**************************************************************************************************************/
    .credit {
    }

    .credit__bg {
    }

    .credit__container {
    }

    .credit__content {
    }

    .credit__title {
    }

    .credit__desc {
    }

    .credit__form {
    }

    /**************************************************************************************************************/
    .contacts {
    }

    .contacts__container {
    }

    .contacts__title-main {
    }

    .contacts__content {
    }

    .contacts__img {
    }

    .contacts__img img {
    }

    .contacts__title {
    }

    .contacts__title-logo {
    }

    .contacts__title-logo img {
    }

    .contacts__title-text {
    }

    .contacts__info {
    }

    .contacts__info-item {
    }

    .contacts__info-item img {
    }

    .contacts__info-text {
    }

    .contacts__phone {
    }

    /**************************************************************************************************************/
    #map1 {
    }

    /**************************************************************************************************************/
    .footer {
    }

    .footer__container {
    }

    .footer__content {
    }

    .footer__dislamer-btn {
    }

    .footer__info {
    }

    .footer__madein {
    }

    .footer__policy {
    }

    .footer__disclamer {
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1536px) {
}

@media only screen and (min-width: 1280px) and (max-width: 1440px) {
    .addr {
    }

    .logo-block {
    }

    .logo {
    }

    .phone {
    }

    /*************************************************************************************************************************/
    .header {
    }

    .header__container {
    }

    .header__content {
    }

    .header__addr {
    }

    .header__addr-text {
    }

    .header__addr-text_sm {
    }

    .header__content-part {
    }

    .header__logo-block {
    }

    .header__logo {
    }

    .header__logo img {
    }

    .header__phone {
    }

    .header__phone-text {
    }

    .header__phone-text_sm {
    }

    .header__btn {
    }

    .menu-wrap {
    }

    .menu {
    }

    .menu__part {
    }

    .menu__part img {
    }

    .menu__item {
    }

    .menu__item-text {
    }

    .menu__item-text_sm {
    }

    /**************************************************************************************************************/
    .banner {
    }

    .banner__container {
    }

    .banner__content {
    }

    .banner__title-block {
    }

    .banner__title-profit {
    }

    .banner__title {
    }

    .banner__title b {
    }

    .banner__bg {
    }

    .banner__bg img {
    }

    /**************************************************************************************************************/
    .timer {
    }

    .timer__container {
    }

    .timer__content {
    }

    .timer__info {
    }

    .timer__title {
    }

    .timer__form {
    }

    .timer__form input {
    }

    .timer__timer {
    }

    .timer__timer div[id*="timer"] {
    }

    .timer__timer span[id*="timer"] {
    }

    /**************************************************************************************************************/
    .cars {
    }

    .car {
    }

    .car__container {
    }

    .car__content {
    }

    .car__info {
    }

    .car__title {
    }

    .car__profit {
    }

    .car__profit-text {
    }

    .car__props {
    }

    .car__props-item {
    }

    .car__image {
    }

    .car__image img {
    }

    .car__gallery {
    }

    .car__gallery .swiper-wrapper {
    }

    .car__gallery-item {
    }

    .car__btns {
    }

    .car__btn {
    }

    /**************************************************************************************************************/
    #instock {
    }

    .instock_title {
    }

    #instock .compl-title {
    }

    #instock .compl-title__text {
    }

    #instock .compl-title__compl {
    }

    #instock .compl-techs {
    }

    #instock .compl-tech-param {
    }

    #instock .compl-tech-param.param1 {
    }

    #instock .compl-tech-param.param2 {
    }

    #instock .compl-tech-param.param3 {
    }

    #instock .compl-tech-param.param4 {
    }

    #instock .compl-tech-param.param5 {
    }

    #instock .compl-tech-param.param6 {
    }

    #instock .compl-tech-text1 {
    }

    #instock .compl-tech-text2 {
    }

    #filter_table {
    }

    .filter_quick_menu {
    }

    .filter_quick_menu li {
    }

    .filter_quick_menu li span {
    }

    .tb_complects {
    }

    .tb_complects tr {
    }

    .tb_complects.limit tr:nth-child(n + 5) {
    }

    .tb_complects tr:first-child {
    }

    .tb_complects tr th {
    }

    .tb_complects tr td {
    }

    .tb_complects_showmore {
    }

    .tb_complects tr .btns {
    }

    .tb_complects tr .btns .btn {
    }

    /****************************************************************************************************/
    .tradein {
    }

    .tradein__container {
    }

    .tradein__content {
    }

    .tradein__title {
    }

    .tradein__desc {
    }

    .tradein__form {
    }

    .tradein__img {
    }

    .tradein__img img {
    }

    /**************************************************************************************************************/
    .credit {
    }

    .credit__bg {
    }

    .credit__container {
    }

    .credit__content {
    }

    .credit__title {
    }

    .credit__desc {
    }

    .credit__form {
    }

    /**************************************************************************************************************/
    .contacts {
    }

    .contacts__container {
    }

    .contacts__title-main {
    }

    .contacts__content {
    }

    .contacts__img {
    }

    .contacts__img img {
    }

    .contacts__title {
    }

    .contacts__title-logo {
    }

    .contacts__title-logo img {
    }

    .contacts__title-text {
    }

    .contacts__info {
    }

    .contacts__info-item {
    }

    .contacts__info-item img {
    }

    .contacts__info-text {
    }

    .contacts__phone {
    }

    /**************************************************************************************************************/
    #map1 {
    }

    /**************************************************************************************************************/
    .footer {
    }

    .footer__container {
    }

    .footer__content {
    }

    .footer__dislamer-btn {
    }

    .footer__info {
    }

    .footer__madein {
    }

    .footer__policy {
    }

    .footer__disclamer {
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1366px) {
    .container {
        max-width: 1082px;
        padding: 0 15px;
    }

    .addr {
    }

    .logo-block {
    }

    .logo {
    }

    .phone {
    }

    /*************************************************************************************************************************/
    .header {
    }

    .header__container {
    }

    .header__content {
    }

    .header__addr {
    }

    .header__addr-text {
    }

    .header__addr-text_sm {
    }

    .header__content-part {
    }

    .header__logo-block {
    }

    .header__logo {
    }

    .header__logo img {
    }

    .header__phone {
    }

    .header__phone-text {
    }

    .header__phone-text_sm {
    }

    .header__btn {
    }

    .menu-wrap {
    }

    .menu {
    }

    .menu__part {
    }

    .menu__part img {
    }

    .menu__item {
    }

    .menu__item-text {
    }

    .menu__item-text_sm {
    }

    /**************************************************************************************************************/
    .banner {
    }

    .banner__container {
    }

    .banner__content {
    }

    .banner__title-block {
    }

    .banner__title-profit {
    }

    .banner__title {
    }

    .banner__title b {
    }

    .banner__bg {
    }

    .banner__bg img {
    }

    /**************************************************************************************************************/
    .timer {
    }

    .timer__container {
    }

    .timer__content {
    }

    .timer__info {
    }

    .timer__title {
    }

    .timer__form {
    }

    .timer__form input {
    }

    .timer__timer {
    }

    .timer__timer div[id*="timer"] {
    }

    .timer__timer span[id*="timer"] {
    }

    /**************************************************************************************************************/
    .cars {
    }

    .car {
    }

    .car__container {
    }

    .car__content {
    }

    .car__info {
    }

    .car__title {
    }

    .car__profit {
    }

    .car__profit-text {
    }

    .car__props {
    }

    .car__props-item {
    }

    .car__image {
    }

    .car__image img {
    }

    .car__gallery {
    }

    .car__gallery .swiper-wrapper {
    }

    .car__gallery-item {
    }

    .car__btns {
    }

    .car__btn {
    }

    /**************************************************************************************************************/
    #instock {
    }

    #instock .compl-title {
    }

    #instock .compl-title__text {
    }

    #instock .compl-title__compl {
    }

    #instock .compl-techs {
    }

    #instock .compl-tech-param {
    }

    #instock .compl-tech-param.param1 {
    }

    #instock .compl-tech-param.param2 {
    }

    #instock .compl-tech-param.param3 {
    }

    #instock .compl-tech-param.param4 {
    }

    #instock .compl-tech-param.param5 {
    }

    #instock .compl-tech-param.param6 {
    }

    #instock .compl-tech-text1 {
    }

    #instock .compl-tech-text2 {
    }

    .instock_title {
    }

    #filter_table {
    }

    .filter_quick_menu {
    }

    .filter_quick_menu li {
    }

    .filter_quick_menu li span {
    }

    .tb_complects {
    }

    .tb_complects tr {
    }

    .tb_complects.limit tr:nth-child(n + 5) {
    }

    .tb_complects tr:first-child {
    }

    .tb_complects tr th {
    }

    .tb_complects tr td {
    }

    .tb_complects_showmore {
    }

    .tb_complects tr .btns {
    }

    .tb_complects tr .btns .btn {
    }

    /****************************************************************************************************/
    .tradein {
    }

    .tradein__container {
    }

    .tradein__content {
    }

    .tradein__title {
    }

    .tradein__desc {
    }

    .tradein__form {
    }

    .tradein__img {
    }

    .tradein__img img {
    }

    /**************************************************************************************************************/
    .credit {
    }

    .credit__bg {
    }

    .credit__container {
    }

    .credit__content {
    }

    .credit__title {
    }

    .credit__desc {
    }

    .credit__form {
    }

    /**************************************************************************************************************/
    .contacts {
    }

    .contacts__container {
    }

    .contacts__title-main {
    }

    .contacts__content {
    }

    .contacts__img {
    }

    .contacts__img img {
    }

    .contacts__title {
    }

    .contacts__title-logo {
    }

    .contacts__title-logo img {
    }

    .contacts__title-text {
    }

    .contacts__info {
    }

    .contacts__info-item {
    }

    .contacts__info-item img {
    }

    .contacts__info-text {
    }

    .contacts__phone {
    }

    /**************************************************************************************************************/
    #map1 {
    }

    /**************************************************************************************************************/
    .footer {
    }

    .footer__container {
    }

    .footer__content {
    }

    .footer__dislamer-btn {
    }

    .footer__info {
    }

    .footer__madein {
    }

    .footer__policy {
    }

    .footer__disclamer {
    }
}

/* tablets */

@media only screen and (min-width: 768px) and (max-width: 1112px) {
    .container {
        max-width: 930px;
    }

    .addr {
    }

    .logo-block {
    }

    .logo {
    }

    .phone {
    }

    /*************************************************************************************************************************/
    .header {
    }

    .header__container {
    }

    .header__content {
    }

    .header__addr {
    }

    .header__addr-text {
    }

    .header__addr-text_sm {
    }

    .header__content-part {
        width: 100%;
    }

    .header__logo-block {
        order: 1;
    }

    .header__logo {
    }

    .header__logo img {
    }

    .header__phone {
    }

    .header__phone-text {
    }

    .header__phone-text_sm {
    }

    .header__btn {
        order: 1;
    }

    .menu-wrap {
    }

    .menu {
    }

    .menu__part {
    }

    .menu__part img {
    }

    .menu__item {
    }

    .menu__item-text {
    }

    .menu__item-text_sm {
    }

    /**************************************************************************************************************/
    .banner {
    }

    .banner__container {
    }

    .banner__content {
    }

    .banner__title-block {
    }

    .banner__title-profit {
    }

    .banner__title {
    }

    .banner__title b {
    }

    .banner__bg {
    }

    .banner__bg img {
    }

    /**************************************************************************************************************/
    .timer {
    }

    .timer__container {
    }

    .timer__content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .timer__info {
    }

    .timer__title {
    }

    .timer__form {
    }

    .timer__form input {
    }

    .timer__timer {
    }

    .timer__timer div[id*="timer"] {
    }

    .timer__timer span[id*="timer"] {
    }

    /**************************************************************************************************************/
    .cars {
    }

    .car {
    }

    .car__container {
    }

    .car__content {
    }

    .car__info {
    }

    .car__title {
    }

    .car__profit {
    }

    .car__profit-text {
    }

    .car__props {
    }

    .car__props-item {
    }

    .car__image {
    }

    .car__image img {
    }

    .car__gallery {
        flex-direction: row;
        width: 100%;
        margin-top: 30px;
    }

    .car__gallery .swiper-wrapper {
    }

    .car__gallery-item {
    }

    .car__btns {
    }

    .car__btn {
    }

    /**************************************************************************************************************/
    #instock {
    }

    #instock .compl-title {
    }

    #instock .compl-title__text {
    }

    #instock .compl-title__compl {
    }

    #instock .compl-techs {
    }

    #instock .compl-tech-param {
    }

    #instock .compl-tech-param.param1 {
    }

    #instock .compl-tech-param.param2 {
    }

    #instock .compl-tech-param.param3 {
    }

    #instock .compl-tech-param.param4 {
    }

    #instock .compl-tech-param.param5 {
    }

    #instock .compl-tech-param.param6 {
    }

    #instock .compl-tech-text1 {
    }

    #instock .compl-tech-text2 {
    }

    .instock_title {
    }

    #filter_table {
    }

    .filter_quick_menu {
    }

    .filter_quick_menu li {
    }

    .filter_quick_menu li span {
    }

    .tb_complects {
    }

    .tb_complects tr {
        width: 100%;
    }

    .tb_complects.limit tr:nth-child(n + 5) {
    }

    .tb_complects tr:first-child {
    }

    .tb_complects tr th {
    }

    .tb_complects tr td {
    }

    .tb_complects_showmore {
    }

    .tb_complects tr .btns {
    }

    .tb_complects tr .btns .btn {
    }

    /****************************************************************************************************/
    .tradein {
    }

    .tradein__container {
    }

    .tradein__content {
    }

    .tradein__title {
    }

    .tradein__desc {
    }

    .tradein__form {
    }

    .tradein__img {
        left: -50%;
    }

    .tradein__img img {
    }

    /**************************************************************************************************************/
    .credit {
    }

    .credit__bg {
    }

    .credit__container {
    }

    .credit__content {
    }

    .credit__title {
    }

    .credit__desc {
    }

    .credit__form {
    }

    /**************************************************************************************************************/
    .contacts {
    }

    .contacts__container {
    }

    .contacts__title-main {
    }

    .contacts__content {
    }

    .contacts__img {
    }

    .contacts__img img {
    }

    .contacts__title {
    }

    .contacts__title-logo {
    }

    .contacts__title-logo img {
    }

    .contacts__title-text {
    }

    .contacts__info {
    }

    .contacts__info-item {
    }

    .contacts__info-item img {
    }

    .contacts__info-text {
    }

    .contacts__phone {
    }

    /**************************************************************************************************************/
    #map1 {
    }

    /**************************************************************************************************************/
    .footer {
    }

    .footer__container {
    }

    .footer__content {
    }

    .footer__dislamer-btn {
    }

    .footer__info {
    }

    .footer__madein {
    }

    .footer__policy {
    }

    .footer__disclamer {
    }
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .container {
        max-width: 738;
    }

    .addr {
    }

    .logo-block {
    }

    .logo {
    }

    .phone {
    }

    /*************************************************************************************************************************/
    .header {
    }

    .header__container {
        width: 100%;
    }

    .header__content {
        width: 100%;
    }

    .header__addr {
        display: none;
    }

    .header__addr-text {
    }

    .header__addr-text_sm {
    }

    .header__content-part {
    }

    .header__logo-block {
    }

    .header__logo {
    }

    .header__logo img {
    }

    .header__phone {
    }

    .header__phone-text {
    }

    .header__phone-text_sm {
    }

    .header__btn {
    }

    .menu-wrap {
    }

    .menu {
    }

    .menu__part {
        gap: 15px;
    }

    .menu__part img {
    }

    .menu__item {
    }

    .menu__item-text {
    }

    .menu__item-text_sm {
    }

    /**************************************************************************************************************/
    .banner {
    }

    .banner__container {
    }

    .banner__content {
    }

    .banner__title-block {
    }

    .banner__title-profit {
    }

    .banner__title {
    }

    .banner__title .title1 {
        font-size: 32px;
    }

    .banner__title b {
    }

    .banner__bg {
    }

    .banner__bg img {
    }

    .slide2 .banner__content {
        position: absolute;
        top: 8vw;
        padding: 0;
    }

    .slide2 .banner__content .title1 {
        font-size: 5vw;
    }


    /**************************************************************************************************************/
    .timer {
    }

    .timer__container {
    }

    .timer__content {
    }

    .timer__info {
    }

    .timer__title {
    }

    .timer__form {
    }

    .timer__form input {
    }

    .timer__timer {
    }

    .timer__timer div[id*="timer"] {
    }

    .timer__timer span[id*="timer"] {
    }

    /**************************************************************************************************************/
    .cars {
    }

    .car {
    }

    .car__container {
    }

    .car__content {
    }

    .car__info {
    }

    .car__title {
    }

    .car__profit {
    }

    .car__profit-text {
    }

    .car__props {
    }

    .car__props-item {
    }

    .car__image {
    }

    .car__image img {
    }

    .car__gallery {
        margin-top: 0;
        flex-direction: column;
    }

    .car__gallery .swiper-wrapper {
    }

    .car__gallery-item {
    }

    .car__btns {
    }

    .car__btn {
    }

    .car_date {
        left: unset;
        right: 30px;
    }

    /**************************************************************************************************************/
    #instock {
    }

    #instock .compl-title {
    }

    #instock .compl-title__text {
    }

    #instock .compl-title__compl {
    }

    #instock .compl-techs {
    }

    #instock .compl-tech-param {
    }

    #instock .compl-tech-param.param1 {
    }

    #instock .compl-tech-param.param2 {
    }

    #instock .compl-tech-param.param3 {
    }

    #instock .compl-tech-param.param4 {
    }

    #instock .compl-tech-param.param5 {
    }

    #instock .compl-tech-param.param6 {
    }

    #instock .compl-tech-text1 {
    }

    #instock .compl-tech-text2 {
    }

    .instock_title {
    }

    #filter_table {
    }

    .filter_quick_menu {
    }

    .filter_quick_menu li {
    }

    .filter_quick_menu li span {
    }

    .tb_complects {
    }

    .tb_complects tr {
    }

    .tb_complects.limit tr:nth-child(n + 5) {
    }

    .tb_complects tr:first-child {
    }

    .tb_complects tr th {
    }

    .tb_complects tr td {
    }

    .tb_complects_showmore {
    }

    .tb_complects tr .btns {
    }

    .tb_complects tr .btns .btn {
    }

    /****************************************************************************************************/
    .tradein {
    }

    .tradein__container {
    }

    .tradein__content {
    }

    .tradein__title {
    }

    .tradein__desc {
    }

    .tradein__form {
    }

    .tradein__img {
    }

    .tradein__img img {
    }

    /**************************************************************************************************************/
    .credit {
    }

    .credit__bg {
    }

    .credit__container {
    }

    .credit__content {
    }

    .credit__title {
    }

    .credit__desc {
    }

    .credit__form {
    }

    /**************************************************************************************************************/
    .contacts {
    }

    .contacts__container {
    }

    .contacts__title-main {
    }

    .contacts__content {
    }

    .contacts__img {
    }

    .contacts__img img {
    }

    .contacts__title {
    }

    .contacts__title-logo {
    }

    .contacts__title-logo img {
    }

    .contacts__title-text {
    }

    .contacts__info {
    }

    .contacts__info-item {
    }

    .contacts__info-item img {
    }

    .contacts__info-text {
    }

    .contacts__phone {
    }

    /**************************************************************************************************************/
    #map1 {
    }

    /**************************************************************************************************************/
    .footer {
    }

    .footer__container {
    }

    .footer__content {
    }

    .footer__dislamer-btn {
    }

    .footer__info {
    }

    .footer__madein {
    }

    .footer__policy {
    }

    .footer__disclamer {
    }
}

/* mobiles */

@media only screen and (max-width: 767px) {
    .container {
        max-width: 610px;
        padding: 0 15px;
    }

    .fancybox-type-image {
        width: 100% !important;
        margin: 0px !important;
        left: 0px !important;
    }

    .fancybox-close {
        right: 9px !important;
        top: 9px !important;
    }

    .fancybox-inner {
        width: 100% !important;
        margin: 0px !important;
        padding: 0px !important;
    }

    .fancybox-wrap {
        margin: 0px !important;
        width: 100% !important;
        left: 0px !important;
        top: 20px !important;
    }

    .fancybox-type-image .fancybox-close {
        top: -8px !important;
    }

    .simple_slider .btn_left {
        display: none !important;
    }

    .simple_slider .btn_right {
        display: none !important;
    }

    .popup_container {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

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

    form .form-group-wrapper .form-group {
        width: 100%;
    }

    /************************************************************************/
    .header .mob-menu-btn {
        display: block;
        position: absolute;
        width: 30px;
        height: 22px;
        z-index: 11;
        right: 15px;
        top: 37px;
    }

    .header .mob-menu-btn span {
        position: absolute;
        display: block;
        width: 30px;
        height: 3px;
        background: #fff;
        transition: all 0.2s linear;
    }

    .header .mob-menu-btn span:nth-child(1) {
        top: 0;
    }

    .header .mob-menu-btn span:nth-child(2) {
        top: calc(50% - 1px);
        opacity: 1;
    }

    .header .mob-menu-btn span:nth-child(3) {
        bottom: 0;
    }

    .header .mob-menu-btn.active span:nth-child(1) {
        transform-origin: top right;
        transform: rotate(-45deg);
        top: -1px;
    }

    .header .mob-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .header .mob-menu-btn.active span:nth-child(3) {
        transform-origin: bottom right;
        transform: rotate(45deg);
        bottom: -1px;
    }

    .addr {
        display: none;
    }

    .logo-block {
    }

    .logo {
    }

    .phone {
    }

    /*************************************************************************************************************************/
    .header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }

    .header__container {
    }

    .header__content {
        position: relative;
    }

    .header__addr {
    }

    .header__addr-text {
    }

    .header__addr-text_sm {
    }

    .header__content-part {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .header__logo-block {
    }

    .header__logo {
    }

    .header__logo img {
    }

    .header__phone {
        margin-right: 70px;
        margin: 0;
        position: fixed;
        bottom: 50px;
        right: 15px;
        z-index: 10;
        width: 42px;
        height: 42px;
        background: url(../img/ico-phone-mob.svg) 50% no-repeat;
    }

    .header__phone-text {
        display: none;
    }

    .header__phone-text_sm {
    }

    .header__btn {
        height: 34px;
    }

    .menu-wrap {
        display: none;
        position: absolute;
        left: 100%;
        padding: 24px 10px;
        width: 100%;
        transition: all 0.3s linear;
    }

    .menu-wrap.active {
        left: 0;
        display: block;

    }

    .menu {
        flex-direction: column;
        gap: 15px;
    }

    .menu__part {
        flex-direction: column;
    }

    .menu__part img {
        display: none;
    }

    .menu__item {
        flex-direction: column-reverse;
    }

    .menu__item-text {
    }

    .menu__item-text_sm {
    }

    /**************************************************************************************************************/
    .banner {
        padding-top: 160px;
    }

    .banner__container {
    }

    .banner__content {
        /* position: static; */
        /* color: #fff; */
        bottom: unset;
        top: 174px;
        padding: 15px;
    }

    .banner__title-block {
    }

    .banner__title-profit {
        font-size: 3.7vw;
        padding: 4vw 4vw 4vw 13vw;
    }

    .banner__title-profit:after {
        top: 2.6vw;
        left: 4.1vw;
        transform: scale(0.7);
    }

    .banner__title-profit:before {
        /* display: none; */
        transform: scale(0.7);
        top: 0vw;
        left: 1.4vw;
    }

    .banner__title {
        padding: 0;
        /* font-size: 8vw; */
        font-size: 4.8vw;
    }

    .banner__title .br_mob {
        display: block;
    }

    .banner__title b {
    }

    .banner__bg {
        left: 0;
        transform: unset;
        width: 100%;
    }

    .banner .swiper-button-prev, .banner .swiper-button-next {
        top: 65%;
        width: 35px;
        height: 35px;
        background-size: 100% !important;
        left: 15px;
    }

    .banner .swiper-button-next {
        left: unset;
        right: 15px;
    }

    .banner__bg img {
    }

    .banner_description {
        font-size: 10px;
        bottom: 28px;
    }

    .slide2 .banner__content {
        position: relative;
        top: 0;
        padding: 0;
        padding-bottom: 4vw;
    }

    .slide2 .banner__content .title1 {
        font-size: 5vw;
    }

    .slide2 .banner__content .title1 .br_mob {
        display: block;
    }

    .banner.swiper-horizontal > .swiper-pagination-bullets {
        bottom: 0;
    }

    .slide3 .banner__content {
        position: relative;
        top: 0;
        padding: 0;
        padding-bottom: 4vw;
    }

    .slide3 .banner__content .title1 {
        font-size: 5vw;
        padding: 15px;
        background: none;
    }

    .run_now_cont {
        font-size: 16px;
        padding: 10px;
        padding-top: 15px;
    }
    .run_now_cont div:before {
        width: 10px;
        height: 10px;
    }

    .banner__title-block {
        padding: 20px 15px 0;
        border-radius: 30px;
    }

    .banner__title .title1 {
        font-size: 6vw;
    }

    .banner__title .title1 br {
        display: none;
    }

    .banner__title .title1 b {
        font-size: 7vw;
    }

    .banner__title .title2 {
        font-size: 5vw;
    }

    .banner__title .title3 {
        font-size: 4vw;
        margin-bottom: -20px;
        padding-left: 55px;
    }

    .banner__title .title3:before {
        width: 8.5vw;
        height: 8.5vw;
        background-size: 100%;
    }

    /**************************************************************************************************************/
    .timer {
        padding: 0;
    }

    .timer__container {
    }

    .timer__content {
        flex-direction: column-reverse;
        gap: 0;
    }

    .timer__info {
    }

    .timer__title {
        text-align: center;
        font-size: 5vw;
    }

    .timer__form {
    }

    .timer__form input {
    }

    .timer__timer {
        transform: scale(0.5);
    }

    .timer__timer div[id*="timer"] {
    }

    .timer__timer span[id*="timer"] {
    }

    /**************************************************************************************************************/
    .cars {
        padding-top: 80px;
    }

    .car {
    }

    .car__container {
    }

    .car__content {
        padding: 25px 15px;
        border-radius: 50px;
    }

    .car__info {
        position: relative;
        z-index: 1;
    }

    .car__title {
        font-size: 9vw;
        margin-bottom: 47vw;
    }

    .car__profit {
        font-size: 18px;
    }

    .car__profit:after {
        top: -8px;
    }

    .car__profit-text {
    }

    .car__props {
    }

    .car__props-item {
    }

    .car__image {
        position: absolute;
        top: 12vw;
        padding: 0 15px;
    }

    .car__image img {
    }

    .car__gallery {
        flex-direction: row;
        max-width: 100%;
        margin-top: 24px;
    }

    .car__gallery .swiper-wrapper {
    }

    .car__gallery-item {
    }

    .car__btns {
        flex-direction: column;
        gap: 10px;
    }

    .car__btn {
    }

    .car_date {
        font-size: 4vw;
        margin-bottom: -20px;
        padding-left: 55px;
        top: -20px;
        left: unset;
        right: 10px;
    }

    .car_date:before {
        width: 8.5vw;
        height: 8.5vw;
        background-size: 100%;
        top: 3px;
    }

    /**************************************************************************************************************/
    #instock {
        margin-top: 50px;
    }

    #instock .compl-title {
        flex-wrap: wrap;
        gap: 10px;
    }

    #instock .compl-title__text {
        font-size: 8vw;
        /* width: 100%; */
    }

    #instock .compl-title__compl {
        font-size: 6vw;
        width: auto;
        padding: 7px 15px;
    }

    #instock .compl-techs {
        row-gap: 5px;
    }

    #instock .compl-tech-param {
        width: 48%;
        padding-left: 0;
        border: none;
    }

    #instock .compl-tech-param.param1 {
    }

    #instock .compl-tech-param.param2 {
    }

    #instock .compl-tech-param.param3 {
    }

    #instock .compl-tech-param.param4 {
    }

    #instock .compl-tech-param.param5 {
    }

    #instock .compl-tech-param.param6 {
    }

    #instock .compl-tech-text1 {
        padding-bottom: 2px;
    }

    #instock .compl-tech-text2 {
    }

    .instock_title {
        font-size: 8vw;
        text-align: center;
    }

    #filter_table {
    }

    .filter_quick_menu {
        padding: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .filter_quick_menu li {
    }

    .filter_quick_menu li span {
    }

    .tb_complects {
        margin-top: 24px;
    }

    .tb_complects tr {
        width: 100%;
        padding: 24px 15px;
    }

    .tb_complects.limit tr:nth-child(n + 5) {
    }

    .tb_complects tr:first-child {
    }

    .tb_complects tbody {
        gap: 24px 0;
    }

    .tb_complects tr th {
    }

    .tb_complects tr td {
    }

    .tb_complects_showmore {
    }

    .tb_complects tr .btns {
    }

    .tb_complects tr .btns .btn {
    }

    /****************************************************************************************************/
    .tradein {
        margin-top: 50px;
    }

    .tradein__container {
    }

    .tradein__content {
    }

    .tradein__title {
        font-size: 8vw;
        padding: 24px 0 24px 0;
        text-align: center;
    }

    .tradein__desc {
        text-align: center;
        padding-right: 0;
        font-size: 5vw;
    }

    .tradein__form {
        max-width: 100%;
        padding: 0 15px;
        margin: 0;
    }

    .tradein__img {
        display: none;
    }

    .tradein__img img {
    }

    /**************************************************************************************************************/
    .credit {
    }

    .credit__bg {
        width: 100%;
        left: unset;
        transform: unset;
    }

    .credit__container {
    }

    .credit__content {
        position: static;
    }

    .credit__title {
        text-align: center;
        font-size: 8vw;
        margin-top: 24px;
    }

    .credit__desc {
        font-size: 5vw;
        text-align: center;
        margin-top: 24px;
    }

    .credit__form {
    }

    /**************************************************************************************************************/
    .contacts {
        margin-top: 50px;
    }

    .contacts__container {
    }

    .contacts__title-main {
        font-size: 8vw;
        text-align: center;
    }

    .contacts__content {
        position: static;
        margin-top: 24px;
    }

    .contacts__img {
    }

    .contacts__img img {
    }

    .contacts__title {
    }

    .contacts__title-logo {
    }

    .contacts__title-logo img {
    }

    .contacts__title-text {
    }

    .contacts__info {
    }

    .contacts__info-item {
    }

    .contacts__info-item img {
    }

    .contacts__info-text {
    }

    .contacts__phone {
    }

    /**************************************************************************************************************/
    #map1 {
        margin-left: 0;
        width: 100%;
        max-width: none;
        height: 350px;
        background-position: 50% 50% !important;
        margin-top: 50px;
    }

    /**************************************************************************************************************/
    .footer {
    }

    .footer__container {
    }

    .footer__content {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-evenly;
    }

    .footer__dislamer-btn {
    }

    .footer__info {
    }

    .footer__madein {
    }

    .footer__policy {
    }

    .footer__disclamer {
    }

    /************************************************************************/
}

@media only screen and (max-width: 640px) {
}

@media only screen and (max-width: 592px) {
}

@media only screen and (max-width: 568px) {
    .banner__content {
        top: 20px;
    }
}

@media only screen and (max-width: 480px) {
}

@media only screen and (max-width: 414px) {
}

@media only screen and (max-width: 375px) {
}

@media only screen and (max-width: 360px) {
}

@media only screen and (max-width: 320px) {
}

/* **************************************************************************************************************************************** */

/* media END*/
