/* import fonts */

@font-face {
    font-family:"NotoSans";
    src: url(../fonts/NotoSans-Regular.ttf) format("truetype");
    font-weight:400;
    font-style:normal;
    font-display: swap;
}
@font-face {
    font-family:"NotoSans";
    src: url(../fonts/NotoSans-Bold.ttf) format("truetype");
    font-weight:700;
    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: rgb(26 26 24 / 60%);
}

input, button, select {
    width: 100%;
    margin: 0;
    border: 1px solid #2A3537;
    box-shadow: none;
    border-radius: 0;
    padding: 5px 15px;
    background: transparent;
}

input::-moz-placeholder { color: rgb(26 26 24 / 60%); }
input::-webkit-input-placeholder { color: rgb(26 26 24 / 60%); }
input:-ms-input-placeholder { color: rgb(26 26 24 / 60%); }
input::placeholder { color: rgb(26 26 24 / 60%); } 

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: rgb(26 26 24 / 60%);
    width: 100%;
    padding-left: 15px;
    padding-right: 35px;
    border: 1px solid #2A3537;
}

.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: "NotoSans", Arial, sans-serif;
    font-size: 16px;
    color: #1A1A18;
    position: relative;
    font-weight: 400;
    padding: 0px;
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    padding-top: 155px;
}

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

.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: 48px;
}

form .form-group-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

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

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

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

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

.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: 25px 35px;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: 1440px;
    padding: 0 30px;
    margin: 0 auto;
}

.raw {
    display: flex;
}

.column-2 {
    width: 50%;
}

.column-3 {
    width: 33.333%;
}

.column-4 {
    width: 25%;
}

.bg_color1 {
}

.title {
    font-size: 46px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.title:before {
    content: "";
    display: block;
    position: absolute;
    background: #CBCBCB;
    bottom: 0;
    right: -20px;
    height: 1px;
    width: 800px;
}

.title:after {
    content: "";
    display: block;
    position: absolute;
    background: #CBCBCB;
    bottom: -2.5px;
    right: -20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.subtitle {}

.text {}

.desc {}

.comment {}

.text_color1 {}

.block-title_white {}

.text_thn {}

.text_bld {}

.text_left {}

.text_right {}

.text_upp {}



.slick-arrow {
    width: 68px !important;
    height: 68px !important;
    background: url(../img/arrow_slider_prev.svg) 50% no-repeat;
    z-index: 1;
    border-radius: 50%;
    color: transparent;
    font-size: 0;
    position: absolute;
    top: calc(50% - 34px);
    z-index: 1;
    cursor: pointer;
}

.slick-prev {
    left: -85px !important;
}

.slick-next {
    right: -85px !important;
    transform: rotate(180deg);
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

/* .slick-prev.slick-disabled,
.slick-next.slick-disabled {
    display: none !important;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #464e52 !important;
} */


.slick-dots {
    position: absolute;
    bottom: 80px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    gap: 10px;
    left: 0;
}

.slick-dots li {
    display: block;
    width: 120px;
    height: 5px;
    background: rgba(255,255,255,0.4);
    /* border-radius: 50%; */
}

.slick-dots li button {
    display: none;
}

.slick-dots li button:after {
    content: "";
    width: 0px;
    height: 2px;
    background: #99afb7;
    margin: 0 15px;
    transition: all .2s linear;
}

.slick-dots li.slick-active {
    background: #ffffff;
}

.slick-dots li.slick-active button {
    color: #fff;
}

.slick-dots li.slick-active button:after {
    width: 60px;
}


.btn {
    background: #003896;
    color: white;
    text-align: center;
    width: 308px;
    display: flex;
    align-items: center;
    border: 1px solid #003896;
    position: relative;
    text-decoration: none;
    transition:  all .2s linear;
}

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

.btn:hover {
    background-color: #1A1A18;
    border-color: #1A1A18;    
    color: #fff;
}

.btn_grey {
    background-color: #2A3537;
    border-color: #2A3537;    
    color: #fff;
}
.btn_grey:hover {
    background-color: #1A1A18;
    border-color: #1A1A18;    
    color: #fff;
}

.btn_glass {
    background-color: transparent;
    border-color: #003896;    
    color: #1A1A18;
}
.btn_glass:hover {
    background-color: #1A1A18;
    border-color: #1A1A18;    
    color: #fff;
}

/* common styles END */



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




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

.header {
    background: rgb(255 255 255 / 80%);
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    backdrop-filter: blur(5px);
}
.header__container {}
.header__content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #CBCBCB;
}
.header__logo-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.header__logo {}
.header__logo img {}
.header__logo1 {}
.header__logo2 {
    border-left: 1px solid #CBCBCB;
    padding-left: 15px;
}
.header__addr {}
.header__phone {
    font-weight: 700;
    font-size: 18px;
}
.header__btn {}

.header__menu {
    padding: 20px 30px;
    background: rgb(255 255 255 / 80%);
    position: absolute;
    z-index: 10;
    left: 0;
    top: 94px;
    width: 100%;
    backdrop-filter: blur(5px);
}

.header__menu.fixed {
    position: fixed;
    top: 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
}

.header__menu-item {
    transition: al .2s linear;
    text-shadow: 0 0 transparent;
}
.header__menu-item:hover {
    color: #003896;
    text-shadow: -0.2px 0.2px rgb(0 56 150 / 50%), 0.2px -0.2px rgb(0 56 150 / 50%), -0.2px 0.2px rgb(0 56 150 / 50%), 0.2px -0.2px rgb(0 56 150 / 50%), -0.2px 0.2px rgb(0 56 150 / 50%), 0.2px -0.2px rgb(0 56 150 / 50%), -0.2px 0.2px rgb(0 56 150 / 50%), 0.2px -0.2px rgb(0 56 150 / 50%), -0.2px 0.2px rgb(0 56 150 / 50%), 0.2px -0.2px rgb(0 56 150 / 50%), -0.2px 0.2px rgb(0 56 150 / 50%), 0.2px -0.2px rgb(0 56 150 / 50%);
}


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

.banner .slick-slide {
    position: relative;
}

.banner {}
.banner__bg {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: auto;
}
.banner__bg picture {position: relative;left: 50%;transform: translateX(-50%);width: 1920px;max-width: unset;z-index: -1;}

.banner__bg img {
}
.banner__container {}
.banner__content {padding-top: 145px;position: absolute;top: 0;left: 0;width: 100%;}
.banner__title-block {text-align: center;}
.banner__title-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.banner__title-wrapper:before {
    content: "";
    width: 100%;
    height: 142%;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20%;
    z-index: -1;
    background: linear-gradient(to right, transparent, #fff, transparent);
}
.banner__title-text {
    font-size: 26px;
}
.banner__title-text_1 {}
.banner__title-text_2 {
    font-size: 36px;
}

.banner__title-text_2 sup {
    font-size: 45%;
    top: -15px;
    left: -5px;
    line-height: 1;
}

.banner__title-text_3 {}
.banner__title-text_blue {
    color: #003896;
}
.banner__title-text_bold {
    font-weight: 700;
}
.banner__btn {}


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


.timer {
    position: relative;
    margin-top: -60px;
}
.timer__container {}
.timer__content {
    background: #F4F4F4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    flex-wrap: wrap;
}
.timer__form-block {}
.timer__from-title {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 15px;
}
.timer__form {}
.timer__timer {}
.timer__timer div[id*="timer"] {}
.timer__timer span[id*="timer"] {}
.cars {
    margin-top: 150px;
}
.cars__container {}
.cars__title {}
.cars__content {}
.cars__item {
    margin-top: 110px;
    background: #CACACA33;
    padding: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.cars__item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.car-title {
    font-size: 59px;
}
.car-adds {
    display: flex;
    justify-content: center;
    position: absolute;
    gap: 15px;
    top: -28px;
    left: 0;
    right: 0;
}
.car-adds__item {
    height: 60px;
    font-size: 22px;
    color: #fff;
    padding: 15px 40px;
    background: linear-gradient(190deg, #2A3537 40%, #2a3537c4 70%, #2a353766);
}
.car-adds__item_blue {
    padding: 15px 18px;
    background: linear-gradient(190deg, #003896 40%, #003896a1 70%, #00389666);
}
.car-props {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.car-props__item {
    font-size: 22px;
    padding-left: 45px;
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
}

.car-props__item:before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: linear-gradient(190deg, #003896 40%, #003896a1 70%, #00389666);
}

.car-props__item:after {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: 50%;
}
.car-props__item_ico1:after {
    background-image: url(../img/car_profit_ico1.svg);
}
.car-props__item_ico2:after {
    background-image: url(../img/car_profit_ico2.svg);
}
.car-props__item_ico3:after {
    background-image: url(../img/car_profit_ico3.svg);
}
.car-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.car-btns__btn {
    width: 100%;
}
.cars__item-colors {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    background: url(../img/car_image_bg.png) 100% 0 no-repeat;
    margin-top: -30px;
}
.cars__item-image {}
.cars__item-image picture {}
.cars__item-colordots {
    display: flex;
    gap: 10px;
}
.colordots-item {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s linear;
}

.colordots-item.active {
    transform: scale(1.4);
}

.cars__item-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cars__gallery-item {}


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


.instock .models_wrap {
    margin-top: 40px;
}
.instock .models_wrap .models {
    display: flex;
    justify-content: space-between;
}
.instock .models_wrap .model_name {
    text-align: center;
    color: #fff;
    cursor: pointer;
    width: 24%;
    border: 1px solid #fff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instock .models_wrap .model_name.active,
.instock .models_wrap .model_name:hover {
    color: #fff;
    background: #003896;
    border-color: #003896;
}
.instock .models_wrap .model_name span {}

.instock {
    position: relative;
    background: #2A3537;
    margin-top: 80px;
    padding: 80px 0;
    padding-bottom: 100px;
}

.instock__title {
    color: #fff;
}

.instock .title_block {
    color: #fff;
    border-color: #525d62;
}

.instock .container {
    z-index: 1;
}


.instock .compl_title {
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 35px;
    text-align: center;
    color: #ffffff;
}

.instock .compl_items {
    margin-top: 40px;
}


.instock .compl_items .item {
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    width: 363px;
    margin: 0 7px;
    height: auto;
    background-image: url(../img/compl_item_bg.svg);
    background-repeat: no-repeat;
    background-position: 100% 0;
}

.instock .compl_items .item .item_wrap {
    padding: 50px;
    padding-top: 0;
}

.instock .compl_items .item.show {
    display: flex;
}

.instock .compl_items .compl_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    min-height: 195px;
    padding: 20px 0;
}

.instock .compl_items .item .item_name {
    font-size: 30px;
    padding: 30px;
    padding-bottom: 0;
    font-weight: 300;
    text-transform: uppercase;
}

.instock .compl_items .item .item_compl {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 20px;
    min-height: 40px;
}

.instock .compl_items .item .item_specs > div {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    line-height: 1;
}

.instock .compl_items .item .item_specs > div:after {
}

.instock .compl_items .item .item_specs > div {}

.instock .compl_items .item .item_specs .specs_name {display: flex;width: 100%;align-items: flex-end;}

.instock .compl_items .item .item_specs .specs_name:after {
    content: "";
    width: 100%;
    display: block;
    height: 1px;
    border-bottom: dotted;
    border-color: #cbcbcb85;
    margin: 0 3px;
}

.instock .compl_items .item .item_specs .specs_val {
    font-weight: 700;
    white-space: nowrap;
}

.instock .compl_items .item .item_specs div.ico1 {
}

.instock .compl_items .item .item_specs div.ico2 {
}

.instock .compl_items .item .item_specs div.ico3 {
}

.instock .compl_items .compl_btns {
    width: 100%;
    margin-top: 25px;
}

.instock .compl_items .compl_btns .btn {
    width: 100%;
}

.instock .compl_items .compl_btns .btn:nth-child(1) {
    margin-bottom: 10px;
}



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


.credit {
    margin-top: 150px;
}
.credit__container {
    position: relative;
}
.credit__title {}
.credit__content {
    background: rgb(255 255 255 / 80%);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 195px;
    z-index: 1;
    max-width: 492px;
    padding: 40px;
    margin-left: 50px;
}
.credit__form {}
.credit__form-title {
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 15px;
}
.credit__bg {
    margin-top: 50px;
}


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


.tradein {
    margin-top: 150px;
}
.tradein__container {}
.tradein__title {}
.tradein__content {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.tradein__info {
    max-width: 407px;
}
.tradein__form {}
.tradein__form-title {
    font-size: 22px;
    padding-bottom: 27px;
}
.tradein__gallery {
    display: flex;
    gap: 20px;
}
.tradein__gallery-item {}
.tradein__gallery-item > div {
    overflow: hidden;
}
.tradein__gallery-item picture {
    transition: all .7s linear;
}
.tradein__gallery-item:hover > div picture {
    transform: scale(1.05);
}
.tradein__gallery-item-inner {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    gap: 20px;
}


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


.best-offer__bg {
    width: 1920px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.best-offer__bg img {
    max-width: unset;
}
.best-offer {
    margin-top: 150px;
    overflow: hidden;
    height: 454px;
    position: relative;
}
.best-offer__container {}
.best-offer__content {
    max-width: 475px;
    margin-left: auto;
    margin-top: 120px;
}
.best-offer__info {
    color: #fff;
}
.best-offer__title {font-size: 22px;font-weight: 700;}
.best-offer__form {}

.best-offer__form .agree_field {
    color: #fff;
}

.best-offer__form input, .best-offer__form select {
    border-color: #fff;
    color: #fff;
}

.best-offer__form input::-moz-placeholder { color: #fff; }
.best-offer__form input::-webkit-input-placeholder { color: #fff; }
.best-offer__form input:-ms-input-placeholder { color: #fff; }
.best-offer__form input::placeholder { color: #fff; } 

.best-offer__form-title {
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 20px;
}


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


.feedback {
    background: #2A3537;
    color: #fff;
    margin-top: 150px;
    padding: 110px 0;
    padding-bottom: 150px;
    position: relative;
    z-index: 1;
}
.feedback__container {}
.feedback__title {}
.feedback__content {
    margin-top: 50px;
}
.feedback__items {}
.feedback__item {
    padding: 30px;
    background: #fff;
    color: #1A1A18;
    margin: 0 5px;
    min-height: 280px !important;
}
.feedback__item-title {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}
.feedback__autor {}
.feedback__date {
    color: #1A1A1880;
}
.feedback__rating {
    display: flex;
    gap: 5px;
    margin-top: 8px;
}
.feedback__rating img {}
.feedback__text {
    margin-top: 20px;
}
.feedback__bg {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: -1;
}
.feedback__bg picture {}


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



.contacts {
    margin-top: 150px;
}
.contacts__container {
    position: relative;
}
.contacts__title {}
.contacts__content {
    background: rgb(255 255 255 / 80%);
    padding: 40px;
    position: absolute;
    z-index: 1;
    top: 240px;
    backdrop-filter: blur(10px);
}
.contacts__logo-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contacts__logo {}
.contacts__logo img {}
.contacts__logo1 {}
.contacts__logo2 {
    border-left: 1px solid #CBCBCB;
    padding-left: 15px;
}
.contacts__addr {
    padding: 5px 0;
    padding-left: 35px;
    background: url(../img/contacts_ico1.svg) 0 50% no-repeat;
    margin-top: 30px;
}
.contacts__openhours {
    padding: 5px 0;
    padding-left: 35px;
    background: url(../img/contacts_ico2.svg) 0 50% no-repeat;
    margin-top: 10px;
}
.contacts__phone {
    padding: 5px 0;
    padding-left: 35px;
    background: url(../img/contacts_ico3.svg) 0 50% no-repeat;
    margin-top: 10px;
    display: block;
}
.contacts__moreinfo {
    font-weight: 700;
    margin-top: 30px;
}
.contacts__btn {
    width: 100%;
    margin-top: 10px;
}


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



#map1 {
    height: 610px;
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
}


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



.footer {
    padding: 30px 0;
    color: inherit;
    font-size: 14px;
    background: #2A3537;
    color: #fff;
}
.footer__container {}

.yurinfo {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.footer__copyright {}
.footer__dislamer-btn {
    color: inherit;
    text-decoration: none;
}
.footer__comp-info {}
.footer__policy {
    color: inherit;
    text-decoration: none;
}
.footer__disclamer {font-size:14px;display: none;text-align: left;padding-top: 35px;}

.footer__madeinsinoby {
    display: flex;
    gap: 7px;
}


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

/* media */


/* desktop and laptops */

@media only screen and (min-width: 1280px) and (max-width: 1920px) { 
}
@media only screen and (min-width: 1280px) and (max-width: 1800px) { 
    .header {}
.header__container {}
.header__content {}
.header__logo-block {}
.header__logo {}
.header__logo img {}
.header__logo1 {}
.header__logo2 {}
.header__addr {}
.header__phone {}
.header__btn {}
.header__menu {}
.header__menu-item {}



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


.banner {}
.banner__bg {}
.banner__bg picture {}
.banner__container {}
.banner__content {}
.banner__title-block {}
.banner__title-wrapper {}
.banner__title-text {}
.banner__title-text_1 {}
.banner__title-text_2 {}
.banner__title-text_3 {}
.banner__title-text_blue {}
.banner__title-text_bold {}
.banner__btn {}


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


.timer {}
.timer__container {}
.timer__content {}
.timer__form-block {}
.timer__from-title {}
.timer__form {}
.timer__timer {}
.timer__timer div[id*="timer"] {}
.timer__timer span[id*="timer"] {}
.cars {}
.cars__container {}
.cars__title {}
.cars__content {}
.cars__item {}
.cars__item-info {}
.car-title {}
.car-adds {}
.car-adds__item {}
.car-adds__item_blue {}
.car-props {}
.car-props__item {}
.car-props__item_ico1 {}
.car-props__item_ico2 {}
.car-props__item_ico3 {}
.car-btns {}
.car-btns__btn {}
.cars__item-colors {}
.cars__item-image {}
.cars__item-image picture {}
.cars__item-colordots {}
.colordots-item {}
.cars__item-gallery {}
.cars__gallery-item {}

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

.credit {}
.credit__container {}
.credit__title {}
.credit__content {}
.credit__form {}
.credit__form-title {}
.credit__bg {}


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


.tradein {}
.tradein__container {}
.tradein__title {}
.tradein__content {}
.tradein__info {}
.tradein__form {}
.tradein__form-title {}
.tradein__gallery {}
.tradein__gallery-item {}
.tradein__gallery-item picture {}
.tradein__gallery-item-inner {}


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


.best-offer__bg {}
.best-offer__bg img {}
.best-offer {}
.best-offer__container {}
.best-offer__content {}
.best-offer__info {}
.best-offer__title {}
.best-offer__form {}
.best-offer__form-title {}


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


.feedback {}
.feedback__container {}
.feedback__title {}
.feedback__content {}
.feedback__items {}
.feedback__item {}
.feedback__item-title {}
.feedback__autor {}
.feedback__date {}
.feedback__rating {}
.feedback__rating img {}
.feedback__text {}
.feedback__bg {}
.feedback__bg picture {}


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



.contacts {}
.contacts__container {}
.contacts__title {}
.contacts__content {}
.contacts__logo-contacts {}
.contacts__logo {}
.contacts__logo img {}
.contacts__logo1 {}
.contacts__logo2 {}
.contacts__addr {}
.contacts__openhours {}
.contacts__phone {}
.contacts__moreinfo {}
.contacts__btn {}


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


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

.footer__madeinsinoby {}


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

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

    .slick-next {
        right: -30px !important;
    }

    .slick-prev {
        left: -30px !important;
    }

    .instock .models_wrap {}
.instock .models_wrap .models {}
.instock .models_wrap .model_name {}
.instock .models_wrap .model_name span {}

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

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

/* tablets */

@media only screen and (min-width: 768px) and (max-width: 1279px) { 

    .container {
        max-width: 1082px;
        padding: 0 15px;
    }

    .title {}

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

    .slick-list {
        overflow: hidden !important;
    }

    .instock .compl_items:before,
    .instock .compl_items:after {
        display: none;
    }

    .slick-prev {
        left: -43px !important;
    }

    .slick-next {
        right: -43px !important;
    }

    .instock .models_wrap {}
    .instock .models_wrap .models {}
    .instock .models_wrap .model_name {}
    .instock .models_wrap .model_name span {}
    
    /**************************************************************************************************************/

    .header {}
.header__container {}
.header__content {}
.header__logo-block {}
.header__logo {}
.header__logo img {}
.header__logo1 {}
.header__logo2 {}
.header__addr {
    display: none;
}
.header__phone {}
.header__btn {}
.header__menu {}
.header__menu-item {}



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


.banner {}
.banner__bg {
    height: auto;
    overflow: hidden;
    width: 100%;
}
.banner__bg picture {
    max-width: 140%;
}
.banner__container {}
.banner__content {
    padding-top: 20vw;
}
.banner__title-block {}
.banner__title-wrapper {
    gap: 0;
}

.banner__title-wrapper:before {
    height: 125%;
    top: -12%;
}
.banner__title-text {}
.banner__title-text_1 {
    font-size: 1.5vw;
}
.banner__title-text_2 {
    font-size: 2.5vw;
}
.banner__title-text_3 {
    font-size: 1.5vw;
}
.banner__title-text_blue {}
.banner__title-text_bold {}
.banner__btn {}


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


.timer {
    margin-top: -4vw;
}
.timer__container {}
.timer__content {}
.timer__form-block {}
.timer__from-title {}
.timer__form {}
.timer__timer {}
.timer__timer div[id*="timer"] {}
.timer__timer span[id*="timer"] {}
.cars {}
.cars__container {}
.cars__title {}
.cars__content {}
.cars__item {}
.cars__item-info {}
.car-title {
    font-size: 4vw;
}
.car-adds {}
.car-adds__item {}
.car-adds__item_blue {}
.car-props {}
.car-props__item {}
.car-props__item_ico1 {}
.car-props__item_ico2 {}
.car-props__item_ico3 {}
.car-btns {}
.car-btns__btn {}
.cars__item-colors {}
.cars__item-image {}
.cars__item-image picture {}
.cars__item-colordots {}
.colordots-item {}
.cars__item-gallery {}
.cars__gallery-item {}

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

.credit {}
.credit__container {}
.credit__title {}
.credit__content {
    top: 146px;
}
.credit__form {}
.credit__form-title {
    font-size: 1.5vw;
}
.credit__bg {}


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


.tradein {}
.tradein__container {}
.tradein__title {}
.tradein__content {}
.tradein__info {}
.tradein__form {}
.tradein__form-title {}
.tradein__gallery {}
.tradein__gallery-item {}
.tradein__gallery-item picture {}
.tradein__gallery-item-inner {}


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


.best-offer__bg {
    left: 33%;
}
.best-offer__bg img {}
.best-offer {}
.best-offer__container {}
.best-offer__content {}
.best-offer__info {}
.best-offer__title {}
.best-offer__form {}
.best-offer__form-title {}


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


.feedback {}
.feedback__container {}
.feedback__title {}
.feedback__content {}
.feedback__items {}
.feedback__item {}
.feedback__item-title {}
.feedback__autor {}
.feedback__date {}
.feedback__rating {}
.feedback__rating img {}
.feedback__text {}
.feedback__bg {}
.feedback__bg picture {}


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



.contacts {}
.contacts__container {}
.contacts__title {}
.contacts__content {}
.contacts__logo-contacts {}
.contacts__logo {}
.contacts__logo img {}
.contacts__logo1 {}
.contacts__logo2 {}
.contacts__addr {}
.contacts__openhours {}
.contacts__phone {}
.contacts__moreinfo {}
.contacts__btn {}


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


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

.footer__madeinsinoby {}
}
@media only screen and (min-width: 768px) and (max-width: 1112px) { 
    .container {
        max-width: 994px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) { 
    .container {
        max-width: 930px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
    .container {
        max-width: 100%;
    }

    .title {}

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

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

    .header {}
.header__container {}
.header__content {}
.header__logo-block {}
.header__logo {}
.header__logo img {}
.header__logo1 {}
.header__logo2 {}
.header__addr {}
.header__phone {}
.header__btn {}
.header__menu {}
.header__menu-item {}



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


.banner {}
.banner__bg {}
.banner__bg picture {}
.banner__container {}
.banner__content {}
.banner__title-block {}
.banner__title-wrapper {}
.banner__title-text {}
.banner__title-text_1 {}
.banner__title-text_2 {}
.banner__title-text_3 {}
.banner__title-text_blue {}
.banner__title-text_bold {}
.banner__btn {}


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


.timer {}
.timer__container {}
.timer__content {}
.timer__form-block {}
.timer__from-title {}
.timer__form {}
.timer__timer {}
.timer__timer div[id*="timer"] {}
.timer__timer span[id*="timer"] {}
.cars {}
.cars__container {}
.cars__title {}
.cars__content {}
.cars__item {}
.cars__item-info {}
.car-title {}
.car-adds {}
.car-adds__item {}
.car-adds__item_blue {}
.car-props {}
.car-props__item {}
.car-props__item_ico1 {}
.car-props__item_ico2 {}
.car-props__item_ico3 {}
.car-btns {}
.car-btns__btn {}
.cars__item-colors {}
.cars__item-image {}
.cars__item-image picture {}
.cars__item-colordots {}
.colordots-item {}
.cars__item-gallery {}
.cars__gallery-item {}

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

.credit {}
.credit__container {}
.credit__title {}
.credit__content {}
.credit__form {}
.credit__form-title {}
.credit__bg {}


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


.tradein {}
.tradein__container {}
.tradein__title {}
.tradein__content {}
.tradein__info {}
.tradein__form {}
.tradein__form-title {}
.tradein__gallery {}
.tradein__gallery-item {}
.tradein__gallery-item picture {}
.tradein__gallery-item-inner {}


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


.best-offer__bg {}
.best-offer__bg img {}
.best-offer {}
.best-offer__container {}
.best-offer__content {}
.best-offer__info {}
.best-offer__title {}
.best-offer__form {}
.best-offer__form-title {}


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


.feedback {}
.feedback__container {}
.feedback__title {}
.feedback__content {}
.feedback__items {}
.feedback__item {}
.feedback__item-title {}
.feedback__autor {}
.feedback__date {}
.feedback__rating {}
.feedback__rating img {}
.feedback__text {}
.feedback__bg {}
.feedback__bg picture {}


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



.contacts {}
.contacts__container {}
.contacts__title {}
.contacts__content {}
.contacts__logo-contacts {}
.contacts__logo {}
.contacts__logo img {}
.contacts__logo1 {}
.contacts__logo2 {}
.contacts__addr {}
.contacts__openhours {}
.contacts__phone {}
.contacts__moreinfo {}
.contacts__btn {}


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


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

.footer__madeinsinoby {}
}
@media only screen and (min-width: 768px) and (max-width: 834px) { 
}

/* mobiles */

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

    html {
        overflow-x: hidden;
    }

    body {
        padding-top: 150px;
    }
    
    .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%;padding: 20px 15px;}


    .slick-dots {
        bottom: 20px; 
    }
    .slick-dots li.slick-active button:after {
        width: 30px;
    }

    .slick-list {
        overflow: hidden !important;
    }

    .slick-prev {
        left: -30px !important;
        transform: scale(.5);
        top: calc(50% - 17px);
    }

    .slick-next {
        right: -30px !important;
        transform: scale(.5) rotate(180deg);
        top: calc(50% - 17px);
    }

    .btn {
        width: 100%;
    }

    .title {
    font-size: 7vw;
}

    .form-title {}

    form .form-group-wrapper {
    flex-wrap: wrap;
}
    
    form .form-group-wrapper .form-group {
    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: #003896;
        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 {
    background: rgb(255 255 255 / 95%);
    position: fixed;
}
    .header__container {}
    .header__content {
    flex-wrap: wrap;
    gap: 10px;
    border: 0;
}
    .header__logo-block {
    max-width: 80%;
}
    .header__logo {}
    .header__logo img {}
    .header__logo1 {}
    .header__logo2 {}
    .header__addr {
    display: none;
}
    .header__phone {
    /* order: 1; */
    position: fixed;
    top: calc(100vh - 51px);
    width: 100%;
    text-align: center;
    left: 0;
    color: #fff;
    background: linear-gradient(190deg, #2A3537 40%, #3a4345 70%, #4d5556);
    padding: 15px 0;
}
    .header__btn {
    order: 1;
}
    .header__menu {
        left: 100%;
        top: 130px;
        transition: all .2s linear;
        background: rgb(255 255 255 / 95%);
        backdrop-filter: blur(5px);
        padding-top: 30px;
        position: fixed;
    }
    
    .header__container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    
    .header__menu.active {
    left: 0;
}

.header__menu-item {}
    
    
    
    /**************************************************************************************************************/
    
    
    .banner {
    /* margin-top: 24vw; */
}
    .banner__bg {
    height: auto;
    /* padding-top: 42px; */
}
    .banner__bg picture {
    width: 100%;
}
    .banner__container {}
    .banner__content {
    padding-top: 9vw;
}
    .banner__title-block {}
    .banner__title-wrapper {}

.banner__title-wrapper:before {
    height: 120%;
    top: -10%;
}
    .banner__title-text {}
    .banner__title-text_1 {
    font-size: 6vw;
}
    .banner__title-text_2 {
    font-size: 7.25vw;
    padding: 0 15px;
}
    .banner__title-text_3 {
    font-size: 5.5vw;
}
    .banner__title-text_blue {}
    .banner__title-text_bold {
    font-size: .85em;
}
    .banner__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .timer {
    margin: 0;
    margin-top: 0px;
    background: #F4F4F4;
}
    .timer__container {}
    .timer__content {
    gap: 10px;
    padding: 30px 0;
    padding-top: 22vw;
    position: relative;
}
    .timer__form-block {
    order: 1;
    margin-top: 20px;
}
    .timer__from-title {
    text-align: center;
    font-size: 5vw;
    position: absolute;
    top: 30px;
    width: 100%;
    left: 0;
}
    .timer__form {}
    .timer__timer {
    transform: scale(0.65);
}
    .timer__timer div[id*="timer"] {}
    .timer__timer span[id*="timer"] {}
    .cars {
    margin-top: 60px;
}
    .cars__container {}
    .cars__title {}
    .cars__content {}
    .cars__item {
    flex-wrap: wrap;
    margin-top: 65px;
    padding-top: 30vw;
    padding-left: 15px;
    padding-right: 15px;
    gap: 20px;
}
    .cars__item-info {
    width: 100%;
    gap: 20px;
}
    .car-title {
    font-size: 10vw;
    position: absolute;
    top: 5vw;
}
    .car-adds {
    /* position: static; */
    /* flex-wrap: wrap; */
    /* justify-content: space-between; */
    gap: 10px;
}
    .car-adds__item {
    font-size: 3.6vw;
    display: flex;
    align-items: center;
    height: auto;
    padding: 3vw 6vw;
}
    .car-adds__item_blue {
    padding: 3vw 4vw;
}
    .car-props {
    gap: 10px;
}
    .car-props__item {
    font-size: 4vw;
}
    .car-props__item_ico1 {}
    .car-props__item_ico2 {}
    .car-props__item_ico3 {}
    .car-btns {}
    .car-btns__btn {}
    .cars__item-colors {
    order: -1;
    background-size: 75%;
    padding-top: 30px;
}
    .cars__item-image {}
    .cars__item-image picture {}
    .cars__item-colordots {}
    .colordots-item {}
    .cars__item-gallery {
    flex-direction: row;
    gap: 8px;
}
    .cars__gallery-item {}
    
    /**************************************************************************************************************/


    .instock {
        margin-top: 60px;
        padding: 60px 0;
        /*margin-bottom: 70px;*/
        padding-bottom: 100px;
    }

    .title_block .title {
        font-size: 28px;
    }

    .instock .models_wrap {
    margin-top: 30px;
}
    .instock .models_wrap .models {}
    .instock .models_wrap .model_name {
    font-size: 3.3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 2vw 0;
}
    .instock .models_wrap .model_name span {}

    .instock .compl_items:after,
    .instock .compl_items:before {
        display: none;
    }

    .instock .compl_items {
        padding: 0 15px;
        margin-top: 30px;
    }

    

    .instock .compl_title {
        text-align: center;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .instock .compl_items .item {
        padding-top: 0;
        margin: 0;
    }

    .instock .compl_items .item.show {
        display: flex;
        flex-wrap: wrap;
    }

    .instock .compl_items .compl_image {
        width: 100%;
    }

    .instock .compl_items .compl_image img {
        margin: 0 auto;
        padding: 0;
    }

    .instock .compl_items .compl_btns {
        width: 100%;
        margin-top: 15px;
    }

    .instock .compl_items .compl_btns .btn {
        font-size: 14px;
    }

    .instock .compl_items .item .item_wrap {
        padding: 15px;
    }



    /**************************************************************************************************************/
    
    .credit {
    margin-top: 60px;
    overflow: hidden;
}
    .credit__container {}
    .credit__title {}
    .credit__content {
    max-width: 100%;
    width: 100%;
    margin: 0;
    position: static;
    padding: 0;
    margin-top: 25px;
}
    .credit__form {}
    .credit__form-title {}
    .credit__bg {
    margin-top: 30px;
    width: 200%;
    position: relative;
    left: 10%;
    transform: translateX(-50%);
}

.credit__bg pictire {
    max-width: 200%;
}
    
    
    /**************************************************************************************************************/
    
    
    .tradein {
    margin-top: 60px;
}
    .tradein__container {}
    .tradein__title {}
    .tradein__content {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
}
    .tradein__info {
    max-width: 100%;
}
    .tradein__form {}
    .tradein__form-title {}
    .tradein__gallery {
    /* flex-wrap: wrap; */
    gap: 2.5%;
}
    .tradein__gallery-item {}
    .tradein__gallery-item picture {}
    .tradein__gallery-item-inner {
    gap: 0;
    justify-content: space-between;
}
    
    
    /**************************************************************************************************************/
    
    
    .best-offer__bg {
    width: 200%;
    position: relative;
    left: 73%;
    order: 1;
}

.best-offer__bg picture {
    max-width: 200%;
    width: 100%;
}
    .best-offer__bg img {
    max-width: 100%;
}
    .best-offer {
    margin-top: 60px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
    .best-offer__container {
    max-width: 100%;
}
    .best-offer__content {
    max-width: 100%;
    margin: 0;
}
    .best-offer__info {
    color: inherit;
}
    .best-offer__title {}
    .best-offer__form {}

.best-offer__form input, .best-offer__form select {
    color: inherit;
    border-color: inherit;
}

.best-offer__form .agree_field {
    color: inherit;
}

.best-offer__form input::-moz-placeholder { color: rgb(26 26 24 / 60%); }
.best-offer__form input::-webkit-input-placeholder { color: rgb(26 26 24 / 60%); }
.best-offer__form input:-ms-input-placeholder { color: rgb(26 26 24 / 60%); }
.best-offer__form input::placeholder { color: rgb(26 26 24 / 60%); } 

    .best-offer__form-title {}
    
    
    /**************************************************************************************************************/
    
    
    .feedback {
    padding: 60px 0;
    margin-top: 60px;
    padding-bottom: 120px;
}
    .feedback__container {}
    .feedback__title {}
    .feedback__content {}
    .feedback__items {}
    .feedback__item {
    min-height: 1px !important;
}
    .feedback__item-title {
}
    .feedback__autor {
    font-size: 14px;
}
    .feedback__date {
    font-size: 13px;
}
    .feedback__rating {}
    .feedback__rating img {}
    .feedback__text {
    font-size: 14px;
}
    .feedback__bg {}
    .feedback__bg picture {}
    
    
    /**************************************************************************************************************/
    
    
    
    .contacts {
    margin-top: 60px;
}
    .contacts__container {}
    .contacts__title {}
    .contacts__content {
    position: static;
    padding: 0;
    margin-top: 30px;
}
    .contacts__logo-contacts {}
    .contacts__logo {}
    .contacts__logo img {}
    .contacts__logo1 {}
    .contacts__logo2 {}
    .contacts__addr {}
    .contacts__openhours {}
    .contacts__phone {}
    .contacts__moreinfo {}
    .contacts__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .footer {
    }
    .footer__container {}
    .footer__content {
    justify-content: center;
    text-align: center;
}
    .footer__copyright {}
    .footer__dislamer-btn {
    width: 100%;
    }
    .footer__comp-info {}
    .footer__policy {
    width: 100%;
    }
    .footer__disclamer {}
    
    .footer__madeinsinoby {
    width: 100%;
    justify-content: center;
}

    /************************************************************************/
    
    
	#map1 {
        margin-left: 0;
        width: 100%;
        max-width: none;
        height: 350px;
    }
    
    
    /************************************************************************/


}
@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) {
    .timer__timer {
        transform: scale(.5);
        height: 80px;
    }
}
@media only screen and (max-width: 414px) { 
}
@media only screen and (max-width: 375px) { 
}
@media only screen and (max-width: 360px) { 
    .timer__timer {
        transform: scale(.45);
        height: 60px;
    }
}
@media only screen and (max-width: 320px) { 
}


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

/* media END*/

















