/* import fonts */

@font-face {
    font-family: "AudiType";
    src: local("AudiType-Normal"),
    url("../fonts/AudiType-Normal.woff2") format("woff2"),
    url("../fonts/AudiType-Normal.woff") format("woff"),
    url("../fonts/AudiType-Normal.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "AudiType Extended";
    src: local("AudiType-ExtendedNormal"),
    url("../fonts/AudiType-ExtendedNormal.woff2") format("woff2"),
    url("../fonts/AudiType-ExtendedNormal.woff") format("woff"),
    url("../fonts/AudiType-ExtendedNormal.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "AudiType";
    src: local("AudiType-Bold"),
    url("../fonts/AudiType-Bold.woff2") format("woff2"),
    url("../fonts/AudiType-Bold.woff") format("woff"),
    url("../fonts/AudiType-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "AudiType Extended";
    src: local("AudiType-ExtendedBold"),
    url("../fonts/AudiType-ExtendedBold.woff2") format("woff2"),
    url("../fonts/AudiType-ExtendedBold.woff") format("woff"),
    url("../fonts/AudiType-ExtendedBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/* import fonts END */

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

/* css reset */

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

.fancybox-slide--html .fancybox-close-small {
    width: auto !important;
}

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

picture img {
    transition: all 1s linear;
}

picture img:hover {
    transform: scale(1.07);
}

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

address {
    font-style: normal;
}

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

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

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

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

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

input::placeholder {
    color: #000;
}

.form_white input::-moz-placeholder {
    color: #fff;
}

.form_white input::-webkit-input-placeholder {
    color: #fff;
}

.form_white input:-ms-input-placeholder {
    color: #fff;
}

.form_white input::placeholder {
    color: #fff;
}

button {
    cursor: pointer;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url(../img/ico_select.png);
    background-repeat: no-repeat;
    background-position: 96% 50%;
    display: block;
    color: #000;
    width: 100%;
    padding-left: 15px;
    padding-right: 35px;
    border: 1px solid #000;
}

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

select:hover {
    border-color: #000;
}

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

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

.form_white select:hover {
    border-color: #fff;
}

.form_white select:focus {
    border-color: #fff;
}

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

.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 {
    margin-bottom: 10px;
    position: relative;
}

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

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

.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: 30px;
    overflow: hidden !important;
    position: relative;
    box-sizing: border-box;
    background: white;
    text-align: center;
}

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

.form_white .agree_field,
.form_white .agree_field a {
    color: #fff;
}

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


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

.raw {
    display: flex;
}

.column-2 {
    width: 50%;
}

.column-3 {
    width: 33.333%;
}

.column-4 {
    width: 25%;
}

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

.logo-text {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
}

.logo-text_red {
    color: #BB0A30;
}


.block-title {
    font-size: 52px;
    font-weight: 700;
}

.block-title_white {
    color: #fff;
}

.block-title_center {
    text-align: center;
}

.subtitle {
    font-size: 20px;
}

.subtitle_white {
    color: #fff;
}

.btn {
    background: #BB0A30;
    color: white;
    text-align: center;
    width: 280px;
    display: flex;
    align-items: center;
    border: 1px solid #BB0A30;
    position: relative;
    text-decoration: none;
    transition: all .2s linear;
    font-size: 16px;
    font-weight: 700;
}

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

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

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

.btn_hover-white:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}

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

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

.btn.white {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}

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

/* common styles END */


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


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


.header {
    background: #1A1A1A;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}


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

.header__logo {
    border-right: 1px solid #E6E6E6;
    padding-right: 10px;
}

.header__logo-text {
    font-family: "Auditype";
}

.header__phone {
    padding-left: 32px;
    background: url(../img/ico__phone-header.svg) 0 50% no-repeat;
    font-weight: 700;
}

.header__addr {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header__addr-text {
    padding-left: 32px;
    font-size: 14px;
}

.header__addr-text_ico1 {
    background: url(../img/ico__pin-header.svg) 0 50% no-repeat;
}

.header__addr-text_ico2 {
    background: url(../img/ico__openhours-header.svg) 0 50% no-repeat;
}


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


.menu {
    padding: 16px 0;
    border-top: 1px solid #E6E6E6;
    display: flex;
    justify-content: space-between;
}

.menu__item span {
    background: repeating-linear-gradient(90deg, #fff 0 50%, #BB0A30 50% 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: 200% center;
}

.menu__item.hoverin span {
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    background-position: 100% center;
}

.menu__item.hoverout span {
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    background-position: 0% center;
}


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

.intro {
    padding-top: 135px;
    position: relative;
    overflow: hidden;
}

.intro .swiper-slide {
    padding-top: 135px;

}

.intro__container {
    position: relative;
    display: flex;
    justify-content: center;
}

.intro__image {
    height: 600px;
    position: relative;
    z-index: -1;
}

.intro__image picture {
    height: 100%;
}

.intro__image picture img {
    /* height: 100%; */
    width: auto;
    object-fit: cover;
    /* transition: none; */
}
.intro .swiper-slide.slide1::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    background: url(../img/bg1_car.png) 45% 0 no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 1;
}



.intro__content {
    position: absolute;
    top: 35px;
    left: 0;
}

.intro__title-block {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    background-color: #000000a8;
    border-radius: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
}

.intro__date {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 6px;
}

.intro__title {
    font-family: "Auditype";
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.intro__title-text_red {
    color: #BB0A30;
}

.intro__title-text_big {
    font-size: 36px;
}

.intro__props {
    font-family: "Auditype";
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.intro__props-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.intro__props-item-text {
    font-weight: 700;
    color: #ffffff;
}

.intro__comment {
    font-weight: 400;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 30px;
}

.intro__btn {
    width: 490px;
    z-index: 1;
}

.slide3 .intro__content {
    width: 100%;
}

.intro__title1 {
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
}

.intro__title_prices {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    margin-top: -85px;
}

.intro__title_prices .left {

}

.intro__title_prices .right {
    color: #ffffff;
    text-align: right;
}

.intro__title_prices .mob {
    display: none;
}

.intro__title_bottom {
    font-size: 30px;
    margin-top: 370px;
    text-align: center;
    color: #ffffff;
}

.banner_des {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(55%);
    color: #ffffff;
    font-size: 10px;
}

.slide2 .intro__title {
    margin-bottom: 15px;
}

.slide2 .intro__props2 {
    margin-bottom: 15px;
}

.slide2 .intro__props2 .intro__props-item {
    gap: 0;
}

.slide2 .intro__props2 .intro__props-item-text {
    font-weight: 700;
    color: #000000;
    background: #ffffff;
    padding: 10px 20px;
}

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

.ny_sched {
    background: #1A1A1A;
    padding: 80px 0;
}

.ny_sched_wrap {
    background: url("../img/ny_sched_bg.svg") 50% 50% no-repeat;
    display: flex;
    justify-content: space-between;
    gap: 0 30px;
    padding: 30px;
    color: #ffffff;
}

.ny_sched_text {

}

.ny_sched_text h3 {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.ny_sched_text p {
    font-size: 18px;
}

.ny_sched_text .sched {
    margin-top: 30px;
}

.ny_sched_text ul {
    margin: 15px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}

.ny_sched_text ul li {
    font-size: 18px;
    font-weight: 700;
    padding-left: 36px;
    background: url("../img/ny_sched_ico.svg") 0 50% no-repeat;
}

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


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

.timer__title {
    font-size: 22px;
    font-weight: 700;
}


.timer__form {
    width: 100%;
    max-width: 380px;
}


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


.cars {
    background: #1A1A1A;
    color: #fff;
    padding-top: 120px;
}


.cars__content {
    margin-top: 50px;
}

.cars__menu .swiper-wrapper {
    justify-content: center;
}

.cars__menu-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.cars__menu-scrollbar {
    display: none;
}

.cars__menu-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: .5;
}

.cars__menu-item:hover {
    opacity: 1;
}

.cars__menu-item-text {
    font-size: 18px;
    font-weight: 700;
}


.cars__menu-button-arrow {
    width: 40px !important;
    height: 40px !important;
    background: url(../img/arrow__models-slider.svg) 50% no-repeat;
    border: 1px solid #fff;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
}

.cars__menu-button-arrow:hover {
    border-color: #BB0A30;
    background-color: #BB0A30;
}

.cars__menu-button-arrow:after {
    display: none;
}

.cars__menu-button-prev {
    left: -80px !important;
}

.cars__menu-button-next {
    transform: rotate(180deg);
    right: -80px !important;
}

.cars__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 40px;
}

.car {
    width: 49%;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    padding: 28px 32px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 0;
}

.car:before,
.car:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #E6E6E6, transparent, transparent, #E6E6E6);
    position: absolute;
    top: 0;
}

.car:before {
    left: 0;
}

.car:after {
    right: 0;
}

.car__name {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
}

.car__name span {
    font-size: 20px;
    font-weight: 400;
}

.car__images {
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.car__images-thumbs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
}

.car__image-thumb {
    cursor: pointer;
}

.car_profit {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 32px;
    font-size: 23px;
    font-weight: 700;
    background: #BB0A30;
    border-left: 3px solid #ffffff;
    padding: 6px;
    cursor: pointer;
}

.car_profit:before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: url(../img/car_profit_ico.svg) no-repeat;
}

.car_profit.ico2:before {
    background: url(../img/car_profit_ico_2.svg) no-repeat;
}

.car_profit.ico3:before {
    background: url(../img/car_profit_ico_3.svg) no-repeat;
}

.car_profit:after {
    content: "";
    display: block;
    width: 100%;
    height: 110%;
    background: linear-gradient(to right, #E6E6E6, transparent, transparent);
    position: absolute;
    top: -3px;
    left: -3px;
    z-index: -1;
}

.car__props {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.car__props a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 26px;
    padding-left: 34px;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
}

.car__props a:before {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 25px;
}

.car__props .ico1:before {
    background: url(../img/car_props_ico1.svg) no-repeat;
}

.car__props .ico2:before {
    background: url(../img/car_props_ico2.svg) no-repeat;
}

.car__props .ico3:before {
    background: url(../img/car_props_ico3.svg) no-repeat;
}

.car__props .ico4:before {
    background: url(../img/car_props_ico4.svg) no-repeat;
}

.car__props .ico5:before {
    background: url(../img/car_props_ico5.svg) no-repeat;
}

.car__btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.car__btn {
    width: 100%;
}

#car_plug {
    background: url(../img/bg_plug.jpg) no-repeat;
}

#car_plug .car__name {
    font-size: 40px;
}


/**********************
       COMPLECTS
**********************/

#instock {
    padding: 155px 0 0;
    background: #1A1A1A;
}

.instock_title {
    font-family: "Auditype";
    text-align: center;
    color: #ffffff;
    font-size: 52px;
    margin-bottom: 45px;
}

.compl_title {
    font-family: "AudiTypeExtended";
    text-align: center;
    font-size: 62px;
    margin-bottom: 50px;
}

#filter_table {
    display: flex;
    justify-content: space-between;
    margin-bottom: 76px;
}

#filter_table .select_container {
    width: 32.5%;
}

#filter_table select {
    font-family: "AudiType";
    width: 100%;
    height: 48px;
    padding-left: 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
}

#filter_table select option {
    background: #1A1A1A;
    color: #ffffff;
}

.tb_complects {
    width: 100%;
}

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

.tb_complects tr {
    position: relative;
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-start;
    margin-bottom: 60px;
    background: #282828;
    transition: all .3s;
    padding: 30px;
    border-right: 1px solid #E6E6E6;
    border-left: 1px solid #E6E6E6;
}

.tb_complects tr:before, .tb_complects tr:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, #E6E6E6, transparent, transparent, #E6E6E6);
    position: absolute;
    top: 0;
    left: 0;
}

.tb_complects tr::before {
    top: auto;
    bottom: 0;
}


.tb_complects tr:hover {
    box-shadow: 0px 30px 50.9px -15px rgba(19, 19, 23, 0.27);
}

.tb_complects td {
    position: relative;
}

.tb_complects td:first-child {
    width: 28%;
    margin-right: 62px;
}

.compl_offer {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    width: 224px;
    height: 55px;
    padding-left: 40px;
    background: url("../img/compl_offer_pl.png") 0 50% no-repeat;
    margin-left: -25px;
}

.tb_complects td:nth-child(2) {
    width: 35%;
}

.compl_name {
    font-size: 30px;
    font-weight: 400;
    font-family: "AudiType";
    margin-bottom: 34px;
    color: #ffffff;
}

.compl_name span {
    font-size: 40px;
    font-weight: 700;
    color: #BB0A30;
    line-height: 20px;
}

.compl_techs {
    display: flex;
    align-items: center;
    gap: 40px;
    font-family: "AudiType";
}

.compl_techs > div {
    color: #b3b3b3;
    font-size: 18px;
    background: url(../img/arrow_r.png) 0 50% no-repeat;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.compl_techs > div b {
    color: #ffffff;
    font-size: 20px;
}

.compl_techs span {
    background: #676767;
    width: 1px;
    height: 45px;
}

.tb_complects td.btns {
    box-sizing: border-box;
    width: 25%;
    margin-left: auto;
}

.tb_complects td.btns .btn {
    width: 310px;
    font-family: "Auditype";
}

.tb_complects td.btns .btn.glass {
    background: none;
    border: 1px solid #FFFFFF;
}

.tb_complects td.btns .btn.glass:hover {
    background: #BB0A30;
    border-color: #BB0A30;
    color: #fff;
}

.compl_profit {
    display: block;
    font-size: 20px;
    text-decoration: none;
    color: #000000;
    padding-left: 64px;
    background: url("../img/car_ico1.png") 0 50% no-repeat;
    margin-bottom: 30px;
}

.tb_complects td.btns .btn:last-child {
    margin-top: 28px;
}

.tb_complects_showmore {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 50px;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-decoration: none;
    font-family: "AudiType";
}


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


.credit {
    padding-top: 80px;
    background: #1A1A1A;
}

.credit__container {
    position: relative;
}

.credit__content {
    position: absolute;
    padding: 32px;
    width: calc(100% - 60px);
    z-index: 1;
}

.credit__props {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credit__props-item {
    display: flex;
    gap: 12px;
}

.credit__props-sep {
    width: 1px;
    height: 70px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #707070 55%, rgba(255, 255, 255, 0) 100%);
}


.credit__image {
    position: relative;
    z-index: 0;
}


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


.leasing {
    padding-top: 120px;
    background: #1A1A1A;
}

.leasing__content {
    display: flex;
    gap: 20px;
}

.leasing__info {
    display: flex;
    gap: 20px;
}


.leasing__subtitle {
    margin-top: 5px;
}


.leasing__form {
    margin-top: 20px;
}


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


.service {
    padding-top: 120px;
    background: #1A1A1A;
    padding-bottom: 120px;
}

.service__content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service__main {
    width: 64%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service__info {
    background: #fff;
    padding: 32px;
}

.service__block-title {
    padding-bottom: 5px;
}

.service__form {
    margin-top: 20px;
}


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

.reviews {
    background: #E6E6E6;
    padding-top: 120px;
    overflow: hidden;
}

.reviews__content {
    display: flex;
    /* align-items: center; */
    gap: 70px;
    position: relative;
}

.reviews__main {
    min-width: 315px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviews__subtitle-block {
    margin-top: 30px;
}

.reviews__slider {
    margin-right: -365px !important;
    padding: 10px !important;
    padding-right: 0px !important;
}

.reviews__slider-item {
    background: #fff;
    padding: 32px;
    height: auto !important;
    opacity: .5;
    transition: all .3s linear !important;
    position: relative !important;
    left: -50px;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, .09);
    margin: 10px 0;
}

.reviews__slider-item.swiper-slide-active {
    opacity: 1;
    left: 0;
    z-index: 1;
}

.reviews__slider-item-title {
    display: flex;
    justify-content: space-between;
}

.reviews__slider-item-autor {
    font-size: 22px;
    font-weight: 700;
}

.reviews__slider-item-date {
    font-size: 16px;
}

.reviews__slider-item-rating {
    display: flex;
    margin-top: 20px;
}

.reviews__slider-item-text {
    margin-top: 24px;
}

.reviews__slider-nav {
    position: relative;
    margin-top: 240px;
    width: 80%;
}

.reviews-pagination {
    z-index: 1 !important;
}

.reviews-button-arrow {
    width: 10px !important;
    height: 14px !important;
    background: url(../img/arrow__reviews-slider.svg) 50% no-repeat;
    top: -8px !important;
}

.reviews-button-arrow:after {
    display: none;
}

.reviews-button-next {
    transform: rotate(180deg);
}

.reviews .swiper-pagination-bullet {
    width: auto !important;
    height: auto !important;
    background: none;
    font-family: Arial;
    color: #000;
    opacity: 1;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin: 0 7px !important;
}

.reviews .swiper-pagination-bullet-active {
    border-color: #000;
    font-weight: 700;
}

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

.about {
    background: #E6E6E6;
    padding-top: 120px;
    padding-bottom: 120px;
}

.about__content {
    display: flex;
    gap: 20px;
}

.about__main {
    max-width: 622px;
}

.about__title_ttu {
    text-transform: uppercase;
}

.about__desc-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 25px;
}

.about__desc-items:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, transparent, #B0B0B0, transparent);
}

.about__desc-item {
    display: flex;
    gap: 12px;
    align-items: center;
}


.about__title {
    font-size: 24px;
}


.about__subtitle {
    margin-top: 16px;
}

.about__form {
    margin-top: 16px;
}


.about__images {
    display: flex;
    gap: 20px;
}

.about__image-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


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


.contacts__container {
    position: relative;
}

.contacts__content {
    position: absolute;
    z-index: 1;
    background: #fff;
    top: 60px;
}

.contacts__content-wrapper {
    padding: 32px;
    padding-top: 0;
}

.contacts__image img {
    width: 100%;
}

.contacts__logo-block {
    margin-top: 32px;
    padding-bottom: 24px;
}


.contacts__logo-text {
    font-size: 20px;
    text-transform: none;
}

.contacts__phone {
    padding-left: 32px;
    background: url(../img/ico__phone-contacts.svg) 0 50% no-repeat;
    font-weight: 700;
}

.contacts__addr-text {
    margin-top: 16px;
    font-size: 14px;
}

.contacts__addr-text_ico1 {
    padding-left: 32px;
    background: url(../img/ico__pin-contacts.svg) 0 50% no-repeat;
}

.contacts__addr-text_ico2 {
    padding-left: 32px;
    background: url(../img/ico__openhours-contacts.svg) 0 50% no-repeat;
}

.contacts__subtitle {
    margin-top: 16px;
    padding-top: 16px;
    font-weight: 700;
}

.contacts__btn {
    margin-top: 12px;
    width: 100%;
}


#map1 {
    height: 676px;
    width: 100%;
    max-width: 100%;
    /* filter: hue-rotate(245deg) invert(); */
}


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


.footer {
    padding: 20px 0;
    color: inherit;
    font-size: 14px;
    background: #1A1A1A;
    color: #fff;
}

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

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

.footer__madein {
    line-height: 1.2;
}

.footer__madein img {
    display: inline;
}

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

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


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

/* media */


/* desktop and laptops */


@media only screen and  (min-width: 1920px) {
    .intro .swiper-slide.slide1::before {
            width: 100%;
    }
}

@media only screen and  (max-width: 1600px) {
    .intro__image picture img {
        max-width: none;
        height: 100%;
        transform: translateX(-50%);
        left: 50%;
        display: block;
        position: relative;
    }

    .intro .swiper-slide.slide1::before {
        display: none;
    }

}


@media only screen and  (max-width: 1366px) {
    .banner_des {
        transform: translateX(162%);
    }

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

    .car_profit {
        font-size: 18px;
    }

    .subtitle {
        font-size: 16px;
    }


    .header__addr-text {
        display: none;
    }

    .car__images {
        gap: 10px;
    }


    .reviews__slider {
        width: 100%;
        margin: 0 !important;
    }


    .reviews__slider-nav {
        margin-top: 70px;
    }

    .reviews__slider-item.swiper-slide {
        opacity: 1;
        left: 0;
    }
    .slide1 .intro__content {
        top: 10px;
        /* width: 55%; */
    }
    .intro__title {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .intro__props {
        gap: 6px;
        margin-bottom: 20px;
        font-size: 18px;
    }
    .intro__comment {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .intro__title_prices {
        margin-top: -25px;
    }

    .intro__title_bottom {
        margin-top: 320px;
    }

}

/* tablets */

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

    .ny_sched_wrap {
        align-items: center;
    }

    .intro__title {
        font-size: 20px;
    }

    .intro__comment {
        font-size: 16px;
    }

    .intro__btn {
        width: 400px;
    }

    .banner_des {
        transform: translateX(124%);
    }

    /*******************************************************************/
    #instock {
        padding: 50px 0;
    }

    .compl_title {
        font-size: 44px;
    }

    .tb_complects td:first-child {
        margin-right: 26px;
    }

    .tb_complects tr {
        padding: 30px 0;
        align-items: center;
        justify-content: space-between;
    }


    .compl_profit {
        font-size: 16px;
    }


    .compl_name {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .compl_name span {
        font-size: 22px;
    }

    .compl_techs {
        gap: 20px;
    }

    .compl_techs > div {
        font-size: 16px;
    }

    .tb_complects td.btns {
        padding-right: 20px;
        margin: 0;
    }

    .tb_complects td.btns .btn {
        width: 210px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .banner_des {
        transform: translateX(0%);
    }

    .container {
        max-width: 738px;
    }


    .intro__props-item-text {
        font-size: 16px;
    }
    .slide1 .intro__content {
        width: 60%;
    }
    .intro__image {
        height: 400px;
    }



    .slide1 .intro__date {
        font-size: 16px;
    }
    .slide1 .intro__title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .slide1 .intro__props {
        gap: 5px;
        margin-bottom: 10px;
        font-size: 16px;
    }
    .slide1 .intro__comment {
        font-size: 16px;
        margin-bottom: 10px;
    }


    /**************************************************************************************************************/
    .timer__content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .car_profit {
        font-size: 16px;
    }

    .car_profit:before {
        background: url(../img/car_profit_ico.svg) 50% 50% no-repeat;
        background-size: contain;
    }

    #car_plug .car__name {
        font-size: 24px;
    }
}

/* mobiles */

@media only screen and (max-width: 991px) {
    .tb_complects tr {
        flex-direction: column;
        padding: 15px;
    }

    .tb_complects td:first-child {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }

    .tb_complects td:nth-child(2) {
        width: 100%;
        text-align: center;
    }

    .compl_name {
        font-size: 20px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .compl_name span {
        font-size: 20px;
    }

    .compl_techs {
        justify-content: center;
        margin-bottom: 20px;
    }

    .tb_complects td.btns {
        padding-right: 20px;
        margin: 0;
        width: 100%;
        padding: 0;
    }

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

    .tb_complects td.btns .btn:last-child {
        margin-top: 20px;
    }


}

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

    .ny_sched {
        padding: 30px 0;
    }

    .ny_sched_wrap {
        flex-direction: column-reverse;
        gap: 10px 0;
        background: #282828;
        padding: 0;
    }

    .ny_sched_text {
        padding: 15px;
    }

    .ny_sched_text h3 {
        font-size: 5vw;
    }

    .ny_sched_text h3 br {
        display: none;
    }

    .ny_sched_text p {
        font-size: 4vw;
    }

    .ny_sched_text ul li {
        font-size: 4vw;
    }

    .car__name {
        font-size: 32px;
    }

    .banner_des {
        margin-top: 0;
        position: absolute;
        left: 54px;
        transform: none;
        bottom: 10px;
        color: #ffffff;
        font-size: 7px;
    }

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

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

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

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

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

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

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

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

    .popup_container {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .block-title {
        font-size: 6vw;
    }


    /************************************************************************/
    .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: #fff;
        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__content {
        flex-wrap: wrap;
    }

    .header__logo {
        width: 20vw;
    }

    .header__logo-text {
        font-size: 3.5vw;
    }

    .header__phone {
        order: 1;
        margin-top: 3vw;
        font-size: 4vw;
    }


    .header__btn {
        display: none;
    }


    /**************************************************************************************************************/
    .menu {
        position: fixed;
        top: 20vw;
        border: none;
        background: #1A1A1A;
        width: 100%;
        left: 100%;
        flex-direction: column;
        align-items: center;
        gap: 5vw;
        transition: all .2s linear;
        padding: 8vw 0;
        z-index: 10;
    }

    .menu.active {
        left: 0;
    }

    /**************************************************************************************************************/
    .car_profit {
        font-size: 16px;
    }

    .car_profit:before {
        width: 40px;
        height: 40px;
        background-size: contain;
    }

    .car__props {
        row-gap: 12px;
    }

    .car__props a {
        font-size: 14px;
    }

    #car_plug {
        background: url(../img/bg_plug.jpg) 50% 50% no-repeat;
        height: 590px;
        background-size: cover;
    }

    /**************************************************************************************************************/
    .intro {
        padding-top: 19vw;
    }
    .intro .swiper-slide.slide1::before {
        display: none;
    }

    .intro__image {
        width: 100%;
        display: flex;
        height: auto;
    }


    .slide3 .intro__image {
        height: 117vw;
    }

    .slide3 .intro__image picture img {
        position: relative;
        top: -75px;
    }

    .intro__image picture img {
        width: 100%;
        height: auto;
    }

    .intro__content {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 94%;
    }

    .slide1 .intro__content {
        top: 40px;
    }

    .intro .swiper-slide {
        padding-top: 94px;
    }

    .intro__title-block {
        padding: 0;
        background-color: unset;
        border-radius: 0px;
    }

    .intro__date {
        margin-bottom: 15px;
    }

    .intro__title {
        font-size: 5.6vw;
        margin-bottom: 15px;
    }

    .slide1 .intro__title br {
        display: none;
    }

    .intro__title-text_big {
        font-size: inherit;
    }

    .intro__props {
        gap: 12px;
        margin-bottom: 15px;
    }

    .intro__props-item-img {
        width: 20px;
        height: 20px;
    }

    .intro__image picture {
        width: 100%;
    }

    .intro__props-item-text {
        font-size: 3.6vw;
        text-align: left;
    }

    .intro__comment {
        font-size: 3.6vw;
    }

    .intro__btn {
        position: static;
        margin-top: 10px;
        display: none;
    }

    .slide2 .intro__content {
        top: 30px;
        left: 14px;
    }

    .slide2 .intro__props-item-img {
        width: 40px;
        height: 40px;
    }

    .slide2 .intro__props2 .intro__props-item-text {
        font-weight: 700;
        color: #000000;
        background: #ffffff;
        padding: 4px 0;
        width: 100%;
        text-align: center;
        font-size: 18px;
    }


    .slide3 .intro__content {
        left: 0;
        top: 30px;
        padding: 0 15px;
    }

    .intro__title1 {
        font-size: 5.5vw;
    }

    .intro__title1 br {
        display: none;
    }

    .intro__title_prices {
        margin-top: 20px;
        font-size: 4vw;
    }

    .intro__title_prices > div {
        color: #ffffff;
        font-weight: 400;
    }

    .intro__title_prices .mob {
        display: block;
    }

    .intro__title_bottom {
        margin-top: 175px;
        font-size: 5.5vw;
    }
    /**************************************************************************************************************/
    .timer__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .timer__title {
        text-align: center;
    }

    .timer__timer {
        transform: scale(.7);
    }

    /**************************************************************************************************************/
    .cars__menu-item-text {
        font-size: 16px;
    }

    .cars {
        padding: 50px 0;
        padding-bottom: 0;
    }

    .cars__block-title {
        font-size: 6vw;
    }

    .cars__menu-button-arrow {
        display: none !important;
    }


    .cars__menu-scrollbar {
        bottom: -20px !important;
        background: #ffffff75 !important;
        display: block;
        z-index: 1 !important;
    }

    .cars__menu-scrollbar .swiper-scrollbar-drag {
        background: #fff;
    }

    .car {
        width: 100%;
        padding: 30px 15px;
    }

    /*******************************************************************/
    #instock {
        padding: 40px 0;
    }

    .compl_title {
        font-size: 6vw;
        margin-bottom: 30px;
    }

    #filter_table {
        flex-direction: column;
        row-gap: 10px;
    }

    #filter_table select {
        padding-left: 15px;
    }

    #filter_table .select_container {
        width: 100%;
    }

    .tb_complects tr {
        flex-flow: wrap;
        padding: 20px 0;
    }

    .tb_complects td:first-child {
        width: 100%;
        padding-left: 0;
    }

    .tb_complects td:nth-child(2) {
        width: 100%;
        padding: 15px;
    }

    .compl_name {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .compl_techs > div {
        font-size: 16px;
    }

    .tb_complects td.btns {
        width: 100%;
        padding: 20px 20px 0;
    }

    .compl_profit {
        margin-bottom: 15px;
    }

    .tb_complects_showmore {
        margin-top: 0;
    }


    /**************************************************************************************************************/
    .credit {
        padding-top: 50px;
    }

    .credit__block-title {
        color: #fff;
    }

    .credit__content {
        padding: 0;
        width: 100%;
        position: static;
    }

    .credit__props {
        flex-direction: column;
        align-items: flex-start;
        color: #fff;
        gap: 15px;
        margin-top: 20px;
    }


    .credit__props-sep {
        display: none;
    }

    .credit__props-text {
        font-size: 4vw;
    }

    .credit__image {
        margin-top: 20px;
    }


    /**************************************************************************************************************/
    .leasing {
        padding: 50px 0;
    }

    .leasing__content {
        flex-direction: column;
    }

    .leasing__image {
        order: 1;
    }


    .leasing__info {
        flex-direction: column;
    }

    .leasing__image-info {
        display: none;
    }


    .leasing__subtitle {
        margin-top: 15px;
    }


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

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

    /**************************************************************************************************************/
    .service {
        padding-top: 50px;
        background: #E6E6E6;
        padding-bottom: 0;
    }

    .service__content {
        flex-direction: column;
    }

    .service__main {
        width: 100%;
    }

    .service__info {
        background: none;
        padding: 0;
    }

    .service__block-title {
        padding-bottom: 15px;
    }

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

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


    .service__image {
        display: none;
    }


    /**************************************************************************************************************/
    .reviews {
        padding: 0;
        padding-top: 50px;
    }

    .reviews__content {
        flex-direction: column;
        gap: 15px;
        position: relative;
        padding-bottom: 60px;
    }

    .reviews__main {
        position: static;
    }


    .reviews__slider {
        padding: 0px !important;
    }

    .reviews__slider-item {
        box-shadow: unset !important;
        padding: 20px 15px;
    }

    .reviews__slider-item-title {
        flex-direction: column;
    }

    .reviews__slider-item-autor {
        font-size: 5vw;
    }

    .reviews__slider-item-date {
        font-size: 4vw;
    }


    .reviews__slider-item-text {
        font-size: 4vw;
    }

    .reviews__slider-nav {
        width: 100%;
        position: absolute;
        bottom: 0;
    }

    /**************************************************************************************************************/
    .about {
        padding: 50px 0;
    }

    .about__content {
        flex-direction: column;
    }

    .about__desc-item {
        align-items: center;
    }

    .about__desc-item-text {
        font-size: 4vw;
    }

    .about__title {
        font-size: 5vw;
    }

    .about__subtitle {
        font-size: 3.8vw;
    }

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

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

    .about__images {
        gap: 10px;
    }

    .about__image-group {
        gap: 10px;
    }


    /**************************************************************************************************************/
    .contacts {
        padding: 50px 0;
    }

    .contacts__content {
        position: static;
        background: none;
        padding: 0;
    }

    .contacts__content-wrapper {
        padding: 0;
    }

    .contacts__image {
        margin: 0;
    }


    .contacts__logo {
        width: 20%;
    }

    .contacts__logo-text {
        font-size: 4vw;
    }


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


    /************************************************************************/
    .footer__content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer__comp-info {
        text-align: center;
    }


}


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

/* media END*/


@media only screen and (max-width: 440px) {
    .car_profit {
        font-size: 14px;
    }

    .intro__title {
        line-height: normal;
    }

    .intro .swiper-slide {
        padding-top: 80px;
    }

    .intro__date {
        font-size: 13px;
    }

    .resp_table img {
        width: 76%;
    }

    .compl_techs {
        gap: 10px;
    }

    #car_plug .car__name {
        font-size: 30px;
    }

    .instock_title {
        font-size: 32px;
    }

    .cars__menu-item-text {
        font-size: 12px;
    }

}