/* Reset and base styles  */
:root {
  --primary: #2f2f2f;
  --accent: #ff7c2c;
  --accent-hover: #e8722b;
  --dark: #373737;
  --bg: #1e1611;
  --fon: rgba(158, 171, 184, 0.2);
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

:focus,
:active {
  outline: none;
}

/* Links */
a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a, a:visited {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

a:hover {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
a:active {
  outline: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
  padding: 0;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input::-ms-clear {
  display: none;
}

input, button, input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button, input[type=submit] {
  padding: 0;
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox],
input[type=submit] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button {
  padding: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

textarea {
  resize: none;
}

figure {
  margin: 0;
}

@font-face {
  font-family: "Commissioner";
  src: url("fonts/commissioner/Commissioner-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("fonts/commissioner/Commissioner-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("fonts/commissioner/Commissioner-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Commissioner", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--primary);
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
}

.noscroll {
  overflow-y: hidden;
  touch-action: none;
  -ms-touch-action: none;
  /*height: 100vh;*/
}

.visually-hidden {
  position: fixed;
  transform: scale(0);
}

.container {
  max-width: 1170px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.accent-color {
  color: var(--accent);
}

.accent-line {
  display: block;
  width: 40px;
  height: 3px;
  /*border-radius: 5px;*/
  background-color: var(--accent);
}

.strikeout {
  text-decoration: line-through;
}

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

.text-left {
  -moz-text-align-last: left;
       text-align-last: left;
}

.text-right {
  text-align: right;
}

.none {
  display: none;
}

.section-title {
  margin-bottom: 36px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-36 {
  margin-bottom: 36px;
}

.mt-36 {
  margin-top: 36px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-72 {
  margin-bottom: 72px;
}

.mt-72 {
  margin-top: 72px;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}

h1, .h1 {
  font-size: 54px;
}

h2, .h2 {
  font-size: 38px;
}

h3, .h3 {
  font-size: 32px;
}

h4, .h4 {
  font-size: 28px;
}

h5, .h5 {
  font-size: 24px;
}

h6, .h6 {
  font-size: 20px;
}

.input, .select {
  padding: 0 12px;
  background-color: #fff;
  /*border-radius: 8px;*/
  border: 1px solid #b9b9b9;
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  color: rgba(21, 32, 38, 0.7);
}
.input:focus, .select:focus {
  outline: none;
  -webkit-box-shadow: 0 0 10px rgba(235, 87, 87, 0.5);
          box-shadow: 0 0 10px rgba(235, 87, 87, 0.5);
}

.rf_checkbox_label {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 12px 0;
}
.approval-pd {
  display: flex;
  gap: 12px;
  margin: 12px 0;
  font-size: 13px;
}
.servise-form .approval-pd {
  color: var(--primary);
}
.approval-pd__input {
  width: 20px;
  height: 20px;
  display: block;
}
a.approval-pd__link {
  color: var(--accent);
  display: inline;
}
.approval-pd span {
  text-align: left;
}
.modal__btn {
  margin-top: 10px;
}
.checkbox {
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.checkbox::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #b9b9b9;
  background-color: #fff;
  z-index: 3;
  transition: 0.3s;
}
.checkbox::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 11px;
  top: 50%;
  left: 24%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("img/site/checkbox.svg");
  background-position: center;
  background-size: cover;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 4;
}
.checkbox:checked::after {
  opacity: 1;
}
.checkbox:checked::before {
  border-color: var(--accent);
  background-color: var(--accent);
}
.approval-pd__input.checkbox::after {
  width: 14px;
  height: 14px;
  left: 3px;
}
.modal-form input.checkbox {
  width: 20px;
  height: 20px;
}
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 4px;
}
.num-phone {
  font-weight: 700;
  font-size: 18px;
}
.phone-wrap span {
  font-size: 14px;
}
.btn {
  width: 150px;
  height: 44px;
  /*border-radius: 8px;*/
  line-height: 44px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.btn {
  cursor: pointer;
}

.btn--grey {
  background-color: #fff;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn--grey:hover, .btn--grey:focus {
  color: var(--dark);
  background-color: var(--fon);
}
a.btn--grey:visited {
  color: var(--dark);
}

.btn--accent {
  color: #fff;
  background-color: var(--accent);
}
.btn--accent:hover, .btn--accent:focus {
  background-color: var(--accent-hover);
  color: #fff;
}
a.btn--accent:visited {
  color: #fff;
}

.btn--big {
  width: 205px;
  font-size: 18px;
}

.btn--xbig {
  width: 258px;
  font-size: 18px;
}

.arrow-circle {
  display: block;
  cursor: pointer;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.arrow-circle .arrow-circle-icon {
  position: relative;
  top: -1px;
  transition: -webkit-transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  vertical-align: middle;
  display: inline-block;
  stroke: var(--accent);
}

.arrow-circle:hover {
  color: var(--accent);
}

.arrow-circle:hover .arrow-circle-icon {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.modal-form {
  position: relative;
  max-width: 400px;
  width: 100%;
  padding: 40px 30px 30px;
  background-color: rgb(243, 243, 243);
  /*border-radius: 8px;*/
}
.modal-form .modal-form__title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
}
.modal-form button.btn {
  width: 100%;
}
.modal-form .close-img {
  position: absolute;
  top: 5%;
  right: 5%;
  cursor: pointer;
  width: 25px;
  height: 25px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.modal-form .close-img:hover {
  transform: rotate(180deg);
}
.modal-form .cta__privacy {
  margin-top: 8px;
  text-align: center;
}

.modal-form input {
  width: 100%;
}
.modal-form input + input {
  margin-top: 20px;
}

.modal-form form button {
  margin-top: 30px;
}

.success {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 30px 50px;
  text-align: center;
}

.success .success__img {
  margin-bottom: 10px;
  display: block;
  width: 50px;
}

.success span {
  display: block;
  font-size: 18px;
  color: rgba(21, 32, 38, 0.7);
  line-height: 1.5;
}

.success--visible {
  display: flex;
}

.header-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: var(--fon);
}

.header {
  background-color: var(--fon);
  box-shadow: 0 3px 10px #3737374d;
}

.header-main, .header {
  padding: 20px 0;
}
.header-main {
  padding: 20px 0;
    color: #fff;
}
.header {
  padding: 20px 0;
  color: var(--primary);
}

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

.header__logo img {
  width: 200px;
}

.header__nav {
  margin-top: 15px;
  font-weight: 500;
  font-size: 18px;
}
.header__nav > * + * {
  margin-left: 50px;
}

.mobile-icon {
  width: 24px;
  height: 24px;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  /*border-radius: 5px;*/
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  z-index: 999;
}

.mobile-icon__middle {
  position: relative;
  width: 20px;
  height: 2px;
  background-color: #fff;
}
.mobile-icon__middle::before, .mobile-icon__middle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  -o-transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  background-color: #fff;
}
.mobile-icon__middle::before {
  top: -6px;
}
.mobile-icon__middle::after {
  top: 6px;
}

.mobile-icon.mobile-icon--active .mobile-icon__middle {
  background-color: transparent;
}
.mobile-icon.mobile-icon--active .mobile-icon__middle::before, .mobile-icon.mobile-icon--active .mobile-icon__middle::after {
  background-color: #fff;
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  -o-transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
}
.mobile-icon.mobile-icon--active .mobile-icon__middle::before {
  transform: rotate(45deg);
}
.mobile-icon.mobile-icon--active .mobile-icon__middle::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  background-color: var(--primary);
  color: #fff;
  z-index: 10;
  transform: translateX(120%);
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.mobile-menu--active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu__list {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.mobile-menu__item + .mobile-menu__item {
  margin-top: 20px;
}

.mobile-menu__item {
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.mobile-menu__item:hover {
  color: var(--accent);
}

.mobile-menu .button--mobile-menu {
  color: #fff;
}
.mobile-menu .button--mobile-menu:hover {
  color: var(--accent);
}

.intro {
  padding: 190px 0;
  background-color: rgba(51, 51, 51, 0.1);
  background-image: url("img/site/intro-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.intro__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: #fff;
}
.intro__content .h1 {
  color: #fff;
  margin-bottom: 20px;
}
.intro__content .intro__subtitle {
  font-weight: 500;
  font-size: 34px;
}

.podbor__title {
  font-weight: 500;
  font-size: 24px;
}

.podbor__selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.podbor__selects > * + * {
  margin-left: 20px;
}

.intro__advantages {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;*/
  flex-direction: column;
  gap: 20px;
}
.intro__advantages .intro__advantages-item {
  /*width: 25%;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
.intro__advantages .intro__advantages-item img {
  margin-right: 8px;
}

.advantages {
  padding: 72px 0 36px;
}
.advantages .section-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.advantages .h2 {
  color: #fff;
}
.advantages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.advantages__card {
  max-width: 356px;
}
.advantages__card .advantages__card-title {
  /*font-weight: 700;*/
  font-size: 24px;
}
.advantages__card .accent-line {
  margin: 18px auto;
}
.advantages__card .advantages__card-text {
  color: #fff;
  line-height: 1.4;
}

.main-catalog {
  padding-top: 36px;
  padding-bottom: 72px;
}
.main-catalog .arrow-circle {
  text-align: center;
}

.main-catalog__wrapper {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 72px;
}
.main-catalog__wrapper .offer, .main-catalog__wrapper .new-car {
  margin-right: auto;
  margin-left: auto;
}

.offer {
  width: 320px;
  display: flex;
  flex-direction: column;
}
.offer img {
  width: 100%;
  height: 220px;
  /*border-radius: 8px;*/
  background-color: rgb(255, 255, 255);
  object-fit: contain;
  object-position: center;
  border: 1px solid #b9b9b9;
  padding: 0 10px;
}
.offer__title-wrap {
  flex-grow: 1;
}
.offer__title {
  font-weight: 700;
  font-size: 18px;
}
.offer__title span {
  text-transform: uppercase;
}

.offer__info {
  color: var(--dark);
}

.offer__prices-wrapper {
  padding: 20px;
  /*border-radius: 8px;*/
  background-color: rgba(51, 51, 51, 0.1);
}

.offer__price .sale {
  margin-right: 12px;
  font-weight: 700;
  font-size: 24px;
}
.offer__price .full-price {
  font-weight: 500;
  color: var(--dark);
  text-decoration: line-through;
}
.offer__price-text {
  display: block;
}

.offer__credit {
  font-weight: 500;
}
.offer__credit span {
  color: var(--dark);
}

.offer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.offer__btns .btn {
  width: 100%;
}

.new-car {
  width: 320px;
  height: auto;
  position: relative;
  overflow: hidden;
  /*border-radius: 8px;*/
  background-color: rgba(51, 51, 51, 0.1);
}
.new-car img {
  width: 100%;
  height: 61%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  /*border-radius: 8px;*/
}

.new-car__content {
  position: relative;
  z-index: 10;
  padding: 0 30px 30px;
}
.new-car__content a.btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.new-car__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--primary);
}

.new-car__fon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -48px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: rgba(158, 171, 184, 0.2);
}
.cta::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url("img/site/vector-left-2.svg");
  width: 297px;
  height: 192px;
}
.cta::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("img/site/vector-right-2.svg");
  width: 218px;
  height: 390px;
}

.cta__content {
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}

.cta.question .cta__title {
  margin-bottom: 36px;
}

.cta__title {
  margin-bottom: 18px;
}

.cta__subtitle {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(21, 32, 38, 0.7);
}

.cta__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.cta__form .input {
  width: 230px;
}

.cta__privacy {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(21, 32, 38, 0.7);
}
.cta__privacy a {
  display: inline;
  text-decoration: underline;
}
.cta__privacy a:hover {
  text-decoration: underline;
}

.about {
  padding-top: 72px;
  padding-bottom: 72px;
}

.about__row {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.about__left {
  max-width: 710px;
}
.about__left .h6 {
  font-weight: 500;
}
.about__left p {
  line-height: 1.5;
}
.about__left p + p {
  margin-top: 16px;
}

.about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about__list-item {
  position: relative;
  width: 50%;
  padding-left: 32px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.about__list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("img/site/about-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about__right {
  position: relative;
  overflow: hidden;
  padding: 20px 35px 0;
  width: 315px;
  height: 510px;
  background-color: rgb(232, 236, 237);
  /*border-radius: 8px;*/
  line-height: 1.5;
}
.about__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 223px;
  background-image: url("img/site/vector-accent.svg");
  background-repeat: no-repeat;
}
.about__right::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 267px;
  background-image: url("img/site/about-bg.webp");
  background-repeat: no-repeat;
  transform: scaleX(-1);
}
.about__right p {
  font-size: 18px;
}

.footer {
  background-color: var(--fon);
  color: var(--primary);
  box-shadow: 0 -3px 10px #3737374d;
}
.footer .phone {
  color: #fff;
}
.footer .phone:hover {
  color: var(--accent);
}

.footer__top, .footer__bottom {
  padding-top: 36px;
  padding-bottom: 36px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}
.footer__bottom a {
  display: inline;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__col {
  width: 25%;
}
.footer__col:last-child {
  margin-left: auto;
}

.footer__bottom p + p, .footer__col p + p {
  margin-top: 10px;
}

.footer__logo {
  width: 200px;
  padding-top: 6px;
}

.footer__nav-item + .footer__nav-item {
  margin-top: 5px;
}

.footer__nav-link {
  padding-top: 5px;
  padding-bottom: 5px;
}
.footer__mail {
  margin-top: 10px;
}

.catalog {
  padding-top: 72px;
  padding-bottom: 72px;
}

.mix-block:not(:last-child) {
  margin-bottom: 72px;
}

.mix__mark, .mix__body {
  font-size: 0;
}

.mix__body {
  margin-bottom: 36px;
}

.mix__tag {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 10px 15px;
  /*border-radius: 8px;*/
  background-color: rgba(158, 171, 184, 0.2);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: rgba(21, 32, 38, 0.7);
  transition: 0.3s;
}

.mix__tag:not(:last-child) {
  margin-right: 16px;
}

.mix__tag:hover {
  background-color: rgba(158, 171, 184, 0.5);
}

.mix__tag.control-active {
  color: var(--accent);
  
}

.mix__catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 72px;
}

.mix__catalog .offer {
  margin-right: auto;
  margin-left: auto;
}

.auto {
  padding-top: 72px;
  padding-bottom: 72px;
}
.auto .arrow-circle {
  text-align: center;
}

.auto-cta {
  padding: 24px 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-direction: row-reverse;
  width: 100%;
  background-image: url("img/site/auto-cta-bg-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /*border-radius: 8px;*/
}

.auto-cta__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--primary);
}

.auto-cta__archive {
  font-size: 26px;
  max-width: 500px;
}

.auto-cta__credit {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.3;
}

.auto-cta__price {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 20px;
  align-items: baseline;
}
.auto-cta__price-text {
  font-size: 14px;
  font-weight: 400;
  grid-column: 1/-1;
  text-align: right;
}

.auto-cta__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.auto-cta__date {
  font-weight: 500;
  font-size: 18px;
  line-height: 44px;
}

.auto-cta__img {
  width: 290px;
  height: 170px;
  /*border-radius: 8px;*/
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  object-fit: contain;
  object-position: center;
}

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

.auto-card__img {
  max-width: 650px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  /*border-radius: 8px;*/
  aspect-ratio: 5/3;
  object-fit: contain;
  border: 1px solid #b9b9b9;
  padding: 20px;
}

.auto-card__form {
  flex-shrink: 0;
  max-width: 400px;
  width: 100%;
  padding: 25px 40px;
  background-color: rgba(51, 51, 51, 0.04);
  background-image: url("img/site/vector-accent.svg");
  background-size: cover;
  background-repeat: no-repeat;
  /*border-radius: 8px;*/
}

.auto-card__form-archive {
  font-size: 20px;
  margin-bottom: 30px;
}

.auto-card__form-row {
  text-align: right;
}

.auto-card__form-row_star {
  padding: 10px 20px;
  background-color: #cc4d001c;
  position: relative;
  text-align: center;
}
.auto-card__form-row_star:after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background-image: url(img/site/card-star.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.auto-card__form-center {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(158, 171, 184, 0.4);
  color: rgba(21, 32, 38, 0.7);
}

.auto-card__form-price {
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}
.auto-card__form-price,
.auto-card__form-name {
  line-height: 1;
}

.auto-card__form-price_nal,
.auto-card__form-profit-price {
  font-size: 20px;
  white-space: nowrap;
}

.auto-card__form-profit-price {
  font-weight: 500;
}

.auto-card__form-profit-price {
  font-weight: 600;
}

.auto-card__form-group label {
  display: flex;
  justify-content: space-between;
}
.auto-card__form-group + .auto-card__form-group {
  margin-top: 16px;
}
.auto-card__form-group .auto-card__form-minus {
  margin-left: auto;
}

.auto-card__form-bottom span {
  display: inline-block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--dark);
  text-align: center;
}

.auto-card__form-profit {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-weight: 500;
}
.model-form-wrap {
  min-height: 222px;
}
.model-form,
.model-form .input,
.model-form .btn {
  width: 100%;
}

.auto-compl-wrapper > * + * {
  margin-top: 16px;
}

.auto-compl {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
  background-color: rgba(51, 51, 51, 0.04);
  /*border-radius: 8px;*/
}
.auto-compl .out-of-stock {
  font-size: 18px;
  align-self: center;
}
.auto-compl .btn--xbig {
  height: 38px;
  line-height: 38px;
  position: relative;
}

.auto-compl__col {
  width: fit-content;
}
.auto-compl__col:first-child {
  flex-grow: 1;
}

.auto-compl__name {
  margin-bottom: 13px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.auto-compl__name::after {
  content: '';
  position: absolute;
  inset: 0;
}

.auto-compl__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(21, 32, 38, 0.7);
  pointer-events: none;
}

.auto-compl__motor, .auto-compl__fuel {
  position: relative;
  padding-left: 40px;
}
.auto-compl__motor::before, .auto-compl__fuel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.auto-compl__motor::before {
  background-image: url("img/site/engine.svg");
}

.auto-compl__fuel::before {
  background-image: url("img/site/fuel.svg");
}

.auto-compl__profit {
  padding-right: 5px;
  text-align: right;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}
.auto-compl__profit span {
  font-weight: 700;
}

.details {
  background-color: #fff;
  height: 0;
  overflow: hidden;
  transition: all 0.4s;
}

.details__section {
  column-count: auto;
  column-width: 350px;
  column-rule: 1px solid rgba(158, 171, 184, 0.4);
  column-gap: 70px;
  width: 100%;
}
.details__section > * + * {
  margin-top: 10px;
}

.details.show {
  padding: 30px;
  height: auto;
  border: 1px solid rgba(158, 171, 184, 0.4);
  /*border-radius: 8px;*/
}


.auto-galery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 180px;
  justify-content: space-between;
  gap: 24px;
}
.auto-galery .auto-galery__link {
  /*border-radius: 8px;*/
  background-color: rgba(51, 51, 51, 0.1);
  overflow: hidden;
  border: 1px solid #b9b9b9;
}
.auto-galery .auto-galery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.similar {
  padding-top: 72px;
  padding-bottom: 72px;
}

.services {
  padding-top: 72px;
  padding-bottom: 72px;
}

.benefins {
  padding: 45px 0;
  background-image: url("img/site/benefits-bg.svg");
  background-position: center;
  background-size: cover;
}

.benefins__row {
  display: grid;
  grid-template-columns: repeat(4, 258px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.benefit-card {
  text-align: center;
}
.benefit-card .accent-line {
  margin: 16px auto;
}

.benefit-card__title {
  font-weight: 700;
  font-size: 24px;
}

.benefit-card__text {
  line-height: 1.5;
  color: var(--dark);
}

.servise-form {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background-color: rgba(204, 77, 0, 0.1);
}
.servise-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/site/service-form-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.servise-form .container {
  position: relative;
}
.servise-form .h4 {
  margin-bottom: 36px;
  color: var(--primary);
}

.form-credit {
  position: relative;
  justify-content: space-between;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 30px;
}

.form-credit .select option {
    white-space: pre-line;
    word-wrap: break-all;
}
.form-credit__car-wrap {
  margin-bottom: 10px;
  width: 100%;
  height: 246px;
  /*border-radius: 8px;*/
  background-color: #fff;
  overflow: hidden;
}
.form-credit .form-credit__car {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.form-credit__price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 20px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
}
.form-credit__price .price {
  font-size: 26px;
}

.form-credit .cta__privacy {
  margin: 10px 0 20px;
  text-align: center;
  color: var(--primary);
}

.form-credit__group-title {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--primary);
  cursor: default;
}

.form-credit__group + .form-credit__group {
  margin-top: 24px;
}

.form-credit__group-row {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.form-credit__group-row input.input,
.form-credit__group-row select.select {
  width: 100%;
  background-color: #fff;
}
.form-credit__button {
  margin-top: 24px;
  text-align: center;
}

.criterions {
  padding: 50px 0;
}

.criteroins__list {
  font-size: 18px;
}
.criteroins__list > * + * {
  margin-top: 12px;
}

.criterions__item {
  position: relative;
  padding-left: 30px;
}
.criterions__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("img/site/criterion-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.contacts__content {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 40px;
}

.contacts__map {
  box-shadow: 0 0 20px var(--dark);
  /*border-radius: 8px;*/
  overflow: hidden;
}

.contacts__info {
  background-image: url("img/site/contacts-bg.webp");
  background-position: center;
  background-size: cover;
  -webkit-box-shadow: 0 0 20px var(--dark);
  box-shadow: 0 0 20px var(--dark);
  /*border-radius: 8px;*/
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  padding: 30px;
}

.contacts__name {
  font-weight: 500;
}
.contacts__name:not(:first-child) {
  margin-top: 15px;
}

.contacts__text {
  font-weight: 400;
  font-size: 22px;
}

.str404 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.str404__link {
  display: block;
  font-weight: 700;
  font-size: 24px;
  color: var(--dark);
}
.str404__link:hover {
  color: var(--accent);
}

.str404__content {
  position: relative;
  margin-top: -60px;
  pointer-events: none;
}
.str404__content span {
  font-weight: 700;
  font-size: 500px;
  line-height: 1;
  color: rgba(158, 171, 184, 0.2);
}
.str404__content img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
      -ms-transform: translate(-50%, -30%);
          transform: translate(-50%, -30%);
  width: 500px;
  height: auto;
}

.privacy {
  padding-top: 72px;
  padding-bottom: 72px;
}
.privacy .h5, .privacy .h6 {
  margin-top: 24px;
  margin-bottom: 16px;
}
.privacy .privacy__text {
  line-height: 1.5;
}
.privacy .privacy__text > p + p {
  margin-top: 20px;
}
.privacy ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 40px;
  list-style-type: disc;
}
.privacy ul > * + * {
  margin-top: 10px;
}


.breadcrumbs {
  padding: 20px 0;
}
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
  color: #6c757d;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.catalog-all {
  padding: 40px 0 80px;
}
.catalog-all__text {
  font-size: 22px;
  margin-bottom: 60px;
}
.catalog-all__wrap {
  margin-bottom: 60px;
}


.all-description {
  font-size: 18px;
}
.credit .all-description {
  margin-bottom: 32px;
}
.all-description h2, 
.all-description .h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.all-description h3, 
.all-description .h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.all-description + * {
  margin-top: 60px;
}

.all-description > * + * {
  margin-top: 20px;
}
.all-description li {
  position: relative;
  padding-left: 32px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.all-description li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("img/site/about-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.all-description a {
  text-decoration: underline;
}

.marks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  justify-content: center;
  gap: 20px 20px;
}
.marks__item {
  width: 100%;
  justify-self: center;
  padding: 20px;
  /*border-radius: 8px;*/
  background-color: rgba(125, 125, 125, 0.1);
}
.marks__item-img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
.marks__logo-name {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.marks__item-count {
  width: 100%;
  display: block;
  margin-top: 16px;
  height: unset;
  line-height: unset;
  padding: 6px 10px;
}

/* Модальные окна */
.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.98);
  background-image: url("img/site/modal-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 99999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  padding: 15px;
  display: flex;
}
.modal--open {
  visibility: visible;
  opacity: 1;
}
.modal .modal__wrapper {
  margin: auto;
  position: relative;
}

.modal__close {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.modal__close:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.modal[credit-modal] .modal__close,
.modal[trade-modal] .modal__close,
.modal[choice-modal] .modal__close {
  top: 20px;
  right: 20px;
}

.modal__title-wrap {
  margin-bottom: 20px;
  font-weight: 500;
}
.modal__title {
  font-size: 22px;
}
.modal__car {
  font-size: 24px;
  color: var(--accent);
}

.partners {

}
.partners__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, 160px);
  grid-auto-rows: auto;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 20px;
}
.partners__img {
  aspect-ratio: 1/0, 3571428;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 0 10px rgba(21, 32, 38, 0.2);
  box-shadow: 0 0 10px rgba(21, 32, 38, 0.2);
  /*border-radius: 8px;*/
}

.modal-credit {
  
}
.modal-reserve__title-wrap,
.modal-credit__title-wrap {
  margin-bottom: 20px;
}
.modal-reserve__title,
.modal-credit__title {
  font-size: 28px;
}
.modal-reserve__subtitle,
.modal-credit__subtitle {
  font-size: 22px;
  font-weight: 700;
}
.modal-reserve__rf,
.modal-credit__rf {
  font-size: 20px;
}
.modal-reserve__group,
.modal-credit__group {
  margin-bottom: 20px;
}
.modal-reserve__group--radio {
  display: flex;
  align-items: center;
  gap: 30px;
}
.modal-reserve__group-title,
.modal-credit__group-title {
  font-size: 18px;
  margin-bottom: 4px;
}
.modal-reserve__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
}
.modal-compl-name span {
  font-size: 18px;
  font-weight: 500;
}
.modal-reserve.modal-form input + input,
.modal-credit.modal-form input + input,
.modal-reserve__select,
.modal-credit__select {
  margin-top: 10px;
}
.modal-reserve__select .select,
.modal-credit__select .select {
  width: 100%;
}
.modal-reserve input.rf_checkbox,
.modal-credit input.rf_checkbox,
.modal-reserve input.modal-reserve__check {
  width: 20px;
  height: 20px;
}
form button[type=submit]:disabled,
form input[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: grey;
}

.form_send_result {
  text-align: center;
  font-size: 24px;
  color: #fff;
}

.modal .form_send_result,
.auto-card__form .form_send_result, 
.cta__form .form_send_result {
  text-align: center;
  font-size: 20px;
  color: var(--accent);
}


@media (max-width: 1679px) {

}
@media (max-width: 1599px) {

}
@media (max-width: 1439px) {

}
@media (max-width: 1169px) {
  .container {
    max-width: 100%;
  }

  .advantages__card {
    max-width: 30%;
  }

  .cta::before {
    width: 215px;
    height: 90px;
  }

  .cta::after {
    top: -12px;
    width: 120px;
    height: 260px;
  }

  .benefins__row {
    grid-template-columns: repeat(4, 235px);
  }
}
@media (min-width: 900px) and (max-width: 1169px) {
  .offer, .new-car {
    width: 290px;
  }

  .offer__btns .btn {
    width: 140px;
    font-size: 14px;
  }

  .new-car .btn--big {
    font-size: 16px;
  }

  .new-car__title {
    font-size: 26px;
  }
}
@media (max-width: 1089px) {
  .auto-card {
  	display: grid;
  	grid-template-columns: 1.5fr 1fr;
  }
  .auto-card__img, .auto-card__form {
    max-width: unset;
  }
  .about__left {
    max-width: 65%;
  }

  .servise-form__left {
    width: 430px;
  }

  .servise-form__left .h4 {
    font-size: 24px;
  }

  .auto-cta__btns {
	gap: 30px;
  }

  .auto-compl__col {
    width: 220px;
  }
  .auto-compl__col .btn--xbig {
    width: 220px;
  }

  .auto-compl__profit {
    padding-right: 0;
    font-size: 16px;
  }
  .auto-cta {
  	padding: 24px 30px;
	gap: 10px;
  }
}
@media (max-width: 1023px) {
  h1, .h1 {
    font-size: 44px;
  }

  h2, .h2 {
    font-size: 34px;
  }

  h3, .h3 {
    font-size: 30px;
  }

  h4, .h4 {
    font-size: 26px;
  }

  h5, .h5 {
    font-size: 22px;
  }

  h6, .h6 {
    font-size: 18px;
  }

  .intro__content .intro__subtitle {
    font-size: 28px;
  }

  .podbor__title {
    font-size: 20px;
  }

  .custom-dropdown__list {
    max-height: 210px;
  }

  .benefins__row {
    grid-template-columns: repeat(4, 180px);
  }

  .benefit-card__title {
    font-weight: 500;
    font-size: 20px;
  }
  .auto-cta__credit {
    font-size: 36px;
  }
  .str404__content span {
        font-size: 300px;
  }
  .str404__content img {
        width: 350px;
  }
  .contacts__content {
	grid-template-columns: 1fr 1.5fr;
  	gap: 20px;
  }
  .contacts__info {
	font-size: 16px;
 	padding: 20px;
  }
  .contacts__text {
  	font-size: 20px;
  }
}
@media (max-width: 991px) {
  .auto-card__form {
    padding: 30px;
  }
  .auto-cta__btns {
    flex-direction: column-reverse;
    gap: 0px;
  }
}
@media (max-width: 937px) {
  .about__left {
    max-width: 60%;
  }
  .servise-form {
  	padding: 50px 0;
  }
  .form-credit {
  	grid-template-columns: 1fr;
  }
  .form-credit__left {
	width: 380px;
  	justify-self: center;
  }
}
@media (max-width: 899px) {
  .container {
    max-width: 100%;
  }

  .header__logo img {
    width: 150px;
    height: auto;
  }

  .phone {
    font-size: 16px;
  }

  .header__info {
    font-size: 14px;
  }

  .advantages .section-title {
    max-width: 80%;
  }

  .advantages__card .advantages__card-title {
    font-weight: 500;
    font-size: 20px;
  }

  .advantages__card .accent-line, .benefit-card .accent-line {
    margin: 10px auto;
  }

  .main-catalog__wrapper, .mix__catalog {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 48px;
  }

  .cta::before, .cta::after {
    display: none;
  }

  .about__row {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .about__left {
    max-width: 55%;
  }

  .about__list-item {
    width: 100%;
  }

  .footer__col {
    width: 33.33333333%;
  }
}
@media (max-width: 854px) {
  .auto-compl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .auto-compl__col:first-child {
    width: 100%;
  }
 .auto-compl__col {
    flex-grow: 1;
  }
  .auto-compl__col .btn--xbig {
    width: 100%;
  }
}
@media (max-width: 839px) {
  .benefins__row {
    grid-template-columns: repeat(2, 290px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .contacts__content {
	grid-template-columns: 1fr;
  }
  .contacts__text {
    font-size: 18px;
  }
  .contacts__map {
  	min-height: 400px;
  }
  .auto-galery {
  	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  	grid-auto-rows: 130px;
  	gap: 12px;
  }
}
@media (max-width: 799px) {
  .servise-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .auto-card.mb-48 {
    margin-bottom: 24px;
  }
  .auto-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .intro {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .intro .container {
    max-width: 90%;
  }

  h1, .h1 {
    font-size: 38px;
  }

  h2, .h2 {
    font-size: 30px;
  }

  h3, .h3 {
    font-size: 26px;
  }

  h4, .h4 {
    font-size: 22px;
  }

  h5, .h5 {
    font-size: 20px;
  }

  h6, .h6 {
    font-size: 16px;
  }

  .intro__content .intro__subtitle {
    font-size: 22px;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .advantages, .main-catalog {
    padding: 48px 0 24px;
  }

  .about, .auto {
    padding: 48px 0 48px;
  }

  .advantages__card .advantages__card-title {
    font-size: 18px;
  }

  .advantages__card .advantages__card-text {
    font-size: 14px;
  }

  .cta {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .cta__subtitle.mb-36 {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .auto-cta {
    padding: 24px 20px;
	gap: 20px;
  }

  .auto-cta__content {
  	flex-grow: 1;
  }

  .auto-cta__archive {
	font-size: 20px;
  }

  .auto-cta__credit {
    font-size: 30px;
  }

  .auto-cta__price {
  	grid-template-columns: 1fr;
  }

  .auto-cta__price-text {
  	text-align: left;
  }

  .auto .arrow-circle.mb-72 {
    margin-bottom: 36px;
  }
  .details.show {
  	padding: 20px;
  }
  .details__section {
  	font-size: 14px;
  }
}
@media (max-width: 735px) {
  .offer, .new-car {
    width: 290px;
  }

  .offer__btns .btn {
    width: 140px;
    font-size: 14px;
  }

  .new-car .btn--big {
    font-size: 16px;
  }

  .new-car__title {
    font-size: 26px;
  }

  .cta__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
	gap: 10px;
  }
  .cta__form .input, .cta__form .btn--big {
    width: 290px;
  }

  .about__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .about__left {
    max-width: 100%;
    margin-bottom: 36px;
  }

  .about__right {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  .about__right p {
    font-size: 16px;
  }

  .about__right::before {
    top: -70px;
  }

  .about__right::after {
    display: none;
  }

  .footer__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer__col:nth-child(1) {
    width: 30%;
  }

  .footer__col:nth-child(3) {
    width: 70%;
	margin-left: 0;
  }

  .footer__col:nth-child(2) {
    margin-top: 10px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }

  .criterions {
    padding: 40px 0;
  }

  .criteroins__list {
    font-size: 18px;
  }
  .auto-card.mb-48 {
    flex-direction: column;
	align-items: center;
  }
}
@media (max-width: 669px) {
  .header__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .header-logo {
    margin-right: auto;
  }

  .header__info {
    margin-top: 10px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 640px) {
  .section-title {
    margin-bottom: 24px;
  }

  .advantages__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .advantages__wrapper .advantages__card {
    max-width: 100%;
  }
  .advantages__wrapper > * + * {
    margin-top: 20px;
  }
  .advantages__wrapper .advantages__card .accent-line, .advantages__wrapper .benefit-card .accent-line {
    margin: 5px auto;
  }

  .benefins__row {
    grid-template-columns: 100%;
  }

  .auto-cta__img {
    width: 220px;
    height: 130px;
  }

  .auto-compl {
    padding: 15px 20px;
  }
  .str404 {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .str404__content {
        margin-top: -40px;
  }
    .str404__content span {
        font-size: 250px;
  }
    .str404__content img {
        width: 250px;
  }
}
@media (max-width: 620px) {
  .main-catalog__wrapper, .mix__catalog {
    grid-template-columns: 1fr;
    grid-row-gap: 48px;
  }

  .offer img {
    height: 190px;
  }

  .offer__prices-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .offer__price .sale {
    font-size: 22px;
  }

  .arrow-circle {
    font-size: 18px;
  }
}
@media (max-width: 574px) {
  .intro .container {
    max-width: 100%;
  }

  .header__nav {
    display: none;
  }

  .mobile-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  h1, .h1 {
    font-size: 34px;
  }

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

  h3, .h3 {
    font-size: 24px;
  }

  h4, .h4 {
    font-size: 20px;
  }

  h5, .h5 {
    font-size: 18px;
  }

  h6, .h6 {
    font-size: 16px;
  }

  .all-description h2,
  .all-description .h2 {
	font-size: 22px;
  }

  .all-description h3,
  .all-description .h3 {
	font-size: 18px;
  }

  .contacts__map {
    margin-bottom: 30px;
    height: 400px;
  }

  .auto-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
    background-position: 41%;
  }
  .auto-cta__content {
  	align-items: center;
  }
  .auto-cta__img {
    width: 290px;
    height: 170px;
    margin-bottom: 10px;
  }

  .auto-cta__credit {
    font-size: 26px;
  }

  .auto-cta__price-text {
  	text-align: center;
  }

  .form-credit__group-row {
  	grid-template-columns: 1fr;
  }
}
@media (max-width: 547px) {
  h1, .h1 {
    font-size: 30px;
  }

  h2, .h2 {
    font-size: 26px;
  }

  h3, .h3 {
    font-size: 22px;
  }

  .intro {
    padding-bottom: 50px;
  }

  .intro__content .intro__subtitle {
    font-size: 20px;
  }

  .intro__advantages .intro__advantages-item {
    width: 100%;
  }

  .section-title {
    margin-bottom: 26px;
  }

  .podbor__title {
    font-size: 16px;
  }
}
@media (max-width: 535px) {
  .servise-form {
    padding: 40px 0;
  }
}
@media (max-width: 499px) {
  .auto-compl__col {
    width: 100%;
  }
  .auto-compl__profit {
    text-align: center;
  }

  .auto-compl .btn--xbig {
    height: 44px;
    line-height: 44px;
    font-size: 16px;
  }
  .str404__content span {
        font-size: 150px;
  }
  .str404__content img {
        width: 150px;
  }
  .str404__link {
        font-size: 18px;
  }
  .form-credit__left {
    width: 100%;
  }
  .form-credit__car-wrap {
  	height: unset;
  	aspect-ratio: 190/123;
  } 
  .auto-galery {
  	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  	grid-auto-rows: 110px;
  }

}
@media (max-width: 428px) {
  .header__logo img {
    width: 130px;
  }
  .num-phone {
  	font-weight: 400;
  	font-size: 14px;
  }
  .phone-wrap span {
  	font-size: 10px;
  }
}

@media (max-width: 422px) {
  .intro__advantages .intro__advantages-item {
    font-size: 14px;
  }
  .intro__advantages .intro__advantages-item img {
    width: 20px;
    height: 20px;
  }

  .contacts {
    padding-top: 36px;
  }

  .advantages, .main-catalog {
    padding: 36px 0 18px;
  }

  .about, .auto {
    padding: 36px 0 36px;
  }
}
@media (max-width: 413px) {
  .intro__content .intro__subtitle {
    font-size: 18px;
  }

  .intro {
    padding-bottom: 40px;
  }
  .intro .podbor__selects {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .intro .podbor__selects > * + * {
    margin-left: 0;
    margin-top: 20px;
  }
  .intro .custom-dropdown {
    width: 100%;
  }
  .intro .btn {
    width: 100%;
  }

  .criteroins__list {
    font-weight: 400;
    font-size: 16px;
  }

  .criterions__item {
    padding-left: 34px;
  }

  .criterions__item::before {
    width: 24px;
    height: 24px;
  }

  .form-credit__button .btn--xbig {
    width: 100%;
  }

  .contacts__info {
    font-size: 16px;
  }

  .contacts__name {
    font-weight: 500;
  }
  .auto-card__form-btns .btn {
    width: 130px;
  }
}
@media (max-width: 389px) {
  .phone {
    margin-top: 10px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer__col.text-right {
    -moz-text-align-last: left;
         text-align-last: left;
  }

  .footer__col:nth-child(1), .footer__col:nth-child(3) {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 380px) {
  h1, .h1 {
    font-size: 26px;
  }

  h2, .h2 {
    font-size: 24px;
  }

  h3, .h3 {
    font-size: 20px;
  }

  .intro {
    padding-bottom: 50px;
  }
  .intro .custom-dropdown {
    height: 38px;
  }
  .intro .custom-dropdown__button {
    line-height: 38px;
  }
  .intro .btn {
    height: 38px;
    line-height: 38px;
  }
  .intro .custom-dropdown__list {
    top: 41px;
  }
  .modal-form {
    max-width: 100%;
    padding: 45px 20px 20px;
  }
}
@media (max-width: 374px) {
  .auto-card__form-center {
    font-size: 14px;
  }

  .auto-card__form-text span.accent-color {
    margin-right: 5px;
  }

  .auto-card__form-group .custom-checkbox {
    width: 20px;
    height: 20px;
  }
  .partners__wrap {
  	grid-template-columns: repeat(auto-fill, 140px);
  	gap: 10px;
  }
}
@media (max-width: 359px) {
  .header__logo img {
    width: 100px;
  }
  .auto-card__form {
    padding: 20px 20px;
  }

  .auto-card__form-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .auto-card__form-btns > * + * {
    margin-top: 10px;
  }
  .auto-card__form-btns .btn {
    width: 100%;
  }
  .auto-galery {
  	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  	grid-auto-rows: 100px;
  }
  
}

.advs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.advs__item {
  padding: 30px;
  background-color: rgba(51, 51, 51, 0.04);
  background-image: url(img/site/vector-accent.svg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.advs__item:after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
}
.advs__item-title {
  font-weight: 600;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}
.advs__item-text {
  font-size: 18px;
}
.advs__item_cred:after {
  background-image: url(img/site/model-credit1.svg);
}
.advs__item_gift:after {
  background-image: url(img/site/model-credit2.svg);
}
.advs__item_null:after {
  background-image: url(img/site/model-credit3.svg);
}

@media (max-width: 1023px) {
  .advs__item-title {
  	font-size: 20px;
  }
  .advs__item-text {
  	font-size: 16px;
  }
  .advs__item:after {
  	width: 40px;
  	height: 40px;
  }
}
@media (max-width: 768px) {
  .advs {
  	grid-template-columns: 1fr;
  }
}
.mark-descr {
  line-height: 1.5;
}
.mark-descr p:not(:last-child) {
  margin-bottom: 12px;
}

.info-banner {

}
.info-banner_inner {

}
.info-banner_index {
  background: url("img/site/info-banner-bg-index.webp") var(--dark);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.info-banner__content {
  padding: 64px 24px;
  background-size: cover;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}
.info-banner_inner .info-banner__content {
  background: url("img/site/info-banner-bg.webp") var(--dark);
  background-position: top -30px center;
}
.info-banner__text span {
  color: var(--accent);
}
.info-text {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 1199px) {
  .info-banner__content {
  	padding: 54px 24px;
  	font-size: 26px;
  }
}
@media (max-width: 567px) {
  .info-banner__content {
    padding: 48px 24px;
    font-size: 22px;
  }
}