@font-face {
    font-family: 'Klein';
    src: url('Klein-Regular.eot');
    src: local('Klein Regular'), local('Klein-Regular'),
        url('../fonts/Klein-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Klein-Regular.woff2') format('woff2'),
        url('../fonts/Klein-Regular.woff') format('woff'),
        url('../fonts/Klein-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Klein';
    src: url('Klein-Medium.eot');
    src: local('Klein Medium'), local('Klein-Medium'),
        url('../fonts/Klein-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Klein-Medium.woff2') format('woff2'),
        url('../fonts/Klein-Medium.woff') format('woff'),
        url('../fonts/Klein-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Klein';
    src: url('Klein-Bold.eot');
    src: local('Klein Bold'), local('Klein-Bold'),
        url('../fonts/Klein-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Klein-Bold.woff2') format('woff2'),
        url('../fonts/Klein-Bold.woff') format('woff'),
        url('../fonts/Klein-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html {
    scroll-padding-top: 90px;
}

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*--- vars ---*/
:root {
    --main-font-family: 'Klein', sans-serif;
    --main-font-size: 16px;
    --main-text-color: #000;
    --main-bg-color: #fff;
    --main-placeholder-color: #000;
    --color-prem: #FFCE00;
}

body {
    font-family: var(--main-font-family);
    font-size: var(--main-font-size);
    color: var(--main-text-color);
    font-weight: 400;
    background: var(--main-bg-color);
    position: relative;
    overflow-x: hidden;
}
html,body{
    scroll-behavior: smooth;
}
body.active {
    overflow: hidden;
}

input,
button,
textarea {
    font-family: var(--main-font-family);
}

.main {
    /* overflow: hidden; */
    /* margin-top: 150px; */
}

.container {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.btn__prem {
    outline: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    text-decoration: none;
    color: #000;
    background-color: var(--color-prem);
    font-size: 14px;
    font-weight: 500;
    height: 35px;
    transition: all .4s ease;
}

.btn__prem:hover {
    background-color: #FFDD50;
}

.btn__item {
    outline: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    text-decoration: none;
    color: #fff;
    background-color: #000;
    font-size: 14px;
    font-weight: 500;
    height: 35px;
    transition: all .4s ease;
}

.btn__item:hover {
    color: var(--color-prem);
}
.intro__btn-inner a{
    font-size: 16px;
    height: 45px;
}
.btn__white {
    outline: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    font-size: 14px;
    font-weight: 500;
    height: 35px;
    transition: all .4s ease;
}

.btn__white:hover {
    background-color: #000;
    color: #fff;
}

.input__prem {
    outline: none;
    border: 1px solid #000;
    /* height: 35px; */
    height: 40px;
    padding: 0px 10px;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
    color: #000;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #000;
    color: #fff;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__mobil {
    display: none;
}

.header__contact {
    display: flex;
    align-items: center;
    padding: 30px 35px;
    position: relative;
}

.header__contact::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transform: skew(-30deg);
}

.header__contact-item {
    display: flex;
    align-items: center;
    margin-right: 70px;
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 14px;
}

.header__contact-item:last-child {
    margin-right: 0;
}

.header__contact-item svg {
    margin-right: 10px;
}

.header__btn {
    display: flex;
    align-items: center;
}

.header__phone {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    margin-right: 35px;
}

.header__phone svg {
    margin-right: 10px;
}

.header__btn .btn__prem {
    padding: 0px 30px;
}

.intro {
    background: url('../images/banner-new.webp') center no-repeat;
    background-size: cover;
    margin-bottom: 30px;
}

.counter__mobil {
    display: none;
}

.intro__inner {
    height: 500px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 40px 0px;
    /* margin-top: 90px; */
}

.intro__text {
    color: #fff;
}

.intro__text h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
}

.intro__text h2 {
    font-size: 31px;
    font-weight: 700;
}

.intro__counter {
    display: flex;
    align-items: end;
}

.counter {
    color: #fff;
    margin-right: 70px;
}

#getting-started {
    display: flex;
    align-items: center;
}

.timer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter__item {
    margin-right: 15px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.timer div {
    text-align: center;
    font-size: 18px;
    color: #fff;
    width: 60px;
}
.intro__list{
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.intro__list li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.intro__list li p{
    color: white;
    font-size: 20px;
    font-weight: 500;
}
.timer p {
    font-weight: 700;
    font-size: 40px;
    color: var(--color-prem);
}
.timer span {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.counter__item span {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-prem);
}

.counter__colon {
    font-size: 40px;
    font-weight: 700;
    margin-right: 15px;
}

.intro__counter .btn__prem {
    padding: 0px 50px;
}

.intro__btn {
    margin-bottom: 40px;
}

.intro__btn-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.intro__btn-inner .btn__item {
    width: 32%;
}

.intro__btn-inner .btn__item svg {
    margin-right: 10px;
    transition: all .4s ease;
}

.intro__btn-inner .btn__item:hover svg path {
    fill: var(--color-prem);
}

.cars {
    margin-bottom: 40px;
}

.section__title {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cars__list {
    margin-bottom: 50px;
}

.cars__list ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 30px;
}

.cars__list ul li a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    background: #E4E4E4;
    display: block;
    text-align: center;
    padding: 5px 0px;
}

.cars__list ul li a.active {
    background: var(--color-prem);
}

.car__item {
    padding: 30px 0px;
    border-top: 20px solid #E4E4E4;
}

.car__item:last-child {
    border-bottom: 20px solid #E4E4E4;
}

.car__item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.car__content {
    width: 70%;
}

.car__btn {
    width: 23%;
}

.car__content-row {
    display: flex;
    align-items: end;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.car__content-inner,
.car__img {
    width: 48%;
    width: 100%;
}

.car__content-inner-img {
    position: relative;
}

.car__content-inner-bg {
    display: block;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: -1;
}

.car__content-inner-month {
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    color: #000;

    padding: 4px 22px 3px 25px;

    position: absolute;
    bottom: -13px;
    left: 31px;

    width: max-content;

    margin: 0 auto;
}

.car__content-inner-month::before {
    content: "";

    display: block;
    background: var(--color-prem);
    transform: skew(-40deg);

    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;
}

.car__content-inner-month span {
    position: relative;
    font-size: 18px;
}

.car__content-inner h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.car__price {
    padding: 15px 40px 0px 40px;
    position: relative;
    display: inline-block;
    margin-top: -10px;
    margin-bottom: 20px;
}

.car__price span {
    position: relative;
    z-index: 1;
    font-size: 26px;
    font-weight: 700;
    color: black;
}

.car__price::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--color-prem);
    transform: skew(-40deg);
}

.car__price-credit {
    position: relative;
    margin-bottom: 30px;
    padding: 5px 25px;
    display: inline-block;
}

.car__price-credit span {
    position: relative;
    z-index: 1;
    font-weight: 500;
}


.car__price-credit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border: 1px solid #000;
    transform: skew(-30deg);
}

.car__offer-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.car__offer-item::before {
    content: '';
    min-width: 9px;
    min-height: 9px;
    background-color: unset;
}

.car__offer-item svg {
    margin-right: 10px;
}

.car__offer-des {
    font-size: 16px;
    font-weight: 700;
}

.car__offer-des span {
    font-size: 18px;
    color: var(--color-prem);
    color: black;
}

.car__des {
    display: flex;
    align-items: center;
}

.car__des-item {
    font-weight: 500;
    margin-right: 30px;
}

.car__des-item span {
    font-weight: 700;
}

.car__present {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.car__present-item {
    width: 48%;
    margin-bottom: 20px;
}

.car__present-item svg {
    margin-bottom: 5px;
}

.car__present-item span {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.car__btn a {
    width: 100%;
    margin-bottom: 10px;
}

.equipment__form-item {
    width: 32%;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #000;
    border-radius: 0px;
    height: 45px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    right: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: solid #F0E343;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 20px;
    margin-top: -5px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border: solid #F0E343;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    top: 21px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
}

.equipment {
    margin-bottom: 40px;
}

.equipment__form {
    margin-bottom: 30px;
}

.equipment__form form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.equipment__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.equipment__img {
    width: 30%;
}

.equipment__item-btn {
    width: 22%;
}

.equipment__contnet {
    width: 42%;
}

.equipment__contnet h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 5px;
}

.equipment__contnet p {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.equipment__offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.equipment__offer-item {
    display: flex;
    align-items: center;
    width: 48%;
    margin-bottom: 13px;
}

.equipment__offer-item svg {
    margin-right: 10px;
    max-width: 25px;
    max-height: 25px;
}

.equipment__offer-des {
    font-weight: 500;
}

.equipment__item-price {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-prem);
    color: black;
    margin-bottom: 30px;
}

.equipment__item-btn .btn__prem {
    width: 100%;
    margin-bottom: 20px;
}

.equipment__item-btn .btn__item {
    width: 100%;
}

.equipment__btn {
    text-align: center;
}

.equipment__btn .btn__prem {
    padding: 0px 50px;
}

.equipment__btn .btn__prem svg {
    margin-left: 10px;
}

.agreement__inner {
    display: flex;
    align-items: center;
}

.agreement__inner input {
    position: absolute;
    opacity: 0;
}

.agreement__inner label {
    font-size: 14px;
}

.agreement__inner input+label {
    position: relative;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.agreement__inner input+label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid white;
}

.agreement__inner input:disabled+label {
    color: #b8b8b8;
    cursor: auto;
}

.agreement__inner input:disabled+label:before {
    box-shadow: none;
    background: #ddd;
}

.agreement__inner input:checked+label:after {
    content: '';
    position: absolute;
    left: 3px;
    top: 9px;
    /* background: #1D1D1D; */
    width: 2px;
    height: 2px;
    /* box-shadow: 2px 0 0 #1D1D1D, 4px 0 0 #1D1D1D, 4px -2px 0 #1D1D1D, 4px -4px 0 #1D1D1D, 4px -6px 0 #1D1D1D, 4px -8px 0 #1D1D1D; */
    transform: rotate(45deg);

    background: #fff;
    box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
}

.feedback__item {
    margin-bottom: 40px;
    position: relative;
}

.feedback__item::after {
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.69) 37.5%, rgba(0, 0, 0, 0) 100%);
}

.feedback__item-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px 0px;
    color: #fff;
}

.feedback__item-form .agreement__inner input+label:before {
    border: 1px solid #fff;
}

.feedback__item-form .agreement__inner input:checked+label:after {
    background: #fff;
    box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
}

.feedback__item-text h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.feedback__item-text h2 span {
    color: var(--color-prem);
}

.intro__text-inner h2 span {
 color: var(--color-prem);
 text-shadow: 1px 2px #00000080;
}
.intro__text-inner h2 {
font-weight: 700;
font-size: 50px;
 text-shadow: 1px 2px #00000080;
}

.intro__text-inner h3 {
 color: var(--color-prem);
 font-weight: 700;
font-size: 27px;
padding-top: 10px;
}
.counter h3{
    margin: 15px 0px 15px 0;
}



.feedback__item-text h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feedback__item-text ul {
    margin-bottom: 20px;
}

.feedback__item-text ul li {
    font-size: 24px;
    margin-bottom: 10px;
}

.feedback__item-form p {
    margin-bottom: 15px;
}

.feedback__form-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feedback__form-item {
    margin-right: 30px;
}

.feedback__form-item:last-child {
    margin-right: 0;
}

.feedback__form-item .input__prem,
.feedback__form-item .btn__prem {
    width: 270px;
}
.intro__counter .feedback__form-item .input__prem, .feedback__form-item .btn__prem {
    padding: 0 10px;
}

.agreement__des {
    font-size: 11px;
    color: #fff;
}

.agreement__des a {
    color: #fff;
}

.feedback__item-des {
    font-size: 24px;
    margin-bottom: 80px;
    width: 31%;
}

.contact {
    position: relative;
    height: 460px;
    margin-bottom: 40px;
}

.contact__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.contact__content-inner {
    background-color: var(--color-prem);
    display: inline-block;
    padding: 20px 60px;
    width: 390px;
}

.contact__content-logo {
    text-align: center;
    margin-bottom: 20px;
}

.contact__content-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact__content-item:last-child {
    margin-bottom: 30px;
}

.contact__content-item svg {
    margin-right: 10px;
}

.contact__content-des {
    font-size: 14px;
}

.contact__content-phone {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact__content-phone svg {
    margin-right: 10px;
}

.contact__content-phone a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

.contact__content-inner .btn__item {
    width: 100%;
}

.footer {
    padding: 20px 0px;
    background-color: #000;
}

.footer a {
    color: #fff;
    display: block;
}

.copyright p {
    font-size: 12px;
    color: #fff;
}

.popup {
    background: url('../images/popup-bg.jpg') center no-repeat;
    background-size: cover;
    padding: 30px;
}

.feedback__popup {
    text-align: center;
}

.feedback__popup h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feedback__popup p {
    padding-bottom: 30px;
}

.feedback__popup-item {
    margin-bottom: 10px;
}

.feedback__popup-item .input__prem {
    width: 100%;
}

.feedback__popup .agreement__inner {
    text-align: left;
    margin-bottom: 10px;
}

.feedback__popup .agreement__des a {
    color: #000;
}
#map{
    height: 460px;
}


.menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(52, 52, 52, 1);
}

.menu .menu__list {
    display: flex;
    justify-content: center;
    gap: 4%;
    align-items: center;
    padding: 11px 0;
}
.menu .menu__list a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}
.menu .menu__content > a {
    display: none;
}

.header-burger {
    display: none;
}
@media (max-width: 1180px) {
    .container {
        max-width: 970px;
    }

    .header__contact::after {
        display: none;
    }

    .header__contact-item {
        color: #fff;
    }

    .header__contact-item svg path {
        stroke: #fff;
    }

    .header__contact-item {
        margin-right: 20px;
    }

    .header__contact {
        padding: 0px;
    }

    .header {
        padding: 20px 0px;
    }

    .header__phone {
        margin-right: 20px;
    }

    .intro__text h1 {
        font-size: 42px;
    }

    .intro__text h2 {
        font-size: 28px;
    }

    .cars__list ul {
        grid-template-columns: repeat(4, 1fr);
    }

    .car__btn {
        width: 29%;
    }
}

@media (max-width: 970px) {
    .header {
        padding: 0px;
    }
    .header-burger {
        display: block;
    }
    .menu {
        height: calc(100vh - 84px);
        background-color: #000;
    }

    .menu:not(.show) {
        display: none;
    }

    .menu .menu__list {
        flex-direction: column;
        font-size: 16px;
        padding: 30px 20px 10px;
        height: calc(100vh - 84px - 40px - 30px);
    }

    .menu .menu__list .menu__list-item {
        /* padding: 30px 0; */
        height: 100%;
        width: 100%;
        text-align: center;
        display: flex;
    }

    .menu .menu__list .menu__list-item:not(:last-child) {
        border-bottom: 1px solid white;
    }

    .menu .menu__list .menu__list-item > a {
        margin: auto;
    }

    .menu .menu__content > a {
        display: flex;
    }

    .header__inner {
        display: none;
    }

    .header__logo svg {
        width: 40px;

    }

    .header__mobil {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header__mobil-contact {
        padding: 30px 20px;
        position: relative;
    }

    .header__mobil-contact:after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000000;
        transform: skew(-30deg);
    }

    .header__mobil-contact-item {
        position: relative;
        z-index: 3;
        color: #ffffff;
    }

    .container {
        max-width: 100%;
        padding: 0px 10px;
    }

    /* .main {
        margin-top: 70px;
    } */

    .intro__btn {
        margin-bottom: 0;
        position: fixed;
        z-index: 9999;
        left: 0;
        bottom: 0;
        width: 100%;
    }

    .intro__btn .container {
        padding: 0px;
    }

    .intro__btn-inner .btn__item {
        flex-direction: column;
        height: 70px;
        text-align: center;
        padding: 0px 10px;
        font-size: 12px;
    }

    .intro__btn-inner .btn__item svg {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 770px) {
    .intro .container {
        padding: 0px;
    }

    .intro {
        background-position-y: -70px;
    }

    .intro__inner {
        padding: 20px 0px 0px 0px;
        justify-content: end;
        height: 380px;
    }

    .intro__counter {
        /* background-color: #000; */
        padding: 20px 0px;
        flex-direction: column;
        align-items: center;
margin-top: 150px;
    }
    .intro__counter > form {
        width: 100%;
    padding: 0 10px;
    }
    .timer {
        justify-content: space-evenly;
    }

    .counter {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        padding: 0 10px;
    }

    .intro__text {
        text-align: center;
        margin-bottom: 10px;
    }

    .intro__text h1 {
        font-size: 35px;
    }

    .intro__text h2 {
        font-size: 22px;
    }

    .cars__list ul {
        grid-gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }

    .car__item-inner {
        display: block;
    }

    .car__content {
        width: 100%;
        margin-bottom: 10px;
    }

    .car__btn {
        width: 100%;
    }

    .equipment__item {
        display: block;
    }

    .equipment__img,
    .equipment__contnet,
    .equipment__item-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .equipment__form form {
        display: block;
    }

    .equipment__form-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .feedback__item {
        background: #000 !important;

    }

    .feedback__item .container {
        padding: 0px;
    }

    .feedback__item-inner {
        padding: 0px;
    }

    .feedback__item-title {
        position: relative;
        height: 200px;
        padding: 20px;
        display: flex;
        justify-content: end;
        flex-direction: column;
    }

    .feedback__item-title::after {
        content: '';
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
        height: 100%;
        width: 60%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.69) 37.5%, rgba(0, 0, 0, 0) 100%);
    }

    .feedback__item:first-child .feedback__item-title {
        background: url('../images/feedback-mobil-1.jpg') center no-repeat;
        background-size: cover;
        background-position: 30% center;
        padding: 10px 20px;
    }

    .feedback__item:last-child .feedback__item-title {
        background: url('../images/trade-mob.webp') center no-repeat;
        background-size: cover;
    }

    .feedback__item-title-inner {
        position: relative;
        z-index: 1;
    }

    .feedback__item-text ul,
    .feedback__item-des {
        padding: 20px;
    }

    .feedback__item-form {
        padding: 0px 20px 20px 20px;
    }

    .feedback__item-des {
        width: 100%;
    }

    .feedback__form-row {
        display: block;
    }
    .intro__counter .feedback__form-row {
        display: flex;
        gap: 4px;
        width: 100%;
    }

    .intro__counter .feedback__form-item:first-child {
        display: none;
    }
    
    .feedback__form-item {
        margin-right: 0;
       margin-bottom: 20px;
    }
    .intro__counter .feedback__form-item {
        margin-bottom: 5px;
        flex: 1;
    }

    .feedback__form-item .input__prem,
    .feedback__form-item .btn__prem {
        width: 100%;
    }

    .footer {
        padding-bottom: 80px;
    }

    html {
        scroll-padding-top: 80px;
    }

    .equipment__offer-item svg {
        min-width: 40px;
    }
}

@media (max-width: 630px) {
    .contact{
        height: 705px;
    }
    #map{
        height: 705px;
    }
    .car__content-inner-month {
        font-size: 13px;
        line-height: 15px;
    }

    .car__content-inner-month {
        bottom: -12px;
        left: 16px;
        padding: 4px 6px 3px 9px;
    }

    .equipment__offer-item {
        width: 100%;
    }

    .car__content-row {
        display: block;
    }

    .car__content-inner,
    .car__img {
        width: 100%;
    }

    .car__content-inner {
        text-align: center;
    }

    .cars__list ul {
        grid-gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment__offer {
        flex-direction: column;
        justify-content: center;
        width: 240px;
        margin: 0 auto;
    }

    .equipment__contnet {
        text-align: center;
        font-size: 15px;
    }

    .equipment__item-price {
        text-align: center;
    }

    .contact__content-inner {
        width: auto;
    }

    .section__title {
        font-size: 22px;
    }

    .btn__prem:hover {
        background-color: var(--color-prem);
    }

    .btn__item:hover {
        color: #fff;
    }

    .btn__white:hover {
        background-color: #fff;
        color: #000;
    }

}
.desc-hide{
    display: none;
}
@media (max-width: 500px) {

    .car__offer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .car__offer-item {
        text-align: left;
        margin-right: 10px;
    }

    .car__offer-des {
        font-size: 14px;
    }
.desc-hide{
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: white;max-width: 236px;
    margin-top: 100px;
    margin-left: 10px;
    margin-bottom: 15px;
}
.intro__list{
    margin-left: 10px;
    gap: 5px;
}
.intro__list svg{
    width: 22px;
    height: 22px;
}
.intro__list li p{
    font-size: 14px;
}
    .car__offer-des span {
        font-size: 16px;
    }

    .cars__list {
        margin-bottom: 20px;
    }

    .cars__list ul li a {
        font-size: 16px;
    }

    .intro {
background: url('../images/banner-mob.webp') ;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
margin-top: -84px;
/* height: 555px; */
    }

    .intro__inner {
        height: auto;
        padding-top: 0;
        
    }

    .intro__text {
        /* background: url('../images/banner-mob.webp') center no-repeat; */
        background-size: cover;
        height: 550px;
        display: flex;
        justify-content: flex-start;
        margin-top: -60px;
        flex-direction: column;
        margin-bottom: 0;
        padding-bottom: 10px;
        display: none;
    }
    .intro__text-inner{
        margin-top: 70px;
        max-width: 164px;
        text-align: start;
        margin-left: 20px;
    }
    .main {
        /* margin-top: 84px; */
    }

    .intro__text h1 {
        font-size: 25px;
    }

    .intro__text h2 {
        font-size: 18px;
    }

    .header__mobil-contact-item {
        font-size: 12px;
    }

    .feedback__item-text h2 {
        font-size: 22px;
    }

    .feedback__item-text h3 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .feedback__item-text ul li {
        font-size: 16px;
    }

    .feedback__item-form p {
        font-size: 14px;
    }

    .feedback__item-des {
        margin-bottom: 15px;

        padding: 10px 20px;
    }

    .intro__text-inner br {
        display: none;
    }

    .intro__text h1 {
        margin-bottom: 5px;
    }

    .equipment__item-btn .btn__prem {
        margin-bottom: 10px;
    }

    .equipment__item-price {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .car__des-item {
        text-align: center;
    }

    .car__des-item {
        margin-right: 10px;
    }

    .car__des-item:last-child {
        margin-right: 0;
    }

    .btn__prem,
    .btn__item,
    .btn__white {
        height: 40px;
    }
}

@media (max-width: 376px) {
    .intro__text h1 {
        font-size: 21px;
    }

    .intro__text h2 {
        font-size: 16px;
    }
}

.filtered-show,
.showmore-show {
    /* display: flex; */
    opacity: 1;
    transition: .3s;
}

.filtered-hide,
.showmore-hide {
    display: none;
    opacity: 0;
}

.js--show-more.hidden {
    display: none;
}