
@charset "UTF-8";
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --fontPrem: "PT Sans", sans-serif;
  --textColor: #000;
  --mainBgColor: #fff;
  --colorPlaceholder: #000;
  --colorPrem: #4eadc4;
  --colorItem: #ffbb40;
  --container: 1446px;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--fontPrem);
  line-height: 1.2;
  font-size: 1rem;
  color: var(--textColor);
  font-weight: 400;
  background: var(--mainBgColor);
  position: relative;
  overflow-x: hidden;
}
body.active {
  overflow: hidden;
}

input,
button,
textarea {
  font-family: var(--fontPrem);
}

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

section {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.btn__item, .btn__prem {
  font-family: var(--fontPrem);
  cursor: pointer;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding: 0px 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 1;
  border-radius: 6px;
}

.main {
  overflow: hidden;
  margin-top: 30px;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.btn__prem {
  background: var(--colorPrem);
  color: #fff;
}
.btn__prem:hover {
  background: #4eadc4;
}

.btn__item {
  color: #fff;
  background: var(--colorItem);
}
.btn__item:hover {
  background: #ffae1d;
}

.input__prem {
  outline: none;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.2);
  background: #FFF;
  font-weight: 400;
  height: 40px;
  padding: 0px 20px;
  font-size: 14px;
  color: var(--textColor);
  width: 100%;
  border: none;
}
.input__prem::-moz-placeholder {
  color: var(--colorPlaceholder);
  font-family: var(--fontPrem);
  font-size: 16px;
}
.input__prem::-webkit-input-placeholder {
  color: var(--colorPlaceholder);
  font-family: var(--fontPrem);
  font-size: 16px;
}
.input__prem:-ms-input-placeholder {
  color: var(--colorPlaceholder);
  font-family: var(--fontPrem);
  font-size: 16px;
}
.input__prem::-ms-input-placeholder {
  color: var(--colorPlaceholder);
  font-family: var(--fontPrem);
  font-size: 16px;
}
.input__prem::placeholder {
  color: var(--colorPlaceholder);
  font-family: var(--fontPrem);
  font-size: 16px;
}
.input__prem:focus {
  -webkit-box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.6);
          box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.6);
}

.main-form-checkbox {
  display: block;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.main-form-checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.main-form-checkbox-checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 10px;
  width: 10px;
  background: #fff;
  border: 2px solid #000;
}

.main-form-checkbox-input:checked ~ .main-form-checkbox-checkmark::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0.5px;
  width: 5px;
  height: 5px;
  background: url("../img/check-icon.svg") center/contain no-repeat;
}

.main-form-checkbox-text {
  font-size: 12px;
  font-weight: 500;
  color: #000;
}

.main-form-checkbox-text a {
  text-decoration: underline;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  padding: 0px 20px;
}

.select2-container--default .select2-selection--single {
  -webkit-box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.2);
  border: none;
  border-radius: 6px;
  height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='9' viewBox='0 0 13 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 3.73171L10.6786 1.27341e-07L12.6842 1.86362C13.1053 2.25343 13.1053 2.88556 12.6842 3.27537L6.5 9L0.315846 3.27537C-0.105282 2.88556 -0.105282 2.25343 0.315846 1.86362L2.32143 2.76828e-08L6.5 3.73171Z' fill='%23FFAE1D' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 13px;
  height: 13px;
  margin: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
      -ms-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.compare-description {
  -moz-column-count: 2;
  -webkit-column-count: 2;
          column-count: 2;
  -moz-column-gap: 30px;
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

.compare-description__block:not(:last-child) {
  margin-bottom: 30px;
}

.compare-description__block {
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
}

.compare-description__heading {
  font-size: 18px;
  font-weight: bold;
}

.compare-description__list-item {
  list-style: none;
  position: relative;
  z-index: 1;
  padding-left: 15px;
  font-size: 14px;
}

.compare-description__list-item:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  background: var(--colorPrem);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.compare-description__list {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
}

.packaging__modal-special-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 8px;
}

.packaging__modal-special-checkbox .checkmark {
  height: 16px;
  width: 32px;
  background: #EDF6FA;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
}

.packaging__modal-special-checkbox .checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 3px;
  width: 11px;
  height: 11px;
  background-color: #4EADC4;
  border-radius: 100%;
}

.packaging__modal-special-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.packaging__modal-special-checkbox input:checked ~ .checkmark {
  background: var(--colorItem);
}

.packaging__modal-special-checkbox input:checked ~ .checkmark::after {
  left: auto;
  right: 3px;
  background-color: #fff;
}

.header__mobil {
  display: none;
}
.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}
.header__contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0px;
}
.header__contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 130px;
}
.header__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
}
.header__main-inner {
  padding: 20px 15px;
  background: #EDF6FA;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.header__nav ul li a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
.header__nav ul li a::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--colorPrem);
  position: absolute;
  left: 50%;
  bottom: -12px;
  -webkit-transform: translate(-50%, 0) rotate(45deg);
      -ms-transform: translate(-50%, 0) rotate(45deg);
          transform: translate(-50%, 0) rotate(45deg);
  opacity: 0;
}
.header__nav ul li a:hover {
  color: var(--colorPrem);
  font-weight: 700;
}
.header__nav ul li a:hover::after {
  opacity: 1;
}
.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.header__btn .btn__prem {
  min-width: 200px;
  margin-left: 10px;
}
.header__link {
  position: relative;
}
.header__link-ins {
  width: 19px;
  height: 19px;
  border-radius: 100%;
  background: var(--colorItem);
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  right: -10px;
  top: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header.active__header .header__main {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 10px;
  width: 100%;
}

.intro__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px 340px;
  grid-template-columns: auto 340px;
  gap: 30px;
}
.intro__slider {
  overflow: hidden;
  position: relative;
}
.intro__slider-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.intro__slider-btn .intro__slider-btn-prev,
.intro__slider-btn .intro__slider-btn-next {
  position: static;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  color: var(--colorItem);
  font-weight: 700;
  width: 19px;
  height: 30px;
  background: url("../img/slider-arrow-yellow.svg") center/cover no-repeat;
}
.intro__slider-btn .intro__slider-btn-prev::after,
.intro__slider-btn .intro__slider-btn-next::after {
  font-size: 40px;
  display: none;
}
.intro__slider-btn .intro__slider-btn-prev {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.intro__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.intro__link-item {
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: #edf6fa;
}
.intro__link-item-title {
  font-size: 30px;
  margin-bottom: 40px;
}
.intro__link-img {
  position: absolute;
  top: 0;
  right: 0;
}

.section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.search__car-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 465px 30px auto;
  grid-template-columns: 465px auto;
  gap: 30px;
}
.search__car-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
}
.search__car-popular, .search__car-mark {
  padding: 30px;
  border-radius: 15px;
  background: #edf6fa;
}
.search__car-popular-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.search__car-popular-item {
  width: 100%;
  height: 75px;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.2);
  -webkit-transition: all 0.4 ease;
  -o-transition: all 0.4 ease;
  transition: all 0.4 ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
  cursor: pointer;
}
.search__car-popular-item:hover {
  border: 1px solid var(--colorItem);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.search__car-mark {
  overflow: hidden;
}
.search__car-mark-inner {
  position: relative;
}
.search__car-mark-slider {
  height: 240px;
  margin-bottom: 20px;
}
.search__car-mark-slider .swiper-slide {
  height: auto !important;
}
.search__car-mark-slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search__car-mark-slider-nav .search__car-mark-btn-prev,
.search__car-mark-slider-nav .search__car-mark-btn-next,
.search__car-mark-slider-nav .search__car-mark-pag {
  position: static;
  margin: 0;
}
.search__car-mark-slider-nav .search__car-mark-btn-prev,
.search__car-mark-slider-nav .search__car-mark-btn-next {
  background: url("../img/slider-arrow-blue.svg") center/cover no-repeat;
  width: 17px;
  height: 24px;
}
.search__car-mark-slider-nav .search__car-mark-btn-prev::after,
.search__car-mark-slider-nav .search__car-mark-btn-next::after {
  display: none;
}
.search__car-mark-slider-nav .search__car-mark-btn-prev {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.search__car-mark-slider-nav .search__car-mark-pag {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
}
.search__car-mark-slider-nav .search__car-mark-pag .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #4EADC4;
  border-radius: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 1;
}
.search__car-mark-slider-nav .search__car-mark-pag .swiper-pagination-bullet-active {
  background: var(--colorItem);
}
.search__car-mark-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 11px 20px;
  border-radius: 6px;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.2);
  border: 1px solid #fff;
  cursor: pointer;
  font-size: 14px;
}
.search__car-mark-item span {
  font-weight: 700;
  color: var(--colorItem);
}
.search__car-mark-item:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--colorItem);
}

.credit__banner-inner {
  border-radius: 15px;
  position: relative;
  background: #EDF6FA;
  overflow: hidden;
  padding: 30px;
}
.credit__banner-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.credit__banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.credit__banner-text-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 34px;
}
.credit__banner-text-des {
  font-size: 22px;
  margin-bottom: 44px;
}
.credit__banner .btn__prem {
  min-width: 190px;
}
.credit__banner-offer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.credit__banner-offer-item {
  padding: 30px;
  height: 147px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 26px;
  font-weight: 700;
  color: #4eadc4;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 10px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 10px 0 rgba(25, 92, 111, 0.2);
  position: relative;
}
.credit__banner-offer-item-ins {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 15px 0 6px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--colorItem);
}

.credit__bonus {
  padding: 40px 0px 30px 0px;
  background: #edf6fa;
}
.credit__bonus-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.credit__bonus-item {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
  height: 185px;
}
.credit__bonus-item-title {
  font-size: 30px;
  position: relative;
  z-index: 2;
}
.credit__bonus-item-img {
  position: absolute;
  z-index: 1;
  right: 5px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.credit__bonus-item-ins {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
}

.info__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.info .credit__banner-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.info .credit__banner-offer-item {
  padding: 13px 20px;
  height: auto;
  min-width: 260px;
}
.info .credit__banner-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.info .btn__prem {
  min-width: 190px;
}

.special__car {
  border-radius: 12px;
  border: 3px solid #edf6fa;
  overflow: hidden;
}
.special__car-img {
  position: relative;
  margin-bottom: 20px;
}
.special__car-img > img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.special__car-img-ins {
  position: absolute;
  top: 10;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.special__car-name {
  padding: 0px 20px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}
.special__car-info {
  padding: 10px 20px;
  background: #edf6fa;
  margin-bottom: 10px;
}
.special__car-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding: 0px 20px 20px 20px;
}
.special__car-price p {
  margin-bottom: 5px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
.special__car-price > div {
  font-size: 20px;
  font-weight: 700;
  color: var(--colorItem);
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
  position: static;
  margin: 0;
}

.swiper-button-prev,
.swiper-button-next {
  background: url("../img/slider-arrow-blue.svg") center/cover no-repeat;
  width: 17px;
  height: 24px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-pagination {
  width: -moz-max-content !important;
  width: -webkit-max-content !important;
  width: max-content !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #4EADC4;
  border-radius: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--colorItem);
}

.search__car-mark-slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.reviews__list-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}
.reviews__list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reviews__list-btn .btn__item {
  width: 340px;
}
.reviews__item {
  padding: 20px;
  border: 3px solid #edf6fa;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews__item-img {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 3px solid #edf6fa;
  text-align: center;
}
.reviews__item-img img {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 10px;
}
.reviews__item-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
.reviews__item-number {
  font-size: 12px;
}
.reviews__item-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--colorPrem);
  margin-bottom: 20px;
}
.reviews__item-des {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Количество строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feedback__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: #EDF6FA;
  border-radius: 15px;
  overflow: hidden;
}
.feedback__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.feedback__content {
  padding: 30px;
}
.feedback__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.feedback__des {
  font-size: 22px;
  margin-bottom: 45px;
}
.feedback__form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.feedback__form-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.feedback__form-item .input__prem,
.feedback__form-item .btn__prem {
  width: 100%;
}

.contact__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 490px 30px auto;
  grid-template-columns: 490px auto;
  gap: 30px;
}
.contact__content {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  background: #EDF6FA;
  border-radius: 15px;
}
.contact__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact__map {
  overflow: hidden;
  border-radius: 15px;
}
.contact__item {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
}
.contact__item-title {
  font-size: 22px;
  margin-bottom: 5px;
}
.contact__item a {
  font-size: 22px;
  font-weight: 700;
  color: var(--colorPrem);
}
.contact__des {
  font-size: 22px;
  font-weight: 700;
  color: var(--colorPrem);
}
.contact__ins {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border-radius: 0 15px 0 6px;
  width: 50px;
  height: 50px;
  background: var(--colorItem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__copyright {
  padding: 30px 0px;
  background: #EDF6FA;
  margin-top: 30px;
}
.footer__copyright-inner {
  font-size: 12px;
}
.footer__copyright-inner a {
  text-decoration: underline;
}

.catalog__form-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 20px;
  background: var(--colorPrem);
  border-radius: 15px;
}
.catalog__form-item {
  max-width: 220px;
}
.catalog__form-item .input__prem,
.catalog__form-item .btn__item {
  width: 100%;
}

.car__list-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.car__list-form {
  padding: 20px;
  border-radius: 15px;
  background: #EDF6FA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 400px;
}
.car__list-form-text-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.car__list-form-text-des {
  font-size: 20px;
}
.car__list-form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.car__list-form-inner .input__prem,
.car__list-form-inner .btn__prem {
  width: 100%;
}

.car__img {
  background-image: url("../img/car-img-bg.png");
  background-position: top left;
  background-color: #fff;
  background-repeat: no-repeat;
}
.car__img img {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.crumbs {
  padding: 20px 0px;
}
.crumbs__inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.crumbs__inner span,
.crumbs__inner a {
  font-size: 14px;
}
.crumbs__inner span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.crumbs__inner span::after {
  content: "/";
  margin: 0px 5px;
}
.crumbs__inner a {
  color: var(--colorPrem);
}

.catalog__intro-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 160px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 160px;
  background: #EDF6FA;
  border-radius: 15px;
  overflow: hidden;
}
.catalog__intro-inner .feedback__form {
  padding: 0px 20px 20px 0px;
}
.catalog__intro-content {
  padding: 20px 24px;
}
.catalog__intro-suptitle {
  font-size: 22px;
  margin-bottom: 3px;
}
.catalog__intro-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.catalog__intro-des {
  font-size: 28px;
}
.catalog__intro-form-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  border-radius: 0 15px 0 6px;
  background: var(--colorItem);
  color: #fff;
  margin-bottom: 30px;
}

.model__inner {
  padding: 30px;
  background: #EDF6FA;
  border-radius: 15px;
}
.model__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.model__title-inner {
  font-size: 37px;
  font-weight: 700;
}
.model__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.model__title-des {
  font-size: 22px;
}
.model__title-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 22px;
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.model__title-btn-img {
  width: 40px;
  height: 40px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
}
.model__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 385px;
  grid-template-columns: auto 385px;
  gap: 20px;
}
.model__content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 30px;
  margin-bottom: 20px;
}
.model__content .section__title {
  font-size: 24px;
  margin-bottom: 20px;
}
.model__content .credit__bonus-item-title {
  font-size: 22px;
}
.model__content .credit__bonus-item {
  height: 135px;
}
.model__content .credit__bonus-item-img {
  max-width: 110px;
}
.model__img {
  height: 310px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
  background-image: url("../img/car-img-bg.png");
  background-position: top left;
  background-size: 40%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.model__img img {
  width: 470px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.model__col {
  min-width: 385px;
}
.model__price {
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
  border-radius: 15px;
  text-align: center;
  background: var(--colorItem);
  overflow: hidden;
  margin-bottom: 20px;
}
.model__price-des {
  padding: 5px 0px 9px 0px;
  font-size: 22px;
}
.model__price-des span {
  font-weight: 700;
}
.model__price-inner {
  border-radius: 15px;
  background: #fff;
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
  padding: 20px;
}
.model__price-title {
  font-size: 22px;
  margin-bottom: 5px;
}
.model__price-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--colorItem);
}
.model__color {
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.model__color-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 22px;
}
.model__color-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.model__color-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
  cursor: pointer;
}
.model__color-item.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--colorItem);
}
.model__form {
  background: #A9E0EE;
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.model__form-price {
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 20px 0px;
}
.model__form-price-text {
  font-size: 22px;
  margin-bottom: 5px;
}
.model__form-price-inner {
  font-size: 36px;
  font-weight: 700;
  color: var(--colorPrem);
}
.model__form-content {
  padding: 10px 30px 30px 30px;
  position: relative;
}
.model__form-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.model__form-text {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}
.model__form-ins {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 30px;
}
.model__form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.model__form-inner .input__prem,
.model__form-inner .btn__prem {
  width: 100%;
}

.tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-bottom: 20px;
}
.tabs-nav a {
  font-size: 36px;
  font-weight: 700;
  color: #b3dcee;
}
.tabs-nav a.active {
  color: #000;
}

.packaging__col {
  margin-bottom: 30px;
}
.packaging__col .section__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.packaging__title {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 22px;
}
.packaging__title span {
  font-weight: 700;
}
.packaging__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 45%;
}
.packaging__title-row div {
  width: 160px;
}
.packaging__title > div:first-child {
  width: 160px;
}
.packaging__title > div:last-child {
  min-width: 327px;
}
.packaging__item {
  padding: 20px;
  border-radius: 15px;
  border: 3px solid var(--colorPrem);
  margin-bottom: 20px;
}
.packaging__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.packaging__item-name {
  position: relative;
}
.packaging__item-name-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 22px;
  font-weight: 700;
  margin-left: 30px;
  cursor: pointer;
}
.packaging__item-name .main-form-checkbox {
  width: 35px;
}
.packaging__item-name .main-form-checkbox-checkmark {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  top: 0;
}
.packaging__item-name .main-form-checkbox-input:checked ~ .main-form-checkbox-checkmark::after {
  width: 16px;
  height: 16px;
  top: 2px;
  left: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='15' viewBox='0 0 17 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 6.90637L7.59375 13.0001L15 1.50012' stroke='%23FFAE1D' stroke-width='3' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}
.packaging__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 22px;
}
.packaging__item-price-old {
  text-decoration: line-through;
}
.packaging__item-price-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-weight: 700;
  color: var(--colorItem);
  cursor: pointer;
}
.packaging__item-price-credit {
  color: var(--colorPrem);
  font-weight: 700;
}
.packaging__item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.packaging__item-btn .btn__prem {
  width: 280px;
}
.packaging__modal-info, .packaging__modal-price {
  display: none;
  padding: 20px;
}
.packaging__modal-info.active, .packaging__modal-price.active {
  display: block;
}
.packaging__btn .btn__item {
  width: 340px;
}

.packaging__item-price-inner.active svg,
.packaging__item-name-inner.active svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.packaging__modal-price-des {
  margin-bottom: 20px;
  font-size: 18px;
}
.packaging__modal-price-des:last-child {
  margin-bottom: 0;
}
.packaging__modal-price-des span {
  font-weight: 700;
}
.packaging__modal-price-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.packaging__modal-price-title > div:first-child {
  width: 40%;
}
.packaging__modal-price-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.packaging__modal-price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 55%;
  font-size: 18px;
}
.packaging__modal-price-item > span {
  font-weight: 700;
  color: var(--colorItem);
  text-align: left;
  min-width: 200px;
}
.packaging__modal-price-item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gallery__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.gallery img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 15px;
}
.gallery img:hover {
  border: 1px solid var(--colorItem);
}

.credit__inner {
  padding: 30px;
  background: #EDF6FA;
  border-radius: 15px;
}
.credit__inner .model__title-inner {
  margin-bottom: 20px;
}
.credit__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 430px 30px auto;
  grid-template-columns: 430px auto;
  gap: 30px;
}
.credit__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.credit__form-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.credit__form-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 24px;
  font-weight: 700;
}
.credit__form-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.credit__form-row .credit__form-item {
  max-width: 205px;
}
.credit__form-item .btn__prem,
.credit__form-item .input__prem {
  width: 100%;
}
.credit__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 60px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
}
.credit__img-inner {
  background-image: url(../img/car-img-bg.png);
  background-position: top left;
  background-color: #fff;
  background-repeat: no-repeat;
  padding: 20px 0px 20px 30px;
}
.credit__img-inner img {
  width: 400px;
  height: 270px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.credit__price {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.credit__price-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--colorItem);
  padding: 20px;
  border-radius: 0 15px 0 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}
.credit__price-item-text {
  font-size: 22px;
  font-weight: 400;
}
.credit__price-item-text span {
  font-weight: 700;
}
.credit__price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 20px;
  margin-top: 44px;
  padding-right: 20px;
}
.credit__price-new, .credit__price-credit {
  font-size: 28px;
  font-weight: 700;
}
.credit__price-new {
  color: var(--colorItem);
}
.credit__price-credit {
  color: var(--colorPrem);
}
.credit__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 60px;
}
.credit__info-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.credit__info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.credit__info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: 18px;
}
.credit__info ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--colorPrem);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bank__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(11, 1fr);
  gap: 10px;
}
.bank .credit__form-title {
  margin: 30px 0px 20px 0px;
}
.bank__item {
  height: 75px;
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 2px 4px 0 rgba(25, 92, 111, 0.2);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bank__item img {
  width: 100%;
}

.credit__form-modil {
  display: none;
}

.stock__inner {
  padding: 30px;
  background: #EDF6FA;
  border-radius: 15px;
}
.stock .model__title-inner {
  margin-bottom: 20px;
}
.stock__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stock .credit__bonus .credit__bonus-item-img {
  z-index: 0;
}
.stock .credit__bonus-form {
  position: relative;
  z-index: 1;
}
.stock .credit__bonus-form .btn__prem {
  min-width: 195px;
}
.stock .credit__bonus-form-col {
  display: none;
}
.stock .credit__bonus-item {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  background: transparent;
}
.stock .credit__bonus-item-box {
  position: relative;
  display: block;
  height: 213px;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
}
.stock .credit__bonus-item-box .credit__bonus-item-ins {
  bottom: -70px;
}
.stock .credit__bonus-item-box .credit__bonus-item-img {
  z-index: 0;
}
.stock .credit__bonus-item-box:hover {
  z-index: 2;
  overflow: visible;
  background: transparent;
}
.stock .credit__bonus-item-box:hover .credit__bonus-item-img,
.stock .credit__bonus-item-box:hover .credit__bonus-item-ins {
  z-index: 3;
}
.stock .credit__bonus-item-box:hover .credit__bonus-item-ins {
  bottom: 0;
}
.stock .credit__bonus-item-box:hover .credit__bonus-item {
  height: 430px;
  background: #fff;
}
.stock .credit__bonus-item-box:hover .credit__bonus-item .credit__bonus-form-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
  gap: 10px;
  margin-bottom: 10px;
}
.stock .credit__bonus-item-box:hover .btn__prem {
  width: 100%;
}
.stock ~ .feedback {
  z-index: -1;
}

.special__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.special__inner .model__form {
  max-width: 385px;
}
.special__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.special__img .model__slide {
  height: 390px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 15px;
}
.special__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 75px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 75px;
}
.special__info-item div {
  font-size: 22px;
}
.special__info-item span {
  font-size: 22px;
  font-weight: 700;
}

.special__img-slider-prem {
  margin-bottom: 20px;
  position: relative;
}
.special__img-slider-prem .swiper-button-prev,
.special__img-slider-prem .swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='27' viewBox='0 0 19 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.87805 13.5L3.15637e-08 4.82143L3.93432 0.655987C4.75724 -0.218664 6.09175 -0.218663 6.91466 0.655988L19 13.5L6.91466 26.344C6.09175 27.2187 4.75723 27.2187 3.93432 26.344L-1.48585e-06 22.1786L7.87805 13.5Z' fill='%23FFAE1D' /%3E%3C/svg%3E");
}
.special__img-slider-prem .swiper-button-prev {
  left: 10px;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
.special__img-slider-prem .swiper-button-next {
  right: 10px;
}

.model__slider-list-slide {
  height: 103px;
}
.model__slider-list-slide.swiper-slide-thumb-active div {
  border: 3px solid var(--colorItem);
}
.model__slider-list-slide div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.comp__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.comp__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.comp__item {
  padding: 20px;
  border: 3px solid var(--colorPrem);
  border-radius: 15px;
}
.comp__item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.comp__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
.comp__item ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.comp__item ul li::before {
  content: "";
  width: 9px;
  height: 9px;
  min-width: 9px;
  min-height: 9px;
  background: var(--colorPrem);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.reviews__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px 460px;
  grid-template-columns: auto 460px;
  gap: 30px;
}
.reviews__inner-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.reviews__form {
  padding: 30px;
  background: #EDF6FA;
  border-radius: 15px;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}
.reviews__form-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.reviews__form-des {
  font-size: 22px;
  margin-bottom: 20px;
}
.reviews__form .input__prem {
  width: 100%;
  margin-bottom: 20px;
}
.reviews__form-star {
  margin-bottom: 20px;
}
.reviews__form-star-des {
  font-size: 18px;
  margin-bottom: 5px;
}
.reviews__form textarea {
  width: 100%;
  height: 230px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 15px;
  padding: 10px 20px;
  font-size: 14px;
  margin-bottom: 20px;
}
.reviews__form textarea:placeholder {
  font-size: 14px;
  font-family: var(--fontPrem);
}
.reviews__form .btn__prem {
  width: 100%;
}

.reviews__form-star-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; /* Важно: переворачиваем порядок, чтобы правильно работали sibling-селекторы */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 5px;
}

/* Скрываем радио-кнопки */
.reviews__form-star-row input[type=radio] {
  display: none;
}

/* Стили для label (звезды) */
.reviews__form-star-row label {
  cursor: pointer;
  display: inline-block;
  width: 24px; /* чуть шире для удобства клика */
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.19531 0.845947C8.34499 0.385292 8.99681 0.385292 9.14648 0.845947L10.5078 5.0354C10.7086 5.65341 11.2848 6.07248 11.9346 6.07251H16.3408C16.8248 6.07291 17.0255 6.6922 16.6338 6.97681L13.0703 9.56567C12.5446 9.94764 12.3246 10.6254 12.5254 11.2434L13.8867 15.4329C14.0364 15.8935 13.509 16.2769 13.1172 15.9924L9.55273 13.4026C9.02701 13.0207 8.31477 13.0206 7.78906 13.4026L4.22559 15.9924C3.83373 16.2771 3.30638 15.8935 3.45605 15.4329L4.81738 11.2434C5.01819 10.6254 4.79819 9.94764 4.27246 9.56567L0.708008 6.97681C0.31615 6.69211 0.517592 6.07251 1.00195 6.07251H5.40723C6.05707 6.07251 6.63317 5.65343 6.83398 5.0354L8.19531 0.845947Z" fill="white" stroke="%23FFAE1D" /></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Активная звезда (закрашенная) */
.reviews__form-star-row label.active-star,
.reviews__form-star-row input[type=radio]:checked ~ label {
  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.19531 0.845947C8.34499 0.385292 8.99681 0.385292 9.14648 0.845947L10.5078 5.0354C10.7086 5.65341 11.2848 6.07248 11.9346 6.07251H16.3408C16.8248 6.07291 17.0255 6.6922 16.6338 6.97681L13.0703 9.56567C12.5446 9.94764 12.3246 10.6254 12.5254 11.2434L13.8867 15.4329C14.0364 15.8935 13.509 16.2769 13.1172 15.9924L9.55273 13.4026C9.02701 13.0207 8.31477 13.0206 7.78906 13.4026L4.22559 15.9924C3.83373 16.2771 3.30638 15.8935 3.45605 15.4329L4.81738 11.2434C5.01819 10.6254 4.79819 9.94764 4.27246 9.56567L0.708008 6.97681C0.31615 6.69211 0.517592 6.07251 1.00195 6.07251H5.40723C6.05707 6.07251 6.63317 5.65343 6.83398 5.0354L8.19531 0.845947Z" fill="%23FFAE1D" stroke="%23FFAE1D" /></svg>');
}

/* Hover-эффект: подсветка звезд при наведении */
.reviews__form-star-row label:hover,
.reviews__form-star-row label:hover ~ label {
  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.19531 0.845947C8.34499 0.385292 8.99681 0.385292 9.14648 0.845947L10.5078 5.0354C10.7086 5.65341 11.2848 6.07248 11.9346 6.07251H16.3408C16.8248 6.07291 17.0255 6.6922 16.6338 6.97681L13.0703 9.56567C12.5446 9.94764 12.3246 10.6254 12.5254 11.2434L13.8867 15.4329C14.0364 15.8935 13.509 16.2769 13.1172 15.9924L9.55273 13.4026C9.02701 13.0207 8.31477 13.0206 7.78906 13.4026L4.22559 15.9924C3.83373 16.2771 3.30638 15.8935 3.45605 15.4329L4.81738 11.2434C5.01819 10.6254 4.79819 9.94764 4.27246 9.56567L0.708008 6.97681C0.31615 6.69211 0.517592 6.07251 1.00195 6.07251H5.40723C6.05707 6.07251 6.63317 5.65343 6.83398 5.0354L8.19531 0.845947Z" fill="%23FFAE1D" stroke="%23FFAE1D" /></svg>');
}

.popup {
  padding: 0px;
  border-radius: 15px;
  overflow: hidden;
  background: #EDF6FA;
}
.popup___feedback-img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.popup___feedback-content {
  padding: 30px;
}
.popup___feedback-text {
  margin-bottom: 30px;
}
.popup___feedback-text-title {
  font-size: 36px;
  font-weight: 700;
}
.popup___feedback-text-des {
  font-size: 22px;
}
.popup___feedback-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.popup___feedback-form .input__prem,
.popup___feedback-form .btn__prem {
  width: 100%;
}
.popup__car {
  padding: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.popup__car-img-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.popup__car-img-des {
  margin-bottom: 35px;
  font-size: 18px;
}
.popup__car-img-des span {
  font-weight: 700;
}
.popup__car-img-logo {
  margin-bottom: 40px;
}
.popup__car-img-inner {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
          box-shadow: 0 4px 8px 0 rgba(25, 92, 111, 0.2);
  background-image: url(../img/car-img-bg.png);
  background-position: top left;
  background-size: 40%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
}
.popup__car-img-inner img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.popup__car-offer {
  margin-bottom: 20px;
}
.popup__car-offer-title {
  margin-bottom: 10px;
}
.popup__car-offer-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.popup__car-offer .credit__banner-offer-item {
  height: 78px;
  padding: 12px 15px;
  font-size: 20px;
}
.popup__car-offer .credit__banner-offer-item-ins {
  width: 30px;
  height: 30px;
}
.popup__car-price {
  padding: 13px 30px;
  background: var(--colorItem);
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 30px;
}
.popup__car-price span {
  font-weight: 700;
}
.popup .model__price-title {
  font-size: 22px;
  font-weight: 700;
}

#popup-feedback-7 .credit__banner-offer-item {
  height: 145px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#popup-feedback-7 .credit__banner-offer-item-name {
  font-size: 18px;
  margin-bottom: 5px;
}
#popup-feedback-7 .credit__banner-offer-item-procent {
  font-size: 36px;
  font-weight: 700;
  color: var(--colorItem);
}
#popup-feedback-7 .credit__banner-offer-item-ins {
  width: 50px;
  height: 50px;
}

@media (max-width: 1446px) {
  .container {
    max-width: 1280px;
  }
  .header__nav ul {
    gap: 20px;
  }
  .credit__bonus-item-title {
    font-size: 22px;
  }
  .credit__bonus-item-img {
    max-width: 150px;
  }
  .credit__banner-text-title {
    font-size: 26px;
  }
  .credit__banner-text-des {
    font-size: 16px;
  }
  .credit__banner-offer-item {
    font-size: 18px;
  }
  .model__img img {
    width: 100%;
  }
  .credit__img-inner img {
    width: 300px;
  }
}
@media (max-width: 1280px) {
  .container {
    max-width: 1080px;
  }
  .header__nav ul {
    gap: 15px;
  }
  .header__btn .btn__prem {
    min-width: 150px;
  }
  .intro__slider-item img {
    width: 100%;
  }
  .intro__link-item-title {
    font-size: 20px;
  }
  .info .credit__banner-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    width: 100%;
  }
  .info .credit__banner-offer {
    width: 100%;
  }
  .car__list-inner {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .catalog__form-inner {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog__form-item {
    max-width: 330px;
  }
  .catalog__intro-inner {
    gap: 20px;
  }
  .catalog__intro-title {
    font-size: 28px;
  }
  .catalog__intro-des {
    font-size: 18px;
  }
  .model__title-inner,
  .model__form-price-inner {
    font-size: 28px;
  }
  .model__title-des,
  .model__title-btn,
  .model__price-title,
  .model__form-price-text {
    font-size: 18px;
  }
  .model__price-number {
    font-size: 24px;
  }
  .model__box {
    -ms-grid-columns: auto 280px;
    grid-template-columns: auto 280px;
  }
  .model__form-ins {
    display: none;
  }
  .model__form-title {
    font-size: 18px;
  }
  .model__form-text {
    font-size: 14px;
  }
  .model__content .credit__bonus-item-title {
    font-size: 18px;
  }
  .model__content .credit__bonus-item-img {
    max-width: 80px;
    bottom: 0;
    top: auto;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .packaging__item-name-inner {
    font-size: 18px;
  }
  .packaging__item-price,
  .packaging__title {
    font-size: 16px;
  }
  .credit__price-item-text {
    font-size: 18px;
  }
  .credit__img-inner img {
    width: 200px;
    width: 240px;
  }
  .credit__img {
    gap: 20px;
  }
  .credit__price-item-text {
    font-size: 16px;
  }
  .credit__price-new, .credit__price-credit {
    font-size: 18px;
  }
  .credit__info ul li {
    font-size: 14px;
  }
  .special__inner .model__form {
    max-width: 310px;
  }
  .special__info-item div,
  .special__info-item span {
    font-size: 18px;
  }
  .special__info {
    gap: 20px;
  }
  .special__img .model__slide {
    height: 270px;
  }
  .reviews__inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1080px) {
  .container {
    max-width: 920px;
  }
  .header__logo svg {
    max-width: 150px;
  }
  .header__nav ul {
    gap: 10px;
  }
  .header__nav ul li a {
    font-size: 14px;
  }
  .intro__inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .intro__link {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .search__car-inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .credit__bonus-inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews__list-inner {
    gap: 20px;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .feedback__img {
    display: none;
  }
  .feedback__inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .feedback__form-col {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .model__box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .packaging__item-btn .btn__prem {
    width: 200px;
  }
  .packaging__modal-price-title,
  .packaging__title {
    display: none;
  }
  .packaging__modal-price-item {
    width: auto;
  }
  .credit__form-row {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .credit__form-row .credit__form-item {
    max-width: 100%;
  }
  .credit__box {
    -ms-grid-columns: 330px auto;
    grid-template-columns: 330px auto;
  }
  .bank__inner {
    -ms-grid-columns: (1fr)[8];
    grid-template-columns: repeat(8, 1fr);
  }
  .special__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .special__inner .model__form {
    max-width: 100%;
    width: 100%;
  }
  .comp__inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 920px) {
  .container {
    max-width: 771px;
  }
  .header__desktop {
    display: none;
  }
  .header__mobil {
    display: block;
  }
  .header__burger {
    width: 30px;
    height: 20px;
    position: relative;
  }
  .header__burger-line {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 2px;
    background-color: #000;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header__white .header__burger-line {
    background-color: #fff;
  }
  .header__burger.active .header__burger-line:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
        -ms-transform: translateY(9px) rotate(45deg);
            transform: translateY(9px) rotate(45deg);
  }
  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header__burger.active .header__burger-line:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
        -ms-transform: translateY(-9px) rotate(-45deg);
            transform: translateY(-9px) rotate(-45deg);
  }
  .header__burger-line:nth-child(1) {
    top: 0;
  }
  .header__burger-line:nth-child(2) {
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .header__burger-line:nth-child(3) {
    bottom: 0;
  }
  .header__mobil-list {
    position: fixed;
    z-index: 9999;
    left: -100%;
    width: 100%;
    height: 100%;
    top: 71px;
    background-color: #fff;
    padding: 20px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header__mobil-list .header__link,
  .header__mobil-list .btn__prem {
    display: none;
  }
  .header__mobil-list.active {
    left: 0;
  }
  .header__mobil-inner {
    padding: 10px;
    border-radius: 15px;
    background: #EDF6FA;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 10px;
  }
  .active__header .header__mobil {
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  .header__nav ul,
  .header__contact-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .header__nav ul li a {
    font-size: 20px;
  }
  .header__contact-row {
    gap: 30px;
  }
  .intro__link-img {
    max-width: 150px;
  }
  .credit__banner-img {
    display: none;
  }
  .contact__inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .header__main-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .footer .header__nav {
    width: 100%;
  }
  .footer .header__nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .car__list-inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog__intro-inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .catalog__intro-inner .feedback__form {
    padding: 20px;
  }
  .model__col {
    min-width: auto;
  }
  .model__title,
  .model__title-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  .packaging__item-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .packaging__item-btn {
    width: 100%;
  }
  .packaging__item-btn .btn__prem {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .packaging__item-price {
    width: 100%;
  }
  .credit__content .credit__img {
    display: none;
  }
  .credit__box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .credit__form-modil {
    display: block;
  }
  .stock__list {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stock .credit__bonus-form-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .stock .credit__bonus-item-box:hover .credit__bonus-item,
  .stock .credit__bonus-item-box {
    height: -moz-max-content;
    height: -webkit-max-content;
    height: max-content;
  }
  .stock .credit__bonus-item {
    position: static;
  }
}
@media (max-width: 771px) {
  .container {
    max-width: 375px;
  }
  .header__mobil-inner .header__btn .header__link,
  .header__mobil-inner .header__btn .btn__prem {
    display: none;
  }
  .header__mobil-list .header__link,
  .header__mobil-list .btn__prem {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .reviews__list-inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .intro__link {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .section__title {
    font-size: 26px;
  }
  .search__car-title {
    font-size: 20px;
  }
  .credit__banner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .credit__banner-offer-item {
    padding: 15px;
    font-size: 16px;
  }
  .credit__bonus-item-img {
    max-width: 120px;
    top: auto;
    bottom: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .info__inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .feedback__form {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .feedback__title {
    font-size: 28px;
  }
  .feedback__des {
    font-size: 18px;
  }
  .contact__des,
  .contact__item a {
    font-size: 18px;
  }
  .footer .header__nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .header__btn .btn__prem {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
  .header__link {
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
  }
  .header__link-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin: 10px 0px;
  }
  .car__list-inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .catalog__form-inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .model__title-inner, .model__form-price-inner {
    font-size: 22px;
  }
  .model__title-des, .model__title-btn, .model__price-title, .model__form-price-text {
    font-size: 16px;
  }
  .model__img {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    height: 240px;
  }
  .model__content-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tabs-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .packaging__item-price, .packaging__title {
    font-size: 14px;
  }
  .packaging__item-price-inner {
    gap: 5px;
  }
  .packaging__modal-info, .packaging__modal-price {
    padding: 0px;
  }
  .packaging__modal-price-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 10px;
  }
  .credit__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .credit__img-inner {
    padding: 20px;
  }
  .credit__img-inner img {
    width: 100%;
    height: auto;
  }
  .credit__price {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    padding: 0px 20px 20px 20px;
  }
  .credit__price-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
  }
  .credit__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .bank__inner {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .credit__inner {
    padding: 20px;
  }
  .stock__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .special__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .special__img {
    width: 100%;
  }
  .comp__inner {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .reviews__inner-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .reviews__form-title {
    font-size: 26px;
  }
  .reviews__form-des {
    font-size: 16px;
  }
  .popup__car {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .popup__car-img-title {
    font-size: 22px;
  }
}
@media (max-width: 375px) {
  .container {
    max-width: 100%;
    padding: 0px 10px;
  }
  .credit__bonus-inner {
    gap: 10px;
  }
}