
*,
*::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: 'Montserrat', sans-serif;
	--main-font-size: 16px;
	--main-text-color: #30363B;
	--main-bg-color: #fff;
	--main-placeholder-color: #30363B;
    --color-prem: #C78E66;
    --color-item: #30363B;
}

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

body.active {
    overflow: hidden;
}

input, button, textarea {
	font-family: var(--main-font-family), sans-serif;
}

.main {
    overflow: hidden;
}

.container {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;  
}

.btn__prem {
    cursor: pointer;
    border: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-prem);
    height: 58px;
    font-weight: 700;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.btn__prem svg,
.btn__item svg,
.btn__white svg {
    margin-left: 10px;
}

.btn__prem:hover {
    background-color: #c77d48;
}

.btn__item {
    cursor: pointer;
    border: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-item);
    height: 58px;
    font-weight: 700;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.btn__item:hover {
    background-color: var(--color-prem);
}

.btn__item:hover > svg path {
    stroke: #fff;
}

.btn__white {
    cursor: pointer;
    border: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    color: var(--main-text-color);
    background-color: #fff;
    height: 58px;
    font-weight: 700;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.btn__white:hover {
    color: #fff;
    background-color: var(--color-prem);
}

.input__prem {
    height: 58px;
    background: transparent;
    border: 1px solid #30363B;
    padding: 0px 20px;
    color: var(--main-text-color);
    outline: none;
}

.header__contact {
    padding: 10px 0px;
    background: -webkit-gradient(linear, right top, left top, from(#C78E66), color-stop(100.26%, #30363B));
    background: -o-linear-gradient(right, #C78E66 0%, #30363B 100.26%);
    background: linear-gradient(270deg, #C78E66 0%, #30363B 100.26%);
}

.header__mobil {
    display: none;
}

.header__contact-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}

.header__contact-adress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
}

.header__contact-adress span {
    font-size: 12px;
    color: #fff;
}

.header__contact-adress svg {
    margin-right: 10px;
}

.header__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.header__phone svg {
    margin-right: 10px;
}

.header__phone:last-child {
    margin-right: 0;
}

.header__nav {
    padding: 20px 0px;
    background-color: var(--color-item);
    color: #fff;
}

.header__nav.header-active {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
}

.header__nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.header__list-note {
    display: none;
}

.header__list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header__list-item {
    margin-right: 45px;
}

.header__list-item:last-child {
    margin-right: 0;
}

.header__list-item a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    position: relative;
}

.header__list-item a:hover {
    color: var(--color-prem);
}

.header__list-item a::after {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 0px;
    background-color: var(--color-prem);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.header__list-item a:hover::after {
    width: 100%;
    height: 1px;
}

.header__btn {
    outline: none;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    color: #fff;
    height: 42px;
    padding: 0px 20px;
    border: 1px solid var(--color-prem);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.header__btn:hover {
    background-color: var(--color-prem);
    color: #fff;
}

/* index.html */

.intro__inner {
    height: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.intro__text {
    color: #fff;
    text-align: center;
}

.intro__text h1 {
    font-size: 80px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.intro__text h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 70px;
    color: var(--color-prem);
    text-transform: uppercase;
}

.intro__btn a {
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    height: 58px;
    padding: 0px 50px;
    border: 1px solid #fff;
    font-weight: 700;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.intro__btn a svg {
    margin-left: 20px;
}

.intro__btn a:hover {
    background-color: #fff;
    color: var(--color-prem);
}

.main__checkbox {
	display: block;
	position: relative;
	padding-left: 24px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.main__checkbox .main__checkbox-input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.main__checkbox .main__checkbox-checkmark {
	position: absolute;
	top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
	left: 0;
	height: 18px;
	width: 18px;
	background-color: transparent;
	border: 1px solid var(--color-item);
}

.main__checkbox .main__checkbox-input:checked ~ .main__checkbox-checkmark {border-color: var(--color-item);}

.main__checkbox .main__checkbox-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.main__checkbox .main__checkbox-input:checked ~ .main__checkbox-checkmark:after {
	display: block;
}

.main__checkbox .main__checkbox-checkmark:after {
	left: 3px;
	top: 3px;
	width: 10px;
	height: 10px;
	background: var(--color-prem);
	border-radius: 2px;
}

.main__checkbox-text {
	font-size: 12px;
	font-weight: 500;
}

.credit__feedback {
    background: url('../images/credit-feedback-bg.jpg') center no-repeat;
    background-size: cover;
}

.credit__feedback-inner {
    height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.credit__feedback-content {
    color: #fff;
}

.credit__feedback-content h2 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 30px;
}

.credit__feedback-content h1 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 30px;
}

.credit__feedback-content p {
    font-size: 35px;
    font-weight: 700;
    color: var(--color-prem);
    display: inline-block;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.credit__feedback-form-item {
    margin-bottom: 20px;
}

.credit__feedback-form-item .input__prem {
    width: 400px;
    border: 1px solid #fff;
    color: #fff;
}

.credit__feedback-form-item .input__prem::-webkit-input-placeholder {
    color: #fff;
}

.credit__feedback-form-item .input__prem::-moz-placeholder {
    color: #fff;
}

.credit__feedback-form-item .input__prem:-ms-input-placeholder {
    color: #fff;
}

.credit__feedback-form-item .input__prem::-ms-input-placeholder {
    color: #fff;
}

.credit__feedback-form-item .input__prem::placeholder {
    color: #fff;
}

.credit__feedback-form-item .btn__white {
    padding: 0px 40px;
}

.credit__feedback-form-item .btn__white svg {
    margin-left: 15px;
}

.credit__feedback-form-item .btn__white:hover > svg path {
    stroke: #fff;
}

.credit__feedback-content .main__checkbox .main__checkbox-checkmark {
    border: 1px solid #fff;
}

.credit__feedback-content .main__checkbox .main__checkbox-input:checked ~ .main__checkbox-checkmark {
    border-color: #Fff;
}   

.credit__feedback-content .main__checkbox {
    margin-bottom: 20px;
}

.cars__prem {
    margin-bottom: 85px;
}

.cars__prem-item {
    position: relative;
}

.cars__prem-item.cars__prem-one {
    background-color: #F8F8F8;
}

.cars__prem-item.cars__prem-two {
    background-color: #30363B;
    color: #fff;
}

.cars__prem-item.cars__prem-three {
    background-color: #191B1D;
    color: #fff;
}

.cars__prem-item.cars__prem-one .cars__prem-img,
.cars__prem-item.cars__prem-three .cars__prem-img
{
    left: 0;
}

.cars__prem-item.cars__prem-two .cars__prem-img {
    right: 0;
}

.cars__prem-img {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.cars__prem-content {
    width: 45%;
}

.cars__prem-item.cars__prem-one .cars__prem-content,
.cars__prem-item.cars__prem-three .cars__prem-content {
    margin-left: auto;
} 

.cars__prem-item.cars__prem-two .cars__prem-content {
    margin-right: auto;
} 

.cars__prem-content {
    padding: 75px 0px;
}

.cars__prem-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 50px;
}

.cars__prem-text-inner h3 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 7px;
}

.cars__prem-price-new {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-prem);
    margin-bottom: 10px;
}

.cars__prem-price-old {
    font-size: 18px;
    color: #A7A7A7;
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through;
    margin-bottom: 45px;
}

.cars__prem-price-credit {
    font-size: 35px;
    font-weight: 700;
}

.cars__prem-ins {
    background-color: #fff;
    max-width: 130px;
    text-align: center;
    padding: 75px 15px 25px 15px;
    margin-top: -75px;
}

.cars__prem-item.cars__prem-two .cars__prem-ins{
    background-color: #373D41;
}

.cars__prem-item.cars__prem-three .cars__prem-ins {
    background-color: #282B2E;
}

.cars__prem-item.cars__prem-two .cars__prem-ins-number span{
    color: #6F6F6F;
}

.cars__prem-item.cars__prem-three .cars__prem-ins-number span{
    color: #6A6A6A;
}

.cars__prem-item.cars__prem-two .cars__prem-ins-number-des{
    color: #6F6F6F;
}

.cars__prem-item.cars__prem-three .cars__prem-ins-number-des{
    color: #6A6A6A;
}

.cars__prem-item.cars__prem-three .cars__prem-ins-present-des{
    color: #fff;
}

.cars__prem-ins-number span {
    font-size: 80px;
    font-weight: 300;
    color: #A7A7A7;
}

.cars__prem-ins-number-des {
    font-size: 18px;
}

.cars__prem-ins-number {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #CFCFCF;
}

.cars__prem-ins-present svg {
    margin-bottom: 10px;
}

.cars__prem-ins-present-des {
    font-size: 12px;
}

.cars__prem-info,
.special__list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 35px;
}

.cars__prem-info-item {
    width: 48%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0px;
    border-top: 1px solid #CFCFCF;
}

.cars__prem-info-item:first-child,
.cars__prem-info-item:nth-child(2) {
    border-top: 0;
}

.cars__prem-info-contact svg {
    margin-right: 12px;
}

.cars__prem-info-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.cars__prem-info-des {
    font-size: 18px;
}

.cars__prem-info-number {
    font-size: 18px;
    font-weight: 700;
}

.cars__prem-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.cars__prem-btn a,
.cars__prem-btn button {
    width: 48%;
}

.cars__prem-btn a svg {
    margin-left: 10px;
}

.cars__prem-btn .btn__item:hover svg path,
.cars__prem-btn .btn__white:hover svg path {
    stroke: #fff;
}

.present {
    margin-bottom: 80px;
}

.section__title {
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 70px;
}

.present__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 80px;
    border-bottom: 1px solid #DBDBDB;
}

.present__item {
    height: 515px;
    padding: 35px;
    color: #fff;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.present__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 54, 59, 0.4);
    
    -webkit-transition: all .4s ease;
    
    -o-transition: all .4s ease;
    
    transition: all .4s ease;
}

.present__item:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    position: relative;
    z-index: 4;
}

.present__item:hover::after {
    background: rgba(48, 54, 59, 0.85);
}

.present__item:hover .present__item-content .btn__prem {
    opacity: 1;
    visibility: visible;
    height: 58px;
}

.present__item:hover .present__item-inner > svg {
    stroke: var(--color-prem);
}

.present__item:hover .present__item-content h3 {
    padding-bottom: 20px;
}

.present__item:hover .present__item-content h3 span {
    color: var(--color-prem);
}

.present__item:nth-child(1) {
    background: url('../images/present-1.png') center no-repeat;
    background-size: cover;
}
.present__item:nth-child(2) {
    background: url('../images/present-2.png') center no-repeat;
    background-size: cover;
}
.present__item:nth-child(3) {
    background: url('../images/present-3.png') center no-repeat;
    background-size: cover;
}
.present__item:nth-child(4) {
    background: url('../images/present-4.png') center no-repeat;
    background-size: cover;
}

.present__item-inner > svg {
    position: relative;
    z-index: 2;
}

.present__item-content {
    position: absolute;
    z-index: 1;
    left: 35px;
    bottom: 35px;
}

.present__item-content h3 {
    font-size: 35px;
    font-weight: 400;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.present__item-content h3 span {
    font-weight: 700;
}

.present__item-content .btn__prem {
    width: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    visibility: hidden;
    height: 0px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.special__list {
    margin-bottom: 100px;
}

.section__tabs {
    margin-bottom: 75px;

}

.section__tabs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 70%;
    margin: 0 auto;
}

.section__tab-item {
    margin-right: 20px;
    width: 32%;
}

.section__tab-item:last-child {
    margin-right: 0;
}

.section__tab-item a {
    text-decoration: none;
    color: var(--main-text-color);
    text-transform: uppercase;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 58px;
    border: 1px solid #30363B;
    border-radius: 50px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.section__tab-item a.active {
    color: #fff;
    background-color: var(--color-prem);
    border: 1px solid var(--color-prem);
}

.special__list-inner {
    margin-bottom: 100px;
}

.special__list-item {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.special__list-item:nth-child(odd) {
    border: 1px solid #CFCFCF;
}

.special__list-item:nth-child(even) {
    background: #F8F8F8;
}

.special__list-img {
    width: 26%;
}

.special__list-content {
    width: 47%;
    padding: 30px 0px;
}

.special__list-btn {
    width: 24%;
    padding: 30px 30px 30px 0px;
}

.special__list-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 35px;
}

.special__list-title-inner h3 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 10px;
}

.special__list-offer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.special__list-offer-item {
    font-size: 18px;
    font-weight: 400;
    padding: 5px 20px;
    margin-right: 10px;
}

.special__list-offer-item:last-child {
    margin-right: 0;
}

.special__list-offer-item:nth-child(odd) {
    border: 1px solid #30363B;
}

.special__list-offer-item:nth-child(even) {
    border: 1px solid var(--color-prem);
    color: var(--color-prem);
}

.special__list-ins {
    text-align: center;
    padding: 40px 15px 20px 15px;
    margin-top: -30px;
}

.special__list-item:nth-child(odd) .special__list-ins {
    background-color:#F8F8F8;
}

.special__list-item:nth-child(even) .special__list-ins {
    background-color:#fff;
}

.special__list-ins svg {
    width: 25px;
}

.special__list-ins-des {
    font-size: 10px;
}

.special__list-info {
    margin-bottom: 0;
}

.special__list-info-item {
    width: 48%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0px;
    border-top: 1px solid #CFCFCF;
}

.special__list-info-item:nth-child(1),
.special__list-info-item:nth-child(2) {
    border-top: 0;
}

.special__list-price-new {
    font-size: 35px;
    font-weight: 700;
    color: var(--color-prem);
    margin-bottom: 5px;
}

.special__list-price-old {
    font-size: 18px;
    color: #A7A7A7;
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through;
    margin-bottom: 10px;
}

.special__list-price-credit {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;    
}

.special__list-btn .btn__prem {
    width: 100%;
    margin-bottom: 20px;
}

.special__list-btn .btn__item {
    width: 100%;
}

.special__btn a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    color: var(--color-item);
    border: 1px solid var(--color-item);
    font-weight: 700;
    height: 58px;
    padding: 0px 50px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.special__btn a svg {
    margin-left: 10px;
}

.special__btn a:hover {
    color: #fff;
    background-color: var(--color-item);
}

.special__btn {
    text-align: center;
}

.news__list {
    padding: 75px 0px;
    padding-top: 40px;
    background-color: #F8F8F8;
}

.news__list-item {
    position: relative;
    height: 405px;
}

.news__list-item::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(48, 54, 59, 0)), to(#30363B));
    background: -o-linear-gradient(top, rgba(48, 54, 59, 0) 0%, #30363B 100%);
    background: linear-gradient(180deg, rgba(48, 54, 59, 0) 0%, #30363B 100%);
}

.news__list-inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.news__list-text {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.news__list-text a {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

.news__list-date {
    font-size: 12px;
}

.tradein__feedback {
    background: url('../images/tradein-feedback-bg.jpg') center no-repeat;
    background-size: cover;
}

.tradein__feedback .credit__feedback-content p {
    padding-bottom: 0;
    margin-bottom: 40px;
    border-bottom: 0;
}

.footer {
    padding: 70px 0px 40px 0px;
    background-color: var(--color-item);
}

.footer__nav {
    margin-bottom: 65px;
}


.footer__contact {
    padding-bottom: 65px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer__contact-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    margin-bottom: 30px;
}

.footer__phone {
    text-decoration: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 30px;
    font-weight: 700;
}

.footer__phone svg {
    margin-right: 15px;
}

.footer__phone:first-child {
    margin-right: 40px;
}

.footer__adress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
}

.footer__adress svg {
    margin-right: 10px;
}

.copyright p {
    font-size: 12px;
    color: #fff;
}

@media (max-width: 1680px) {
    .container {
        max-width: 1480px;
    }

    .header__list-item {
        margin-right: 20px;
    }

    .present__item-content .btn__prem {
        width: 300px;
    }

    .special__list-btn {
        width: 21%;
        padding: 30px 15px 30px 0px;
    }

    .special__list-img {
        width: 30%;
    }
}

@media (max-width: 1480px) {
    .container {
        max-width: 1280px;
    }
    
    .header__list-item a {
        font-size: 14px;
    }

    .header__list-item {
        margin-right: 10px;
    }

    .header__btn {
        font-size: 14px;
    }

    .intro__text h1 {
        font-size: 50px;
    }

    .intro__text h2 {
        font-size: 38px;
        margin-bottom: 25px;
    }

    .credit__feedback-content h2 {
        font-size: 42px;
    }

    .credit__feedback-content h1 {
        font-size: 42px;
    }

    .credit__feedback-content p {
        font-size: 28px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .cars__prem-text-inner h3 {
        font-size: 50px;
    }

    .cars__prem-price-new {
        font-size: 38px;
    }

    .cars__prem-price-old {
        margin-bottom: 25px;
    }

    .cars__prem-price-credit {
        font-size: 24px;
    }
    
    .cars__prem-content {
        width: 48%;
    }

    .cars__prem-content {
        padding: 35px 0px;
    }

    .cars__prem-ins {
        padding: 25px 15px 25px 15px;
        margin-top: -35px;
    }

    .present__inner {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 40px;
    }

    .present {
        margin-bottom: 40px;
    }

    .section__title {
        font-size: 42px;
        margin-bottom: 35px;
    }

    .section__tabs {
        margin-bottom: 35px;
    }

    .section__tabs ul {
        width: 80%;
    }

    .special__list-title-inner h3 {
        font-size: 38px;
    }

    .special__list-price-new {
        font-size: 26px;
    }

    .cars__prem-info-des {
        font-size: 14px;
    }
    
    .cars__prem-info-number {
        font-size: 16px;
    }

    .special__list-img {
        -o-object-fit: cover;
           object-fit: cover;
    }

    .credit__feedback-inner {
        height: 600px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding: 0px 20px;
    }

    .header__list-note {
        display: block;
    }

    .header__list-note ul {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .header__nav-inner {
        margin-bottom: 10px;
    }

    .header__nav-inner .header__list {
        display: none;
    }

    .special__list-item {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;

    }

    .special__list-content {
        width: 67%;
    }

    .special__list-btn {
        width: 100%;
    }

    .special__list-content,
    .special__list-btn {
        padding: 20px;
    }

    .special__list-btn-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .special__list-btn-list .btn__prem,
    .special__list-btn-list .btn__item {
        width: 48%;
    }

    .special__list-btn .btn__prem {
        margin-bottom: 0px;
    }

    .news__list-inner {
        -ms-grid-columns: 1fr 20px 1fr;
        grid-template-columns: repeat(2, 1fr);
    }

    .special__list-inner,
    .special__list {
        margin-bottom: 40px;
    }

    .news__list {
        padding: 40px 0px;
        padding-top: 20px;
    }

    .footer {
        padding: 40px 0px 30px 0px;
    }

    .footer__nav {
        margin-bottom: 35px;
    }

    .footer__contact {
        padding-bottom: 35px;
    }
}

@media (max-width: 1100px) {
    .special__list-img {
        width: 33%;
    }

    .intro__inner {
        height: 450px;
    }

    .cars__prem-img {
        position: static;
        width: 100%;
    }

    .cars__prem-item-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .cars__prem-item:nth-child(2) .cars__prem-item-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

    .cars__prem-content {
        width: 100%;
    }

    .credit__feedback-inner {
        height: 550px;
    }
}

@media (max-width: 990px) {
    .section__tabs ul {
        width: 100%;
    }

    .special__list-img,
    .special__list-content {
        width: 100%;
    }

    .special__list-img {
        height: auto;
    }

    .special__list-ins {
        margin-top: 0; 
    }
}

@media (max-width: 860px) {
    .main {
        margin-top: 68px;
    }

    .header__contact,
    .header__nav {
        display: none;
    }

    .header__mobil {
        padding: 15px 0px;
        background-color: var(--color-item);
        display: block;
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 100%;
    }

    .header__mobil-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .header__burger {
        width: 30px;
        height: 20px;
        position: relative;
    }

    .header__burger-line {
        position: absolute;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 2px;
        background-color: var(--color-prem);
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
    }

    .header__burger.active .header__burger-line:nth-child(1) {
        -webkit-transform: translateY(9px)
        rotate(45deg);
            -ms-transform: translateY(9px)
        rotate(45deg);
                transform: translateY(9px)
        rotate(45deg);
    }

    .header__burger.active .header__burger-line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active .header__burger-line:nth-child(3) {
        -webkit-transform: translateY(-9px)
        rotate(-45deg);
            -ms-transform: translateY(-9px)
        rotate(-45deg);
                transform: translateY(-9px)
        rotate(-45deg);
    }

    .header__burger-line:nth-child(1) {
        top: 0;
    }
    .header__burger-line:nth-child(2) {
        top: 50%;
        -webkit-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
                transform: translate(0, -50%);
    }
    .header__burger-line:nth-child(3) {
        bottom: 0;
    }

    .header__mobil-list {
        position: fixed;
        z-index: 9999;
        left: -100%;
        width: 70%;
        top: 68px;
        background-color: var(--color-item);
        padding: 20px;
        height: 100vh;
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
    }

    .header__mobil-list.active {
        left: 0;
    }

    .header__list-item {
        margin-bottom: 10px;
        font-size: 16px;
        
    }

    .header__contact-adress {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .header__phone {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .present__inner {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }

    .present__item:hover {
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1);
    }

    .intro__text h1 {
        font-size: 42px;
    }

    .intro__text h2 {
        font-size: 28px;
    }

    .credit__feedback-content h2 {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .credit__feedback-content h1 {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .credit__feedback-content p {
        font-size: 22px;
    }

    .section__tabs ul {
        display: block;
    }

    .section__tab-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .header__list ul {
        display: block;
    }
}

@media (max-width: 680px) {
    .intro__inner {
        height: 350px;
    }

    .credit__feedback-inner {
        height: 500px;
    }

    .special__list-info-item {
        width: 100%;
    }

    .special__list-info-item:nth-child(2) {
        border-top: 1px solid #CFCFCF;
    }

    .special__list-btn-list {
        display: block;
    }

    .special__list-btn .btn__prem {
        margin-bottom: 10px;
    }

    .special__list-btn .btn__prem,
    .special__list-btn .btn__item {
        width: 100%;
    }

    .news__list-inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
    } 
}

@media (max-width: 550px) {
    .cars__prem-info-item:nth-child(2) {
        border-top: 1px solid #CFCFCF;
    }

    .intro__text h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .intro__text h2 {
        font-size: 20px;
    }

    .intro__btn a {
        padding: 0px;
        width: 100%;
    }

    .credit__feedback-form-item .input__prem {
        width: 100%;
    }

    .credit__feedback-form-item .btn__white {
        padding: 0px;
        width: 100%;
    }

    .credit__feedback-content h2 {
        font-size: 26px;
    }

    .credit__feedback-content h1 {
        font-size: 26px;
    }

    .credit__feedback-content p {
        font-size: 18px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .cars__prem-text {
        display: block;
    }

    .cars__prem-text-inner {
        margin-bottom: 10px;
    }

    .cars__prem-ins {
        max-width: 100%;
        width: 100%;
        margin-top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .cars__prem-ins-number {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

    .cars__prem-ins-number span {
        font-size: 55px;
    }

    .cars__prem-ins-number-des {
        font-size: 14px;
    }

    .cars__prem-text-inner h3 {
        font-size: 38px;
    }

    .cars__prem-price-new {
        font-size: 24px;
    }

    .cars__prem-price-credit {
        font-size: 20px;
    }

    .cars__prem-info-item {
        width: 100%;
    }

    .cars__prem-btn {
        display: block;
    }

    .cars__prem-btn .btn__prem,
    .cars__prem-btn .btn__white,
    .cars__prem-btn .btn__item {
        width: 100%;
    }

    .cars__prem-btn .btn__prem {
        margin-bottom: 10px;
    }

    .cars__prem-text {
        margin-bottom: 25px;
    }

    .cars__prem-info, .special__list-info {
        margin-bottom: 20px;
    }

    .section__title {
        font-size: 28px;
    }

    .special__list-title {
        display: block;
    }

    .special__list-ins {
        padding: 15px;
        display: inline-block;
    }

    .special__list-title-inner {
        margin-bottom: 10px;
    }

    .footer__contact-row {
        display: block;
    }

    .footer__phone:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer__phone {
        font-size: 20px;
    }

    .special__list-title-inner h3 {
        font-size: 26px;
    }

    .special__list-offer {
        display: block;
    }

    .special__list-offer-item:nth-child(odd) {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .special__list-offer-item {
        text-align: center;
    }
}

@media (max-width: 450px) {
    .header__nav-inner {
        display: block;
    }

    .footer .header__logo {
        margin-bottom: 10px;
    }

    .header__mobil-list {
        width: 100%;
    }
}

/*--- index.html ----*/

/* cars.html */

.cars {
    margin-bottom: 80px;
}

.models__prem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 77px;
    margin-top: -70px;
}

.models__prem-item {
    width: 33.3333%;
    text-align: center;
}

.models__prem-item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 190px;
    margin-bottom: 25px;
}

.models__prem-item a {
    text-decoration: none;
    color: var(--main-text-color);
    font-weight: 700;
    font-size: 13px;
}

.cars__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-bottom: 90px;
}

.cars__item {
    padding: 30px;
    position: relative;
    border: 1px solid #CFCFCF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 615px;
    height: 100% !important;
}
.cars__item .cars__prem-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: unset;
    gap: 12px;
    margin-bottom: 25px;
}
.cars__item .cars__prem-info-item {
    flex-direction: column;
    align-items: start;
    gap: 5px;
    width: 100%;
    border-top: unset;
    padding: unset;
}
.cars__item .cars__prem-info-contact {
    align-items: start;
}
.cars__item .cars__prem-info-contact svg{
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
.cars__item .cars__prem-info-des {
    font-size: 14px;
}
.cars__item .cars__prem-info-number {
    font-size: 14px !important;
    margin-left: 24px;
}

.cars__item-ins {
    font-size: 10px;
    padding: 5px 15px;
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 30px;
    border: 1px solid #CFCFCF;
    background-color: #fff;
}

.cars__item-img {
    width: 100%;
    margin-bottom: 13px;
}

.cars__item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
}

.cars__item-content h3 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 10px;
}

.cars__item-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.cars__item-price-new {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-prem);
}

.cars__item-price-old {
    color: #A7A7A7;
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through;
}

.cars__item-box {
    text-align: center;
    padding: 20px 10px;
    background-color: #F8F8F8;
    min-width: 100px;
}

.cars__item-color {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #CFCFCF;
}

.cars__item-color span {
    width: 44px;
    height: 34px;
    margin: 0 auto;
    display: block;
    margin-bottom: 6px;
    margin-top: -30px;
}

.cars__item-color p {
    font-size: 10px;
}

.cars__item-present svg {
    margin-bottom: 5px;
}

.cars__item-present p {
    font-size: 10px;
}

.cars__item-price-credit {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.cars__item-btn a {
    width: 100%;
}

.cars__item-btn .btn__prem {
    margin-bottom: 20px;
}

@media (max-width: 1680px) {
    .cars__item-content h3 {
        font-size: 28px;
    }

    .cars__item-box {
        min-width: auto;
    }
}

@media (max-width: 1480px) {
    .cars__item {
        padding: 15px;
        height: 560px;
    }
}

@media (max-width: 1280px) {
    .models__prem {
        width: 90%;
    }

    .cars__list {
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 960px) {
    .models__prem {
        width: 100%;
    }

    .models__prem {
        margin-top: 20px;
        margin-bottom: 35px;
    }

    .cars__list {
        -ms-grid-columns: 1fr 20px 1fr;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 630px) {
    .cars__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
    }

    .models__prem {
        display: block;
    }

    .models__prem-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .models__prem-item img {
        max-height: 230px;
    }

    .intro__inner {
        height: 280px;
    }

    .cars__item {
        height: auto;
    }
}

@media (max-width: 450px)  {
    .intro__text h1 {
        font-size: 28px;
    }
}


/*--- cars.html ---*/

/* cars-mileage.html */

.cars__item-mileage {
    border: none;
    background-color: #F8F8F8;
}

.cars__item-mileage .cars__item-img {
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
} 

/*--- cars-mileage.html ---*/

/* model.html */

.intro__model .intro__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}

.intro__model .intro__info {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.intro__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
}

.intro__info::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background: rgba(255, 255, 255, 0.5);
}

.intro__model .intro__text h2 {
    margin-bottom: 25px;
}

.cars__prem-form-item .input__prem {
    width: 405px;
}

.border-black .input__prem {
    border: 1px solid #fff;
    color: #fff;
}

.border-black .input__prem::-webkit-input-placeholder {
    color: #fff;
}

.border-black .input__prem::-moz-placeholder {
    color: #fff;
}

.border-black .input__prem:-ms-input-placeholder {
    color: #fff;
}

.border-black .input__prem::-ms-input-placeholder {
    color: #fff;
}

.border-black .input__prem::placeholder {
    color: #fff;
}

.cars__prem-form-item {
    margin-bottom: 20px;
}

.cars__prem-form .main__checkbox {
    margin-bottom: 20px;
}

.border-black .main__checkbox .main__checkbox-checkmark {
    border-color: #fff;
}

.border-black .main__checkbox .main__checkbox-input:checked ~ .main__checkbox-checkmark {
    border-color: #fff;
}

.model-page .cars__prem {
    margin-bottom: 0;
}

.model__slider {
    padding-top: 70px;
    margin-bottom: 70px;
    background: url('../images/model-slider-bg.png') top no-repeat;
    background-size: cover;
}

.model__slide {
    text-align: center;
}

.model__slide img {
    width: 100%;
    margin-bottom: 20px;
}

.model__slide-des {
    font-size: 20px;
    text-transform: uppercase;
}

.gallery {
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    flex-wrap: wrap; */
    margin-bottom: 85px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minmax(185px, max-content);
    grid-auto-rows: 220px;
    grid-auto-flow: row dense;
}

.gallery__col {
    width: 33.33%;
}

.gallery__item {
    display: block;
    grid-column-start: auto;
    grid-row-start: auto;
    /* width: 33.33%; */
}

.gallery__item:nth-child(1n) {
    grid-row-end: span 1;
}
.gallery__item:nth-child(2n) {
    grid-row-end: span 2;
}
.gallery__item:nth-child(3n) {
    grid-row-end: span 1;
}
.gallery__item:nth-child(4n) {
    grid-row-end: span 2;
}
.gallery__item:nth-child(5n) {
    grid-row-end: span 2;
}
.gallery__item:nth-child(6n) {
    grid-row-end: span 1;
}

.gallery__item:nth-child(1n) .gallery__img,
.gallery__item:nth-child(2n) .gallery__img,
.gallery__item:nth-child(3n) .gallery__img,
.gallery__item:nth-child(4n) .gallery__img,
.gallery__item:nth-child(5n) .gallery__img,
.gallery__item:nth-child(6n) .gallery__img {
    height: 100%;
}


.gallery__img {
    background-position: center;
    background-size: cover;
    width: 100%;
}

.model__equipment {
    margin-bottom: 70px;
}

.model__equipment-inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 50px;
}

.model__equipment-info {
    display: none;
}

.model__equipment-info.active-content {
    display: block;
}

.btn__equipment.active-btn {
    border: 3px solid var(--color-prem);
    position: relative;
}

.btn__equipment.active-btn > svg {
    display: none;
}

.btn__equipment.active-btn::after {
    content: '';
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid var(--color-prem);
    position: absolute;
    z-index: 1;
    bottom: -12px;
    left: 50%;
    transform: rotate(-90deg) translate(-50%, 0);
}

.model__equipment-item-content {
    padding: 0px 60px 35px 60px;
    margin-bottom: 35px;
    border-bottom: 1px solid #DBDBDB;
    text-align: center;
}

.model__equipment-item-content > img {
    width: 100%;
}

.model__equipment-item-content h3 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 10px;
}

.model__equipment-price-new {
    font-size: 35px;
    font-weight: 700;
    color: var(--color-prem);
}

.model__equipment-price-old {
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through;
    margin-bottom: 15px;
    color: #A7A7A7;
}

.model__equipment-price-credit {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.model__equipment-item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.model__equipment-item-row a {
    width: 48%;
}

.model__equipment-btns {
    padding: 0px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.model__equipment-btns button {
    width: 48%;
    border: 1px solid #30363B;
}

.model__equipment-btns button:hover {
    border: 1px solid var(--color-prem);
}

.model__equipment-btns button:hover svg path {
    stroke: #fff;
}

@media (max-width: 1280px) {
    .model__equipment-inner {
        grid-gap: 20px;
    }

    .model__equipment-item-content {
        padding: 0px;
        padding: 0px 0ex 20px 0px;
        margin-bottom: 20px;
    }

    .model__equipment-btns {
        padding: 0px;
    }
}

@media (max-width: 990px) {
    .model__equipment-inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__col {
        width: 100%;
    }

    .gallery__col:nth-child(1) .gallery__item:nth-child(1) .gallery__img {
        height: 350px;
    }
    .gallery__col:nth-child(1) .gallery__item:nth-child(2) .gallery__img {
        height: 350px;
    }
    .gallery__col:nth-child(2) .gallery__item:nth-child(1) .gallery__img {
        height: 350px;
    }
    .gallery__col:nth-child(2) .gallery__item:nth-child(2) .gallery__img {
        height: 350px;
    }
    .gallery__col:nth-child(3) .gallery__item:nth-child(1) .gallery__img {
        height: 350px;
    }
    .gallery__col:nth-child(3) .gallery__item:nth-child(2) .gallery__img {
        height: 350px;
    }
}

@media (max-width: 580px) {
    .intro__model .intro__inner {
        padding: 20px 0px;
        height: auto;
    }

    .intro__info::after {
        display: none;
    }

    .model__slide-des {
        font-size: 16px;
    }

    .model__equipment-item-row,
    .model__equipment-btns {
        display: block;
    }

    .model__equipment-item-row a,
    .model__equipment-btns button {
        width: 100%;
    }

    .model__equipment-btns button {
        margin-bottom: 20px;
    }

    .model__equipment-item-content h3 {
        font-size: 32px;
    }

    .model__equipment-item-row .btn__prem {
        margin-bottom: 10px;
    }

    .model__equipment-price-new {
        font-size: 24px;
    }

    .gallery__col:nth-child(1) .gallery__item:nth-child(1) .gallery__img {
        height: 230px;
    }
    .gallery__col:nth-child(1) .gallery__item:nth-child(2) .gallery__img {
        height: 230px;
    }
    .gallery__col:nth-child(2) .gallery__item:nth-child(1) .gallery__img {
        height: 230px;
    }
    .gallery__col:nth-child(2) .gallery__item:nth-child(2) .gallery__img {
        height: 230px;
    }
    .gallery__col:nth-child(3) .gallery__item:nth-child(1) .gallery__img {
        height: 230px;
    }
    .gallery__col:nth-child(3) .gallery__item:nth-child(2) .gallery__img {
        height: 230px;
    }
    
    .gallery  {
        grid-template-columns: repeat(1, 1fr);
    }
}


/*--- model.html ---*/

/* model-mileage.html */

.model-page-mileage .cars__prem-content {
    margin-left: 0 !important;
    margin-right: auto;
}

.model-page-mileage .cars__prem-img {
    left: auto !important;
    right: 0;
}

.model-page-mileage .cars__prem-ins {
    margin-top: -182px;
}

.equipment__list {
    margin-bottom: 80px;
}

.equipment__list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    flex-wrap: wrap;
}

.equipment__list-item {
    width: 48%;
}

.equipment__list-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-prem);
    margin-bottom: 12px;
}

.equipment__list-title::after {
    content: '';
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
    height: 1px;
    background-color: var(--color-prem);
    margin-left: 10px;
}

.equipment__list-item ul {
    margin-bottom: 30px;
}

.equipment__list-item ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

.equipment__options {
    margin-bottom: 80px;
}

.equipment__options-row {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-prem);
}

.equipment__options-row ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.equipment__options-row ul li {
    font-size: 14px;
    font-weight: 700;
}

.equipment__box {
    text-align: center;
}

.equipment__box h3 {
    font-size: 80px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.equipment__box .model__equipment-price-old {
    margin-bottom: 35px;
}

.equipment__box-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.equipment__box-row a {
    width: 350px;
}

.equipment__box-row .btn__prem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
}

@media (max-width: 1480px) {
    .model-page-mileage .cars__prem-ins {
        margin-top: -110px;
    }

    .equipment__options-row ul {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .equipment__options-row ul li {
        width: 48%;
        margin-bottom: 10px;
    }
}

@media (max-width: 815px) {
    .intro__model .intro__info {
        width: 100%;
    }
}

@media (max-width: 730px) {
    .equipment__list-inner {
        display: block;
    }

    .equipment__list-col {
        width: 100%;
        margin-bottom: 20px;
    }
}


@media (max-width: 590px) {
    .equipment__box-row {
        display: block;
    }

    .equipment__box-row a {
        width: 100%;
    }

    .equipment__box-row .btn__prem {
        margin-bottom: 10px;
    }

    .equipment__box h3 {
        font-size: 42px;
    }

    .gallery {
        margin-bottom: 40px;
    }

    .model-page-mileage .cars__prem-ins {
        margin-top: 0;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .equipment__options-row ul li {
        width: 100%;
    }
}


/*--- model-mileage.html ---*/

/* credit.html */

.credit {
    margin: 90px 0px;
}

.credit__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #CFCFCF;
}
.credit__col {
    width: 33.33%;
    min-height: 450px;
}

.credit__col:nth-child(1) {
    padding-right: 90px;
    border-right: 1px solid #CFCFCF;
}

.credit__col:nth-child(2) {
    padding-right: 75px;
    padding-left: 75px;
    text-align: center;
}

.credit__col:nth-child(3) {
    padding-left: 90px;
    border-left: 1px solid #CFCFCF;
}

.credit__col:nth-child(2) img {
    width: 100%;
    margin-bottom: 25px;
}

.credit__price-new {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-prem);
}

.credit__price-old {
    font-size: 18px;
    color: #A7A7A7;
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through;
    margin-bottom: 20px;
}

.credit__price-credit {
    font-size: 30px;
    font-weight: 700;
}

.credit__box {
    margin-bottom: 50px;
}

.credit__box:last-child {
    margin-bottom: 0;
}

.credit__box h3 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 30px;
}

.credit__box h3 span {
    font-weight: 700;
    color: var(--color-prem);
}

.credit__item {
    margin-bottom: 20px;
}

.credit__item:last-child {
    margin-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    color: #30363B;
    line-height: 58px;
    padding: 0px 20px;
}

.js-example-basic-single option span {
    font-weight: 700;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #30363B;
    border-radius: 0px;
    height: 58px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 58px;
    right: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 25px;
    margin-top: -5px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    top: 26px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
} 

.credit__item .input__prem{
    width: 100%;
}

.credit__item .btn__prem {
    width: 70%;
}

.credit__img {
    width: 100%;
}

.credit__col .main__checkbox {
    padding: 50px 0px 50px 30px;
}

.credit__list {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.credit__list-col h3 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 40px;
}

.credit__list-col ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 25px;
}

.credit__list-col ul li:last-child {
    margin-bottom: 0;
}

.credit__list-col ul li::before {
    content: '';
    background: url('../images/arrow-icon.svg') center no-repeat;
    background-size: cover;
    min-width: 120px;
    min-height: 10px;
    margin-right: 20px;
}

.credit__list-box {
    padding: 30px;
    background-color: #F8F8F8;
    text-align: center;
}

.credit__list-box h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.credit__list-box h4 span {
    color: var(--color-prem);
}

.credit__list-box p {
    font-size: 14px;
}

.credit-page .present__inner {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 80px;
}

.present__des {
    padding-bottom: 60px;
    border-bottom: 1px solid #DBDBDB;
    line-height: 1.8;
}

.present__des p {
    font-size: 14px;
}

.present__des p span {
    color: var(--color-prem);
    font-weight: 700;
}

@media (max-width: 1680px) {
    .credit__col:nth-child(1) {
        padding-right: 30px;
    }

    .credit__col:nth-child(2) {
        padding-left: 25px;
        padding-right: 25px;
    }

    .credit__col:nth-child(3) {
        padding-left: 30px;
    }

    .credit__box h3 {
        font-size: 28px;
    }

    .credit__list {
        width: 80%;
    }
}

@media (max-width: 1480px) {
    .credit__list {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .credit {
        margin: 40px 0px;
    }

    .credit__inner {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .credit__price-new {
        font-size: 38px;
    }

    .credit__price-credit {
        font-size: 22px;
    }

    .credit__col .main__checkbox {
        padding: 30px 0px 30px 30px;
    }

    .credit__box h3 {
        margin-bottom: 15px;
    }
}

@media (max-width: 1100px) {
    .credit__inner {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .credit__col {
        width: 48%;
        min-height: auto;
        margin-bottom: 20px;
    }

    .credit__col:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }

    .credit__list {
        display: block;
    }

    .credit__list-col {
        width: 100%;
        margin-bottom: 20px;
    }

    .credit__col:nth-child(1) {
        padding-right: 0;
    }

    .credit__col:nth-child(2) {
        padding-left: 0;
        padding-right: 0;
    }

    .credit__col:nth-child(1) {
        border-right: 0;
    }
}

@media (max-width: 790px) {
    .credit__col {
        width: 100%;
    }
}

/*--- credit.html ---*/

/* tradein.html */

.tradein-page .credit__col:nth-child(1) {
    padding-right: 10px;
    border-right: 0;
    width: 37%;
}

.tradein-page .credit__col:nth-child(2) {
    padding-left: 10px;
    padding-right: 80px;
    width: 37%;
}

.tradein-page .credit__col:nth-child(3) {
    padding-left: 80px;
    width: 27%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
}

.tradein-page .credit__img {
    margin-bottom: 73px !important; 
}

.tradein-page .credit__price-credit {
    margin-bottom: 60px;
}

@media (max-width: 1680px) {
    .tradein-page .credit__col:nth-child(2) {
        padding-right: 30px;
    }

    .tradein-page .credit__col:nth-child(3) {
        padding-left: 30px;
    }
}

@media (max-width: 1480px) {
    .tradein-page .credit__col:nth-child(1),
    .tradein-page .credit__col:nth-child(2),
    .tradein-page .credit__col:nth-child(3) {
        width: 33.33%;
    }

    .tradein-page .credit__img {
        margin-bottom: 122px !important;
    }
}

@media (max-width: 1100px) {
    .tradein-page .credit__col:nth-child(1),
    .tradein-page .credit__col:nth-child(2),
    .tradein-page .credit__col:nth-child(3) {
        width: 48%;
    }
}

@media (max-width: 790px) {
    .tradein-page .credit__col:nth-child(1),
    .tradein-page .credit__col:nth-child(2),
    .tradein-page .credit__col:nth-child(3) {
        width: 100%;
        min-height: auto;
        padding: 0px;
    }
}

/*--- tradein.html ---*/

/* cars-special.html */

.cars-special-page .models__prem {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DBDBDB;
}

.cars__prem-three .input__prem {
    border: 1px solid #fff;
    color: #fff;
}

.cars__prem-three .input__prem::-webkit-input-placeholder {
    color: #fff;
}

.cars__prem-three .input__prem::-moz-placeholder {
    color: #fff;
}

.cars__prem-three .input__prem:-ms-input-placeholder {
    color: #fff;
}

.cars__prem-three .input__prem::-ms-input-placeholder {
    color: #fff;
}

.cars__prem-three .input__prem::placeholder {
    color: #fff;
}

.cars__prem-three .main__checkbox .main__checkbox-checkmark {
    border: 1px solid #fff;
}


/*--- cars-special.html ---*/

/* news.html */

.news-page .present__inner {
    padding-bottom: 0;
    border: 0;
    margin-bottom: 80px;
}

.news-page .credit__feedback {
    margin-bottom: 80px;
}

.news-page .tradein__feedback {
    margin-bottom: 0 !important; 
}

@media (max-width: 570px) {
    .news-page .credit__feedback {
        margin-bottom: 40px;
    }
}

/*--- news.html ---*/

/* news-inner.html */

.news__intro {
    position: relative;
    background: #F8F8F8;
}

.news__intro-img {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.news__intro-content {
    width: 48%;
}

.news__intro-inner {
    height: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.news__intro-content h1 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 150px;
    text-transform: uppercase;

}

.news__intro-date {
    font-size: 22px;
    text-transform: uppercase;
}

.news__des {
    margin: 40px 0px;
}

.news__des-inner {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #CFCFCF;
}

@media (max-width: 1280px) {
    .news__intro-inner {
        height: 400px;
    }

    .news__intro-content h1 {
        margin-bottom: 80px;
    }
}

@media (max-width: 1080px) {
    .news__intro-img {
        position: static;
        width: 100%;
        margin-bottom: 20px;
        height: auto;
    }

    .news__intro-inner {
        height: auto;
        padding-bottom: 20px;
    }

    .news__intro-content {
        width: 100%;
    }
    
    .news__des {
        margin: 40px 0px;
    }

    .news__intro-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 450px) {
    .news__intro-content h1 {
        font-size: 28px;
    }
}

/*--- news-inner.html ---*/

/* contact.html */

.contact-page .intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.contact__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.contact__item {
    padding: 30px 0px;
    width: 700px;
    text-align: center;
    color: #fff;
}

.contact__item:nth-child(1) {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.contact__item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.contact__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
            align-items: center;    
    -webkit-box-pack: center;    
        -ms-flex-pack: center;    
            justify-content: center;
    margin-bottom: 5px;
}

.contact__phone a {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.contact__phone a svg {
    margin-right: 15px;
}

.contact__phone a:nth-child(1) {
    margin-right: 40px;
}

.contact__adress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.contact__adress:nth-child(1) {
    margin-bottom: 10px;
}

.contact__adress svg {
    margin-right: 15px;
}

.contact__adress span {
    font-weight: 700;
}

.map {
    margin-bottom: 70px;
}

.contact {
    margin-bottom: 80px;
}

.contact__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.contact__col:nth-child(1) {
    width: 25%;
}
.contact__col:nth-child(2) {
    width: 48%;
}
.contact__col:nth-child(3) {
    width: 25%;
}

.contact__item-inner {
    margin-bottom: 20px;
}

.contact__item-inner:last-child {
    margin-bottom: 0;
}

.contact__item-inner .input__prem,
.contact__item-inner textarea,
.contact__item-inner .btn__item {
    width: 100%;
}

.contact__item-inner textarea {
    height: 134px;
    border: 1px solid #30363B;
    outline: none;
    resize: none;
    color: #30363B;
    padding: 20px;
}

.contact__item-inner textarea::-webkit-input-placeholder {
    color: #30363B;
}

.contact__item-inner textarea::-moz-placeholder {
    color: #30363B;
}

.contact__item-inner textarea:-ms-input-placeholder {
    color: #30363B;
}

.contact__item-inner textarea::-ms-input-placeholder {
    color: #30363B;
}

.contact__item-inner textarea::placeholder {
    color: #30363B;
}

.contact__col .main__checkbox {
    margin-bottom: 35px;
}

@media (max-width: 1480px) {
    .contact__item {
        width: 500px;
    }

    .contact__phone a {
        font-size: 20px;
    }

    .contact__item-inner textarea {
        height: 132px;
    }
}

@media (max-width: 1280px) {
    .contact__col:nth-child(1),
    .contact__col:nth-child(2),
    .contact__col:nth-child(3) {
        width: 32%;
    }
}

@media (max-width: 1000px) {
    .contact__row {
        display: block;
    }

    .contact__item:nth-child(1),
    .contact__item:nth-child(2) {
        border: none;
    }

    .contact__item {
        width: auto;
        padding: 15px 0px;
    }
}

@media (max-width: 840px) {
    .contact__inner {
        display: block;
    }

    .contact__col:nth-child(1), .contact__col:nth-child(2), .contact__col:nth-child(3) {
        width: 100%;
        margin-bottom: 20px;
    }

    .map,
    .contact {
        margin-bottom: 40px;
    }
}

@media (max-width: 500px) {
    .contact__phone {
        display: block;
    }

    .contact__phone a:nth-child(1) {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    

    .contact__item {
        text-align: left;
        padding: 5px 0px;
    }

    .contact__phone a:last-child,
    .contact__item p {
        margin-left: 36px;
    }

    .contact__adress:last-child {
        display: block;
        margin-left: 30px;
    }
}

/*--- contact.html ---*/

/* popup */

.popup {
    padding: 0px;
}

.popup__arrow {
    width: 100%;
    height: 20px;
    background: linear-gradient(270deg, #C78E66 0%, #30363B 100.26%);
    display: block;
}

.popup__inner {
    padding: 40px;
    color: #fff;
}

.feedback__popup {
    background-color: var(--color-item);
}

.popup__logo {
    margin-bottom: 50px;
}

.popup__title {
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.popup__des {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-prem);
    padding-bottom: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.popup__form-item {
    margin-bottom: 20px;
}

.popup__form-item .input__prem {
    width: 80%;
    border: 1px solid #fff;
    color: #fff;
}

.popup__form-item .input__prem::placeholder {
    color: #Fff;
}

.popup__form .main__checkbox {
    margin-bottom: 20px;
}

.popup__form .main__checkbox .main__checkbox-checkmark {
    border: 1px solid #fff;
}

.popup__form .main__checkbox .main__checkbox-input:checked ~ .main__checkbox-checkmark {
    border: 1px solid #fff;

}

.popup__form-item .btn__white {
    width: 70%;
}

.fancybox-close-small svg path {
    fill: #fff;
}

.fancybox-slide--html .fancybox-close-small {
    top: 20px;
}

.credit__popup {
    background: url('../images/popup-credit.jpg') center no-repeat;
    background-size: cover;
}

.tradein__popup {
    background: url('../images/popup-tradein.jpg') center no-repeat;
    background-size: cover;
}

.price__popup {
    background: url('../images/popup-price.jpg') center no-repeat;
    background-size: cover;
}

.btn__popup {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup__present {
    display: flex;
    align-items: center;
}

.popup__present span {
    font-size: 12px;
    text-align: right;
    margin-right: 10px;
}

.popup__sal {
    background-color: var(--color-item);
}

.popup__sal-row {
    display: flex;
    align-items: center;
    padding-bottom: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.popup__sal-img {
    margin-right: 20px;
}

.popup__sal-content h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 15px;
}

.popup__sal-content p {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-prem);
}

@media (max-width: 650px) {
    .popup {
        width: 100%;
        
    }
}

@media (max-width: 570px) {
    .popup__title {
        font-size: 24px;
    }

    .popup__des {
        font-size: 18px;
        padding-bottom: 20px;
    }

    .btn__popup {
        display: block;
    }

    .popup__present span {
        text-align: left;
    }

    .btn__popup .btn__white {
        margin-bottom: 10px;
    }

    .popup__logo {
        margin-bottom: 20px;
    }

    .popup__form-item .input__prem,
    .popup__form-item .btn__white {
        width: 100%;
    }

    .popup__sal-row {
        display: block;
        padding-bottom: 20px;
    }
    .popup__sal-img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .popup__sal-img svg {
        max-width: 40px;
        max-height: 40px;
    }
}

/*--- popup ---*/

.cookies {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 100000001;
    display: grid;
    grid-gap: 35px;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    width: calc(100% - 8px);
    max-width: 430px;
    padding: 16px;
    border-radius: 10px;
    color: #fff;
    background-color: #242424;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .04), 0 4px 20px rgba(0, 0, 0, .1)
}

@media (max-width: 1023.9px) {
    .cookies {
        left: 50%;
        transform: translateX(-50%);
        bottom: 12px
    }
}

@media (max-width: 767.9px) {
    .cookies {
        bottom: 4px;
        max-width: none;
    }
}

.cookies--hidden {
    display: none
}

.cookies__desc {
    margin: 0;
    font-size: 12px;
    line-height: 16px
}

.cookies__desc a {
    color: inherit;
    text-decoration: underline;
}

.cookies__desc a:focus, .cookies__desc a:hover {
    text-decoration: none
}

.cookies__button {
    margin: 0;
    border: 0;
    color: inherit;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    background-color: #383837;
    cursor: pointer;
    transition: background-color .15s ease-out
}

.cookies__button:focus {
    outline: none
}

.cookies__button::-webkit-input-placeholder {
    color: inherit
}

.cookies__button::-moz-placeholder {
    color: inherit
}

.cookies__button:-ms-input-placeholder {
    color: inherit
}

.cookies__button::-ms-input-placeholder {
    color: inherit
}

.cookies__button::placeholder {
    color: inherit
}

.cookies__button:focus, .cookies__button:hover {
    background-color: #000
}