@charset "UTF-8";
@import url("mmc/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;
  -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);
}

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.1em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.65em;
}

h5 {
  font-size: 1.4em;
}

:root {
  --space-unit: 1.25rem;
  --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 */
  /*Более «тяжеловесный» sans serif  */
  /*Равноширинный шрифт */
}

html {
  font-family: "MMC", "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: 4.25rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.33rem;
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1.1rem;
}

@media (max-width: 639px) {
  h2 {
    font-size: 1.6rem;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1279px) {
  html {
    font-size: 14px;
  }
}

body {
  line-height: 1.2;
}

.page {
  display: flex;
  flex-direction: column;
}
.page .main {
  flex-grow: 1;
}

.container {
  max-width: 100%;
  width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin: var(--space-xxl) 0;
}
.section__title {
  margin-bottom: var(--space-xl);
  font-weight: 500;
  text-align: center;
}
.section__show-more {
  text-align: center;
  margin: var(--space-lg) 0;
}
.section__show-more a {
  font-size: 1.25rem;
  color: #f52838;
}
.section__show-more a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.5em;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: translateY(-35%) rotate(45deg);
  transition: transform 0.2s;
}
.section__show-more a.active::after {
  transform: translateY(20%) rotate(225deg);
}
@media (max-width: 1023px) {
  .section {
    margin: var(--space-xl) 0;
  }
}
@media (max-width: 767px) {
  .section__title {
    text-align: center;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  font-size: 18px;
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-unit);
  padding: 16px var(--space-lg);
  border: none;
  background: none;
  border-radius: 9999px;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
}
.btn img {
  width: 2em;
  height: 2em;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
  margin-left: -1rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.btn img + span {
  flex-grow: 1;
  margin-left: -1rem;
  margin-right: -1rem;
}
.btn--primary {
  background: black;
  color: #fff;
}
.btn--primary_2{
background-color: #f41021;
color:#fff;
}

.btn--primary_2:hover {
  background-color: #f41021;
}
.btn--primary_2:active {
  background-color: #f41021;
}
.btn--primary_2:focus-visible {
  box-shadow: 0 0 0px 1px #fff;
}
.btn--primary:hover {
  background-color: #323232;
}
.btn--primary:active {
  background-color: #313030;
}
.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 #f52838;
}
.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: 50px;
  padding: 0 var(--space-unit);
  background: rgb(241, 241, 241);
  border: none;
  border-radius: 9999px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 15px;
}
.checkbox input[type=checkbox] {
  display: none;
}
.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: rgb(241, 241, 241);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkbox__checkmark::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: #f52838;
  border-radius: 50%;
}
.checkbox__label {
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: left;
}

.checkbox__label a {
    text-decoration: underline;
}

ul.list {
  list-style-type: disc;
}
ul.list > * {
  margin-left: 1.1em;
}
ul.list > *::marker {
  color: #f52838;
}

.form {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space-unit);
}

.page .select2 {
  font-size: 18px;
}
.page .select2 .select2-selection {
  height: 50px;
  border-color: #000;
  border-radius: 25px;
}
.page .select2 .select2-selection__rendered {
  line-height: 2.5em;
  padding: 0 var(--space-unit);
}
.page .select2 .select2-selection__arrow {
  height: 2.5em;
  width: 2.5em;
}
.page .select2 .select2-selection__arrow b {
  width: 8px;
  height: 8px;
  border-width: 0px;
  border-color: transparent;
  border-right: 1px solid rgb(72, 72, 71);
  border-bottom: 1px solid rgb(72, 72, 71);
  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: 1px solid rgb(72, 72, 71);
  border-bottom: 1px solid rgb(72, 72, 71);
  transform: translateY(-12%) rotate(225deg);
}

.select2-dropdown {
  border-color: rgb(0, 0, 0) !important;
  box-shadow: 10px 0 40px -40px #000, -10px 0 40px -40px #000;
}
.select2-search .select2-search__field {
  border-radius: 2px;
  height: 2.5rem;
  outline: none;
}
.select2-search .select2-search__field:focus {
  box-shadow: 0 0 0px 1px rgb(112, 197, 221);
}

.select2-results__option {
  transition: background-color 0.3s, color 0.3s;
}
.select2-results__option--highlighted {
  background: #000 !important;
  transition: background-color 0.1s, color 0.1s;
}

.ico--phone {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/ico/phone.png);
}

.header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: var(--space-sm) 0;
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  grid-gap: var(--space-xl);
}
.header__group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: inherit;
}
.header__address {
  color: #bebebe;
}
.header__phone {
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
}
.header__time {
  white-space: nowrap;
  color: #bebebe;
}
.header__callback_btn {
  justify-self: end;
}
@media (max-width: 1279px) {
  .header__inner {
    grid-gap: var(--space-lg);
  }
}
@media (max-width: 1023px) {
  .header__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--space-unit);
  }
  .header__address-group {
    grid-row: 2;
    grid-column: 1/-1;
    justify-content: space-between;
  }
}
@media (max-width: 639px) {
  .header {
    padding: var(--space-unit) 0;
  }
  .header__inner {
    grid-gap: var(--space-unit);
  }
  .header__address-group {
    font-size: 12px;
  }
}

@media (max-width: 639px) {
  .callback_btn__desktop {
    display: none;
  }
}
@media (min-width: 640px) {
  .callback_btn__mobile {
    display: none;
  }
}

.footer {
  font-size: 12px;
  background: #000;
  color: #fff;
  padding: var(--space-sm) 0;
  text-align: justify;
}

ul.footer__links {
    margin-bottom: 20px;
}

ul.footer__links a {
    text-decoration: underline;
}

.credit-form {
  background-image: url(../img/ref_creditform_bg.jpg), linear-gradient(90deg, rgba(0, 0, 0, 0.7333333333) 30%, transparent 80%), linear-gradient(180deg, #b7c1cb 0%, #75706c 100%);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: var(--space-xl) 0;
  margin: 0 !important;
}
.credit-form__inner {
  max-width: 700px;
}
.credit-form__title {
  margin-bottom: var(--space-sm);
  font-size: 2rem;
  font-weight: 400;
}
.credit-form__title span {
  font-size: 2em;
  font-weight: 700;
  display: block;
}
.credit-form__subtitle {
  margin-bottom: var(--space-xl);
  font-size: 1.7em;
}
.credit-form__list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-gap: var(--space-lg);
  font-size: 1.4rem;
  max-width: 28em;
}
.credit-form__form {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.credit-form__form .checkbox {
  grid-column: 1/-1;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}
@media (max-width: 639px) {
  .credit-form {
    background: none;
    color: #000;
    padding: 0;
  }
  .credit-form__wrapper {
    border-top: 1px solid rgb(217, 217, 217);
    border-bottom: 1px solid rgb(217, 217, 217);
    padding: var(--space-xl) 0;
  }
  .credit-form__title {
    font-size: 20px;
    text-align: center;
    margin-bottom: var(--space-xxs);
  }
  .credit-form__title span {
    font-size: 1.7em;
  }
  .credit-form__subtitle {
    font-size: 20px;
    text-align: center;
    margin: var(--space-xxxs) 0;
  }
  .credit-form__subtitle span {
    text-transform: uppercase;
  }
  .credit-form__subtitle::after {
    margin-top: var(--space-unit);
    content: "";
    display: block;
    height: 200px;
    background-image: url(../img/ref_creditform_bg.jpg);
    background-size: cover;
    background-position: 100%;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: var(--space-md);
  }
  .credit-form__price {
    font-size: 1.7rem;
    text-align: center;
  }
  .credit-form__list {
    grid-gap: var(--space-sm);
  }
  .credit-form__form {
    margin: 0;
    padding: var(--space-md) 0 0;
  }
}
@media (max-width: 479px) {
  .credit-form__list.list {
    grid-template-columns: repeat(1, auto);
    justify-items: center;
    font-size: 1.42rem;
  }
  .credit-form__list.list > * {
    margin-left: 0;
  }
}

.contacts {
  position: relative;
  padding: var(--space-xl) 0;
  margin: 0 !important;
}
.contacts__wrapper {
  display: flex;
  align-items: flex-end;
  min-height: 370px;
}
.contacts__inner {
  width: 21.25rem;
  max-width: 50%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: var(--space-md) var(--space-unit);
  padding: var(--space-sm) var(--space-sm) var(--space-md);
  background: #000;
  border-radius: var(--space-md);
  color: #fff;
  font-size: 0.87rem;
}
.contacts__info {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}
.contacts__info a {
  font-size: 1.42em;
  font-weight: 700;
}
.contacts__address {
  grid-column: 1/-1;
}
.contacts__btn {
  grid-column: 1/-1;
}
.contacts__map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #f0f0f0;
}
.contacts__map > *,
.contacts__map iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 639px) {
  .contacts {
    padding: var(--space-md) 0;
  }
  .contacts__inner {
    margin: 0 auto;
    width: 340px;
    max-width: none;
  }
}

.complectations__filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: var(--space-xs) var(--space-unit);
  margin-bottom: var(--space-lg);
}
.complectations__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--space-lg) var(--space-md);
}
@media (max-width: 1023px) {
  .complectations__filters {
    grid-gap: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-xxs);
  }
  .complectations__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: var(--space-xxs) var(--space-md);
  }
}
@media (max-width: 767px) {
  .complectations .section__title {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }

 .contacts {
    padding: 0;
  }
  
  .contacts__wrapper {
    position: relative;
    min-height: 400px;
    
  }
  
  .contacts__map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: auto;
    margin-top: 0;
  }
  
  .contacts__inner {
    position: relative;
    z-index: 2;
    margin: 20px auto;
    width: auto;
    max-width: none;
  }
}

.compectation {
  padding: var(--space-md);
  border-radius: var(--space-md);
  background: rgb(60, 60, 60);
  color: #fff;
  margin-top: 26.5%;
}
.compectation__img {
  margin-top: -30%;
}
.compectation__img img {
  margin: 0 auto;
}
.compectation__name {
  font-size: 32px;
  font-weight: 700;
}
.compectation__prices {
  margin: var(--space-unit) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xxs) var(--space-unit);
}
.compectation__prices del {
  color: rgb(220, 220, 220);
  font-size: 16px;
}
.compectation__price-current {
  font-size: 24px;
}
.compectation__props {
  line-height: 1.2;
}
.compectation__actions {
  margin-top: var(--space-md);
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-unit);
}

.compectation__actions .btn {
    width: 100%;
}

.compectation__actions .btn--outline {
  font-weight: 500;
}
@media (max-width: 639px) {
  .compectation__actions > * {
    flex-grow: 1;
  }
}

.tradein-form {
  background-image: url(../img/ref_tradeinform_bg.jpg), linear-gradient(90deg, #000 30%, transparent 80%), linear-gradient(180deg, #335e74 0%, #b9b9c3 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 75%;
  color: #fff;
  padding: var(--space-xl) 0;
  margin: 0 !important;
}
.tradein-form__wrapper {
  display: flex;
}
.tradein-form__inner {
  flex-grow: 1;
  max-width: 700px;
}
.tradein-form__title {
  font-size: 4rem;
  font-weight: 500;
}
.tradein-form__subtitle {
  font-size: 2rem;
  margin: var(--space-lg) 0;
}
.tradein-form__price {
  font-size: 3rem;
  font-weight: 700;
}
.tradein-form__form {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tradein-form__form .checkbox {
  grid-column: 1/-1;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}
@media (max-width: 639px) {
  .tradein-form {
    background: none;
    color: #000;
    padding: 0;
  }
  .tradein-form__wrapper {
    border-top: 1px solid rgb(217, 217, 217);
    border-bottom: 1px solid rgb(217, 217, 217);
    padding: var(--space-xl) 0;
  }
  .tradein-form__title {
    font-size: 2.3rem;
    text-align: center;
  }
  .tradein-form__subtitle {
    font-size: 1.14rem;
    text-align: center;
    margin: var(--space-xs) 0;
  }
  .tradein-form__subtitle span {
    text-transform: uppercase;
  }
  .tradein-form__price {
    font-size: 1.7rem;
    text-align: center;
  }
  .tradein-form__body::after {
    margin-top: var(--space-unit);
    content: "";
    display: block;
    height: 250px;
    background-image: url(../img/ref_tradeinform_bg.jpg);
    background-size: cover;
    background-position: 100%;
    margin-left: -20px;
    margin-right: -20px;
  }
  .tradein-form__form {
    margin: 0;
    padding: var(--space-md) 0 0;
  }
}

.time {
  display: flex;
  align-items: baseline;
  line-height: 1;
  gap: var(--space-xxxs);
  font-size: 2.7rem;
}
.time__item {
  width: 3.25rem;
  text-align: center;
}
.timer {
  background: #f52838;
  color: #fff;
  padding: var(--space-unit) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-xxs) var(--space-md);
}
.timer__title {
  font-weight: 500;
  font-size: 1.25rem;
}
.timer__time {
  justify-content: flex-end;
}

.time__col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time__col span {
    font-size: 12px;
}

@media (max-width: 767px) {
  .timer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .timer__time {
    justify-content: center;
  }
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -3;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.hero__title {
  line-height: 1;
  font-weight: 500;
}
.hero__title span {
  font-size: 0.6em;
  font-weight: 400;
}
.hero__timer-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-md) var(--space-lg);
}
.hero__timer-wrap > .btn {
  justify-self: start;
  font-weight: 500;
  font-size: 20px !important;
}
.hero__timer-wrap-title {
  grid-column: 1/-1;
  font-size: 3rem;
  font-weight: 700;
}
.hero__timer-wrap-title span {
  font-size: 0.5em;
  font-weight: 400;
}
@media (min-width: 1440px) {
  .hero__main {
    position: relative;
    overflow: hidden;
    color: #fff;
  }
  .hero__main::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    z-index: -2;
    display: block;
    width: 100vw;
    height: 500px;
    background: rgba(0, 0, 0, 0.6);
    transform-origin: 100% 100%;
    transform: translateX(-960px) rotate(45deg) translateX(50%);
  }
  .hero__main::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    z-index: 2;
    display: block;
    width: 100vw;
    height: 100vw;
    background: #fff;
    transform-origin: 100% 100%;
    transform: translateX(-960px) rotate(45deg) translateX(50%) translateY(100%) translateY(-300px);
  }
  .hero__main-inner {
    height: 41vw;
    max-height: 800px;
    min-height: 37rem;
    padding: var(--space-lg) 0 var(--space-xxl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero__timer {
    padding-left: var(--space-xxl);
    margin-left: calc(var(--space-lg) * -1);
  }
  .hero__benefits {
    margin: var(--space-lg) 0;
  }
  .hero__benefits-inner {
    display: flex;
    gap: var(--space-unit);
  }
  .hero__benefits-inner > * {
    flex: 1;
    white-space: normal;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .hero__main {
    position: relative;
    overflow: hidden;
    color: #fff;
  }
  .hero__main::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
    display: block;
    width: 100vw;
    height: 20.625rem;
    background: rgba(0, 0, 0, 0.6);
    transform-origin: bottom;
    transform: translateX(-50%) rotate(45deg);
  }
  .hero__main::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100vw;
    height: 8.125rem;
    background: #fff;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(45deg);
  }
  .hero__main-inner {
    height: 41vw;
    max-height: 800px;
    min-height: 37rem;
    padding: var(--space-lg) 0 var(--space-xxl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero__timer {
    padding-left: var(--space-xxl);
    margin-left: calc(var(--space-lg) * -1);
  }
  .hero__benefits {
    margin: var(--space-lg) 0;
  }
  .hero__benefits-inner {
    display: flex;
    gap: var(--space-unit);
  }
  .hero__benefits-inner > * {
    flex: 1;
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .hero__title {
    font-size: 3.75rem;
  }
  .hero__timer-wrap-title {
    font-size: 2.5rem;
  }
  .hero__timer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .hero__content {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    height: 88vw;
    margin: 0 -20px;
    padding: var(--space-md) 20px;
    color: #fff;
    margin-bottom: var(--space-unit);
  }
  .hero__content::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
    display: block;
    width: 600vw;
    height: 38vw;
    min-height: 145px;
    background: rgba(0, 0, 0, 0.6);
    transform-origin: 0% 100%;
    transform: rotate(45deg) translateX(-50%);
  }
  .hero__content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 600vw;
    height: 22vw;
    min-height: 85px;
    background: #fff;
    transform-origin: 0% 100%;
    transform: rotate(45deg) translateX(-50%);
  }
  .hero__title {
    text-align: center;
  }
  .hero__title span {
    font-size: 0.5em;
  }
  .hero__timer-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: var(--space-lg);
  }
  .hero__timer-wrap-title {
    margin-bottom: 0.78em;
    text-align: center;
  }
  .hero__timer-wrap-title span {
    font-size: 0.5em;
  }
  .hero__timer {
    margin-left: -20px;
    margin-right: -20px;
    align-items: center;
  }
  .hero .btn {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    border-radius: 0;
    font-size: 1rem;
    gap: var(--space-sm);
  }
  .hero .btn + .btn {
    margin-top: 5px;
  }
  .hero .btn img {
    margin-left: 0;
    margin-right: 0;
  }
  .hero .btn > span {
    margin: 0;
  }
  .hero .btn.btn--outline {
    border-width: 4px !important;
  }
}
@media (max-width: 639px) {
  .hero__title {
    font-size: 3rem;
  }
  .hero__timer-wrap-title {
    font-size: 3rem;
  }
}
@media (max-width: 479px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__timer-wrap-title {
    font-size: 2rem;
  }

  .tradein-form__title {
    font-size: 2.0rem;
  }
}

.models__links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xl) 5rem;
  margin-bottom: var(--space-xl);
}
.models__items > * + * {
  margin-top: var(--space-xl);
}
@media (max-width: 767px) {
  .models__links {
    justify-content: space-around;
    margin-bottom: var(--space-xxl);
  }
}
@media (max-width: 639px) {
  .models__title {
    font-size: 2.3rem;
    margin-bottom: var(--space-lg);
  }
  .models__links {
    gap: var(--space-lg) 3rem;
  }
}

.models-link-item__text {
  white-space: nowrap;
  font-size: 1.19rem;
  position: relative;
  font-weight: 500;
}
.models-link-item__text::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background: #d9d9d9;
}

.model {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 6fr;
  grid-gap: 0 calc(8.3333333333% + var(--space-unit) * 2);
}
.model > * {
  min-width: 0;
}
.model__image {
  padding-left: 50px;
  grid-row: span 4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model__image::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 481px;
  max-width: 100%;
  aspect-ratio: 481/318;
  background-image: url(../img/ref_modelimage_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateX(calc(var(--space-lg) * -1));
}
.model__title {
  margin-right: 13rem;
}
.model__title h3 {
  font-size: 3rem;
}
.model__hurry {
  white-space: nowrap;
  color: #f52838;
  font-weight: 500;
  font-size: 1.25rem;
  position: absolute;
  grid-column: -1/-2;
  grid-row: 1/2;
  justify-self: end;
  align-self: end;
}
.model__price {
  font-size: 2rem;
}
.model__benefits {
  margin: var(--space-md) 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: var(--space-md);
}
.model__benefits > * {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.model__benefits > *:last-child {
  grid-row: 1/-1;
  grid-column: -1/-2;
  align-self: center;
  justify-self: center;
}
.model__benefits > * img {
  width: 10vw;
  height: 10vw;
  min-width: 40px;
  min-height: 40px;
  max-width: 44px;
  max-height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.model__benefits > * span {
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.model__benefits > * span > span {
  color: #f52838;
}
.model__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-unit);
}
.model__actions > * {
  flex: 1;
  padding-left: var(--space-unit);
  padding-right: var(--space-unit);
}
@media (max-width: 1023px) {
  .model {
    grid-template-columns: 6fr 6fr;
    grid-gap: 0 var(--space-unit);
  }
  .model__image {
    padding-left: 0;
  }
  .model__title {
    margin-right: 10rem;
  }
  .model__title h3 {
    font-size: 2.57rem;
  }
  .model__price {
    font-size: 1.71rem;
  }
  .model__hurry {
    font-size: 1rem;
  }
  .model__actions {
    grid-column: 1/-1;
  }
  .model__benefits {
    grid-template-columns: repeat(2, auto);
    grid-gap: var(--space-md);
  }
  .model__benefits > *:last-child {
    grid-row: 3;
    grid-column: 1/-1;
  }
  .model__benefits > *:last-child img {
    transform: rotate(-90deg);
  }
  .model__benefits > *:last-child br {
    display: none;
  }
}
@media (max-width: 767px) {
  .model__title {
    margin-right: 0;
  }
  .model__hurry {
    position: relative;
    grid-column: initial;
    grid-row: initial;
    justify-self: stretch;
    margin: var(--space-sm) 0;
    grid-row: 3;
    grid-column: 2;
    font-size: 1.14rem;
  }
}
@media (max-width: 639px) {
  .model {
    grid-template-columns: 1fr;
  }
  .model__image {
    grid-row: span 1;
    margin-bottom: var(--space-lg);
  }
  .model__image::before {
    transform: none;
  }
  .model__title {
    text-align: center;
  }
  .model__hurry {
    text-align: center;
    grid-row: 4;
    grid-column: initial;
  }
  .model__benefits {
    margin: var(--space-sm) 0;
  }
  .model__price {
    text-align: center;
  }
}

.popup {
  background-image: linear-gradient(to right bottom, rgb(0, 30, 80), #f52838);
  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), linear-gradient(to right bottom, rgb(0, 30, 80), #f52838);
  font-size: 1.77rem;
}
#popup-thanks .popup__title {
  font-size: 2.66rem;
}

#popup-recall {
  background-image: url(../img/ref_popup_recall.jpg), linear-gradient(to right bottom, rgb(0, 30, 80), #f52838);
  font-size: 1.33rem;
}
#popup-recall .popup__title {
  font-size: 2.22rem;
}

#popup-tradein {
  background-image: url(../img/ref_popup_tradein.jpg), linear-gradient(to right bottom, rgb(0, 30, 80), #f52838);
}
#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), linear-gradient(to right bottom, rgb(0, 30, 80), #f52838);
  font-size: 1.11rem;
}
#popup-credit .popup__title span {
  font-size: 1.33rem;
}

#popup-fixprice {
  background-image: url(../img/ref_popup_fixprice.jpg), linear-gradient(to right bottom, rgb(0, 30, 80), #f52838);
  font-size: 1.22rem;
}

.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;
}

.js--show-more.hidden {
    display: none;
}