/* import fonts */

@font-face {
    font-family: 'Roboto'; 
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';   
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';   
    src: url('../fonts/Roboto-Black.woff2') format('woff2'),
        url('../fonts/Roboto-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';   
    src: url('../fonts/Roboto-Thin.woff2') format('woff2'),
        url('../fonts/Roboto-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.woff2') format('woff2'),
        url('../fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';   
    src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
        url('../fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

/* 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: 1px solid #86868B;
    box-shadow: none;
    border-radius: 15px;
    padding: 5px 15px;
    background: #fff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

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: 1px solid #cccccc;
}

.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: .8em;
}

sup {
    top: -5px;
}

sub {
    bottom: -2px;
}

pre {
    font: inherit;
}

/* css reset END */

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


/* common styles */



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

.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;
    justify-content: space-between;
}

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

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

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

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

form.form_white input::-moz-placeholder { color: #cccccc; }
form.form_white input::-webkit-input-placeholder { color: #cccccc; }
form.form_white input:-ms-input-placeholder { color: #cccccc; }
form.form_white input::placeholder { color: #cccccc; } 

form.form_white input, form.form_white select, form.form_white textarea {}

form.form_white input {}
form.form_white select {}
form.form_white textarea {}

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

#form_popup { display:none; }

.popup_container {width: 520px;max-width:100%;padding: 5px 29px;overflow: hidden !important;position: relative;box-sizing: border-box;background: white;text-align: center;padding-bottom: 30px;}

.alert.fancybox-content {
    overflow: hidden;
}

.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;
}

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

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

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

.main {}

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



.title {
    font-size: 48px;
    text-align: center;
    font-weight: 700;
}

.title_white {}

.subtitle {}

.logo-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {}

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

.phone {
    padding-left: 30px;
    background: url(../img/ico__phone.svg) 0 50% no-repeat;
}

.clock {
    padding-left: 30px;
    background: url(../img/ico__clock.svg) 0 50% no-repeat;
}


.btn {
    background: #1D1D1D;
    color: white;
    text-align: center;
    width: 200px;
    display: flex;
    align-items: center;
    border: 1px solid #1D1D1D;
    border-radius: 15px;
    position: relative;
    text-decoration: none;
    transition:  all .2s linear;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

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

.btn:hover {
    background-color: #4E4E50;
    border-color: #4E4E50;    
    color: #fff;
}




.btn_white {
    background-color: #fff;
    border-color: #fff;    
    color: #1D1D1D;
}

.btn_white:hover {
    background-color: #86868B;
    border-color: #86868B;    
    color: #fff;
}


.btn_glass {
    background-color: transparent;
    border-color: #1D1D1D;    
    color: #1D1D1D;
}

.btn_glass:hover {
    background-color: #86868B;
    border-color: #86868B;    
    color: #fff;
}

/* common styles END */



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




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

.header {
    background: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    position: fixed;
    width: 100%;
    z-index: 10;
    left: 0;
}
.header__container {}
.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}
.header__logo-block {}
.header__logo {}

.header__logo:last-child {
    padding-left: 15px;
    border-left: 1px solid #1D1D1D;
}
.header__logo img {}
.header__addr {}
.header__phone {}
.header__btn {}
.header__menu {
    background: #F4F4F4;
    padding: 15px 0;
}
.menu__content {
    display: flex;
    justify-content: space-between;
}
.menu {
    display: flex;
    gap: 40px;
}
.menu__item {
    transition: all .3s linear;
}

.anchor.menu__item:hover {
    color: #4E4E50;
}


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


.intro {
    padding-top: 95px;
}
.intro__slider {}
.intro__content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.intro__container {
    position: relative;
}
.intro__title-block {
    text-align: center;
    margin-top: 80px;
}
.intro__title {}
.intro__title_1 {
    font-size: 48px;
    font-weight: 700;
}
.intro__title_2 {
    font-weight: 700;
    font-size: 36px;
    margin-top: 5px;
}
.intro__btn {
    margin: 0 auto;
    margin-top: 15px;
    width: 250px;
}
.intro__adv {
    position: absolute;
    text-align: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
    padding: 20px 15px;
    border-radius: 50px;
    border: 3px solid #fff;
    transform: rotate(5deg);
    box-shadow: 0 0 4px 5px #96edffd6, inset 0 0 4px 5px #96edffd6;
    top: -10px;
    right: 0;
    text-decoration: none;
}
.intro__adv:hover {
    color: #fff;
}
.intro__adv-img {
    transform: rotate(-5deg);
}
.intro__adv-img img {}
.intro__adv-text {
    text-shadow: 0px 0px 12px #96edffd6;
    font-weight: 700;
}
.intro__bg {}
.intro__bg img {
    border-radius: 0 0 25px 25px;
}

/* .intro .swiper-wrapper {}
.intro .swiper-slide {}
.intro__pag {}
.intro__slider-arrows {}
.intro__slider-arrow-prev {}
.intro__slider-arrow-next {} */


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


.timer {}
.timer__container {}
.timer__content {
    background: #fff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    margin-top: -45px;
    position: relative;
}
.timer__main {}
.timer__title {}
.timer__timer {}
.timer__timer div[id*="timer"] {}
.timer__timer span[id*="timer"] {}
.timer__form {
    width: 100%;
    max-width: 565px;
}
.timer__form .form_title {
    font-size: 24px;
    text-align: left;
}


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

.cars {
    margin-top: 120px;
}
.cars__container {}
.cars__title {}
.cars__menu {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}
.cars__menu .menu__item {
    position: relative;
    background: url(../img/bg__car-menu.png) 50% no-repeat;
    background-size: 100%;
    padding: 40px;
    padding-bottom: 20px;
}
.cars__menu .menu__item-img {}
.cars__menu .menu__item-img img {}
.cars__menu .menu__item-text {
    position: absolute;
    top: 11px;
    left: 17px;
    background: #1D1D1D;
    color: #fff;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 700;
    padding: 7px 21px;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}
.cars__menu .menu__item:hover .menu__item-text {
    background-color: #4E4E50;
}
.cars__content {}
.car {
    margin-top: 120px;
}
.car__main {
    position: relative;
    padding: 30px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    background: #fff;
    border-radius: 25px;
    z-index: 1;
}
.car__bg1 {
    position: absolute;
    top: 0;
    left: calc(50% - 225px);
    z-index: -1;
}
.car__bg1 img {}
.car__bg2 {
    position: absolute;
    top: 0;
    left: 0;
}
.car__bg2 img {}
.car__bg3 {
    position: absolute;
    bottom: 0;
    left: 0;
}
.car__bg3 img {}
.car__info {
    position: relative;
}
.car__title {
    background-image: linear-gradient(90deg, #86868B 0%, #BCBCC7 50%, #86868B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: inherit;
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
}
.car__props {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.car__props-item {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 17px;
    cursor: pointer;
}
.car__props-ico {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    /* background: #1D1D1D; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.car__props-ico:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #1d1d1d;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}

.car__props-item:hover .car__props-ico:after {
    background: #4E4E50;
}

.car__props-ico:before {
    content: "";
    display: block;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    position: absolute;
    top: -10%;
    left: -10%;
    background: linear-gradient(135deg, #86868B 16%, #B3B3BB 86%);
    z-index: -1;
}
.car__props-ico img {}
.car__props-text {}
.car__techs {
    margin-top: 80px;
    display: flex;
    gap: 25px;
}
.car__techs-item {}
.car__techs-val {
    background: linear-gradient(90deg, #1D1D1D 0%, #86868B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: inherit;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
}
.car__techs-name {
    color: #86868B;
    font-size: 14px;
}
.car__image {
    margin-left: -43px;
    padding-right: 40px;
}
.car__img {}
.car__img img {}
.car__color-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-left: 20%;
}
.color-dots__item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
}
.color-dots__item.active:before,
.color-dots__item:hover:before {
    content: "";
    width: calc(126%);
    height: calc(126%);
    position: absolute;
    top: -13%;
    left: -13%;
    background: #86868B;
    z-index: -1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.car__gallery-wrapper {
    position: relative;
}
.car__gallery {
    height: 426px;
    margin: 0 !important;
    width: 180px;
}
.car__gallery .swiper-wrapper {
}
.car__gallery-item {
    border-radius: 15px;
    overflow: hidden;
}
.car__gallery-item img {
    /* border-radius: 15px; */
    transition: all .5s linear;
}

.car__gallery-item:hover img {
    transform: scale(1.1);
}
.car__gallery-slider-arrows {}
.car__gallery-slider-arrow {
    display: block !important;
    width: 45px !important;
    height: 45px !important;
    background: url(../img/arrow__car-gallery_prev.svg) 50% no-repeat #1d1d1d;
    border-radius: 50%;
    left: calc(50% - 22px) !important;
    z-index: 1 !important;
}
.car__gallery-slider-arrow:after {display: none;}
.car__gallery-slider-arrow-prev {
    top: 0px !important;
}
.car__gallery-slider-arrow-next {
    top: unset !important;
    bottom: -25px !important;
    transform: scaleY(-1);
}
.car__btns {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.car__btn {
    width: 32%;
}


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


.instock {
    margin-top: 120px;
}
.instock__container {}
.instock_title {}
.instock__tabs {
    display: flex;
    border-radius: 50px;
    background: #fff;
    width: 100%;
    max-width: 628px;
    padding: 10px;
    margin-top: 60px;
}
.instock__tabs-item {
    height: 54px;
    color: #1D1D1D;
    background: transparent;
    border-radius: 50px;
    width: 230px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.instock__tabs-item:hover, .instock__tabs-item.active {
    background: #1D1D1D;
    color: #fff;
}
.instock__tabs-item-name {}
.instock__items {}
.instock__item {
    margin-top: 90px;
    background: #fff;
    position: relative;
    border-radius: 25px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
}
.instock__item-bg1 {
    position: absolute;
    top: 0;
    left: 15%;
    z-index: -1;
}
.instock__item-bg1 img {}
.instock__item-bg2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.instock__item-bg2 img {}
.instock__item-info {
    width: 100%;
    max-width: 510px;
}
.instock__item-name {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 75%;
}
.instock__item-model {
    font-size: 40px;
}
.instock__item-compl {
    font-size: 40px;
    font-weight: 700;
    color: #86868B;
}
.instock__profit {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 34px;
}
.instock__profit-ico {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    /* background: #1D1D1D; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.instock__profit-ico:before {
    content: "";
    display: block;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    position: absolute;
    top: -10%;
    left: -10%;
    background: linear-gradient(135deg, #86868B 16%, #B3B3BB 86%);
    z-index: -1;
}
.instock__profit-ico:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #1d1d1d;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}
.instock__profit-text {}
.instock__techs {
    margin-top: 51px;
    display: flex;
    gap: 22px;
}
.instock__techs-item {}
.instock__techs-name {color: #86868B;}
.instock__techs-val {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.instock__techs-val-ico {}
.instock__techs-val-ico img {}
.instock__techs-val-text {}
.instock__techs-item {
    padding-left: 22px;
    position: relative;
}

.instock__techs-item:first-child {
    padding: 0;
}

.instock__techs-item:before {
    content: "";
    display: block;
    width: 1px;
    height: 85%;
    background: linear-gradient(90deg, #1D1D1D 0%, #86868B 100%);
    position: absolute;
    left: 0;
    top: 6%;
}

.instock__techs-item:first-child:before {
    display: none;
}
.instock__techs-name {}
.instock__techs-val {}
.instock__techs-val-ico {}
.instock__techs-val-ico img {}
.instock__techs-val-text {}
.instock__item-image-block {
    margin-top: -6%;
}
.instock__item-img {}
.instock__item-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.instock__btn {
    width: 48%;
}


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


.pay-type {
    margin-top: 120px;
}
.pay-type__container {}
.pay-type__content {
    display: flex;
    justify-content: space-between;
}


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


.tradein {}
.tradein__img {}
.tradein__img img {}
.tradein__main {
    background: url(../img/bg__tradein_2.png);
    background-size: 100%;
    border-radius: 25px;
    padding: 40px;
    padding-top: 145px;
    margin-top: -132px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px 6px #00000009;
}
.tradein__title {
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    font-size: 48px;
    background: url(../img/bg__tradein-title.svg)  50% no-repeat;
    padding: 18px 83px 16px 40px;
}
.tradein__form {}
.tradein__form .form_title {
    text-align: left;
    font-size: 20px;
}


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


.credit {}
.credit__img {}
.credit__img img {}
.credit__main {
    background: url(../img/bg__credit_2.png);
    background-size: 100%;
    border-radius: 25px;
    padding: 40px;
    padding-top: 145px;
    margin-top: -132px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px 6px #00000009;
}
.credit__title {
    position: absolute;
    color: #fff;
    top: 0;
    right: 0;
    font-size: 48px;
    background: url(../img/bg__credit-title.svg)  50% no-repeat;
    padding: 18px 54px 16px 114px;
}
.credit__form {}
.credit__form .form_title {
    text-align: left;
    font-size: 20px;
}


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


.testdrive {
    margin-top: 120px;
}
.testdrive__container {}
.testdrive__img {}
.testdrive__img img {
    border-radius: 25px;
}
.testdrive__content {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 80px);
    margin: 0 auto;
    margin-top: -17%;
}
.testdrive__subimg {
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #fff;
    box-shadow: 0 0 10px 6px #00000009;
}
.testdrive__subimg img {}
.testdrive__subimg_1 {}
.testdrive__subimg_1 img {}
.testdrive__subimg_2 {}
.testdrive__subimg_2 img {}
.testdrive__main {
    padding: 40px;
    width: 53%;
    background: url(../img/bg__testdrive.png) 50% 100% no-repeat;
    background-size: auto 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 13%;
    box-shadow: 0 0 10px 6px #00000009;
    border-radius: 25px;
}
.testdrive__title {
    position: absolute;
    color: #fff;
    top: 0;
    right: 0;
    font-size: 48px;
    background: url(../img/bg__credit-title.svg) 100% no-repeat;
    background-size: 100%;
    padding: 18px 40px 16px 60px;
}
.testdrive__form {}
.testdrive__form .form_title {
    text-align: left;
}


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

.contacts {
    margin-top: 120px;
}
.contacts__container {}
.contacts__container {}
.contacts__content {
    background: url(../img/bg__contacts.png) 100% 101% no-repeat #FFF;
    padding: 40px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}
.contacts__logo {}
.contacts__logo img {}
.contacts__addr {}
.contacts__phone {}
.contacts__clock {}
.contacts__btn {}


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



#map1 {
    height: 500px;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    border-radius: 25px;
    overflow: hidden;
}


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



.footer {
    padding: 40px 0;
    color: inherit;
    font-size: 14px;
    background: #1d1d1d;
    color: #fff;
    margin-top: 120px;
    border-radius: 25px 25px 0 0;
}
.footer__container {}
.footer__content {
    display: flex;
    justify-content: space-between;
}
.footer__copyright {}
.footer__dislamer-btn {
    color: inherit;
    text-decoration: none;
}
.footer__comp-info {}
.footer__links {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.footer__madein {}
.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: 1366px) { 
    .container {
        max-width: 1082px;
        padding: 0 15px;
    }
}

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

    
.header {}
.header__container {}
.header__content {}
.header__logo-block {
    width: 19%;
}
.header__logo {}
.header__logo img {}
.header__addr {}
.header__phone {}
.header__btn {}
.header__menu {}
.menu__content {}
.menu {}
.menu__item {}


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


.intro {
}
.intro__slider {}
.intro__content {}
.intro__container {}
.intro__title-block {}
.intro__title {}
.intro__title_1 {
    font-size: 3vw;
}
.intro__title_2 {
    font-size: 2.3vw;
}
.intro__adv {
    transform: rotate(5deg) scale(.7);
}
.intro__btn {}
.intro__adv-img {}
.intro__adv-img img {}
.intro__adv-text {}
.intro__bg {}
.intro__bg img {}

/* .intro .swiper-wrapper {}
.intro .swiper-slide {}
.intro__pag {}
.intro__slider-arrows {}
.intro__slider-arrow-prev {}
.intro__slider-arrow-next {} */


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


.timer {}
.timer__container {}
.timer__content {
    flex-direction: column;
    gap: 20px;
}
.timer__main {}
.timer__title {}
.timer__timer {}
.timer__timer div[id*="timer"] {}
.timer__timer span[id*="timer"] {}
.timer__form {}
.timer__form .form_title {
    text-align: center;
}


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

.cars {}
.cars__container {}
.cars__title {}
.cars__menu {}
.cars__menu .menu__item {}
.cars__menu .menu__item-img {}
.cars__menu .menu__item-img img {}
.cars__menu .menu__item-text {}
.cars__content {}
.car {}
.car__main {}
.car__bg1 {}
.car__bg1 img {}
.car__bg2 {}
.car__bg2 img {}
.car__bg3 {}
.car__bg3 img {}
.car__info {}
.car__title {}
.car__props {}
.car__props-item {}
.car__props-ico {}
.car__props-ico img {}
.car__props-text {}
.car__techs {}
.car__techs-item {}
.car__techs-val {}
.car__techs-name {}
.car__image {
    position: relative;
}
.car__img {}
.car__img img {}
.car__color-dots {}
.color-dots__item {}
.color-dots__item.active,
.color-dots__item:hover {}
.car__gallery {
}
.car__gallery .swiper-wrapper {}
.car__gallery-item {}
.car__gallery-item img {}
.car__gallery-slider-arrows {}
.car__gallery-slider-arrow {
}
.car__gallery-slider-arrow:after {}
.car__gallery-slider-arrow-prev {}
.car__gallery-slider-arrow-next {
}
.car__btns {}
.car__btn {}


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


.instock {}
.instock__container {}
.instock_title {}
.instock__tabs {}
.instock__tabs-item {}
.instock__tabs-item-name {}
.instock__items {}
.instock__item {}
.instock__item-bg1 {}
.instock__item-bg1 img {}
.instock__item-bg2 {}
.instock__item-bg2 img {}
.instock__item-info {}
.instock__item-name {}
.instock__item-model {}
.instock__item-compl {}
.instock__profit {}
.instock__profit-ico {}
.instock__profit-text {}
.instock__techs {}
.instock__techs-item {}
.instock__techs-name {}
.instock__techs-val {}
.instock__techs-val-ico {}
.instock__techs-val-ico img {}
.instock__techs-val-text {}
.instock__techs-item {}
.instock__techs-name {}
.instock__techs-val {}
.instock__techs-val-ico {}
.instock__techs-val-ico img {}
.instock__techs-val-text {}
.instock__item-image-block {}
.instock__item-img {}
.instock__item-btns {}
.instock__btn {}


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


.pay-type {}
.pay-type__container {}
.pay-type__content {}


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


.tradein {}
.tradein__img {}
.tradein__img img {}
.tradein__main {}
.tradein__title {}
.tradein__form {}
.tradein__form .form_title {}


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


.credit {}
.credit__img {}
.credit__img img {}
.credit__main {}
.credit__title {}
.credit__form {}
.credit__form .form_title {}


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


.testdrive {}
.testdrive__container {}
.testdrive__img {}
.testdrive__img img {}
.testdrive__content {}
.testdrive__subimg {}
.testdrive__subimg img {}
.testdrive__subimg_1 {}
.testdrive__subimg_1 img {}
.testdrive__subimg_2 {}
.testdrive__subimg_2 img {}
.testdrive__main {}
.testdrive__title {}
.testdrive__form {}
.testdrive__form .form_title {}


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

.contacts {}
.contacts__container {}
.contacts__container {}
.contacts__content {
    flex-wrap: wrap;
}
.contacts__logo {}
.contacts__logo img {}
.contacts__addr {}
.contacts__phone {}
.contacts__clock {}


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



#map1 {
}


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



.footer {
}
.footer__container {}
.footer__content {}
.footer__copyright {}
.footer__dislamer-btn {
}
.footer__comp-info {}
.footer__links {}
.footer__madein {}
.footer__policy {
}
.footer__disclamer {}

}

/* tablets */

@media only screen and (max-width: 1112px) { 
    .container {
        max-width: 930px;
    }.header {}
.header__container {}
.header__content {}
.header__logo-block {}
.header__logo {}
.header__logo img {}
.header__addr {
    display: none;
}
.header__phone {}
.header__btn {}
.header__menu {}
.menu__content {}
.menu {}
.menu__item {}


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


.intro {}
.intro__slider {}
.intro__content {}
.intro__container {}
.intro__title-block {}
.intro__title {}
.intro__title_1 {}
.intro__title_2 {}
.intro__adv {}
.intro__btn {}
.intro__adv-img {}
.intro__adv-img img {}
.intro__adv-text {}
.intro__bg {}
.intro__bg img {}

/* .intro .swiper-wrapper {}
.intro .swiper-slide {}
.intro__pag {}
.intro__slider-arrows {}
.intro__slider-arrow-prev {}
.intro__slider-arrow-next {} */


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


.timer {}
.timer__container {}
.timer__content {}
.timer__main {}
.timer__title {}
.timer__timer {}
.timer__timer div[id*="timer"] {}
.timer__timer span[id*="timer"] {}
.timer__form {}
.timer__form .form_title {}


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

.cars {}
.cars__container {}
.cars__title {}
.cars__menu {}
.cars__menu .menu__item {}
.cars__menu .menu__item-img {}
.cars__menu .menu__item-img img {}
.cars__menu .menu__item-text {}
.cars__content {}
.car {}
.car__main {}
.car__bg1 {}
.car__bg1 img {}
.car__bg2 {}
.car__bg2 img {}
.car__bg3 {}
.car__bg3 img {}
.car__info {}
.car__title {}
.car__props {}
.car__props-item {}
.car__props-ico {}
.car__props-ico img {}
.car__props-text {}
.car__techs {}
.car__techs-item {}
.car__techs-val {}
.car__techs-name {}
.car__image {}
.car__img {}
.car__img img {}
.car__color-dots {}
.color-dots__item {}
.color-dots__item.active,
.color-dots__item:hover {}
.car__gallery {width: 100%;height: auto;margin-top: 20px !important;}

.car__gallery-wrapper {
    width: 100%;
}
.car__gallery .swiper-wrapper {}
.car__gallery-item {}
.car__gallery-item img {}
.car__gallery-slider-arrows {}
.car__gallery-slider-arrow {
    top: 58% !important;
    bottom: unset !important;
    left: unset !important;
    transform: rotate(-90deg);
}
.car__gallery-slider-arrow:after {}
.car__gallery-slider-arrow-prev {
    left: -22px !important;
}
.car__gallery-slider-arrow-next {
    right: -20px !important;
    transform: rotate(90deg);
}
.car__btns {}
.car__btn {}


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


.instock {}
.instock__container {}
.instock_title {}
.instock__tabs {}
.instock__tabs-item {}
.instock__tabs-item-name {}
.instock__items {}
.instock__item {
    flex-wrap: wrap;
}
.instock__item-bg1 {}
.instock__item-bg1 img {}
.instock__item-bg2 {}
.instock__item-bg2 img {}
.instock__item-info {}
.instock__item-name {}
.instock__item-model {}
.instock__item-compl {}
.instock__profit {}
.instock__profit-ico {}
.instock__profit-text {}
.instock__techs {}
.instock__techs-item {}
.instock__techs-name {}
.instock__techs-val {}
.instock__techs-val-ico {}
.instock__techs-val-ico img {}
.instock__techs-val-text {}
.instock__techs-item {}
.instock__techs-name {}
.instock__techs-val {}
.instock__techs-val-ico {}
.instock__techs-val-ico img {}
.instock__techs-val-text {}
.instock__item-image-block {
    margin-top: 20px;
}
.instock__item-img {}
.instock__item-btns {}
.instock__btn {}


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


.pay-type {}
.pay-type__container {}
.pay-type__content {}


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


.tradein {}
.tradein__img {}
.tradein__img img {}
.tradein__main {}
.tradein__title {}
.tradein__form {}
.tradein__form .form_title {}


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


.credit {}
.credit__img {}
.credit__img img {}
.credit__main {}
.credit__title {}
.credit__form {}
.credit__form .form_title {}


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


.testdrive {}
.testdrive__container {}
.testdrive__img {}
.testdrive__img img {}
.testdrive__content {}
.testdrive__subimg {}
.testdrive__subimg img {}
.testdrive__subimg_1 {}
.testdrive__subimg_1 img {}
.testdrive__subimg_2 {}
.testdrive__subimg_2 img {}
.testdrive__main {}
.testdrive__title {}
.testdrive__form {}
.testdrive__form .form_title {}


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

.contacts {}
.contacts__container {}
.contacts__container {}
.contacts__content {}
.contacts__logo {}
.contacts__logo img {}
.contacts__addr {}
.contacts__phone {}
.contacts__clock {}


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



#map1 {
}


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



.footer {
}
.footer__container {}
.footer__content {}
.footer__copyright {}
.footer__dislamer-btn {
}
.footer__comp-info {}
.footer__links {}
.footer__madein {}
.footer__policy {
}
.footer__disclamer {}

}

@media only screen and (max-width: 960px) {
    .container {
        max-width: 738px;
    }.header {}
.header__container {}
.header__content {}
.header__logo-block {}
.header__logo {}
.header__logo img {}
.header__addr {}
.header__phone {}
.header__btn {}
.header__menu {}
.menu__content {}
.menu {
    gap: 12px;
}
.menu__item {
    font-size: 14px;
}


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


.intro {}
.intro__slider {}
.intro__content {}
.intro__container {}
.intro__title-block {}
.intro__title {}
.intro__title_1 {}
.intro__title_2 {}
.intro__adv {}
.intro__btn {}
.intro__adv-img {}
.intro__adv-img img {}
.intro__adv-text {}
.intro__bg {}
.intro__bg img {}

/* .intro .swiper-wrapper {}
.intro .swiper-slide {}
.intro__pag {}
.intro__slider-arrows {}
.intro__slider-arrow-prev {}
.intro__slider-arrow-next {} */


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


.timer {}
.timer__container {}
.timer__content {}
.timer__main {}
.timer__title {}
.timer__timer {}
.timer__timer div[id*="timer"] {}
.timer__timer span[id*="timer"] {}
.timer__form {}
.timer__form .form_title {}


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

.cars {}
.cars__container {}
.cars__title {}
.cars__menu {}
.cars__menu .menu__item {}
.cars__menu .menu__item-img {}
.cars__menu .menu__item-img img {}
.cars__menu .menu__item-text {}
.cars__content {}
.car {}
.car__main {}
.car__bg1 {}
.car__bg1 img {}
.car__bg2 {}
.car__bg2 img {}
.car__bg3 {}
.car__bg3 img {}
.car__info {}
.car__title {}
.car__props {}
.car__props-item {}
.car__props-ico {}
.car__props-ico img {}
.car__props-text {}
.car__techs {}
.car__techs-item {}
.car__techs-val {}
.car__techs-name {}
.car__image {}
.car__img {}
.car__img img {}
.car__color-dots {}
.color-dots__item {}
.color-dots__item.active,
.color-dots__item:hover {}
.car__gallery {
}
.car__gallery .swiper-wrapper {}
.car__gallery-item {}
.car__gallery-item img {}
.car__gallery-slider-arrows {}
.car__gallery-slider-arrow {}
.car__gallery-slider-arrow:after {}
.car__gallery-slider-arrow-prev {}
.car__gallery-slider-arrow-next {}
.car__btns {}
.car__btn {}


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


.instock {}
.instock__container {}
.instock_title {}
.instock__tabs {}
.instock__tabs-item {}
.instock__tabs-item-name {}
.instock__items {}
.instock__item {}
.instock__item-bg1 {}
.instock__item-bg1 img {}
.instock__item-bg2 {}
.instock__item-bg2 img {}
.instock__item-info {}
.instock__item-name {}
.instock__item-model {}
.instock__item-compl {}
.instock__profit {}
.instock__profit-ico {}
.instock__profit-text {}
.instock__techs {}
.instock__techs-item {}
.instock__techs-name {}
.instock__techs-val {}
.instock__techs-val-ico {}
.instock__techs-val-ico img {}
.instock__techs-val-text {}
.instock__techs-item {}
.instock__techs-name {}
.instock__techs-val {}
.instock__techs-val-ico {}
.instock__techs-val-ico img {}
.instock__techs-val-text {}
.instock__item-image-block {}
.instock__item-img {}
.instock__item-btns {}
.instock__btn {}


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


.pay-type {}
.pay-type__container {}
.pay-type__content {}


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


.tradein {}
.tradein__img {}
.tradein__img img {}
.tradein__main {}
.tradein__title {}
.tradein__form {}
.tradein__form .form_title {}


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


.credit {}
.credit__img {}
.credit__img img {}
.credit__main {}
.credit__title {}
.credit__form {}
.credit__form .form_title {}


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


.testdrive {}
.testdrive__container {}
.testdrive__img {}
.testdrive__img img {}
.testdrive__content {}
.testdrive__subimg {}
.testdrive__subimg img {}
.testdrive__subimg_1 {}
.testdrive__subimg_1 img {}
.testdrive__subimg_2 {}
.testdrive__subimg_2 img {}
.testdrive__main {}
.testdrive__title {}
.testdrive__form {}
.testdrive__form .form_title {}


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

.contacts {}
.contacts__container {}
.contacts__container {}
.contacts__content {}
.contacts__logo {}
.contacts__logo img {}
.contacts__addr {}
.contacts__phone {}
.contacts__clock {}


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



#map1 {
}


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



.footer {
}
.footer__container {}
.footer__content {}
.footer__copyright {}
.footer__dislamer-btn {
}
.footer__comp-info {}
.footer__links {}
.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%;}

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

    form.form_white input::-moz-placeholder { color: #cccccc; }
    form.form_white input::-webkit-input-placeholder { color: #cccccc; }
    form.form_white input:-ms-input-placeholder { color: #cccccc; }
    form.form_white input::placeholder { color: #cccccc; } 

    form.form_white input, form.form_white select, form.form_white textarea {}

    form.form_white input {}
    form.form_white select {}
    form.form_white textarea {}

    .title {
    font-size: 7vw;
}

    .title_white {}

    .subtitle {}

    .logo-block {}

    .logo {}

    .addr {}

    .phone {}

    .btn {
        width: 100%;
    }

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

    .header .mob-menu-btn {
        display: block;
        position: relative;
        width: 30px;
        height: 22px;
        z-index: 1;
    }

    .header .mob-menu-btn span {
        position: absolute;
        display: block;
        width: 30px;
        height: 3px;
        background: #1d1d1d;
        transition: all .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;
    }


    .header {}
.header__container {}
.header__content {
    flex-wrap: wrap;
}
.header__logo-block {
    width: 65%;
}
.header__logo {}
.header__logo img {}
.header__addr {}
.header__phone {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    background: #fff;
    padding: 10px;
    text-align: center;
}

a.header__phone.phone:before {
    content: url(../img/ico__phone.svg);
    position: fixed;
    left: calc(50% - 12px);
    transform: translateX(-87px);
}
.header__btn {
    display: none;
}
.header__menu {
    position: fixed;
    top: 110px;
    width: 100%;
    background: #fff;
    z-index: 11;
    border-radius: 25px;
    left: 100%;
}
.menu__content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.menu {
    flex-direction: column;
    align-items: center;
}
.menu__item {}


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


.intro {
    padding: 0;
}
.intro__slider {}
.intro__content {}
.intro__container {}
.intro__title-block {
    margin-top: C;
}
.intro__title {}
.intro__title_1 {
    color: #fff;
    font-size: 5.7vw;
    text-align: left;
}
.intro__title_2 {
    color: #fff;
    font-size: 3.9vw;
    text-align: left;
}
.intro__adv {
    top: 1vw;
    max-width: 45vw;
    right: -2vw;
}
.intro__btn {
    width: 200px;
    margin-left: 0;
}
.intro__adv-img {}
.intro__adv-img img {}
.intro__adv-text {
    font-size: 3.6vw;
}
.intro__bg {}
.intro__bg img {}

/* .intro .swiper-wrapper {}
.intro .swiper-slide {}
.intro__pag {}
.intro__slider-arrows {}
.intro__slider-arrow-prev {}
.intro__slider-arrow-next {} */


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


.timer {}
.timer__container {}
.timer__content {
    gap: 2vw;
    overflow: hidden;
    padding: 20px 15px;
    margin-top: -6vw;
}
.timer__main {}
.timer__title {}
.timer__timer {
    transform: scale(0.5) translateX(75%);
    margin-left: -300%;
}
.timer__timer div[id*="timer"] {}
.timer__timer span[id*="timer"] {}
.timer__form {}
.timer__form .form_title {
    font-size: 5vw;
}


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

.cars {
    margin-top: 60px;
}
.cars__container {}
.cars__title {}
.cars__menu {
    margin-top: 30px;
}
.cars__menu .menu__item {
    padding: 3vw;
    padding-bottom: 1.5vw;
}
.cars__menu .menu__item-img {}
.cars__menu .menu__item-img img {}
.cars__menu .menu__item-text {
    font-size: 2vw;
    top: -0.5vw;
    left: 0;
    border-radius: 1.4vw;
    padding: 1vw 2vw;
}
.cars__content {}
.car {
    margin-top: 60px;
}
.car__main {
    padding: 20px 15px;
}
.car__bg1 {}
.car__bg1 img {}
.car__bg2 {}
.car__bg2 img {}
.car__bg3 {}
.car__bg3 img {}
.car__info {}
.car__title {
    font-size: 8vw;
}
.car__props {
    margin-top: 20px;
}
.car__props-item {
    font-size: 16px;
    gap: 8px;
}
.car__props-ico {
    width: 20px;
    height: 20px;
    min-width: 20px;
}
.car__props-ico img {
    max-width: 50%;
}
.car__props-text {}
.car__techs {
    margin-top: 20px;
    gap: 5vw;
}
.car__techs-item {}
.car__techs-val {}
.car__techs-name {}
.car__image {
    margin-top: 10px;
    margin: 0;
    padding: 0;
}
.car__img {}
.car__img img {}
.car__color-dots {
    margin: 0;
}
.color-dots__item {
    width: 20px;
    height: 20px;
}
.color-dots__item.active,
.color-dots__item:hover {}
.car__gallery {
}
.car__gallery .swiper-wrapper {}
.car__gallery-item {}
.car__gallery-item img {}
.car__gallery-slider-arrows {}
.car__gallery-slider-arrow {
    width: 20px !important;
    height: 20px !important;
    background-size: 50%;
    top: 76% !important;
}
.car__gallery-slider-arrow:after {}
.car__gallery-slider-arrow-prev {}
.car__gallery-slider-arrow-next {}
.car__btns {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
}
.car__btn {}


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


.instock {
    margin-top: 60px;
}
.instock__container {}
.instock_title {}
.instock__tabs {
    margin-top: 30px;
}
.instock__tabs-item {
    font-size: 3vw;
}
.instock__tabs-item-name {}
.instock__items {}
.instock__item {
    margin-top: 30px;
    padding: 20px 15px;
}
.instock__item-bg1 {}
.instock__item-bg1 img {}
.instock__item-bg2 {}
.instock__item-bg2 img {}
.instock__item-info {}
.instock__item-name {
    width: 100%;
}
.instock__item-model {
    font-size: 8vw;
}
.instock__item-compl {
    font-size: 8vw;
}
.instock__profit {}
.instock__profit-ico {}
.instock__profit-text {}
.instock__techs {}
.instock__techs-item {}
.instock__techs-name {}
.instock__techs-val {}
.instock__techs-val-ico {}
.instock__techs-val-ico img {}
.instock__techs-val-text {}
.instock__techs-item {}
.instock__techs-name {
    font-size: 2.5vw;
}
.instock__techs-val {}
.instock__techs-val-ico {}
.instock__techs-val-ico img {}
.instock__techs-val-text {
    font-size: 3vw;
}
.instock__item-image-block {}
.instock__item-img {}
.instock__item-btns {
    flex-direction: column;
    gap: 10px;
}
.instock__btn {}


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


.pay-type {
    margin-top: 60px;
}
.pay-type__container {}
.pay-type__content {
    flex-direction: column;
}


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


.tradein {}
.tradein__img {}
.tradein__img img {
    border-radius: 25px;
}
.tradein__main {
    background: none;
    padding: 0;
    margin-top: -56px;
    box-shadow: none;
}
.tradein__title {
    position: static;
    /* width: 100%; */
    padding-left: 15px;
    background-position: 0 0;
    padding: 10px 62px 7px 15px;
    /* background: none; */
    margin-bottom: 10px;
    background-size: 100%;
    font-size: 30px;
    display: inline-block;
}
.tradein__form {}
.tradein__form .form_title {}


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


.credit {
    margin-top: 60px;
}
.credit__img {}
.credit__img img {
    border-radius: 25px;
}
.credit__main {
    background: none;
    padding: 0;
    margin-top: -55px;
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: flex-end; */
    box-shadow: none;
}
.credit__title {
    position: static;
    /* width: 100%; */
    padding: 10px 82px 7px 15px;
    /* text-align: left; */
    background: url(../img/bg__tradein-title.svg)  50% no-repeat;
    margin-bottom: 10px;
    background-position: 0 0;
    background-size: 100%;
    font-size: 30px;
    display: inline-block;
}
.credit__form {}
.credit__form .form_title {}


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


.testdrive {
    margin-top: 60px;
}
.testdrive__container {}
.testdrive__img {}
.testdrive__img img {}
.testdrive__content {
    width: 100%;
    margin-top: 20px;
}
.testdrive__subimg {
    display: none;
}
.testdrive__subimg img {}
.testdrive__subimg_1 {}
.testdrive__subimg_1 img {}
.testdrive__subimg_2 {}
.testdrive__subimg_2 img {}
.testdrive__main {
    width: 100%;
    background: none;
    padding: 0;
}
.testdrive__title {
    position: static;
    padding: 0;
    color: inherit;
    background: none;
    font-weight: 700;
    font-size: 7vw;
}
.testdrive__form {}
.testdrive__form .form_title {}


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

.contacts {
    margin-top: 60px;
}
.contacts__container {}
.contacts__container {}
.contacts__content {
    gap: 15px;
    padding: 30px 15px;
    margin-top: 30px;
}
.contacts__logo {}
.contacts__logo img {}
.contacts__addr {}
.contacts__phone {}
.contacts__clock {}


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



#map1 {
}


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



.footer {margin-top: 60px;}
.footer__container {}
.footer__content {}
.footer__copyright {}
.footer__dislamer-btn {
}
.footer__comp-info {}
.footer__links {}
.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) { 
}
@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*/
