/* import fonts */

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-ExtraLight.woff2') format('woff2'), url('../fonts/Mulish-ExtraLight.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Light.woff2') format('woff2'), url('../fonts/Mulish-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Regular.woff2') format('woff2'), url('../fonts/Mulish-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Medium.woff2') format('woff2'), url('../fonts/Mulish-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-SemiBold.woff2') format('woff2'), url('../fonts/Mulish-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Bold.woff2') format('woff2'), url('../fonts/Mulish-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-ExtraBold.woff2') format('woff2'), url('../fonts/Mulish-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Black.woff2') format('woff2'),  url('../fonts/Mulish-Black.woff') format('woff');
    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: 1px solid #cccccc;
    box-shadow: none;
    border-radius: 50px;
    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: 95% 50%;
    display: block;
    color: #000;
    width: 100%;
    padding-left: 15px;
    padding-right: 35px;
    border: 1px solid #cccccc;
    border-radius: 50px;
}

.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: "Mulish", Arial, sans-serif;
    font-size: 16px;
    color: black;
    position: relative;
    font-weight: 400;
    padding: 0px;
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
    background: #F5F5F5;
}

.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 button {
    width: 100%;
}

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

form .form-group-wrapper .form-group input,
form .form-group-wrapper .form-group select,
form .form-group-wrapper .form-group textarea,
form .form-group-wrapper .form-group button {
    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: 1370px;
    padding: 0 30px;
    margin: 0 auto;
}



.title {
    font-size: min(48px, 4vw);
    text-align: center;
    text-transform: uppercase;
}

.title_white {}

.subtitle {}

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

.logo {}

.addr {
    position: relative;
    padding-left: 30px;
}

.addr:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/ico__loc.svg), linear-gradient(to right, #1B365D, #418FDE);
    border-radius: 5px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.phone {
    position: relative;
    padding-left: 30px;
}

.phone:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/ico__phone.svg), linear-gradient(to right, #1B365D, #418FDE);
    border-radius: 5px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.clock {
    position: relative;
    padding-left: 30px;
}

.contacts__text {
    font-size: 20px;
    margin-top: 15px;
}

.clock:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/ico__clock.svg), linear-gradient(to right, #1B365D, #418FDE);
    border-radius: 5px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}


.btn {
    background: linear-gradient(90deg, #1B365D 0%, #418FDE 100%);
    color: white;
    text-align: center;
    width: 230px;
    display: flex;
    align-items: center;
    border: none;
    position: relative;
    text-decoration: none;
    /* transition:  all .2s linear; */
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

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

.btn_white {
    background: #fff;
    color: #000;
}
.btn_white-glass {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.btn_grey {
    background: linear-gradient(90.13deg, #585E6B 10.91%, #A9AEB9 100%);
    color: #fff;
}
.btn_dark-glass {
    border: 1px solid #1F3F6A;
    background: transparent;
    color: #1F3F6A;
}


.btn:hover {
    background: #418FDE; 
    color: #fff;
}
.btn_white:hover {
    background: #418FDE; 
    color: #fff;
}
.btn_white-glass:hover {
    background: #418FDE; 
    border-color: #418FDE;
    color: #fff;
}
.btn_grey:hover {
    background: #418FDE; 
    color: #fff;
}
.btn_dark-glass:hover {
    background: #fff;
    border: 1px solid #418FDE;
    color: #418FDE;
}

/* common styles END */



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




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

.header {}
.header__container {}
.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #CEC7C1;
}
.header__logo-block {}
.header__logo {
    padding: 30px 0;
}

.header__logo:nth-child(2) {
    padding-left: 12px;
    border-left: 1px solid #CEC7C1;
}
.header__logo img {}
.header__addr {}
.header__phone {}
.header__btn {}
.header__menu {
    padding: 16px 0;
}
.menu {
    display: flex;
    justify-content: space-between;
}
.menu__block {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.menu__item {transition: all .2s linear;}

.menu__item:hover {
    color: #418FDE;
}


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


.intro {}
.intro__slider {}
.intro__content {}
.intro__container {
    position: relative;
}
.intro__title-block {
    position: absolute;
    top: min(50px, 3vw);
    left: 0;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro__title {}
.intro__title_1 {
    font-size: 24px;
    background: #FFFFFF80;
    padding: 3px 16px 5px 53px;
    border-radius: 8px;
    position: relative;
}

.intro__title_1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    display: block;
    background: URL(../img/ico__intro-title.svg), linear-gradient(90deg, #1B365D 0%, #418FDE 100%);
    border-radius: 8px 0 0 8px;
    background-position: 50%;
    background-repeat: no-repeat;
}
.intro__title_2 {
    font-size: min(42px, 2.6vw);
    margin-top: 15px;
}
.intro__title_3 {
    font-size: min(40px, 2.4vw);
}

.intro__title_text-big {
    font-size: 1.3em;
    font-weight: 700;
}

.intro__btn {
    margin-top: min(20px, 1vw);
}
.intro__bg {
    width: 130%;
    max-width: 1920px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.intro__bg img {}

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


/*run_now*************************************************************************************************************/

.run_now {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 40px;
    background: linear-gradient(90deg, #1B365D 0%, #418FDE 100%);
  }
  .run_now_cont {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: runstring 60s infinite linear;
  }
  
  .run_now_cont div {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding-left: 28px;
    font-size: 18px;
    color: #ffffff;
  }
  
  .run_now_cont div:before {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50px;
  }
  
  @keyframes runstring {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }


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

.timer_block {
    border-radius: 30px;
    background: #FFF;
    padding: 35px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.timer {
    background: #F5F5F5;
    padding: 40px 0;
}

#timer_form {
    width: 49%;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

#timer_form .form_comment {
    font-size: 24px;
    margin-bottom: 20px;
    width: 100%;
}

#timer_form .form-group {
    width: 49%;
}

#timer_form .form-group.wide {
    /* width: 53%; */
}


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


.cars {
    padding-top: 120px;
    background: #fff;
}
.cars__container {}
.cars__menu {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}
.cars__menu-item {
    transition: all .1s linear;
    opacity: .5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cars__menu-item:hover {
    opacity: 1;
}
.cars__menu-item-img {}
.cars__menu-item-img img {}
.cars__menu-item-text {}
.cars__content {}
.car {
    margin-top: 80px;
    background: #F5F4F3;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
.car__img-block {
    padding: 40px;
    width: 100%;
    max-width: 697px;
    position: relative;
}
.car__img-colors {
}
.car__img-color-item {
    border-radius: 36px;
    overflow: hidden;
}
.car__img-colors-thumbs {
    margin-top: 22px;
}
.car__img-colors-thumbs-item {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.car__img-color-dots {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 0;
    gap: 13px;
    z-index: 1;
    top: 27%;
}
.car__img-color-dots-item {
    box-shadow: 0px 4px 7px 0px #68686826;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.car__img-color-dots-item:hover:before,
.car__img-color-dots-item.active:before {
    content: "";
    display: block;
    width: 160%;
    height: 160%;
    position: absolute;
    top: -30%;
    left: -30%;
    border: 1px solid #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.car__info-block {
    padding: 40px;
    color: #fff;
    background: #1B365D;
    border-radius: 40px;
}
.car__title {
    font-weight: 700;
    font-size: min(48px, 4vw);
}
.car__props {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.car__props-item {
    font-size: 20px;
    padding-left: 40px;
    position: relative;
}
.car__props-ico {
    position: absolute;
    left: 0px;
    top: 1px;
    width: 24px;
    height: 24px;
    background: linear-gradient(to right, #585E6B, #A9AEB9);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.car__props-text {}
.car__btns {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.car__btn {width: 100%;}


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


#instock {
    padding: 120px 0;
    background: #fff;
}

.instock_title {
}

#filter_table {
    margin-bottom: 45px;
    padding-top: 41px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 4px;
    /* display: none; */
}

#filter_table .select_container{position:relative;width: 32%;display:inline-block;margin-left: 10px;}
#filter_table .select_container:first-child {margin-left: 0px;}
#filter_table .select_container:after{content:'';/* background:url(../img/ico_select.png) 0px 0px no-repeat; */width:15px;height:10px;position:absolute;top:50%;right:15px;margin-top:-4px;}
#filter_table select {
    padding-left: 15px;
    padding-right: 35px;
    font-size: 16px;
    outline: none;
    border: 1px solid black;
}
#filter_table select[name="models"]{
}
#filter_table select[name="complects"]{}
#filter_table select[name="engine"]{}
#filter_table select option{color:black;}


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


.tb_complects tr {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    box-sizing: border-box;
}

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

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

.tb_complects tr th{text-align:left;font-size:16px;background: #ededed;font-size: 18px;padding: 15px;height: 53px;box-sizing: border-box;}

.tb_complects tr td {
    text-align: left;
}


.tb_complects .compl-image {}
.tb_complects .compl-image img {}
.tb_complects .compl-params {
    background: #F5F4F3;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.tb_complects .param-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 20px;
}
.tb_complects .param1-wrap {}
.tb_complects .param1-wrap__model {}
.tb_complects .param1-wrap__compl {
    font-weight: 700;
}
.tb_complects .param-wrap__sep {
    display: block;
    width: 1px;
    height: 50px;
    background: #CEC7C1;
}
.tb_complects .param2-wrap {}
.tb_complects .param2-wrap__name {}
.tb_complects .param2-wrap__val {
    font-weight: 700;
}
.tb_complects .compl-btns {
    display: flex;
    gap: 10px;
}
.tb_complects .compl-btns .btn {}

.tb_complects_showmore {
    padding-bottom: 0px;
    color: inherit;
    font-size: 14px;
    text-align: center;
    margin-top: 25px;
    display: block;
    width: 120px;
    text-decoration: none;
    border-bottom: 1px solid black;
}



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


.warranty {
    margin-top: 120px;
}

.warranty_title {
}

.warranty_img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 60px;
}

.warranty_img_text {
    position: absolute;
    top: 100px;
    left: 30px;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 40px;
    line-height: 160%;
}

.warranty_img_text b {
    font-weight: 900;
}

.warranty_info {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 0 20px;
}

.warranty_info .info_item,
.warranty_opts .info_item {
    font-size: 20px;
    border-radius: 16px;
    width: 100%;
    font-weight: 500;
    padding: 90px 40px 40px;
    position: relative;
    background: #fff;
    background-image: url("../img/logo__warranty-bg.svg");
    background-repeat: no-repeat;
    background-position: 90% 37px;
}

.warranty_opts .info_item {background-position: 100% 4px;padding: 60px 0 25px;}

.warranty_info .info_item:before,
.warranty_opts .info_item:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url("../img/warranty_info_ico.svg") 50% no-repeat;
    position: absolute;
    top: 30px;
    left: 40px;
}

.warranty_opts .info_item:before {
    top: 0;
    left: 0;
}

.warranty_opts {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 50px;
}

.warranty_opts .opts_item {
    padding: 30px 40px;
    cursor: pointer;
    background: #F5F4F3;
    border-radius: 26px;
}

.warranty_opts .opts_item:first-child {
    /* padding-top: 0; */
}

.warranty_opts .opts_item:last-child {
    /* padding-bottom: 0; */
    /* border: none; */
}

.warranty_opts .opts_item .opts_item_title {
    /* min-height: 60px; */
    display: flex;
    align-items: center;
    font-size: 20px;
    /* text-transform: uppercase; */
    transition: all .3s linear;
    position: relative;
    font-weight: 700;
    padding-left: 16px;
}

.warranty_opts .opts_item:hover .opts_item_title {
    color: #418FDE;
}

.warranty_opts .opts_item.active .opts_item_title {
    background: url("../img/warranty_ico_hov.png") 0 50% no-repeat;
}


.warranty_opts .opts_item .opts_item_title br {
    display: none;
}

.warranty_opts .opts_item .opts_item_title:after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: calc(50% - 20px);
    z-index: 1;
    background: url(../img/ico__select-warranty.svg) 50% no-repeat;
    transition: all .2s linear;
}

.warranty_opts .opts_item .opts_item_title:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(90deg, #1B365D 0%, #418FDE 100%);
    position: absolute;
    top: 10px;
    left: 0;
}

.warranty_opts .opts_item.active .opts_item_title:after {transform: rotate(180deg);}

.warranty_opts .opts_item .opts_item_text {
    margin-top: 15px;
    display: none;
    padding-left: 16px;
}

.warranty_btns {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.warranty_btns .btn {
    width: 32.5%;
}


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

.credit_tradein {
    display: flex;
    justify-content: space-between;
    margin-top: 220px;
}

.credit {
    width: 49.2%;
    border-radius: 30px;
    background: #FFF;
    padding: 60px 50px 50px;
    position: relative;
}

.credit_img {
    position: absolute;
    top: -118px;
    right: -34px;
}

.credit_title {
    text-transform: uppercase;
    font-size: 48px;
    text-align: left;
}

.credit_comment {
    font-size: 20px;
    font-weight: 500;
    padding: 30px 0;
}

.tradein {
    width: 49.2%;
    border-radius: 30px;
    background: #FFF;
    padding: 60px 50px 50px;
    position: relative;
}

.tradein_img {
    position: absolute;
    top: -118px;
    right: -34px;
}

.tradein_title {
    text-transform: uppercase;
    font-size: 48px;
    text-align: left;
}

.tradein_comment {
    font-size: 20px;
    font-weight: 500;
    padding: 30px 0;
}



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


.advantages {
    margin-top: 120px;
}

.ags_title {
}

.ags_img {
    margin-top: 60px;
    border-radius: 30px;
    overflow: hidden;
}

.ags_list {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.ags_list > div {
    width: 19%;
    background: #fff;
    min-height: 130px;
    padding: 70px 24px 24px;
    position: relative;
    font-size: 20px;
    border-radius: 20px;
    transition: all .2s linear;
    cursor: pointer;
}

.ags_list > div:hover {
    box-shadow: 0px 4px 24px 0px #9F9F9F26;
    transform: scale(1.08);
}

.ags_list > div:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.ags_list > div.ico1:before {
    background: url("../img/ico__why-we_1.svg") 50% no-repeat;
}

.ags_list > div.ico2:before {
    background: url("../img/ico__why-we_2.svg") 50% no-repeat;
}

.ags_list > div.ico3:before {
    background: url("../img/ico__why-we_3.svg") 50% no-repeat;
}

.ags_list > div.ico4:before {
    background: url("../img/ico__why-we_4.svg") 50% no-repeat;
}

.ags_list > div.ico5:before {
    background: url("../img/ico__why-we_5.svg") 50% no-repeat;
}


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





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


.contacts {
    overflow: hidden;
    margin-top: 120px;
    padding-top: 112px;
    padding-bottom: 50px;
    background: #fff;
  }
  
  .contacts__container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .contacts__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    justify-content: start;
    background: #F5F4F3;
    border-radius: 30px;
    padding: 40px;
  }
  
  .contacts__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: start;
  }
  
  .contacts__btn-block {
    width: 100%;
    margin-top: -10px;
  }

.contacts__btn-block .btn {
    width: 100%;
}
  .map {
    width: 100%;
    height: 100%;
    max-width: 814px;
  }
  
  #map1 {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 30px;
    overflow: hidden;
  }


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



.footer {
    padding: 20px 0;
    color: inherit;
    font-size: 14px;
}
.footer__container {}
.footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
}
.footer__copyright {}
.footer__dislamer-btn {
    color: inherit;
    text-decoration: none;
}
.footer__comp-info {}
.footer__madein {
    line-height: 0.7;
    display: flex;
    gap: 6px;
    align-items: flex-end;
}
.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 (max-width: 1366px) { 
    .container {
        max-width: 1082px;
        padding: 0 15px;
    }

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


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


.intro {}
.intro__slider {}
.intro__content {}
.intro__container {}
.intro__title-block {}
.intro__title {}
.intro__title_1 {}
.intro__title_2 {}
.intro__title_3 {}
.intro__btn {}
.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_block {
    padding: 30px;
    flex-direction: column-reverse;
    gap: 20px 0;
}

#timer_form {
    width: 100%;
}

#timer_form .form_comment {
    text-align: center;
}

.timer {
    display: flex;
    justify-content: center;
}


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


.cars {}
.cars__container {}
.cars__menu {}
.cars__menu-item {}
.cars__menu-item-img {}
.cars__menu-item-img img {}
.cars__menu-item-text {}
.cars__content {}
.car {
    align-items: center;
}
.car__img-block {
    max-width: 60%;
}
.car__img-colors {}
.car__img-color-item {}
.car__img-colors-thumbs {}
.car__img-colors-thumbs-item {}
.car__img-color-dots {}
.car__img-color-dots-item {}
.car__info-block {
    max-width: 38%;
}
.car__title {}
.car__props {}
.car__props-item {
    font-size: 16px;
}
.car__props-ico {}
.car__props-text {}
.car__btns {}
.car__btn {}


.tb_complects .compl-btns {
    flex-direction: column;
    display: flex;
    gap: 10px;
}
.tb_complects .compl-btns .btn {
}

    .contacts__container {
        flex-direction: column;
    }

    .warranty_info .info_item {
        /* font-size: 12px; */
        padding-top: 65px;
    }

    .warranty_opts .info_item {}

    .warranty_info .info_item:before {
        top: 10px;
    }
    
    .warranty_opts .info_item:before {}

    .credit {
        padding: 30px;
    }

    .credit_img {
        top: -150px;
        width: 65%;
    }

    /*******************************************************************/
    .tradein {
        padding: 30px;
    }

    .tradein_img {
        top: -150px;
        width: 65%;
    }
}

/* tablets */

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

    .contacts__container {
        flex-direction: column;
    }

    .header {}
    .header__container {}
    .header__content {}
    .header__logo-block {}
    .header__logo {}
    .header__logo img {}
    .header__addr {
    display: none;
}
    .header__phone {}
    .header__btn {}
    .header__menu {}
    .menu {}
    .menu__block {}
    .menu__item {}
    
    
    /**************************************************************************************************************/
    
    
    .intro {}
    .intro__slider {}
    .intro__content {}
    .intro__container {}
    .intro__title-block {}
    .intro__title {}
    .intro__title_1 {}
    .intro__title_2 {}
    .intro__title_3 {}
    .intro__btn {}
    .intro__bg {}
    .intro__bg img {}
    
    .intro .swiper-wrapper {}
    .intro .swiper-slide {}
    .intro__pag {}
    .intro__slider-arrows {}
    .intro__slider-arrow-prev {}
    .intro__slider-arrow-next {}
    
    
    /**************************************************************************************************************/
    
    
    .cars {}
    .cars__container {}
    .cars__menu {}
    .cars__menu-item {}
    .cars__menu-item-img {}
    .cars__menu-item-img img {}
    .cars__menu-item-text {}
    .cars__content {}
    .car {
    flex-wrap: wrap;
}
    .car__img-block {max-width: 100%;}
    .car__img-colors {}
    .car__img-color-item {}
    .car__img-colors-thumbs {}
    .car__img-colors-thumbs-item {}
    .car__img-color-dots {
    right: 13px;
}
    .car__img-color-dots-item {}
    .car__info-block {
    max-width: 100%;
    width: 100%;
}
    .car__title {}
    .car__props {}
    .car__props-item {}
    .car__props-ico {}
    .car__props-text {}
    .car__btns {}
    .car__btn {}

    .tb_complects tr {
        flex-wrap: wrap;
    }

    .tb_complects .compl-image {
        width: 50%;
    }

    .tb_complects .compl-params {
        width: 100%;
        justify-content: space-between;
    }

    .warranty_info .info_item {
        font-size: 12px;
        padding-top: 65px;
    }

    .warranty_info .info_item:before {
        top: 10px;
    }

    .warranty_opts .info_item {}
    .warranty_opts .info_item:before {}

    .credit {
        padding: 30px;
    }

    .credit_img {
        top: -150px;
        width: 65%;
    }

    /*******************************************************************/
    .tradein {
        padding: 30px;
    }

    .tradein_img {
        top: -150px;
        width: 65%;
    }
}

@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 {}
    .menu__block {}
    .menu__item {}
    
    
    /**************************************************************************************************************/
    
    
    .intro {}
    .intro__slider {}
    .intro__content {}
    .intro__container {}
    .intro__title-block {}
    .intro__title {}
    .intro__title_1 {}
    .intro__title_2 {}
    .intro__title_3 {}
    .intro__btn {}
    .intro__bg {}
    .intro__bg img {}
    
    .intro .swiper-wrapper {}
    .intro .swiper-slide {}
    .intro__pag {}
    .intro__slider-arrows {}
    .intro__slider-arrow-prev {}
    .intro__slider-arrow-next {}
    
    
    /**************************************************************************************************************/
    
    
    .cars {}
    .cars__container {}
    .cars__menu {}
    .cars__menu-item {}
    .cars__menu-item-img {}
    .cars__menu-item-img img {}
    .cars__menu-item-text {}
    .cars__content {}
    .car {}
    .car__img-block {}
    .car__img-colors {}
    .car__img-color-item {}
    .car__img-colors-thumbs {}
    .car__img-colors-thumbs-item {}
    .car__img-color-dots {}
    .car__img-color-dots-item {}
    .car__info-block {}
    .car__title {}
    .car__props {}
    .car__props-item {}
    .car__props-ico {}
    .car__props-text {}
    .car__btns {}
    .car__btn {}

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

    .warranty_info .info_item {
        padding: 20px 20px 20px 90px;
        font-size: 16px;
    }

    .warranty_info .info_item:before {
        top: calc(50% - 20px);
        left: 17px;
    }

    .warranty_opts .info_item {}
    .warranty_opts .info_item:before {}

    .warranty_opts {
        padding: 20px;
    }

    .credit_tradein {
        flex-direction: column;
        gap: 100px;
    }

    .credit {
        width: 100%;
    }

    .credit_img {
        width: auto;
        right: 15px;
    }

    /*******************************************************************/
    .tradein {
        width: 100%;
    }

    .tradein_img {
        width: auto;
        right: 15px;
    }

    .tradein_comment br {
        display: none;
    }


    .advantages {
        margin-top: 60px;
    }

    .ags_list > div {
        font-size: 12px;
    }

    .ags_list > div:before {
        /* top: 0; */
    }

    .ags_list {
        margin-top: 30px;
    }
}

/* mobiles */

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

    html {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 610px;
        padding: 0 15px;
    }

.footer__content {
    flex-direction: column;
}

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

    form .form-group-wrapper .form-group {}

    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;
        text-align: left;
    }

    .title_white {}

    .subtitle {}

    .logo-block {}

    .logo {}

    .addr {}

    .phone {}

    .btn {
        width: 100%;
    }

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

    .header {
}
    .header__container {}
    .header__content {
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 10px;
}
    .header__logo-block {
    max-width: 65%;
}
    .header__logo {
    padding: 0;
}
    .header__logo img {}
    .header__addr {
    display: none;
}
    .header__phone {
    order: 1;
    /* margin: 0 auto; */
}
    .header__btn {
    display: none;
}
    .header__menu {
    background: #F5F5F5;
    position: absolute;
    z-index: 10;
    width: 100%;
    left: 100%;
    transition: all .2s linear;
}
    .header__menu.active {
    left: 0;
}
    .menu {
    flex-direction: column;
    gap: 30px;
}
    .menu__block {
    flex-direction: column;
    align-items: center;
}
    .menu__item {}

    .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: #27509b;
        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;
    }

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


    .intro {}
    .intro__slider {}
    .intro__content {}
    .intro__container {}
    .intro__title-block {
    width: calc(100% - 30px);
    text-align: center;
    left: 15px;
}
    .intro__title {}
    .intro__title_1 {
    font-size: 6vw;
}
    .intro__title_2 {
    font-size: 5.8vw;
    color: #fff;
}
    .intro__title_3 {
    font-size: 6vw;
    color: #fff;
}
    .intro__btn {
    margin-top: 5vw;
}
    .intro__bg {
    width: 100%;
}
    .intro__bg img {}
    
    .intro .swiper-wrapper {}
    .intro .swiper-slide {}
    .intro__pag {}
    .intro__slider-arrows {}
    .intro__slider-arrow-prev {}
    .intro__slider-arrow-next {}

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

    .timer_block {
        flex-direction: column-reverse;
        gap: 10px 0;
        padding: 15px;
        overflow: hidden;
    }

    #timer_form {
        width: 100%;
    }
    
    #timer_form .form_comment {
        text-align: center;
        font-size: 5vw;
    }

    #timer_form .form-group {
        width: 100% !important;
    }

    .timer {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    div[id^=timer] {
        transform: scale(0.5) !important;
    }
    
    
    /**************************************************************************************************************/
    
    
    .cars {
    padding-top: 50px;
}
    .cars__container {}
    .cars__menu {}
    .cars__menu-item {}
    .cars__menu-item-img {}
    .cars__menu-item-img img {}
    .cars__menu-item-text {}
    .cars__content {}
    .car {
    margin-top: 50px;
    border-radius: 20px;
    position: relative;
    padding-top: 10vw;
}
    .car__img-block {
    padding: 20px 15px;
}
    .car__img-colors {}
    .car__img-color-item {
    border-radius: 20px;
}
    .car__img-colors-thumbs {}
    .car__img-colors-thumbs-item {
    border-radius: 12px;
}
    .car__img-color-dots {
    position: static;
    margin-top: 15px;
    flex-direction: revert;
    justify-content: center;
}
    .car__img-color-dots-item {}
    .car__info-block {
    border-radius: 20px;
    padding: 20px 15px;
}
    .car__title {
    position: absolute;
    top: 3vw;
    left: 15px;
    color: #000;
    font-size: 7vw;
}
    .car__props {}
    .car__props-item {
    font-size: 16px;
    padding-left: 36px;
}
    .car__props-ico {
    /* width: 6vw; */
    top: calc(50% - 12px);
    /* height: 6vw; */
}
    .car__props-text {}
    .car__btns {}
    .car__btn {}

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

    #instock {
        padding-top: 20px;
        padding-bottom: 50px;
        margin-top: 50px;
    }

    .instock_title {
    }

	.resp_table tr {display: block;padding-bottom: 0px;}
	.resp_table tr th {display:none;}
	.resp_table tr td {width:100%;display: block;box-sizing: border-box;padding: 5px 15px;}
	.resp_table tr td:before {display:inline-block;width: 43%;margin-right: 2%;vertical-align: top;display: none;}
	.resp_table img {
        display: block;
        margin: 0 auto;
        width: 100%;
        width: auto;
        height: auto;
        max-width: 100%;
    }

	.tb_complects_container {padding-bottom:0px;}

	#filter_table{/* display:block; */padding-top: 15px;margin-bottom: 0px;padding-bottom: 0px;flex-wrap: wrap;}
	#filter_table .select_container{width:100%;padding-bottom:10px;margin: 0;}
	#filter_table .select_container:after{}
	#filter_table select{}
	#filter_table select[name="models"]{}
	#filter_table select[name="complects"]{}
	#filter_table select[name="engine"]{}
	#filter_table select option{}

	.tb_complects{padding-bottom:30px;}
	.tb_complects tr{
        background: none;
        border: none;
        margin-bottom: 0px;
        margin-top: 40px;
    }
	.tb_complects tr:first-child{}
	.tb_complects tr th{}
	.tb_complects tr td{
    padding: 0px;
}
    .tb_complects .compl-image {
    width: 100%;
}
    .tb_complects .compl-image img {}
    .tb_complects .compl-params {
    flex-wrap: wrap;
    margin-top: 15px;
    padding: 20px 15px;
    gap: 15px;
}
    .tb_complects .param-wrap {
    /* justify-content: center; */
    width: 100%;
}
    .tb_complects .param1-wrap {}
    .tb_complects .param1-wrap__model {}
    .tb_complects .param1-wrap__compl {}
    .tb_complects .param-wrap__sep {}
    .tb_complects .param2-wrap {}
    .tb_complects .param2-wrap__name {}
    .tb_complects .param2-wrap__val {}
    .tb_complects .compl-btns {
    width: 100%;
}
    .tb_complects .compl-btns .btn {}


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

    .warranty {
        margin-top: 45px;
    }

    .warranty_title {
        font-size: 8vw;
    }

    .warranty_img {
        margin-top: 20px;
    }

    .warranty_img img {
        width: 130%;
        max-width: 130%;
        margin-left: -15%;
    }

    .warranty_btns {
        flex-direction: column;
        gap: 10px 0;
        margin-top: 10px;
    }

    .warranty_btns .btn {
        width: 100%;
    }

    .warranty_info {
        flex-direction: column;
        /*gap: 15px 0;*/
    }

    .warranty_info .info_item {
        font-size: 4vw;
        min-height: auto;
        padding-top: 40px;
        display: flex;
        align-items: center;
        padding: 20px 15px;
        padding-bottom: 25px;
        padding-top: 70px;
        background-position: 82% 28px;
        background-size: 70%;
    }

    .warranty_info .info_item:before {
        top: 20px;
    }

    .warranty_opts .info_item {padding-bottom: 5px;font-size: 4vw;background-position: 100% 10px;background-size: 70%;}
    .warranty_opts .info_item:before {}

    .warranty_opts {
        padding: 15px;
        gap: 10px;
        margin-top: 10px;
    }

    .warranty_opts .opts_item {
        padding: 15px 15px;
        border-radius: 18px;
    }

    .warranty_opts .opts_item .opts_item_title {
        /* background-size: 45px !important; */
        /* padding-left: 55px; */
        font-size: 18px;
        height: auto;
        min-height: auto;
    }

    .warranty_opts .opts_item .opts_item_title br {
        display: block;
    }

    .warranty_opts .opts_item .opts_item_title:after {
        width: 20px;
        height: 20px;
        background-size: 100% !important;
        top: calc(50% - 10px);
    }

    .warranty_opts .opts_item .opts_item_text {
        font-size: 4vw;
        padding-bottom: 10px;
    }

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

    .credit_tradein {
        flex-direction: column;
        gap: 120px;
        margin-top: 150px;
    }

    .credit {
        width: 100%;
        padding: 24vw 15px 15px;
        margin-top: 50px;
    }

    .credit_img {
        width: 100%;
        right: 0;
        top: -35vw;
    }

    .credit_img img {
        width: 100%;
    }

    .credit_title {
        /* font-size: 8vw; */
    }

    .credit_comment {
        font-size: 5vw;
        padding: 15px 0;
    }

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

    .tradein {
        width: 100%;
        padding: 24vw 15px 15px;
        margin-top: 50px;
    }

    .tradein_img {
        width: 100%;
        right: 0;
        top: -35vw;
    }

    .tradein_img img {
        width: 100%;
    }

    .tradein_title {
        /* font-size: 8vw; */
    }

    .tradein_comment {
        font-size: 5vw;
        padding: 15px 0;
    }


    /*******************************************************************/
    .advantages {
        margin-top: 60px;
    }

    .ags_title {
        font-size: 6.8vw;
    }

    .ags_img {
        margin-top: 20px;
        border-radius: 20px;
    }

    .ags_list > div:before {
        top: 15px;
        left: 15px;
    }

    .ags_list {
        margin-top: 30px;
        flex-flow: wrap;
        gap: 6px 0;
        justify-content: space-between;
    }

    .ags_list > div {
        width: 49%;
        border-radius: 20px;
        font-size: 3.6vw;
        min-height: auto;
        padding: 63px 15px 15px 15px;
    }

    .ags_list > div:last-child {
        /* margin: 0 auto; */
    }
    
    
	#map1 {
        margin-left: 0;
        width: 100%;
        max-width: none;
        height: 350px;
    }

    .map {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
    }

    #map1 {
        position: static;
        border-radius: 5px;
    }

    .contacts {
        margin-top: 50px;
        padding-top: 50px;
    }

    .contacts__content {
        padding: 20px;
        border-radius: 20px;
      }
    
    .contacts__place {
    white-space: wrap;
    }
    
    
    /************************************************************************/


}
@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*/
