@charset "UTF-8";
@import url("../fonts/Montserrat/stylesheet.css");
@import url("../fonts/MazdaType/stylesheet.css");

/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.25;
  -webkit-text-size-adjust: none;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article>*+* {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
.btn,
textarea,
select {
  font: inherit;
}

/* Указывающий курсор над теми элементами, которые можно щелкнуть */
a[href],
input[type=submit],
input[type=image],
label[for],
select,
button,
.btn,
.pointer {
  cursor: pointer;
}

/* Подсветка input-ов CSS3 */
input[type=text],
textarea {
  outline: none;
}

input[type=text]:focus,
textarea:focus {
  box-shadow: 0 0 0px 1px rgb(112, 197, 221);
  border: 1px solid rgb(112, 197, 221);
  border-radius: 2px;
}

input[type=submit],
button,
.btn {
  outline: none;
  border: 1px solid #000;
  border-radius: 2px;
  background: #ddd;
  text-decoration: none;
  color: initial;
  padding: 1px 5px;
  display: inline-block;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Отобразите на распечатанной веб-странице URL’ы */
@media print {
  a:after {
    content: " [" attr(href) "] ";
  }
}

/* Заголовки по умолчанию H1-H5 */
h1 {
  font-size: 2.6em;
}

h2 {
  font-size: 2.6em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.65em;
}

h5 {
  font-size: 1.4em;
}

.timer__title{
    
    text-align: center;
    
    }

:root {
  --space-unit: 1.1rem;
  --space-xxxxs: calc(0.125 * var(--space-unit));
  --space-xxxs: calc(0.25 * var(--space-unit));
  --space-xxs: calc(0.375 * var(--space-unit));
  --space-xs: calc(0.5 * var(--space-unit));
  --space-sm: calc(0.75 * var(--space-unit));
  --space-md: calc(1.25 * var(--space-unit));
  --space-lg: calc(2 * var(--space-unit));
  --space-xl: calc(3.25 * var(--space-unit));
  --space-xxl: calc(5.25 * var(--space-unit));
  --space-xxxl: calc(8.5 * var(--space-unit));
  --space-xxxxl: calc(13.75 * var(--space-unit));
}

html {
  /* serif  на базе шрифта Times New Roman */
  /* Современный serif  на базе шрифта Georgia */
  /*Более традиционный serif  на базе шрифта Garamond */
  /*sans  serif  на базе шрифта Helvetica/Arial */
  /*sans serif  на базе шрифта Verdana */
  /*sans serif  на базе шрифта Trebuchet */
  font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
  /*Более «тяжеловесный» sans serif  */
  /*Равноширинный шрифт */
}

html {
  font-family: "Mazda Type Cyrillic", "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
}

:root {
  --text-base-size: 1em;
  --text-scale-ratio: 1.2;
  --text-xs: calc((1em / var(--text-scale-ratio)) / var(--text-scale-ratio));
  --text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
  --text-md: calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-lg: calc(var(--text-md) * var(--text-scale-ratio));
  --text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
  --text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
  --text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
}

h1 {
  font-size: 3.33rem;
}

h2 {
  font-size: 2.6em;
}

h3 {
  font-size: 1.33rem;
}

h4 {
  font-size: 1.65em;
}

h5 {
  font-size: 1.4em;
}

@media (max-width: 639px) {
  h2 {
    font-size: 1.6rem;
  }
}

html {
  background: #202020;
  color: #c4c4c4;
  font-size: 18px;
}

@media (max-width: 1279px) {
  html {
    font-size: 15px;
  }
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page .main {
  flex-grow: 1;
}

.container {
  max-width: 100%;
  width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin: var(--space-xl) 0;
}

.section .section__title {
  margin-bottom: 1em;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  font-size: 18px;
  height: 2.5em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--space-unit);
  border: none;
  background: none;
  font-weight: 700;
  border-radius: 3px;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
}

.btn--primary {
  background: rgb(209, 5, 26);
  color: #fff;
}

.btn--primary:hover {
  background-color: #ea061d;
}

.btn--primary:active {
  background-color: #b80417;
}

.btn--primary:focus-visible {
  box-shadow: 0 0 0px 1px #fff;
}

.btn--black {
  background: #000;
  color: #fff;
}

.btn--black:hover {
  background-color: #0d0d0d;
}

.btn--black:active {
  background-color: black;
}

.btn--black:focus-visible {
  box-shadow: 0 0 0px 1px #fff;
}

.btn--white {
  background: #fff;
  color: #000;
}

.btn--white:hover {
  background-color: #e6e6e6;
}

.btn--white:active {
  background-color: #cccccc;
}

.btn--white:focus-visible {
  box-shadow: 0 0 0px 1px #fff;
}

.btn--outline {
  background: #fff;
  color: #000;
  border: 2px solid rgb(209, 5, 26);
}

.btn--outline:hover {
  background-color: #e6e6e6;
}

.btn--outline:active {
  background-color: #cccccc;
}

.btn--outline:focus-visible {
  box-shadow: 0 0 0px 1px #fff;
}

.input {
  font-size: 18px;
  height: 2.5em;
  padding: 0 var(--space-unit);
  border: none;
  border-radius: 3px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.checkbox input[type=checkbox] {
  /* display: none; */
  opacity: 0;
  position: absolute;
}

.checkbox input[type=checkbox]+.checkbox__checkmark::after {
  opacity: 0;
}

.checkbox input[type=checkbox]:checked+.checkbox__checkmark::after {
  opacity: 1;
}

.checkbox__checkmark {
  width: 15px;
  height: 15px;
  flex-grow: 0;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkbox__checkmark::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: rgb(209, 5, 26);
  border-radius: 50%;
}

.checkbox__label {
  font-size: 8px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: #b8b8b8;
  font-family: 'Montserrat';
}

ul.list {
  list-style: disc;
}

ul.list>* {
  margin-left: 1.5em;
}

ul.list>*::marker {
  color: rgb(209, 5, 26);
}

.form {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space-unit);
}

.page .select2 {
  font-size: 18px;
}

.page .select2 .select2-selection {
  height: 2.5em;
}

.page .select2 .select2-selection__rendered {
  line-height: 2.5em;
  font-family: 'Montserrat';
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: 400;
  height: 45px;
  padding: 0 var(--space-unit);
}

.page .select2 .select2-selection__arrow {
  height: 45px;
  width: 2.5em;
}

.page .select2 .select2-selection__arrow b {
  width: 8px;
  height: 8px;
  border-width: 0px;
  border-color: transparent;
  border-right: 2px solid rgb(11, 141, 205);
  border-bottom: 2px solid rgb(11, 141, 205);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.1s;
}

.page .select2.select2-container--open .select2-selection__arrow b {
  width: 8px;
  height: 8px;
  border-width: 0px;
  border-color: transparent;
  border-right: 2px solid rgb(11, 141, 205);
  border-bottom: 2px solid rgb(11, 141, 205);
  transform: translateY(-12%) rotate(225deg);
}

.select2-results {
  color: #000;
}

.select2-results__option {
  transition: background-color 0.3s, color 0.3s;
}

.select2-results__option--highlighted {
  background: #141414 !important;
  transition: background-color 0.1s, color 0.1s;
}

.callback_btn__desktop {
  font-size: 15px;
  font-weight: 700;
  height: 45px;
}

.equipment-btn {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat';
  height: 45px;
}

.sale__btn {
  height: 45px;
  font-size: 15px;
  font-weight: 700;
}

.ico--phone {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/callback-btn.png);
}

.menu_btn__mobile {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/hamburger.png);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: var(--space-md) 0;
  color: #fff;
}

.menu__mobile {
  display: none;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  align-items: center;
  grid-gap: var(--space-xl);
}

.header__address {
  font-size: 0.8rem;
}

.header__phone {
  font-size: 1.1rem;
  font-weight: 700;
}

.header__time {
  font-size: 0.8rem;
  white-space: nowrap;
}

.header__callback_btn {
  justify-self: end;
}

nav {
  margin-top: 15px;
  width: 100%;
  height: 40px;
  background: #202020;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul {
  width: 100%;
  max-width: 630px;
  display: flex;
  justify-content: space-between;
}

nav ul li {
  text-decoration: none;
  font-size: 16px;
  list-style: none;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .header__inner {
    grid-gap: var(--space-lg);
  }

  nav:not(.nav_mobile) {
    display: none;
  }
}

@media (max-width: 767px) {
  .header {
    padding: var(--space-sm) 0;
  }

  .header__inner {
    grid-template-columns: repeat(2, auto);
    grid-gap: var(--space-unit);
  }

  .header__address:not(.menu__mobile__header>.header__info>.header__address) {
    grid-row: 2;
    grid-column: span 2;
    display: none;
  }

  .header__phone {
    justify-self: center;
    grid-column: span 2;
    display: none;
  }

  .header__time:not(.menu__mobile__header>.header__info>.header__time) {
    justify-self: end;
    grid-row: 2;
    grid-column: span 2;
    display: none;
  }

  .menu__mobile__header {
    padding: 7px 20px 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
  }

  .close_btn__mobile {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/close.png);
  }

  .nav_mobile ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .nav_mobile ul li {
    font-size: 20px;
    font-weight: 400;
  }
}

@media (max-width: 639px) {
  .menu__mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 534px;
    position: fixed;
    z-index: 99;
    background-color: #202020;
    top: 0;
    left: 640px;
    transition: 0.7s;
  }

  .header__info {
    display: flex;
    flex-direction: column;
    text-align: end;
    gap: 4px;
  }

  .header {
    padding: var(--space-xs) 0;
    position: relative;
  }

  .header__inner {
    grid-gap: var(--space-sm);
  }

  .header__callback_btn {
    display: flex;
    gap: 12px;
  }
}

@media (max-width: 639px) {
  .callback_btn__desktop {
    display: none;
  }

  .callback_btn__menu__mobile {
    margin: 0 auto 20px;
    font-size: 15px;
    height: 45px;
    width: 90%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-unit);
    border: none;
    background: rgb(209, 5, 26);
    color: #fff;
    font-weight: 700;
    border-radius: 3px;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
  }
}

@media (min-width: 640px) {
  .callback_btn__mobile {
    display: none;
  }

  .menu_btn__mobile {
    display: none;
  }

  .close_btn__mobile {
    display: none;
  }
}

.footer {
  font-size: 12px;
  background: #3a3a3a;
  padding: var(--space-sm) 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 5px;
}

.footer-links a {
  text-decoration: underline;
}

.timer {
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-unit);
  padding: var(--space-unit);
  padding-top: var(--space-md);
  max-width: 280px;
  max-width: 16rem;
  background: rgb(209, 5, 26);
  border-radius: 6px;
}

.time__col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time__col span {
  font-size: 12px;
}

.banner {
  margin: 0;
  padding: var(--space-xxxl) 0 var(--space-xl);
  background-image: url(../img/header-back.webp);
  background-size: cover;
  /* background-position: 42% bottom; */
  background-position: right;
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* .banner::before {
  content: "MAZDA";
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 25vw;
  opacity: 0.1;
} */
.banner__inner {
  display: flex;
  flex-direction: column;
  /* grid-template-columns: auto 1fr auto; */
  /* grid-gap: var(--space-xl) var(--space-unit); */
  align-items: baseline;
}

.banner__title {
  grid-column: span 2;
  position: relative;
  z-index: 2;
  font-size: 41px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner__title span {
  display: block;
  font-size: 0.66em;
  font-weight: 500;
}

.banner__col {
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
  width: 100%;
}

.banner__row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.banner__row img {
  width: 21px;
  height: 21px;
}

.banner__row p {
  font-size: 33px;
  font-weight: 500;
}

.banner__row p span {
  font-size: 36px;
  font-weight: 700;
}

.banner__date {
  position: relative;
  z-index: 2;
}

.banner__timer {
  position: relative;
  z-index: 2;
}

.banner__asset {
  grid-column: span 2;
  align-self: end;
  justify-self: end;
  position: relative;
  z-index: 2;
  margin-bottom: -5%;
}

@media (max-width: 1023px) {
  .banner {
    background-image: url(../img/header-back-mob.webp);
  }

  .banner__inner {
    grid-gap: var(--space-unit);
  }

  .banner__title {
    grid-column: span 3;
    font-size: 5.6vw;
  }

  .banner__date {
    grid-column: span 3;
  }
}

@media (max-width: 639px) {
  .header {
    padding: 0 20px;
  }

  .container {
    padding: 0;
    margin: 0;
  }

  .banner {
    padding: var(--space-lg) 0 var(--space-unit);
    padding-bottom: 0;
    padding-top: 6px;
    background-image: url(../img/header-back-mob.webp);
  }

  .banner::before {
    top: 48%;
    font-size: 22vw;
  }

  .banner__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .banner__inner h1 {
    font-size: 24px;
    font-weight: 700;
  }

  .banner__title {
    padding: 0 20px;
    font-size: 24px;
    font-weight: 700;
  }

  .banner__col {
    padding: 0 20px;
    margin-bottom: 45vw;
  }

  .banner__row p {
    font-size: 15px;
    font-weight: 500;
  }

  .banner__row p span {
    font-size: 18px;
    font-weight: 700;
  }

  .banner__row img {
    height: 14px;
    width: 14px;
  }

  .banner__date {
    display: none;
  }

  .banner__timer {
    max-width: none;
    width: 100%;
    gap: 4vw;
  }

  .timer {
    border-radius: 0;
  }

  .timer__title {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .banner::before {
    font-size: 82px;
  }
}

.time {
  display: flex;
  align-items: baseline;
  line-height: 1;
  gap: var(--space-xxxxs);
  font-size: 1.9rem;
  justify-content: center;
}

/* .time__item:first-child {
  font-size: 1.5em;
} */
.benefits {
  margin-bottom: 100px;
}

.benefits__inner {
  display: flex;
  grid-gap: var(--space-xl) var(--space-unit);
}

.benefits__item:not(:last-child) {
  margin-right: auto;
}

@media (max-width: 639px) {
  .benefits__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__item:not(:last-child) {
    margin-right: unset;
  }
}

.benefits-item {
  display: flex;
  flex-direction: column;
  padding-right: 2em;
}

.benefits-item__img {
  align-self: center;
  margin-bottom: var(--space-md);
}

.benefits-item__img img {
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.benefits-item__text {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.benefits-item__text::after {
  content: "";
  display: inline-block;
  position: relative;
  height: 1em;
  width: 2em;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: -2em;
  margin-left: 1em;
  background-image: url(../img/ico/benefit_arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1023px) {
  .benefits-item__text {
    font-size: 16px;
  }

  .benefits-item__img img {
    max-width: 20vw;
    max-height: 10vw;
  }
}

@media (max-width: 767px) {
  .benefits-item {
    padding-right: 0em;
  }

  .benefits-item__text {
    font-size: 14px;
  }

  .benefits-item__text::after {
    margin-right: 0;
  }
}

@media (max-width: 639px) {
  .benefits-item {
    padding-left: 1em;
    padding-right: 1em;
  }

  .benefits-item__img {
    margin-bottom: var(--space-unit);
  }

  .benefits-item__img img {
    max-width: 31vw;
    max-height: 16vw;
  }

  .benefits-item__text {
    text-align: center;
    display: block;
  }

  .benefits-item__text::after {
    content: none;
  }
}

@media (max-width: 375px) {
  .benefits-item__img img {
    width: 110px;
    height: 60px;
    max-width: none;
    max-height: none;
  }
}

.model__img__box {
  display: flex;
  justify-content: space-between;
}

.model__content__container {
  display: flex;
  height: 290px;
  position: relative;
  width: 100%;
}

.model__price__box {
  display: flex;
  flex-direction: column;
  /* max-width: 396px; */
  width: 100%;
}

.models__title {
  margin-bottom: 1em;
}

.models__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: var(--space-md);
  margin-bottom: var(--space-xl);
  
  justify-content: center;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.models__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.model__price__content {
  display: flex;
  flex-direction: column;
  text-align: end;
}

.model__price__content__mobile {
  display: none;
}

@media (max-width: 639px) {
  .models__title {
    text-align: center;
  }

  .models__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .model__img__box {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .model__img {
    margin-left: none;
  }

  .model__img img {
    margin-left: 40px;
  }

  .model__price__content {
    display: none;
  }

  .model__price__content__mobile {
    display: flex;
    flex-direction: column;
    text-align: end;
    align-items: flex-end;
  }
}

.models-link-item {
  display: flex;
  flex-direction: column;
}

.models-link-item__text {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 1em;
  text-align: center;
}

.models-link-item__img {
  aspect-ratio: 16/9;
  border-radius: var(--space-unit);
  overflow: hidden;
}

.models-link-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: 0.4s;
}

.models-link-item:hover .models-link-item__img img {
  transform: perspective(200px) translate3d(0, 0, 10px);
  transition: 0.2s;
}

@media (max-width: 639px) {
  .models-link-item__text {
    position: static;
    padding: var(--space-sm) var(--space-unit);
    font-size: 20px;
    z-index: 1;
    margin-bottom: -10px;
  }

  .models-link-item__img {
    position: relative;
  }

  .models-link-item__img::after {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000, transparent);
  }
}

.model {
  background: linear-gradient(270deg, #141414 12.5%, #3C3B3B 91%);
  display: flex;
  flex-direction: column;
  /* grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--space-xs) var(--space-unit); */
  padding: var(--space-unit) var(--space-xl) var(--space-md);
  border-radius: var(--space-unit);
  overflow: hidden;
  position: relative;
}

.model del {
  text-align: right;
  font-size: 22px;
  color: #999999;
  white-space: nowrap;
  /* text-decoration: none; */
}

.model__title {
  position: absolute;
  display: flex;
  top: -20px;
}

.model__title h3 {
  font-size: 100px;
  font-weight: 700;
  color: #C4C4C442;
  white-space: nowrap;
}

.model__title span {
  color: rgb(209, 5, 26);
  font-size: 0.9rem;
}

.model__price {
  grid-column: 2/3;
  /* align-self: baseline; */
  justify-self: end;
  text-align: right;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.model__price span {
  white-space: nowrap;
}

.model__price__credit {
  font-size: 26px;
  color: #fff;
  text-align: right;
  margin-bottom: 2.5vw;
  white-space: nowrap;
}

.model__price__credit span {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}

.model__avail {
  grid-column: 2/3;
  justify-self: end;
  color: rgb(144, 146, 149);
}

.model__img {
  margin-bottom: -20px;
  position: absolute;
  left: -50px;
  top: 8px;
}

.model__img img {
  max-width: 800px;
  width: 100%;
}

.model__gifts {
  align-self: center;
}

.model__offers {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 50%;
}

.model__offers__row {
  display: flex;
  gap: 11px;
  flex-basis: 50%;
}

.model__offers__row p {
  font-size: 26px;
  color: #fff;
}

@media (max-width: 1316px) {
  .model__offers__row p {
    font-size: 19px;
  }
}



.model__offers__row img {
  height: 31px;
  width: 31px;
}

.model__actions {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-unit);
  z-index: 1;
}

.model__actions a {
  font-size: 18px;
  font-weight: 700;
  height: 45px;
}

.model__actions>* {
  flex: 1;
  min-width: 230px;
}

/* .model::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(20, 20, 20);
  z-index: -1;
}
.model::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: #fff;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(39, 39, 39);
  border-radius: var(--space-unit) var(--space-lg);
  transform: skewX(-30deg) translateX(-55%);
  transition: background-position 0s;
} */
@media (max-width: 1023px) {
  .model {
    border-radius: 0;
    /* margin-left: -20px;
    margin-right: -20px; */
    padding-right: 20px;
    padding-left: 20px;
  }

  .model__title h3 {
    font-size: 2.2rem;
  }

  .model__price {
    font-size: 1.8rem;
  }

  .model__actions>* {
    font-size: 1rem;
  }
}

@media (max-width: 1023px) {
  .model__title h3 {
    font-size: 80px;
  }
}

.model__title-mobile {
  display: none;
}

@media (max-width: 639px) {
  .equipments__container {
    padding: 0 20px;
  }

  .sale__btn {
    font-size: 15px;
    font-weight: 700;
    height: 45px;
  }

  .model__title-mobile {
    display: flex;
    margin-top: -65px;
  }

  .model__title-mobile h3 {
    font-size: 30px;
    font-weight: 700;
  }

  .model {
    grid-template-columns: repeat(2, auto);
    grid-gap: 0;
  }

  .models__links {
    margin-bottom: 28vw;
  }

  .model del {
    text-align: left;
    font-size: 14px;
    font-weight: 400;
  }

  .models__item {
    overflow: visible;
  }

  .models__items {
    gap: 20vw;
  }

  .model>* {
    grid-column: 1/-1;
  }

  .model__title {
    /* grid-row: span 1; */
    /* margin-bottom: var(--space-md); */
    /* position: static;
    margin-top: -150px; */
    display: none;
  }

  .model__title h3 {
    font-size: 30px;
    font-weight: 700;
    color: #c4c4c4;
  }

  .model__price {
    justify-self: start;
    /* margin-top: var(--space-md); */
    font-size: 23px;
    font-weight: 700;
  }

  .model__price__content__mobile {
    margin-top: 25px;
  }

  .model__price__credit {
    font-size: 20px;
    font-weight: 400;
  }

  .model__price__credit span {
    font-size: 22px;
    font-weight: 500;
  }

  .model__avail {
    justify-self: start;
  }

  .model__img {
    position: static;
    margin: 0;
    width: 100%;
    top: -25px;
    overflow: hidden;
  }

  .model__img img {
    margin: 0;
  }

  .model__content__container {
    height: auto;
  }

  .model__gifts {
    margin-bottom: var(--space-unit);
  }

  .model__offers {
    gap: 19px 0;
  }

  .model__offers__row p {
    font-size: 14px;
    font-weight: 400;
  }

  .model__offers__row img {
    width: 15px;
    height: 15px;
  }

  .model__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-md);
  }

  .model__actions>* {
    flex: initial;
    font-size: 16px;
    font-weight: 500;
  }

  .model::before {
    top: 70px;
  }

  .model::after {
    top: 70px;
    bottom: 195px;
    transform: skewX(-25deg) translateX(-30%);
  }

  .contacts__wrapper {
    background-image: url(../img/contacts-back.webp);
    background-position: center;
    background-size: cover;
  }

  .contacts__map {
    display: none;
  }
}

.model-gifts {
  display: flex;
  align-items: center;
  gap: var(--space-unit);
}

.model-gifts__title {
  position: relative;
  padding-right: 3rem;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.model-gifts__title::after {
  content: "";
  display: inline-block;
  position: relative;
  height: 1em;
  width: 1em;
  margin-top: 0.15em;
  margin-right: -2em;
  margin-left: 1em;
  background-image: url(../img/ico/benefit_arrow.png);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.model-gifts__list {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: var(--space-unit);
}

.model-gifts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.model-gifts__item img {
  max-height: 8vw;
  min-height: 55px;
}

.model-gifts__item div {
  margin-top: 0.75em;
  font-size: 1.1rem;
}

@media (max-width: 1023px) {
  .model-gifts {
    flex-direction: column;
    align-items: stretch;
  }

  /* .model-gifts br {
    display: none;
  } */
  .model-gifts__title {
    justify-content: center;
    padding-left: 2rem;
  }

  .model-gifts__title::after {
    transform: rotate(90deg);
    height: 0.75rem;
  }

  .model-gifts__list {
    justify-content: space-evenly;
    flex: initial;
  }
}

@media (max-width: 639px) {
  .model-gifts__item img {
    max-height: 16vw;
  }

  .model-gifts__title {
    font-size: 1.05rem;
  }

  .model-gifts__item div {
    font-size: 0.95rem;
  }
}

.complectations__filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-gap: var(--space-unit);
  margin-bottom: var(--space-xl);
}

.complectations__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--space-unit);
}

@media (max-width: 1023px) {
  .complectations__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .complectations .section__title {
    text-align: center;
    text-transform: none;
    font-size: 24px;
    font-weight: 700;
  }

  .complectations__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.compectation {
  padding: var(--space-unit);
  background: #d9d9d9;
  color: #000;
  border-radius: var(--space-unit);
}

.compectation__img img {
  width: 100%;
}

.compectation__name {
  /* font-size: 1.8rem; */
  font-size: 30px;
  font-weight: 700;
  margin: var(--space-xxxs) 0;
}

.compectation__props {
  /* font-size: 0.9rem; */
  font-size: 15px;
  font-weight: 700;
}

.compectation__prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 0 var(--space-xs);
  margin: var(--space-unit) 0;
}

.compectation__prices del {
  font-size: 17px;
  font-weight: 400;
  color: rgb(109, 109, 109);
}

.compectation__price-current {
  /* font-size: 1.8rem; */
  font-size: 30px;
  font-weight: 700;
  color: rgb(209, 5, 26);
}

.compectation__price-credit {
  font-size: 22px;
  font-weight: 500;
}

.compectation__price-credit span {
  font-size: 25px;
  font-weight: 700;
  color: #D1051A;
}

.compectation__actions {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  gap: var(--space-xs);
  margin-top: 20px;
}

.compectation__actions>* {
  /* font-size: 0.9rem; */
  font-size: 15px;
  width: 100%;
}

@media (max-width: 639px) {
  .compectation__prices {
    flex-direction: column;
  }

  .compectation__actions>* {
    font-size: 1rem;
  }
}

.credit-form__wrapper {
  padding: var(--space-unit) 5vw var(--space-md);
  border-radius: var(--space-md);
  background: #000;
  color: #fff;
  background-image: url(../img/credit-back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.credit-form__inner {
  padding-left: 20px;
  max-width: 355px;
}

.credit-form__title {
  margin-bottom: var(--space-unit);
  font-size: 38px;
  font-weight: 700;
}

.credit-form__title span {
  display: block;
  font-size: 0.8em;
  font-weight: 400;
}

.credit-form__subtitle {
  margin-bottom: var(--space-md);
  font-size: 1.75em;
}

.credit-form__list {
  max-width: 550px;
  display: flex;
  flex-direction: column;
}

.credit-form__list p {
  display: flex;
  align-items: center;
  font-size: 21px;
  font-weight: 400;
  white-space: nowrap;
}

.numbs {
  font-size: 26px;
}

.credit-form__list p::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  width: 91px;
  height: 2px;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

ul.list>* {
  font-size: 21px;
  font-weight: 500;
  list-style: none;
  margin: 0;
}

ul.list>* span {
  font-size: 26px;
}

.credit-form__form {
  width: 100%;
  max-width: 370px;
  margin-top: var(--space-lg);
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.credit-form__form .checkbox {
  grid-column: 1/-1;
}

@media (max-width: 1080px) {
  .compectation__actions {
    flex-direction: column;
  }
}

@media (max-width: 1023px) {
  .credit-form__wrapper {
    border-radius: 0;
    /* margin-left: -20px;
    margin-right: -20px; */
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 1023px) {
  .credit-form__list {
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
  }

  .credit-form__list p::before {
    width: 20px;
    height: 1px;
  }

  .credit-form__inner {
    padding-left: 0;
  }
}

@media (max-width: 639px) {
  .credit-form__wrapper {
    background-image: url(../img/credit-back-mob.webp);
  }

  .credit-form__title {
    margin-bottom: 0;
    font-size: 37px;
    font-weight: 700;
  }

  .credit-form__title span {
    font-size: 0.7em;
  }

  .credit-form__subtitle {
    text-align: center;
  }

  .credit-form__subtitle::after {
    content: "";
    display: block;
    background-image: url(../img/ref_creditform_bg.jpg);
    background-repeat: no-repeat;
    background-size: 130%;
    background-position: 70%;
    padding-bottom: 60%;
  }

  .credit-form__list {
    display: flex;
    flex-direction: column;
    font-size: 16px;
  }

  .credit-form__list p {
    font-size: 16px;
  }

  .numbs {
    font-size: 19px;
    font-weight: 500;
  }

  .credit-form__list p::before {
    width: 20px;
    height: 1px;
  }

  .credit-form__form {
    display: flex;
    flex-direction: column;
    margin-top: 65vw;
  }

  .credit-form__inner {
    padding-left: 0;
    max-width: none;
  }
}

.contacts__wrapper {
  border-radius: var(--space-unit);
  overflow: hidden;
  color: #000;
  position: relative;
}

.contacts__inner {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
  padding-right: 0;
}

.contacts__inner .btn {
  margin-top: 3rem;
}

.contacts__inner::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: calc(100% + 160px);
  height: 100%;
  left: -80px;
  top: 0;
  /* background: rgba(255, 255, 255, 0.9); */
  background: #fff;
  border-radius: var(--space-unit);
  transform: skewX(-12deg);
}

.contacts__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0.2em;
}

.contacts__time {
  font-size: 11px;
  margin-bottom: 3em;
}

.contacts__phone {
  display: inline-block;
  margin-bottom: 0.25em;
  font-size: 1.75rem;
  font-weight: 700;
}

.contacts__address {
  font-size: 17px;
}

.contacts__map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #f0f0f0;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.contacts__map img {
  height: 100%;
  margin-left: auto;
}

.contacts__map>*,
.contacts__map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1023px) {
  .contacts__wrapper {
    border-radius: 0;
    /* margin-left: -20px;
    margin-right: -20px; */
  }

  .contacts__inner {
    padding-left: 20px;
  }

  .checkbox__label {
    font-size: 11px;
  }
}

@media (max-width: 639px) {
  .contacts__wrapper {
        padding-top: 0;
        position: relative;
  }

  .contacts__inner {
    padding-top: 34px;
    padding-bottom: var(--space-md);
  }

  .contacts__inner::after {
    width: calc(100% + 100px);
     height: auto;
  }

  .contacts__title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 0;
  }

  .contacts__time {
    font-size: 12px;
    margin-bottom: 11px;
  }

  .contacts__phone {
    display: inline-block;
    margin-bottom: 0.25em;
    font-size: 26px;
    font-weight: 700;
  }

  .contacts__address {
    font-size: 14px;
  }

  .contacts__inner .btn {
    margin-top: 22px;
  }

  .contacts__inner::after {
    height: 233px;
  }

  .footer {
    padding: var(--space-sm) 20px;
  }

  .compectation__img img {
    /* margin: -40px -50px -15px -50px; */
    margin: 0 auto;
    /* max-width: none; */
    max-height: 158px;
    width: auto;
  }

  .compectation__name {
    margin: 0;
    font-size: 30px;
  }

  .compectation__props {
    font-size: 15px;
    font-weight: 700;
  }

  .compectation__prices del {
    font-size: 15px;
    font-weight: 400;
  }

  .compectation__price-current {
    font-size: 26px;
    font-weight: 700;
  }

  .compectation__price-credit {
    font-size: 20px;
    font-weight: 500;
  }

  .compectation__price-credit span {
    font-size: 23px;
    font-weight: 700;
  }

  .page .select2 {
    font-size: 15px;
  }

  .page .select2 .select2-selection__arrow {
    height: 45px;
  }

  .page .select2 .select2-selection {
    height: 45px;
  }

  .page .select2 .select2-selection__rendered {
    height: 45px;
    display: flex;
    align-items: center;
  }

  .page .select2 .select2-selection__arrow {
    height: 45px;
  }
}

.tradein-form__wrapper {
  border-radius: var(--space-unit);
  overflow: hidden;
  position: relative;
  padding: var(--space-unit) 5vw var(--space-md);
  background-image: url(../img/tradein-back.webp);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.tradein-form__inner {
  padding-left: 20px;
  max-width: 455px;
}

.tradein-form__title {
  margin-bottom: var(--space-unit);
  font-size: 38px;
  font-weight: 700;
}

.tradein-form__title span {
  display: block;
  font-size: 37px;
  font-weight: 700;
}

.tradein-form__subtitle {
  margin-bottom: var(--space-md);
  font-size: 1.75em;
}

.tradein-form__list {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  margin-bottom: 2vw;
  gap: 0.5vw;
}

.tradein-form__list p {
  display: flex;
  align-items: center;
  font-size: 21px;
  font-weight: 400;
  white-space: nowrap;
}

.tradein-form__list p::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  width: 91px;
  height: 2px;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

ul.list>* {
  font-size: 21px;
  font-weight: 500;
  list-style: none;
  margin: 0;
}

ul.list>* span {
  font-size: 26px;
}

/* .tradein-form__inner {
  max-width: 500px;
  padding: var(--space-unit) var(--space-xl) var(--space-md);
  padding-right: 0;
  position: relative;
}
.tradein-form__inner::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: calc(100% + 160px);
  height: 100%;
  left: -80px;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--space-unit);
  transform: skewX(-15deg);
}
.tradein-form__inner > * {
  position: relative;
  z-index: 2;
}
.tradein-form__title {
  margin-bottom: var(--space-unit);
  font-size: 2.5rem;
}
.tradein-form__subtitle {
  font-size: 1.3rem;
}
.tradein-form__price {
  margin: var(--space-unit) 0;
  font-size: 2.5rem;
  font-weight: 700;
} */
.tradein-form__form {
  max-width: 370px;
}

@media (max-width: 1023px) {
  .tradein-form__inner {
    padding-left: 0px;
    max-width: 440px;
  }

  .tradein-form__inner::before {
    width: calc(100% + 100px);
  }

  .tradein-form__wrapper {
    border-radius: 0;
    padding-right: 20px;
    padding-left: 20px;
  }

  .tradein-form__list p::before {
    width: 20px;
    height: 1px;
  }
}

@media (max-width: 639px) {
  .tradein-form__wrapper {
    background-image: url(../img/tradein-back-mob.webp);
    border-radius: 0;
    /* margin-left: -20px;
    margin-right: -20px; */
  }

  .tradein-form__wrapper {
    overflow: visible;
  }

  .tradein-form__inner {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .tradein-form__inner::before {
    content: none;
  }

  .tradein-form__form {
    max-width: none;
    margin-top: 65vw;
  }

  .tradein-form__title span {
    font-size: 28px;
    font-weight: 700;
  }

  .tradein-form__list {
    gap: 2.5vw;
  }

  .tradein-form__list p {
    font-size: 12px;
  }

  .tradein-form__list span {
    font-size: 12px;
  }

  .tradein-form__list p::before {
    width: 20px;
    height: 1px;
  }

  .tradein-form__price::after {
    content: "";
    display: block;
    background-image: url(../img/ref_tradein_bg.jpg);
    background-repeat: no-repeat;
    background-size: 130%;
    background-position: 70%;
    padding-bottom: 60%;
    margin-top: var(--space-md);
    margin-left: -20px;
    margin-right: -20px;
  }

  .contacts__map {
        position: relative;
        height: 400px; 
        margin-top: 20px;
  }

  .contacts__map img {
    width: 100%;
    height: unset;
    margin: 0;
  }

  .contacts__inner::after {
    background: rgba(255, 255, 255, 0.9);
  }
}

.popup {
  background-color: rgb(20, 20, 20) !important;
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: var(--space-unit);
  padding: var(--space-lg);
}

.popup__inner {
  text-align: center;
}

.popup__title {
  font-size: 1.8rem;
  margin-bottom: var(--space-unit);
}

.popup__form {
  margin-top: var(--space-unit);
}

#popup-thanks {
  background-image: url(../img/ref_popup_thanks.jpg);
  font-size: 1.77rem;
}

#popup-thanks .popup__title {
  font-size: 2.66rem;
}

#popup-recall {
  background-image: url(../img/ref_popup_recall.jpg);
  font-size: 1.33rem;
}

#popup-recall .popup__title {
  font-size: 2.22rem;
}

#popup-tradein {
  background-image: url(../img/ref_popup_tradein.jpg);
}

#popup-tradein .popup__title span {
  font-size: 1.66rem;
}

#popup-tradein .popup__title b {
  font-size: 2.66rem;
}

#popup-credit {
  background-image: url(../img/ref_popup_credit.jpg);
  font-size: 1.11rem;
}

#popup-credit .popup__title span {
  font-size: 1.33rem;
}

#popup-fixprice {
  background-image: url(../img/ref_popup_fixprice.jpg);
  font-size: 1.22rem;
}

/*# sourceMappingURL=style.css.map */

.filtered-show,
.showmore-show {
  display: block;
  opacity: 1;
  transition: .3s;
}

.filtered-hide,
.showmore-hide {
  display: none;
  opacity: 0;
}

.js--show-more {
  margin: 20px auto;
  display: block;
  padding: 10px;
  border-radius: 5px;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 500;
}

.js--show-more.hidden {
  display: none;
}