html {
    overflow-x: hidden;
}

body {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    font-family: "Changan Uni Type", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    background: #ffffff;
    overflow-x: hidden;
}

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

* {
    box-sizing: border-box;
}

ul {
    list-style: none;
    padding: 0;
}

input[type=file] {
    display: none;
}

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

img {
    border-style: none;
    vertical-align: middle;
    max-width: 100%;
    transition: 0.5s;
}

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

select {
    appearance: none;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    background: url(../img/select_ico.svg) 100% 50% no-repeat;
    font-family: "Onest", sans-serif;
    outline: none;
    border: 1px solid #0B0D0C;
}

a {
    text-decoration: none;
    color: black;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1470px;
    position: relative;
}

@media (min-width: 576px) {
    .container {
        width: 760px;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        width: 990px;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 1170px;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1470px;
        max-width: 100%;
    }
}

@media (min-width: 1570px) {
    .container {
        width: 1470px;
        max-width: 100%;
    }
}

input[type=text],
input[type=tel] {
    color: #939393;
}

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

#form_popup {
    display: none;
}

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

.popup_container .agree_field {
    font-size: 12px;
    color: #615D5E;
}

.popup_container .agree_field a {
    color: #615D5E;
    text-decoration: underline;
}

.popup_container h2 {
    margin: 0;
    padding-top: 25px;
    padding-bottom: 29px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #0B0D0C;
    text-transform: uppercase;
}

.popup_container .form_comment {
    text-align: center;
    font-size: 20px;
    color: #0B0D0C;
    padding-bottom: 15px;
}

.popup_container .form_comment a {
    display: block;
    color: #0B0D0C;
    text-decoration: none;
}

.popup_container .form-group {
    margin-bottom: 19px;
}

.popup_container .form-group input[type=text],
.popup_container .form-group input[type=tel] {
    display: block;
    height: 50px;
    line-height: 100%;
    text-decoration: none;
    text-align: left;
    /* text-transform: uppercase; */
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    background: transparent;
    color: #0B0D0C;
    border: 1px solid #0B0D0C;
    border-radius: 50px;
    padding: 0 16px;
}

.popup_container .form-group ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #6C6C6C;
}

.popup_container .form-group ::-moz-placeholder {
    /* Firefox 19+ */
    color: #6C6C6C;
}

.popup_container .form-group :-ms-input-placeholder {
    /* IE 10+ */
    color: #6C6C6C;
}

.popup_container .form-group :-moz-placeholder {
    /* Firefox 18- */
    color: #6C6C6C;
}

.popup_container .form-group textarea {
    color: #000000;
    display: block;
    height: 100px;
    text-decoration: none;
    text-align: left;
    /* text-transform: uppercase; */
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    background: none;
    border: 1px solid #DFDFDF;
    border-radius: 50px;
    padding: 10px;
    resize: none;
    font-size: 16px;
}

.popup_container .form-group select {
    color: #000000;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    padding-left: 16px;
    height: 50px;
    border: 1px solid #0B0D0C;
}

.popup_container .form-group button {
    cursor: pointer;
}


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

.agree_field {
    font-size: 12px;
    line-height: 100%;
    position: relative;
    display: inline-block;
    font-weight: 400;
    padding-left: 26px;
    color: #615D5E;
    cursor: pointer;
}
.agree_field a {
    color: #615D5E;
    text-decoration: underline;
}
.agree_field input {
    position: absolute;
    left: -5000px;
    visibility: hidden;
}

.agree_field input+a {
    color: #615D5E;
}

.agree_field input+span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14px;
    height: 14px;
    border: 1px solid #0B0D0C;
    background: transparent;
    position: absolute;
    top: -1px;
    left: 0;
}
.agree_field input+span:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: transparent;
}

.agree_field input:checked+span:before {
    background: #000000;
}

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

form .form-group input[type="text"],
form .form-group input[type="tel"] {
    font-family: "Changan Uni Type", sans-serif;
    height: 50px;
    width: 100%;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #DFDFDF;
    border-radius: 50px;
    padding: 0 16px;
    outline: none;
}

select {
    font-family: "Changan Uni Type", sans-serif;
    display: block;
    color: #000000;
    height: 50px;
    width: 100%;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    background: url(../img/select_ico.svg) right 16px center no-repeat;
    border: 1px solid #DFDFDF;
    border-radius: 50px;
}

form .form-group button {
    font-family: "Changan Uni Type", sans-serif;
    width: 100%;
    height: 45px;
    cursor: pointer;
    outline: none;
}
form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #6C6C6C;
}

form ::-moz-placeholder {
    /* Firefox 19+ */
    color: #6C6C6C;
}

form :-ms-input-placeholder {
    /* IE 10+ */
    color: #6C6C6C;
}

form :-moz-placeholder {
    /* Firefox 18- */
    color: #6C6C6C;
}

.form_title {
    margin: 0;
    padding: 0;
    padding-bottom: 47px;
    color: #0B0D0C;
    font-size: 36px;
    text-align: center;
}

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


.btn {
    position: relative;
    width: 280px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: #0B457F;
    border: 1px solid #0B457F;
    border-radius: 50px;
    transition: all .2s linear;
    cursor: pointer;
    overflow: hidden;
}

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

.btn:before,.btn:after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100px) skewX(-15deg);
}
.btn:before {
    width: 60px;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(30px);
    opacity: 0.5;
}
.btn:after {
    width: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(5px);
}
.btn:hover:before,.btn:hover:after {
    transform: translateX(500px) skewX(-15deg);
    transition: all 0.9s ease;
}

.btn.glass {
    background: transparent;
    color: #0B457F;
}
.btn.glass:hover {
    background: #FF9632;
    color: #ffffff;
}

.btn.gray {
    background: #3C4650;
    border-color: #3C4650;
}
.btn.gray:hover {
    background: #FF9632;
    border-color: #FF9632;
}

.section_item {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

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

.header {
    position: fixed;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 8;
}

.header .header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.header .logo_wrap {
    display: flex;
    align-items: center;
}

.header .logo1 {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 12px;
    margin-right: 12px;
}
.header .logo1:before {
    content: '';
    position: absolute;
    right: 0;
    width: 1px;
    height: 25px;
    background: #DDE1E1;
}

.header .top_addr {
    font-size: 16px;
    font-weight: 400;
}

.header .top_phone a {
    font-size: 16px;
    font-weight: 400;
}

.header .btn {
    width: 200px;
}

.header .m_btn {
    display: none;
}

.menu {
    background: #E9EBEA;
}
.main_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
.main_menu a {
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s linear;
}
.main_menu a:hover {
    color: #5F7891;
}

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

.main_banner {
    margin-top: 126px;
}

.main_banner .slider_item {
    height: 650px;
}

.main_banner .banner_slide1 {
    background: url("../img/bg1.jpg") 50% 0 no-repeat;
}

.main_banner .title_container {
    position: relative;
    top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_banner .title_container .title1 {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 36px;
    font-size: 18px;
    font-weight: 700;
}
.main_banner .title_container .title1:before {
    content: '';
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background: url(../img/title1_ico.svg) no-repeat;
}
.main_banner .title_container .title2 {
    margin-top: 18px;
    font-size: 60px;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
}
.main_banner .title_container .title2 span {
    color: #0B457F;
}
.main_banner .btn {
    margin-top: 20px;
    width: 280px;
}

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

.timer_block {
    margin-top: -40px;
}
.timer_wrap {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background: #E9EBEA;
    border-radius: 60px;
}
.timer_wrap:before {
    content: '';
    position: relative;
    display: block;
    width: 1px;
    height: 160px;
    background: #CCCCCC;
    order: 2;
}

.timer {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    width: 600px;
}
.timer_title {
    font-size: 24px;
    font-weight: 400;
}
.timer_title br {
    display: none;
}
.timer div[id^="timer"] {
    display: flex;
    white-space: nowrap;
}
.timer_form {
    width: 688px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    order: 3;
}
.timer_form_title {
    font-size: 24px;
    font-weight: 400;
}
.timer_form_title b {
    display: block;
    margin-top: 8px;
    text-transform: uppercase;
    color: #0B457F;
}
.timer_form_title .br_mob {
    display: none;
}
#timer_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#timer_form .form-group input[type="text"],
#timer_form .form-group input[type="tel"] {
    height: 45px;
}
#timer_form .form-group:nth-child(7) {
    width: 56%;
}
#timer_form .form-group:nth-child(8) {
    width: 42%;
}
#timer_form .btn {
    width: 100%;
}

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

.cars_menu {
    margin-top: 60px;
}
.cars_menu_list {
    margin-top: 50px;
    padding: 0 76px;
}
.cars_menu .cars_menu_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 158px;
    height: 158px;
}
.cars_menu .cars_menu_item img {
    position: relative;
    max-width: 64%;
    z-index: 2;
}
.cars_menu .cars_menu_item .cars_menu_title {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 158px;
    height: 158px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    background: #3C4650B2;
    backdrop-filter: blur(2px);
    border-radius: 100px;
    opacity: 0;
    z-index: 3;
    transition: all 0.2s linear;
}
.cars_menu .cars_menu_item:hover .cars_menu_title {
    opacity: 1;
}
.cars_menu .cars_menu_item:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    background: #E9EBEA;
}
.cars_menu .cars_menu_item:after {
    content: '';
    position: absolute;
    width: 154px;
    height: 154px;
    border-radius: 100px;
    border: 2px solid #E9EBEA;
}

.cars_menu_list .slick-arrow {
    position: absolute;
    top: 28%;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background: url(../img/menu_arrow_btn.svg) 50% 50% no-repeat #000000;
    font-size: 0;
    border: none;
    cursor: pointer;
    transition: all 0.2s linear;
}
.cars_menu_list .slick-arrow:hover {
    background-color: #5F7891;
}
.cars_menu_list .slick-arrow.slick-disabled {
    opacity: 0.3;
}
.cars_menu_list .slick-prev {
    left: 0;
}
.cars_menu_list .slick-next {
    right: 0;
    transform: rotate(180deg);
}
.cars_menu_list .slick-dots {
    margin: 0;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    column-gap: 6px;
}
.cars_menu_list .slick-dots button {
    display: none;
}
.cars_menu_list .slick-dots li {
    width: 8px;
    height: 8px;
    background: #00000033;
    border-radius: 50px;
    cursor: pointer;
}
.cars_menu_list .slick-dots .slick-active {
    background: #000000;
}

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

.cars_items {
    margin-top: 60px;
}
.car_item {
    margin-top: 50px;
}
.car_wrapper {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    padding: 40px;
    background: url("../img/car_bg.png") 0 50% no-repeat #E9EBEA;
    border-radius: 80px;
}
.car_block {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 170px;
}
.img_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.img_block .dots {
    width: fit-content;
    display: flex;
    column-gap: 8px;
    padding: 14px 16px;
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 0 4px 10px 0 #0000002B;
    cursor: pointer;
}
.img_block .dots .dot_color {
    width: 32px;
    height: 32px;
    border: 1px solid transparent;
    border-radius: 50px;
    transition: all 0.2s linear;
}
.img_block .dots .dot_color.wt {
    border-color: #C7C7C7;
}
.img_block .dots .dot_color.active {
    border: 2px solid #FF9632;
}
.car_name {
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.car_name span {
    color: #0B457F;
}
.car_gallery {
    position: absolute;
    left: 0;
    width: 112px;
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 4px 10px 0 #0000002B;
}
.car_block .car_gallery .slick-list {
    width: 80px;
}
.car_block .car_gallery a {
    position: relative;
    min-height: 50px;
    margin: 4px 0;
    border-radius: 8px;
    overflow: hidden;
}
.car_block .car_gallery a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #FF9632;
    border-radius: 8px;
    opacity: 0;
    z-index: 2;
    transition: all 0.2s linear;
}
.car_block .car_gallery a:hover:before {
    opacity: 1;
}
.car_gallery .slick-arrow {
    width: 26px;
    height: 26px;
    background: url(../img/car_arrow_btn.svg) 50% 50% no-repeat #000000;
    border-radius: 50px;
    font-size: 0;
    border: none;
    cursor: pointer;
    transition: all 0.2s linear;
}
.car_gallery .slick-arrow:hover {
    background-color: #5F7891;
}
.car_gallery .slick-arrow.slick-next {
    transform: rotate(180deg);
}

.info_block {
    padding: 32px;
    background: #FFFFFF;
    border-radius: 50px;
    box-shadow: 0 4px 10px 0 #0000002B;
}

.car_profit {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding-left: 56px;
    font-size: 18px;
    font-weight: 400;
}
.car_profit b {
    color: #0B457F;
    transition: all 0.2s linear;
}
.car_profit:hover b {
    color: #FF9632;
}
.car_profit:before {
    content: '';
    position: absolute;
    left: 0;
    width: 44px;
    height: 44px;
    background: url(../img/car_profit_ico.svg) no-repeat;
    transition: all 0.2s linear;
}
.car_profit:hover:before {
    background: url(../img/car_profit_ico_hov.svg) no-repeat;
}

.car_props {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.car_props a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 34px;
    padding-left: 46px;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}
.car_props a:before {
    content: '';
    position: absolute;
    left: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    transition: all 0.2s linear;
}
.car_props .ico1:before {
    background: url(../img/car_props_ico1.svg) 50% 50% no-repeat #E9EBEA;
}
.car_props .ico1:hover:before {
    background: url(../img/car_props_ico1_hov.svg) 50% 50% no-repeat #0B457F;
}
.car_props .ico2:before {
    background: url(../img/car_props_ico2.svg) 50% 50% no-repeat #E9EBEA;
}
.car_props .ico2:hover:before {
    background: url(../img/car_props_ico2_hov.svg) 50% 50% no-repeat #0B457F;
}
.car_props .ico3:before {
    background: url(../img/car_props_ico3.svg) 50% 50% no-repeat #E9EBEA;
}
.car_props .ico3:hover:before {
    background: url(../img/car_props_ico3_hov.svg) 50% 50% no-repeat #0B457F;
}
.car_props .ico4:before {
    background: url(../img/car_props_ico4.svg) 50% 50% no-repeat #E9EBEA;
}
.car_props .ico4:hover:before {
    background: url(../img/car_props_ico4_hov.svg) 50% 50% no-repeat #0B457F;
}

.car_btns {
    width: 376px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.car_btns .btn {
    width: 100%;
}

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

#instock {
    margin-top: 120px;
}
.filter_quick_menu {
    display: none;
}

#filter_table {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    column-gap: 24px;
}
#filter_table .select_container {
    width: -webkit-fill-available;
}

#tb_complects {
    margin-top: 60px;
    width: 100%;
}
#tb_complects tbody {
    display: flex;
    column-gap: 2%;
    flex-wrap: wrap;
    row-gap: 30px;
}
#tb_complects tbody tr:nth-child(1) {
    display: none;
}
#tb_complects tbody tr td:before {
    display: none;
}

#tb_complects .item {
    display: grid;
    width: 32%;
}
#tb_complects .item .compl_img {
    display: flex;
    justify-content: center;
    padding: 32px 0;
    border-radius: 50px 50px 0 0;
    background: #E9EBEA;
}

.compl_wrap {
    padding: 24px;
    background: #ffffff;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 4px 10px 0 #0000002B;
}
.compl_block {
    display: flex;
    column-gap: 32px;
}
.compl_name {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 4px;
    padding: 0 16px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 14px;
    background: #E9EBEA;
}
.compl_name span {
    color: #0B457F;
}

.compl_tehs {
    width: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.compl_tehs div {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E9EBEA;
}
.compl_tehs div span {
    color: #737373;
}
#tb_complects .btns {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
#tb_complects .btns .btn {
    width: 100%;
}

.tb_complects_showmore {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
}

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

.tradein {
    margin-top: 120px;
    padding-top: 80px;
    background: #E9EBEA;
}
.tradein_wrapper {
    display: flex;
    justify-content: space-between;
    column-gap: 80px;
    padding: 40px 40px 40px 80px;
    background: #FFFFFF;
    border-radius: 80px;
    box-shadow: 0 4px 10px 0 #00000017;
}
.tradein .section_item {
    text-align: left;
}
.tradein_block {
    min-width: 465px;
}
#tradein_form {
    margin-top: 20px;
}
#tradein_form .btn {
    margin-top: 20px;
}
.tradein_img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
    border-radius: 40px;
    overflow: hidden;
}
.tradein_img img {
    position: absolute;
    max-width: initial;
    height: 100%;
    transition: all 0.4s linear;
}
.tradein_img:hover img {
    transform: scale(1.05);
}

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

.credit {
    padding-top: 90px;
    background: #E9EBEA;
}
.credit_wrapper {
    display: flex;
    justify-content: space-between;
    column-gap: 80px;
    padding: 40px 80px 40px 40px;
    background: #FFFFFF;
    border-radius: 80px;
    box-shadow: 0 4px 10px 0 #00000017;
}
.credit .section_item {
    text-align: left;
}
.credit_title {
    margin-top: 18px;
    font-size: 24px;
    font-weight: 400;
}
.credit_block {
    min-width: 465px;
}
#credit_form {
    margin-top: 20px;
}
#credit_form .btn {
    margin-top: 20px;
}
.credit_img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
    border-radius: 40px;
    overflow: hidden;
}
.credit_img img {
    position: absolute;
    max-width: initial;
    height: 100%;
    transition: all 0.4s linear;
}
.credit_img:hover img {
    transform: scale(1.04);
}

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

.contacts {
    padding-top: 90px;
    background: #E9EBEA;
}

.contacts_wrapper {
    display: flex;
    justify-content: space-between;
    column-gap: 80px;
    padding: 40px 40px 40px 80px;
    border-radius: 80px;
    background: #ffffff;
    box-shadow: 0 4px 10px 0 #00000017;
}

.contacts .logo_wrap {
   display: flex;
    align-items: center;
}

.contacts .logo_wrap {
    display: flex;
    align-items: center;
}

.contacts .logo3 {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 12px;
    margin-right: 12px;
}
.contacts .logo3:before {
    content: '';
    position: absolute;
    right: 0;
    width: 1px;
    height: 25px;
    background: #DDE1E1;
}

.contacts .section_item {
    margin-top: 14px;
    text-align: left;
}
.contacts_block {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.contacts_block > div {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}
.contacts .btn {
    margin-top: 20px;
    width: 350px;
}


#map1 {
    width: -webkit-fill-available;
    height: 364px;
    background: url(../img/map.jpg) 50% 0 no-repeat;
    background-size: cover;
    border-radius: 40px;
    overflow: hidden;
}

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

.footer {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #E9EBEA;
}
.footer .footer_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 40px;
    border-radius: 40px;
    background: #ffffff;
    box-shadow: 0 4px 10px 0 #00000017;
}
.footer .disclamer {
    width: 100%;
    font-size: 12px;
    display: none;
    text-align: left;
    padding-top: 35px;
}
.your_info {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.footer_block {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.footer_block a {
    font-size: 16px;
    font-weight: 700;
}

.sinoby img {
    position: relative;
    top: -2px;
}

/*------------------------------------------------------------------------------------------------------------------------*/

@media (max-width: 1920px) {}

@media (max-width: 1800px) {}

@media (max-width: 1570px) {}

@media (max-width: 1390px) {
    .main_banner .title_container .title2 {
        font-size: 42px;
    }

    .timer_block {
        margin-top: 30px;
    }
    .timer_title br {
        display: block;
    }
    .timer {
        width: fit-content;
    }
    .timer div[id^="timer"] {
        display: flex;
        white-space: nowrap;
        transform: scale(0.8) !important;
        width: 510px;
        position: relative;
        left: -50px;
    }
    .timer_wrap:before {
        display: none;
    }

    #tb_complects .item {
        width: 48%;
    }

    #tb_complects tbody {
        column-gap: 4%;
    }

    .tradein_wrapper {
        column-gap: 30px;
        padding: 20px 20px 20px 40px;
        border-radius: 40px;
    }
    .tradein_img {
        border-radius: 30px;
    }

    .credit_wrapper {
        column-gap: 30px;
        padding: 20px;
        border-radius: 40px;
    }
    .credit_img {
        border-radius: 30px;
    }

    .contacts_wrapper {
        column-gap: 30px;
        padding: 20px 20px 20px 40px;
        border-radius: 40px;
    }
}

@media (max-width: 1186px) {
    .timer_wrap {
        padding: 26px;
        border-radius: 40px;
    }
    .timer_form_title {
        font-size: 18px;
    }
    .car_block {
        padding-left: 100px;
    }
}

/*IPAD PRO BEGIN*/
@media (min-width: 768px) and (max-width: 1199px) {}

/*IPAD PRO BEGIN*/

/*IPAD BEGIN*/
@media (min-width: 768px) and (max-width: 991px) {}

@media (max-width: 991px) {
    .header .top_addr {
        display: none;
    }

    .header .header_wrapper {
        flex-wrap: wrap;
    }

    .header .btn {
        display: none;
    }

    .header .m_btn {
        display: block;
        position: absolute;
        top: 28px;
        right: 15px;
        width: 30px;
        height: 22px;
        z-index: 1;
    }

    .top_phone {
        width: 100%;
        margin-top: 12px;
        display: flex;
        justify-content: center;
    }

    .header .m_btn span {
        position: absolute;
        display: block;
        width: 30px;
        height: 2px;
        background: #000000;
        transition: all .2s linear;
    }

    .header .m_btn span:nth-child(1) {
        top: 0;
    }

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

    .header .m_btn span:nth-child(3) {
        bottom: 0;
    }

    .header .m_btn.active span:nth-child(1) {
        transform-origin: top right;
        transform: rotate(-47deg);
        top: 0;
    }

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

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

    .header .menu {
        position: fixed;
        width: 100%;
        top: 108px;
        left: 100%;
        background: white;
        z-index: 10;
        height: auto;
        transition: all .2s linear;
        overflow: scroll;
    }

    .header .menu.active {
        left: 0;
    }

    .main_menu {
        flex-direction: column;
        align-items: center;
        padding: 16px 0;
        row-gap: 14px;
        height: initial;
    }

    .main_banner {
        margin-top: 106px;
    }

    .timer_wrap {
        flex-direction: column;
        align-items: center;
    }
    .timer_title {
        text-align: center;
    }
    .timer div[id^="timer"] {
        left: initial;
    }
    .timer_form {
        margin-top: 20px;
        width: fit-content;
    }
    .timer_form_title {
        font-size: 20px;
        text-align: center;
    }
    #timer_form .form-group:nth-child(7) {
        width: 100%;
    }
    #timer_form .form-group:nth-child(8) {
        width: 100%;
    }

    .section_item {
        font-size: 30px;
    }

    .car_wrapper {
        flex-direction: column;
        padding: 30px;
        border-radius: 60px;
        background-position: 0 8vw;
        background-size: contain;
    }
    .car_gallery {
        margin-top: 20px;
        position: relative;
        width: 100%;
        order: 2;
        padding: 14px;
    }
    .car_block .car_gallery .slick-list {
        width: -webkit-fill-available;
        position: relative;
        left: -2px;
    }
    .car_block .car_gallery a {
        min-height: initial;
        margin: 0 4px;
    }
    .car_block .car_gallery a img {
        width: 100%;
    }
    .car_block {
        padding-left: 0;
        flex-direction: column;
    }
    .info_block {
        margin-top: 30px;
        padding: 20px;
        border-radius: 30px;
    }
    .car_props {
        margin-top: 14px;
    }
    .car_props a {
        font-size: 14px;
    }
    .car_btns {
        width: 100%;
        margin-top: 26px;
    }

    #instock {
        margin-top: 60px;
    }

    #filter_table {
        flex-wrap: wrap;
        row-gap: 14px;
    }
    #tb_complects .item {
        width: 100%;
    }

    .tradein {
        margin-top: 60px;
        padding-top: 40px;
    }
    .tradein_wrapper {
        padding: 20px;
        flex-direction: column;
    }
    .tradein_block {
        min-width: initial;
    }
    .tradein_img {
        margin-top: 30px;
    }
    .tradein_img img {
        position: relative;
        max-width: 100%;
    }

    .credit {
        padding-top: 60px;
    }
    .credit_wrapper {
        padding: 20px;
        flex-direction: column-reverse;
    }
    .credit_block {
        min-width: initial;
    }
    .credit_img {
        margin-top: 30px;
    }
    .credit_img img {
        position: relative;
        max-width: 100%;
    }

    .contacts {
        padding-top: 60px;
    }
    .contacts_wrapper {
        padding: 20px;
        flex-direction: column;
    }
    #map1 {
        margin-top: 20px;
        height: 300px;
    }

    .footer .footer_wrapper {
        padding: 20px;
    }
    .your_info {
        font-size: 14px;
    }

}

/*IPAD END*/
@media (max-width: 980px) {}
/*MOBILE BEGIN*/
@media (max-width: 767px) {
    .main_banner .slider_item {
        height: 94vw;
    }
    .main_banner .banner_slide1 {
        background: url(../img/bg1_mob.jpg) 50% 100% no-repeat;
        background-size: 100%;
    }
    .main_banner .title_container {
        top: 12vw;
    }
    .main_banner .title_container .title1 {
        font-size: 3vw;
    }
    .main_banner .title_container .title2 {
        margin-top: 4vw;
        font-size: 5vw;
    }
    .main_banner .btn {
        margin-top: 4vw;
    }
}
/*MOBILE END*/
@media (max-width: 680px) {}

@media (max-width: 540px) {}

@media (max-width: 520px) {
    .main_banner .title_container .title1 {
        font-size: 4vw;
    }
    .main_banner .title_container .title2 {
        font-size: 6vw;
    }

    .timer_title {
        font-size: 20px;
    }
    .timer {
        row-gap: 20px;
    }
    .timer div[id^="timer"] {
        transform: scale(0.6) !important;
    }

    .cars_menu_list {
        padding: 0 46px;
    }
    .cars_menu_list .slick-arrow {
        top: 24%;
        width: 32px;
        height: 32px;
    }
    .cars_menu .cars_menu_item {
        height: 120px;
    }
    .cars_menu .cars_menu_item:before {
        width: 108px;
        height: 108px;
    }
    .cars_menu .cars_menu_item:after {
        width: 114px;
        height: 114px;
    }

    .car_wrapper {
        padding: 20px;
        border-radius: 30px;
        background-position: 0 24vw;
    }
    .car_name {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .img_block .dots {
        margin-top: 14px;
        padding: 8px 10px;
    }
    .img_block .dots .dot_color {
        width: 20px;
        height: 20px;
    }

    .car_gallery {
        border-radius: 20px;
    }

    .info_block {
        padding: 14px;
        border-radius: 20px;
    }

    .car_profit {
        min-height: 34px;
        padding-left: 46px;
        font-size: 16px;
    }
    .car_profit:before {
        width: 34px;
        height: 34px;
        background-size: 100%;
    }

    .compl_wrap {
        padding: 16px;
        border-radius: 0 0 30px 30px;
    }
    .compl_block {
        column-gap: 18px;
    }
    #filter_table {
        margin-top: 20px;
    }
    #tb_complects {
        margin-top: 30px;
    }
    #tb_complects .item .compl_img {
        padding: 20px 0;
        border-radius: 30px 30px 0 0;
    }
    .compl_name {
        min-width: 140px;
        row-gap: 4px;
        padding: 0 14px;
        font-size: 16px;
    }
    .compl_tehs div {
        font-size: 14px;
    }

    .tradein_wrapper {
        border-radius: 30px;
    }

    .credit_wrapper {
        border-radius: 30px;
    }

    .contacts_wrapper {
        border-radius: 30px;
    }
    #map1 {
        border-radius: 20px;
    }
    .contacts .btn {
        width: 100%;
    }

    .footer .footer_wrapper {
        border-radius: 30px;
    }

}

/* Portrait phones and smaller */
@media (max-width: 440px) {
    .header .logo1 {
        max-width: 140px;
    }
    .header .logo2 {
        max-width: 100px;
    }
    .header .m_btn {
        top: 22px;
    }
    .header .menu {
        top: 92px;
    }
}

@media (max-width: 390px) {
    .timer {
        row-gap: 0;
    }
    .timer_form {
        margin-top: 0;
    }
    .timer_title {
        font-size: 16px;
    }
    .timer div[id^="timer"] {
        transform: scale(0.56) !important;
    }
    .timer_form_title {
        font-size: 18px;
    }
    .timer_form_title .br_mob {
        display: block;
    }

    .cars_menu .cars_menu_item {
        height: 96px;
    }
    .cars_menu .cars_menu_item:before {
        width: 88px;
        height: 88px;
    }
    .cars_menu .cars_menu_item:after {
        width: 92px;
        height: 92px;
    }

    .section_item {
        font-size: 26px;
    }

    .btn {
        font-size: 14px;
    }

}


@media (max-width: 378px) {}

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

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