@font-face {
  font-family: "SBSansDisplay";
  font-style: normal;
  font-weight: 300;
  src: local("SBSansDisplay-Light"), url("../fonts/sb-sans-display-light.otf") format("woff");
}
@font-face {
  font-family: "SBSansDisplay";
  font-style: normal;
  font-weight: 400;
  src: local("SBSansDisplay-Regular"), url("../fonts/SBSansDisplay-Regular.otf") format("woff");
}
@font-face {
  font-family: "SBSansDisplay";
  font-style: normal;
  font-weight: 600;
  src: local("SBSansDisplay-Semibold"), url("../fonts/sb-sans-display-semibold.ttf") format("woff");
}
@font-face {
  font-family: "SBSansDisplay";
  font-style: normal;
  font-weight: 700;
  src: local("SBSansDisplay-Bold"), url("../fonts/sb-sans-display-bold.otf") format("woff");
}
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  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 {
  --font-family: "SBSansDisplay", sans-serif;
  --textColor: #262626;
  --mainBgColor: #f4f5f6ff;
  --colorPlaceholder: #83898f;
  --main-prem: #052f5f;
  --main-item: #10a443;
  --main-blue: #005377;
  --main-blue-dark: #1e3249;
  --main-red: #cc333b;
  --main-green: #06a77d;
  --container: 1352px;
}

body {
  font-family: var(--font-family);
  line-height: 1.2;
  font-size: 16px;
  color: var(--textColor);
  font-weight: 400;
  background: var(--mainBgColor);
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
body .footer {
  margin-top: auto;
}
body.active {
  overflow: hidden;
}

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

a {
  color: var(--textColor);
}

.main {
  margin-top: 20px;
}

.text-nowrap {
  white-space: nowrap;
}

.accordion-collapse {
  display: none;
}

.accordion-header {
  cursor: pointer;
}

.base-list {
  list-style-type: disc;
  padding-left: 20px;
}
.base-list li::marker {
  content: url("data:image/svg+xml,%3Csvg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 7.05L4.35 9.75L9.75 0.75' stroke='%23CC333B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.base-list > * + * {
  margin-top: 10px;
}

.btn__item, .btn__red, .btn__prem {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  padding: 0px 25px;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
  position: relative;
  transition: all 0.4s ease;
  line-height: 1;
  border-radius: 8px;
  gap: 15px;
}
.btn__item:hover, .btn__red:hover, .btn__prem:hover {
  transition: 0.1s;
  box-shadow: inset 0 0 10px -5px var(--textColor);
}
.btn__item:active, .btn__red:active, .btn__prem:active {
  transition: 0;
  filter: brightness(0.9);
}

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

section {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px;
  margin: 60px 0;
}

.btn__prem {
  color: #fff;
  background: var(--main-prem);
}

.btn__red {
  color: #fff;
  background: var(--main-red);
}

.btn__item {
  color: #fff;
  background: var(--main-item);
}
.btn__item:hover {
  background: var(--main-prem);
}

select,
.input__prem {
  outline: none;
  background: #f0f1f2;
  border: none;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  height: 46px;
  padding: 0px 20px;
  color: var(--textColor);
  width: 100%;
}
select::-moz-placeholder, .input__prem::-moz-placeholder {
  color: var(--colorPlaceholder);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
}
select::placeholder,
.input__prem::placeholder {
  color: var(--colorPlaceholder);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
}
select:focus,
.input__prem:focus {
  border: 1px solid var(--main-prem);
}

.irs--round {
  --theme-color: var(--main-red);
}
.irs--round .irs {
  height: 42px;
}
.irs--round .irs-with-grid {
  height: 69px;
}
.irs--round .irs-line, .irs--round .irs-bar {
  height: 2px;
  top: 35px;
}
.irs--round .irs-min, .irs--round .irs-max {
  color: #83898f;
  background-color: #f0f1f2;
}
.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
  background-color: transparent;
  color: var(--main-prem);
}
.irs--round .irs-from::before, .irs--round .irs-to::before, .irs--round .irs-single::before {
  content: none;
}
.irs--round .irs-grid-pol.small {
  display: none;
}
.irs--round .irs-bar {
  background-color: var(--theme-color);
}
.irs--round .irs-handle {
  width: 14px;
  height: 14px;
  top: 29px;
  border-width: 1px;
  border-color: var(--theme-color);
}
.irs--round .irs-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.irs--round .irs-handle.state_hover, .irs--round .irs-handle:hover {
  background-color: var(--theme-color);
}
@media (max-width: 980px) {
  .irs--round .irs-handle {
    width: 24px;
    height: 24px;
    top: 24px;
    border-width: 2px;
  }
}

.form-range__label {
  font-size: 12px;
  color: #83898f;
  margin-bottom: 20px;
}
.section__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.page__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.main-form-checkbox {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-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: 0px;
  left: 0;
  height: 16px;
  width: 16px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #e8e8e8;
}

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

.main-form-checkbox-text {
  font-size: 14px;
}

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

.header {
  background: #fff;
}
.header__desktop {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 16px 0;
}
.header__logo img {
  display: block;
  max-width: 100% !important;
  height: auto;
}
.header__list ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__list ul li a {
  text-decoration: none;
  white-space: nowrap;
}
.header__contact {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__btns {
  display: flex;
  gap: 16px;
  align-items: center;
}
.header__phone {
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.header__link {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cc333b;
  border-radius: 6px;
}
.header__like {
  position: relative;
  margin-left: 16px;
  margin-right: 11px;
}
.header__like span {
  position: absolute;
  right: -11px;
  top: -2px;
  background: var(--main-prem);
  color: #fff;
  font-size: 12px;
  padding: 1px 3px;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
}
@media (max-width: 1180px) {
  .header__logo {
    max-width: 180x;
  }
  .header__list {
    font-size: 14px;
  }
  .header__list ul {
    gap: 20px;
  }
  .header__contact {
    font-size: 10px;
    gap: 4px;
  }
}
@media (max-width: 980px) {
  .header__desktop {
    display: none;
  }
}

.header__mobil {
  height: 100px;
  display: flex;
  flex-direction: column;
  display: none;
}
.header__mobil > .container {
  margin-top: auto;
  margin-bottom: auto;
}
.header__mobil-contact {
  font-size: 12px;
  padding: 7px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #83898f;
}
.header__mobil-contact .header__phone {
  font-size: 14px;
  font-weight: 600;
}
.header__mobil-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__mobil-inner {
  padding: 7px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__mobil-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__mobil-list {
  background: #fff;
  position: absolute;
  top: 100px;
  left: 0;
  width: min(560px, 70%);
  height: calc(100vh - 100px);
  height: calc(100dvh - 100px);
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.35s;
}
.header__mobil-list .header__contact-inner {
  font-size: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header__mobil-list.active {
  transform: none;
}
@media (max-width: 980px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
  }
  .header__mobil {
    display: flex;
  }
}

.hero {
  padding: 4px;
}
.hero__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 12px 32px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  padding: 28px 36px;
}
.hero__title {
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--main-prem);
}
.hero__title-highlight {
  display: inline-block;
  color: #06a77d;
}
.hero__futures {
  margin-top: auto;
}
.hero__futures img {
  max-width: 80%;
}
.hero__asset {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.hero__asset img {
  display: block;
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 312px;
}
@media (max-width: 981px) {
  .hero__content {
    padding: 16px;
  }
}
@media (max-width: 771px) {
  .hero__inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero__title {
    font-size: 28px;
  }
}

.filter {
  background: transparent;
}
.filter__prem {
  display: grid;
  grid-gap: 16px;
  margin-bottom: 20px;
}
.filter__prem > button {
  padding: 10px 25px;
  color: #fff;
  background: var(--main-prem);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
}
.filter__prem-box {
  width: 83%;
}
.filter__prem-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 2px;
}
.filter__prem-row-two {
  grid-template-columns: repeat(4, 1fr);
  display: none;
}
.filter__prem-row-two .filter__prem-item {
  max-width: 236px;
}
.filter__prem-row-two.active {
  display: grid;
}
.filter__prem-item {
  border-right: 1px solid #ddd;
  background: #fff;
  max-width: 189px;
}
.filter__prem-item .input__item {
  border: none;
  height: 45px;
}
.filter__prem-item:last-child {
  border-right: none;
}
.filter__prem-item .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
}
.filter__prem-item .select2-container--default .select2-selection--single {
  height: 45px;
}
.filter__prem-item .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
}
.filter__prem .btn__prem {
  width: 100%;
}
.filter__row {
  display: flex;
  gap: inherit;
}
.filter__row > * {
  flex: 1;
}
.filter__check {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.filter__check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.filter__list {
  margin-top: 48px;
}
.filter__list-title {
  font-size: 20px;
}
.filter__list-inner {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.filter__list-inner li a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  background: #fff;
  padding: 2px 8px;
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
}
.filter__list-inner li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.filter__list-inner li a span {
  color: var(--main-red);
  margin-left: auto;
}
.filter__list-inner li a:hover span {
  color: var(--main-prem);
}
.filter select,
.filter .select2-container--default .select2-selection--single .select2-selection__rendered,
.filter .input__prem {
  background: #fff;
}
@media (max-width: 771px) {
  .filter__list-wrap-index {
    display: none;
  }
}
@media (min-width: 772px) {
  .filter__prem {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter__prem .btn__prem {
    grid-column: span 2;
  }
}
@media (min-width: 981px) {
  .filter__prem {
    grid-template-columns: repeat(5, 1fr);
  }
  .filter__prem .btn__prem {
    grid-column: unset;
  }
  .filter__row {
    grid-column: span 2;
  }
}

.filter__check-toggle-collapse {
  display: none;
}
@media (max-width: 980px) {
  .filter__mobile-hidden {
    display: none;
  }
  .filter__check-toggle-collapse {
    display: block;
  }
  .filter:has(.filter__check-toggle-collapse input:checked) .filter__mobile-hidden {
    display: block;
  }
}

.input__item {
  outline: none;
  font-size: 16px;
  height: 46px;
  padding: 0px 10px;
  background: transparent;
}
.input__item::-moz-placeholder {
  color: var(--textColor);
}
.input__item::placeholder {
  color: var(--textColor);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--textColor);
  background: #f0f1f2;
  border-radius: 8px;
  line-height: 46px;
  padding-left: 10px;
  padding-right: 36px;
  font-size: 16px;
  font-weight: 400;
}

.select2-container--default .select2-selection--single {
  border: none;
  border-radius: 12px;
  height: 46px;
}

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

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--main-prem);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  width: 100%;
  height: 20px;
  background: url(../img/arrow-select.svg) center no-repeat;
  margin: 0;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

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

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

.filter__check-checkbox .checkmark,
.filter__check-link {
  height: 17px;
  width: 34px;
  background: #c4c4c4;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}

.filter__check-checkbox .checkmark::after,
.filter__check-link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 3px;
  width: 11px;
  height: 11px;
  background-color: #fff;
  border-radius: 100%;
}

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

.filter__check-checkbox input:checked ~ .checkmark {
  background: var(--main-prem);
}

.filter__check-checkbox input:checked ~ .checkmark::after {
  left: auto;
  right: 3px;
}

.filter__check-link.active {
  background: var(--main-prem);
}
.filter__check-link.active::after {
  left: auto;
  right: 3px;
}

.intro {
  background: url("../img/intro-bg.jpg") center/cover;
  padding: 6px 10px 8px 10px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.intro h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
.intro h2 span {
  font-size: 44px;
  text-transform: uppercase;
  font-weight: 700;
}
.intro__list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
  text-align: left;
  justify-content: center;
}
.intro__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
}
.intro__list li::before {
  content: "";
  width: 27px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg width='27' height='26' viewBox='0 0 27 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 2.72732C11.3637 7.27894 7.58958 10.9265 2.89358 12.9997C7.58997 15.0727 11.3644 18.7202 13.501 23.272C15.6367 18.7197 19.4106 15.0722 24.1066 12.9998C19.4105 10.9266 15.6364 7.27899 13.5 2.72732Z' stroke='%23590095' stroke-width='2' /%3E%3C/svg%3E");
}
.intro__des {
  text-align: center;
  color: #03592c;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  font-weight: 700;
  position: relative;
}
.intro__des::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(14px);
  background: rgba(255, 255, 255, 0.5);
  width: 120%;
  height: 120%;
  z-index: 0;
}
.intro__des > div {
  position: relative;
  z-index: 1;
}
.intro__des span {
  font-size: 28px;
  text-transform: uppercase;
}

.catalog {
  background: transparent;
}
.catalog__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.catalog__inner > * {
  min-width: 0;
}
.catalog .swiper {
  --swiper-theme-color: var(--main-prem);
}
.catalog .swiper-slide {
  height: auto;
}
.catalog .swiper-slide > * {
  height: 100%;
}
.catalog .swiper-navigation {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
.catalog .swiper-navigation:has(.swiper-button-lock) {
  display: none;
}
.catalog .swiper-button-prev,
.catalog .swiper-button-next {
  position: static;
  margin: 0;
}
.catalog .swiper-navigation > .swiper-pagination {
  position: static;
  width: auto;
}
.catalog__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.catalog-item {
  padding: 4px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.catalog-item a {
  text-decoration: none;
}
.catalog-item__image {
  position: relative;
  z-index: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 12px;
}
.catalog-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog-item__image a {
  display: block;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.catalog-item__image .swiper {
  --swiper-theme-color: var(--main-red);
}
.catalog-item__image .swiper-pagination {
  display: flex;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.catalog-item__image .swiper-pagination .swiper-pagination-bullet {
  flex: 1;
  margin: 0 !important;
  background: transparent;
  height: 100%;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  opacity: 1 !important;
}
.catalog-item__image .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  height: 4px;
  border-radius: 2px;
  margin: 4px 2px;
  background: rgba(0, 0, 0, 0.2666666667);
}
.catalog-item__image .swiper-pagination .swiper-pagination-bullet:first-child {
  padding-left: 8px;
}
.catalog-item__image .swiper-pagination .swiper-pagination-bullet:last-child {
  padding-right: 8px;
}
.catalog-item__image .swiper-pagination .swiper-pagination-bullet-active::after {
  background: var(--swiper-theme-color);
}
@media (hover: none) {
  .catalog-item__image .swiper-pagination {
    pointer-events: none;
  }
}
.catalog-item__ins {
  font-size: 10px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  margin: 12px;
  padding: 3px 10px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.catalog-item__like {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  margin: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #83898f;
  border: none;
  background: #fff;
  padding: 5px;
}
.catalog-item__like svg {
  width: 100%;
  height: 100%;
}
.catalog-item__content {
  flex-grow: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.catalog-item__name {
  font-style: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.catalog-item__props {
  font-size: 12px;
  color: #83898f;
  margin-bottom: auto;
}
.catalog-item__prices {
  padding-top: 12px;
  border-top: 1px solid #f0f1f2;
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.catalog-item__price-group-name {
  font-size: 10px;
  color: #83898f;
  margin-bottom: 4px;
}
.catalog-item__price {
  font-size: 16px;
  font-weight: 600;
}
.catalog-item__price--current {
  color: #005377;
}
.catalog-item__price--credit {
  color: #cc333b;
}
@media (max-width: 1180px) and (min-width: 981px) {
  .catalog-item {
    border-radius: 16px;
    padding: 2px;
  }
  .catalog-item__image {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }
  .catalog-item__ins {
    font-size: 8px;
    padding: 4px;
  }
  .catalog-item__ins svg {
    width: 12px;
    height: 12px;
  }
  .catalog-item__price {
    font-size: 14px;
  }
}
@media (max-width: 771px) {
  .catalog-item__image {
    margin-bottom: 8px;
  }
  .catalog-item__ins {
    display: none;
  }
  .catalog-item__like {
    margin: 8px;
  }
  .catalog-item__name {
    margin-bottom: 4px;
  }
  .catalog-item__props {
    font-size: 13px;
  }
  .catalog-item__prices {
    margin-top: 8px;
    padding-top: 8px;
    gap: 8px;
  }
  .catalog-item__price-group-name {
    font-size: 12px;
  }
  .catalog-item__price {
    font-size: 16px;
  }
}

.offer {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 20px;
  margin-bottom: 10px;
}
.offer.container {
  padding-left: 0;
  padding-right: 0;
}
.offer > div {
  padding: 30px 20px 20px 20px;
  background: #fff;
  border-radius: 20px;
}
.offer__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.offer__prem-item {
  padding: 20px 10px;
  border-radius: 12px;
  background: #f0f5f8;
  color: var(--main-prem);
  position: relative;
  height: 160px;
}
.offer__prem-item h3 {
  font-size: 16px;
  font-weight: 400;
}
.offer__prem-item img {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}
.offer__link {
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 8px 10px;
  background: #f0f5f8;
  color: var(--main-prem);
  border-radius: 12px;
}

.collect__inner {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.collect__inner a {
  text-decoration: none;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 8px;
  background: #f0f5f8;
  transition: all 0.4s ease;
}
.collect__inner a:hover {
  background: var(--main-prem);
  color: #fff;
}

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

.news__slider-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news__slider-title h2 {
  font-size: 28px;
  font-weight: 600;
}
.news__slider-title a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1175da;
}
.news__slider-box {
  position: relative;
}
.news__slider-box .news__slider-btn-next {
  right: -20px;
}
.news__slider-box .news__slider-btn-prev {
  left: -20px;
}
.news__slider-item {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 10px;
  width: 100%;
  height: 165px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  color: #fff;
}
.news__slider-item::before, .news__slider-item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.news__slider-item::before {
  top: 0;
  background: linear-gradient(180deg, #f0f5f8 29%, rgba(240, 245, 248, 0) 39%, #f0f5f8 85.5%);
}
.news__slider-item > div,
.news__slider-item > a {
  position: relative;
  z-index: 2;
}
.news__slider-item-name {
  text-decoration: none;
  font-size: 14px;
}
.news__slider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news__slider-row a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #009e36;
  font-size: 12px;
}
.news__slider-date {
  font-size: 10px;
  color: var(--textColor);
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #fff;
  border: 1px solid var(--main-prem);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-prem);
}

.feedback {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.feedback__img {
  max-height: 264px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 420px;
  background: var(--mainBgColor);
  border-radius: 8px;
}
.feedback__content {
  position: relative;
  z-index: 1;
  max-width: 770px;
}
.feedback__content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
}
.feedback__content p {
  font-size: 18px;
  color: #83898f;
  margin-bottom: 32px;
}
.feedback__form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
.feedback__form .btn__prem, .feedback__form .btn__red, .feedback__form .btn__item {
  width: 100%;
}
@media (max-width: 980px) {
  .feedback__form-row {
    grid-template-columns: unset;
  }
  .feedback__form-row .btn__prem {
    width: 100%;
  }
}

.seotext {
  background: transparent;
  font-size: 14px;
}
.seotext p + p {
  margin-top: 1rem;
}

.main-form-checkbox {
  display: block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-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: 3px;
  left: 0;
  height: 16px;
  width: 16px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
}

.main-form-checkbox-input:checked ~ .main-form-checkbox-checkmark {
  background: var(--main-prem);
}

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

.main-form-checkbox-text {
  font-size: 10px;
  color: #83898f;
}

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

.footer {
  background: url("../img/footer-bg.jpg") center/cover;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #83898f;
}
.footer__inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #83898f;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__list ul {
  display: flex;
  align-items: center;
  gap: 70px;
}
.footer__list ul a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
}
.footer__list ul a:hover {
  text-decoration: underline;
}
.footer__car-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px 10px;
}
.footer__car-list li a {
  text-decoration: none;
  font-size: 12px;
  color: #8b8b8b;
}
.footer__car-list li a:hover {
  color: #fff;
}
.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #fff;
  margin-bottom: 10px;
}
.footer__phone {
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
}

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

.catalog__pag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.catalog__pag a {
  text-decoration: none;
  font-size: 28px;
  color: #616060;
}
.catalog__pag a.active {
  color: var(--main-prem);
}
.catalog__pag a:hover {
  color: var(--main-prem);
}

.section__title span {
  color: var(--main-prem);
  font-weight: 700;
}

.crumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
}
.crumbs ul li {
  margin-bottom: 10px;
}
.crumbs a {
  text-decoration: none;
  color: #939393;
  display: flex;
  align-items: center;
}
.crumbs a::after {
  content: "";
  width: 3px;
  height: 2px;
  background: #939393;
  margin: 0px 10px;
}
.crumbs span {
  color: var(--main-blue);
}
.crumbs + section {
  margin-top: 30px;
}
@media (max-width: 980px) {
  section:first-child {
    margin-top: 0;
  }
}

.model {
  background: transparent;
}

.model {
  padding-top: 0;
  padding-bottom: 0;
}
.model__inner {
  display: grid !important;
  grid-gap: 32px 24px;
  display: grid;
}
.model__inner > * {
  min-width: 0;
}
.model__like {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 28px !important;
  height: 28px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: inherit;
  border: 0;
  margin-top: 10px;
  margin-right: 18px;
}
.model__like svg {
  width: 100%;
  height: 100%;
}
.model__img-wrap {
  position: relative;
  display: grid;
}
.model__img {
  display: grid !important;
  grid-gap: 12px;
  min-width: 0;
  position: relative;
}
.model__img > * {
  min-width: 0;
  width: 100%;
}
.model__slider {
  border-radius: 16px;
}
.model__slide {
  aspect-ratio: 4/3;
  width: 100%;
  max-height: 530px;
}
.model__slider-list-slide {
  aspect-ratio: 16/9;
  border-radius: 8px;
}
.model__slider-list-slide.swiper-slide-thumb-active {
  box-shadow: inset 0 0 3px 0px var(--main-prem);
}
.model__tabs-card, .model__form-card {
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
}
.model__form-card .feedback__content {
  max-width: unset;
  width: 100%;
}
.model__form-card .feedback__content h2 {
  font-size: 20px;
  margin-bottom: 28px;
}
@media (max-width: 980px) {
  .model__like {
    margin: 16px;
  }
}
@media (min-width: 981px) {
  .model__inner {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 1fr;
    align-items: start;
  }
  .model__img-wrap {
    position: static;
    grid-column: span 2;
  }
  .model__img {
    display: grid;
    grid-template-columns: 135px auto;
    position: relative;
  }
  .model__slider-list {
    grid-column: 1/2;
    grid-row: 1/2;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .model__slider {
    grid-column: 2/3;
  }
  .model__slider-list-slide {
    width: 100% !important;
  }
  .model__form-card {
    grid-column: span 2;
  }
  .model__form-card .feedback__form {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
  }
  .model__form-card .feedback__form-row {
    margin-bottom: 0;
  }
  .model__info {
    grid-column: 3/4;
    grid-row: 1/span 2;
  }
}

.model__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.model__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  max-width: 350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.model__price-label, .popup__car-prices .model__price-item-credit > p, .popup__car-prices .model__price-item-new > p {
  color: #83898f;
  font-size: 14px;
}
.model__price, .popup__car-prices .model__price-item-credit > div, .popup__car-prices .model__price-item-new > div {
  font-weight: 600;
}
.model__price--current, .popup__car-prices .model__price-item-new > div {
  font-size: 28px;
  margin-top: 4px;
  color: var(--main-red);
}
.model__price--credit, .popup__car-prices .model__price-item-credit > div {
  font-size: 20px;
  margin-top: 8px;
  color: var(--main-blue-dark);
}
.model__contacts, .model__vin, .model__avail {
  padding: 10px 20px;
  background: #fff;
  border-radius: 4px;
  font-weight: 600;
}
.model__vin, .model__avail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-prem);
}
.model__vin svg, .model__avail svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.model__contacts {
  display: flex;
  justify-content: space-between;
}
.model__phone, .model__recall {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.model__phone svg, .model__recall svg {
  width: 16px;
  height: 16px;
}
.model__phone {
  color: var(--main-prem);
}
.model__phone::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml, %3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='6' fill='%23CC333B' /%3E%3Cpath d='M22.9972 22.8009C22.9792 22.5016 22.8855 22.1586 22.5964 21.9286C21.9799 21.4379 19.4713 19.5822 19.4713 19.5822C19.4713 19.5822 18.8007 19.0702 18.1252 19.3594L16.7017 19.9689C16.6998 19.9695 16.6984 19.9703 16.6963 19.9709C16.6557 19.9838 16.1799 20.125 15.8479 19.7572C15.6302 19.5161 14.7295 18.0796 13.9597 16.3961C13.2985 14.8321 12.8843 13.4015 12.8517 13.1021C12.7984 12.6124 13.2237 12.3584 13.2605 12.3373C13.2623 12.3363 13.2637 12.3355 13.2655 12.3349L14.6782 11.7009C15.3485 11.4001 15.4138 10.5655 15.4138 10.5655C15.4138 10.5655 15.7034 7.48318 15.7488 6.70253C15.7699 6.33657 15.5753 6.03785 15.3626 5.82382C15.1607 5.62056 14.9126 5.46816 14.6438 5.3673L14.1513 5.18251C13.6974 5.01216 13.3307 5.05871 13.3307 5.05871C13.2269 5.07636 11.2844 5.36523 10.5412 6.22113C9.77781 7.10059 9.48879 8.03539 9.48879 8.03539C8.72179 10.0794 8.95841 12.2547 8.95841 12.2547C9.23648 14.5484 9.96162 16.6107 10.7673 18.3025C11.4855 19.8901 12.4861 21.604 13.8725 23.1774C13.8725 23.1774 15.3469 24.8099 17.3962 25.6195C17.3962 25.6195 18.2919 26.035 19.4646 26.0657C20.6059 26.0957 22.126 24.8665 22.2088 24.8023C22.2088 24.8023 22.4897 24.5649 22.6663 24.118L22.8579 23.6333C22.9626 23.3688 23.0144 23.0849 22.9976 22.8005L22.9972 22.8009Z' fill='white' /%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.model__recall a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.model__recall a svg {
  width: 16px;
  height: 16px;
}
.model__vin-avail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.model__vin-avail > * {
  flex-grow: 1;
}
@media (max-width: 980px) {
  .model__vin-avail {
    gap: 8px 20px;
  }
  .model__vin, .model__avail {
    padding: 10px;
    font-size: 12px;
  }
  .model__vin svg, .model__avail svg {
    width: 20px;
    height: 20px;
  }
}

.model__tabs-links-scroll {
  overflow-x: auto;
  box-shadow: inset 0 -2px 0 -1px rgba(0, 83, 119, 0.2);
  margin-bottom: 16px;
}
.model__tabs-links {
  display: flex;
  white-space: nowrap;
  justify-content: space-between;
  gap: 20px;
}
.model__tabs-links:not(:has(:nth-child(3))) {
  justify-content: space-evenly;
}
.model__tabs-links button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  line-height: inherit;
  cursor: pointer;
  font-size: 14px;
  color: #888888;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
}
.model__tabs-links button.is-active {
  color: var(--main-prem);
  border-bottom-color: var(--main-prem);
}
.model__tabs-links button:focus {
  outline: none;
}
.model__tabs-links button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.model__tabs-links button:disabled {
  cursor: default;
  opacity: 0.5;
}
.model__tab-pane {
  display: none;
}
.model__tabs-card-button {
  margin-top: 30px;
}
.model__tabs-card-button .btn__prem, .model__tabs-card-button .btn__red, .model__tabs-card-button .btn__item {
  width: 100%;
}

.model-char__item {
  padding: 12px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.model-char__item + .model-char__item {
  border-top: 1px solid #f0f1f2;
}
.model-char__item-name {
  color: #83898f;
}
.model-comp__item + .model-comp__item {
  border-top: 1px solid #f0f1f2;
}
.model-comp__item-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.model-comp__item-button::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5686 5.21293C3.38354 5.06393 3.15047 4.98863 2.9138 5.00139C2.67713 5.01415 2.45339 5.11407 2.28521 5.28212C2.11702 5.45017 2.01614 5.6746 2.00178 5.91267C1.98741 6.15074 2.06057 6.38581 2.20732 6.57309L7.32419 11.7223C7.50466 11.9003 7.74729 12 8 12C8.25271 12 8.49534 11.9003 8.67581 11.7223L13.7927 6.57309C13.9394 6.38581 14.0126 6.15074 13.9982 5.91267C13.9839 5.6746 13.883 5.45017 13.7148 5.28212C13.5466 5.11407 13.3229 5.01415 13.0862 5.00139C12.8495 4.98863 12.6165 5.06393 12.4314 5.21293L8.33791 9.31285C8.24767 9.40186 8.12635 9.45171 8 9.45171C7.87365 9.45171 7.75233 9.40186 7.66209 9.31285L3.55895 5.20322L3.5686 5.21293Z' fill='%23CC333B'/%3E%3C/svg%3E%0A");
}
.is-open .model-comp__item-button::after {
  transform: scaleY(-1);
}
.model-comp__item-body {
  display: none;
}
.model-comp__item-body .base-list {
  padding-top: 12px;
  padding-bottom: 24px;
  font-size: 12px;
}

.model__link.active {
  color: var(--main-item);
}
.model__link.active svg {
  transform: rotate(180deg);
}
.model__link.active ~ .model__info-box {
  display: block;
}

.model__des-content {
  padding: 9px 20px;
  border-bottom: 1px solid #ddd;
}
.model__des-content:last-child {
  border: none;
}

.model__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}
.model__link span {
  font-weight: 700;
  color: var(--main-item);
}

.credit {
  padding: 0px;
  background: transparent;
}
.credit__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}
.credit__img {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 330px;
}
.credit__img-mobil {
  display: none;
}
.credit__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.credit__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.credit__select {
  padding: 2px;
  background: var(--main-prem);
  border-radius: 20px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.credit__select-item {
  max-width: 275px;
}
.credit__select h2,
.credit__select h3 {
  color: #fff;
  margin: 0px 20px 10px 20px;
}
.credit__select h2 {
  font-size: 18px;
  font-weight: 600;
}
.credit__select h3 {
  font-size: 16px;
  font-weight: 400;
}
.credit__select-box {
  margin-bottom: 20px;
}
.credit__select-box:last-child {
  margin-bottom: 0;
}
.credit__select-box-inner {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.credit__select-check {
  display: flex;
  align-items: start;
  overflow: hidden;
  border-radius: 20px;
}
.credit__select-check-item {
  border-right: 1px solid #eaeaea;
  background: #fff;
  height: 46px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  position: relative;
}
.credit__select-check-item input {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.credit__select-check-item input:checked ~ div {
  color: #fff;
  z-index: 1;
}
.credit__select-check-item input:checked ~ div::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-item);
}
.credit__select-check-item:first-child, .credit__select-check-item:last-child {
  flex: 1;
}
.credit__select-check-item:last-child {
  border: none;
}
.credit__info {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}
.credit__info-price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.credit__info-price > div p {
  font-size: 14px;
}
.credit__info-price-new div {
  font-size: 34px;
  font-weight: 700;
  color: var(--main-prem);
}
.credit__info-price-credit div {
  font-size: 20px;
}
.credit__info-price-credit div span {
  font-size: 28px;
  color: var(--main-item);
  font-weight: 700;
}
.credit__info-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credit__info-item .input__prem,
.credit__info-item .btn__prem {
  width: 100%;
}
.credit__des {
  display: grid;
  grid-template-columns: auto 430px;
  gap: 10px;
  margin-bottom: 10px;
}
.credit__des-col {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}
.credit__des-col h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.credit__des-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 10px;
}
.credit__des-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}
.credit__des-item::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5006 1.42818C6.30723 4.13883 4.13938 6.30676 1.42878 7.50021C4.1396 8.69354 6.30768 10.8615 7.50119 13.5722C8.69412 10.8611 10.8619 8.69324 13.5725 7.50026C10.8619 6.30682 8.69397 4.13887 7.5006 1.42818Z' fill='white' stroke='%23009E36' /%3E%3C/svg%3E");
}
.credit__offer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.credit__offer-item {
  background: #fff url("../img/credit-offer-bg.png") center/cover no-repeat;
}

.bank__slider {
  background-color: transparent;
}
.bank__slider .section__title {
  text-align: center;
  margin-bottom: 24px;
}
.bank__slider-inner {
  position: relative;
}
.bank__slider-inner .bank__slider-btn-prev {
  left: -10px;
}
.bank__slider-inner .bank__slider-btn-next {
  right: -10px;
}
.bank__slider-box {
  overflow: hidden;
  margin: 0 26px;
  padding: 0 12px;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000 12px, #000 calc(100% - 12px), rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000 12px, #000 calc(100% - 12px), rgba(0, 0, 0, 0));
}
.bank__slider-item {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 15px;
  border-radius: 20px;
}
.bank__slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}

.credit__select-item {
  border-bottom: 1px solid #ddd;
}
.credit__select-item:last-child {
  margin-bottom: 0;
}
.credit__select-item .input__prem {
  background: transparent;
}
.credit__select-item .input__prem:focus {
  border: none;
}

.credit__select-des {
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.credit__select-des span {
  font-size: 28px;
  font-weight: 700;
}

.tradein__des {
  display: grid;
  grid-template-columns: auto 540px;
}

.ransom .credit__info {
  padding: 10px;
}

.main-form-checkbox-text {
  line-height: 1;
}

.order {
  background: transparent;
  padding: 0px;
}
.order .page__title {
  text-align: center;
  margin-bottom: 30px;
}
.order__border {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  height: 20px;
  background: linear-gradient(90deg, #009e36 0%, #590095 100%);
}
.order__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.order__item {
  text-align: center;
  box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}
.order__item::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='39' height='20' viewBox='0 0 39 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L12 10.0019L1 19' stroke='%23A7A8A9' stroke-width='1.32402' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M14 1L25 10.0019L14 19' stroke='%23A7A8A9' stroke-width='1.32402' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M27 1L38 10.0019L27 19' stroke='%23A7A8A9' stroke-width='1.32402' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
  width: 40px;
  height: 20px;
  position: absolute;
  z-index: 3;
  right: -30px;
  top: 40%;
}
.order__item:last-child::after {
  display: none;
}
.order__item-number {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translate(-50%, 0);
  width: 135px;
  height: 116px;
  padding-top: 15px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.order__item-content {
  padding: 65px 20px 40px 20px;
  background: url("../img/order-bg.png") center/cover no-repeat;
  position: relative;
  z-index: 1;
}
.order__item-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  height: 46px;
}
.order__item-content p {
  height: 100px;
}
.order__item-icon {
  width: 66px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.news__list {
  padding: 0px;
  background: transparent;
}
.news__list .page__title {
  padding: 0px 20px;
}
.news__list-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}

.news__text {
  padding: 0px;
  background: transparent;
}
.news__text .page__title {
  padding: 0px 20px;
}
.news__text-title {
  margin-bottom: 20px;
}
.news__text-title h2 {
  font-size: 28px;
  font-weight: 600;
}
.news__text-date {
  font-size: 10px;
}
.news__text-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.news__text-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.news__text-inner p {
  margin-bottom: 20px;
}

.contact {
  padding: 0px;
  background: transparent;
}
.contact .page__title {
  padding: 0px 20px;
}
.contact__inner {
  display: grid;
  grid-template-columns: 380px auto;
  gap: 20px;
}
.contact__map {
  border-radius: 20px;
  overflow: hidden;
}
.contact__map > * {
  min-height: 100%;
}
@media (hover: hover) {
  .contact__map {
    transition: 0.15s;
  }
  .contact__map:not(:hover) {
    filter: grayscale(1) brightness(1.1);
  }
}
.contact__content {
  padding: 30px 20px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.contact__item p {
  font-size: 16px;
}
.contact__item img {
  max-width: 220px;
}
.contact__item .btn__prem, .contact__item .btn__red, .contact__item .btn__item {
  width: 100%;
}
.contact__phone {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.catalog__like .catalog__item-img-like svg path {
  fill: #10a443;
}

@media (max-width: 1180px) {
  .container {
    max-width: 980px;
  }
  .page__title {
    font-size: 26px;
  }
  .filter__check {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .filter__prem-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .filter__prem-item {
    max-width: 100%;
  }
  .filter__prem-item .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
  }
  .filter__prem-item:last-child {
    border-right: 1px solid #ddd;
  }
  .filter__prem-box {
    width: 75%;
  }
  .filter__list-inner {
    gap: 10px;
    grid-template-columns: repeat(6, 1fr);
  }
  .catalog__item-name {
    font-size: 16px;
  }
  .catalog__item-des {
    font-size: 12px;
  }
  .catalog__item-present {
    font-size: 12px;
  }
  .catalog__item-price-inner span {
    font-size: 14px;
  }
  .collect__inner {
    grid-template-columns: repeat(6, 1fr);
  }
  .feedback__content p {
    font-size: 16px;
  }
  .feedback__content {
    max-width: 700px;
  }
  .footer__list ul {
    gap: 20px;
  }
  .footer__phone {
    font-size: 20px;
  }
  .footer__car-list {
    grid-template-columns: repeat(6, 1fr);
  }
  .model__price-item-new {
    font-size: 26px;
  }
  .model__price-item-credit {
    font-size: 18px;
  }
  .model__price-item-credit span {
    font-size: 20px;
  }
  .model__btn .btn__prem,
  .model__btn .btn__item {
    font-size: 16px;
  }
  .model__form-item .btn__prem {
    font-size: 16px;
  }
  .model__char-inner {
    grid-template-columns: repeat(4, 1fr);
  }
  .credit__info-price-new div {
    font-size: 25px;
  }
  .credit__info-price-credit div {
    font-size: 16px;
  }
  .credit__info-price-credit div span {
    font-size: 20px;
  }
  .credit__info-item .btn__prem {
    font-size: 14px;
  }
  .credit__des-item::before {
    min-width: 15px;
  }
}
@media (max-width: 980px) {
  .container {
    max-width: 771px;
  }
  .header__burger {
    width: 30px;
    height: 20px;
    position: relative;
  }
  .header__burger-line {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 2px;
    background-color: var(--main-prem);
    transition: all 0.4s ease;
  }
  .header__burger.active .header__burger-line:nth-child(1) {
    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) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .header__burger-line:nth-child(1) {
    top: 0;
  }
  .header__burger-line:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
  }
  .header__burger-line:nth-child(3) {
    bottom: 0;
  }
  .main {
    margin-top: 120px;
  }
  .filter__prem {
    flex-wrap: wrap;
  }
  .filter__prem-box {
    width: 100%;
  }
  .filter__prem > button {
    width: 100%;
    border-radius: 20px;
  }
  .filter__list-inner {
    grid-template-columns: repeat(4, 1fr);
  }
  .intro h2 span {
    font-size: 32px;
  }
  .intro h2 {
    font-size: 20px;
  }
  .intro__list {
    gap: 15px;
    flex-wrap: wrap;
  }
  .intro__des span {
    font-size: 22px;
  }
  .catalog__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer {
    grid-template-columns: repeat(1, 1fr);
  }
  .collect__inner {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer__inner {
    flex-direction: column;
    gap: 20px;
  }
  .footer__contact {
    margin-top: 0;
  }
  .model__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .model__img {
    display: none;
  }
  .model__img-mobil {
    display: block;
  }
  .model__slider-two {
    margin-bottom: 10px;
  }
  .header__list ul {
    flex-direction: column;
    align-items: start;
  }
  .header__contact-inner {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
  .header__contact-item {
    color: #000;
  }
  .credit__inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .credit__select-item {
    max-width: 370px;
  }
  .credit__des {
    grid-template-columns: repeat(1, 1fr);
  }
  .order__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 20px;
  }
  .order__item:nth-child(3)::after {
    display: none;
  }
  .news__list-inner {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 771px) {
  .container {
    max-width: 540px;
  }
  .header__logo img {
    max-width: 180px;
  }
  section {
    padding: 10px 15px;
  }
  .page__title {
    font-size: 20px;
  }
  .filter__prem-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .filter__prem-item {
    border-bottom: 1px solid #ddd;
  }
  .filter__prem-row-two .filter__prem-item {
    max-width: 100%;
  }
  .filter__check-item {
    width: 100%;
  }
  .filter__list-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro h2 span {
    font-size: 22px;
  }
  .intro__list li {
    font-size: 14px;
  }
  .intro__des span {
    font-size: 20px;
  }
  .catalog__inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .catalog__item-img {
    flex-direction: column;
  }
  .catalog__item-img {
    height: 115px;
  }
  .offer__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .collect__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .feedback__content h2 {
    font-size: 20px;
  }
  .feedback__content p {
    font-size: 15px;
  }
  .feedback__form-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .feedback__form-row .btn__prem {
    width: 100%;
  }
  .feedback__img {
    display: none;
  }
  .footer__nav {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer__car-list {
    display: none;
  }
  .footer__content {
    margin-bottom: 0;
  }
  .copyright p {
    font-size: 10px;
  }
  .catalog__pag a {
    font-size: 16px;
  }
  .model .page__title {
    padding: 0px;
  }
  .model__slide {
    height: 220px;
  }
  .model__price > div p, .popup__car-prices .model__price-item-credit > div > div p, .popup__car-prices .model__price-item-new > div > div p {
    font-size: 10px;
  }
  .model__price-item-new {
    font-size: 20px;
  }
  .model__price-item-credit span {
    font-size: 18px;
  }
  .model__price > div, .popup__car-prices .model__price-item-credit > div > div, .popup__car-prices .model__price-item-new > div > div {
    height: 45px;
  }
  .model__ins {
    font-size: 14px;
  }
  .model__char-inner {
    gap: 10px;
  }
  .model__char-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .model__btn {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .model__offer ul {
    padding-left: 0px;
  }
  .model__form-inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .credit__img {
    display: none;
  }
  .credit__img-mobil {
    display: block;
  }
  .credit__content {
    grid-template-columns: repeat(1, 1fr);
  }
  .credit__img {
    height: auto;
  }
  .credit__offer {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
  .order__inner {
    grid-template-columns: repeat(1, 1fr);
    margin-left: 50px;
    margin-right: 50px;
  }
  .order__item::after {
    display: none;
  }
  .news__list-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.main-form {
  background: transparent;
}
.main-form .page__title {
  text-align: center;
}
.main-form__inner {
  display: grid;
  grid-gap: 8px;
}
.main-form__col {
  display: grid;
  grid-gap: 40px;
}
.main-form__head {
  text-align: center;
  margin-bottom: 40px;
}
.main-form__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.main-form__title span {
  color: var(--main-red);
  white-space: nowrap;
}
.main-form__subtitle {
  font-size: 14px;
  color: #83898f;
}
.main-form__step-form-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}
.main-form__step-form-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
* + .main-form__step-form-name {
  margin-top: 24px;
}
.main-form__step-form-items {
  border-radius: 8px;
  display: grid;
  grid-gap: 10px;
}
.main-form__step-form-items > * {
  min-width: 0;
}
.main-form__total {
  margin-top: 40px;
}
.main-form__regs {
  display: grid;
  grid-gap: 40px;
}
.main-form__regs-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .main-form__step-form-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-form__step-form-items .btn__prem, .main-form__step-form-items .btn__red, .main-form__step-form-items .btn__item,
  .main-form__step-form-items .main-form-checkbox, .main-form__step-form-items > *:nth-child(odd):last-child {
    grid-column: 1/-1;
  }
  .main-form__regs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  .main-form__steps {
    display: none;
  }
  .main-form__col {
    display: contents;
  }
  .main-form__steps {
    order: 1;
  }
  .main-form__step-1 {
    order: 2;
  }
  .main-form__car {
    order: 3;
  }
  .main-form__step-2 {
    order: 4;
  }
  .main-form__step-3 {
    order: 5;
  }
  .main-form__regs {
    order: 6;
  }
  .main-form__steps, .main-form__step-1, .main-form__step-2, .main-form__step-3, .main-form__car, .main-form__regs {
    background: #fff;
    padding: 20px 20px;
    border-radius: 16px;
  }
}
@media (min-width: 981px) {
  .main-form__steps {
    counter-reset: step 0;
    position: relative;
    z-index: 0;
    display: flex;
  }
  .main-form__steps::before {
    content: "";
    position: absolute;
    z-index: -1;
    font-size: 26px;
    top: 0.9230769231em;
    left: 16.6666666667%;
    right: 16.6666666667%;
    border-top: 2px dashed rgba(0, 83, 119, 0.12);
    height: 10px;
  }
  .main-form__steps > * {
    counter-increment: step 1;
    flex: 1;
    display: grid;
    justify-content: center;
    justify-items: center;
    text-align: center;
  }
  .main-form__steps > *::before {
    content: "";
    grid-column: 1/2;
    grid-row: 1/2;
    font-size: 26px;
    width: 1.8461538462em;
    height: 1.8461538462em;
    border-radius: 50%;
    border: 1px dashed rgba(0, 83, 119, 0.12);
    background: #fff;
    box-shadow: 0 0 0 12px #fff;
  }
  .main-form__steps > *::after {
    content: counter(step);
    font-size: 26px;
    font-weight: 600;
    width: 1.6153846154em;
    height: 1.6153846154em;
    line-height: 1.6153846154;
    background: rgba(0, 83, 119, 0.12);
    border-radius: 50%;
    margin: 3px;
    margin-bottom: 11px;
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .main-form__inner {
    grid-template-columns: 2fr 3fr;
    grid-gap: 24px;
    align-items: start;
  }
  .main-form__inner > * {
    background: #fff;
    padding: 20px 20px;
    border-radius: 16px;
  }
}

.main-form-total {
  background-color: rgba(0, 83, 119, 0.05);
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
}
.main-form-total > * {
  flex-grow: 1;
  display: grid;
  justify-content: center;
}
.main-form-total > * + * {
  border-left: 2px solid rgba(0, 83, 119, 0.12);
  margin-left: 10px;
  padding-left: 10px;
}
.main-form-total__name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.main-form-total__value {
  font-size: 20px;
  font-weight: 600;
  color: var(--main-prem);
}

.main-form-car__head {
  margin-bottom: 22px;
}
.main-form-car__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.main-form-car__price {
  font-size: 20px;
  font-weight: 600;
  color: var(--main-red);
}
.main-form-car__inner {
  display: grid;
  grid-gap: 24px;
}
.main-form-car__image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .main-form-car__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*
.popup {
	padding: 4px;
	border-radius: 16px;
	background: #f4f5f6ff;
}
.popup__box {
	border-radius: 12px;
	background: #fff;
	padding: 30px 20px;
}
.popup__feedback-inner {
	position: relative;
}

.popup__feedback-content {
	position: relative;
	z-index: 1;
	width: 260px;
}

.popup__feedback-img {
	position: absolute;

	z-index: 0;
	right: -20px;
	bottom: -30px;
	width: 270px;
}

.popup__feedback-content h2 {
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.popup__feedback-content p {
	color: #828282;
	font-size: 18px;
	margin-bottom: 10px;
}

@media (max-width: 771px) {
	.popup__feedback-img {
		display: none;
	}
	.popup__feedback-content {
		width: 100%;
	}
}

.popup__form {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

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

.popup__car-inner > h2 {
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 18px;
}

.popup__car-inner > h2 span {
	color: #45ab83;
	font-weight: 700;
}

.popup__car-inner > p {
	font-size: 20px;
	margin-bottom: 10px;
}

.popup__car-row {
	display: grid;
	grid-template-columns: 250px auto;
	gap: 20px;
}

.popup__car-img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: center;
	border-radius: 20px;
}

.popup__car-content .model__price-item {
	margin-bottom: 10px;
}

.popup__car-content .model__price-item p {
	font-size: 14px;
	font-weight: 400;
	color: #828282;
}

.popup__car-content .model__price-item-new {
	font-size: 34px;
	font-weight: 700;
}

.popup__car-content .model__price-item-credit > div {
	color: #828282;
	font-size: 20px;
}

.popup__car-content .model__price-item-credit > div span {
	font-size: 24px;
}

.popup__thx-inner h2 {
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}
.popup__thx-inner h3 {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 400;
	color: #828282;
}
.popup__thx-inner p {
	color: #828282;
}
*/
.popup__feedback, .popup__thx, .popup__car {
  width: 684px !important;
  padding: 4px;
  border-radius: 16px;
  background-color: #f0f1f2;
}
.popup__feedback-inner, .popup__car-row {
  display: flex;
  gap: 4px;
}
.popup__feedback-content, .popup__thx-inner, .popup__car-content {
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  width: 360px;
  max-width: 100%;
  flex-shrink: 0;
}
.popup__feedback-content > h2, .popup__thx-inner > h2, .popup__car-content > h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--main-prem);
}
.popup__feedback-content > h2 span, .popup__thx-inner > h2 span, .popup__car-content > h2 span {
  color: var(--main-green);
}
.popup__feedback-content > h3, .popup__thx-inner > h3, .popup__car-content > h3 {
  font-size: 18px;
  font-weight: 400;
  color: #828282;
  margin-bottom: 20px;
}
.popup__feedback-content > p, .popup__thx-inner > p, .popup__car-content > p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #83898f;
}
.popup__form {
  display: grid;
  grid-gap: 16px;
}
.popup__form-item > * {
  width: 100%;
}
.popup__feedback-img, .popup__car-img {
  min-width: 0;
  flex-shrink: 1;
  border-radius: 12px;
  background: linear-gradient(225.64deg, #ffffff 1.59%, rgba(153, 153, 153, 0.2) 100%);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media (max-width: 980px) {
  .popup__feedback, .popup__thx, .popup__car {
    width: auto !important;
  }
  .popup__feedback-content h2, .popup__thx-inner h2, .popup__car-content h2 {
    margin-bottom: 12px;
  }
  .popup__feedback-content > p, .popup__thx-inner > p, .popup__car-content > p {
    margin-bottom: 12px;
  }
  .popup__feedback-img, .popup__car-img {
    display: none;
  }
}

.popup__car {
  width: 1052px !important;
}
.popup__car-content {
  width: 420px;
}
.popup__car-prices {
  order: 2;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.popup__car-prices .model__price-item-new > div span {
  font-size: inherit;
}
.popup__car-prices .model__price-item-credit > div span {
  font-size: inherit;
}
.popup__form {
  order: 3;
}
.popup__car-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 980px) {
  .popup__car {
    width: auto !important;
  }
  .popup__car .popup__box {
    padding: 24px;
    border-radius: 12px;
    background: #fff;
    width: 360px;
    max-width: 100%;
    flex-shrink: 0;
  }
  .popup__car-row {
    flex-direction: column;
  }
  .popup__car-content {
    width: 360px;
    display: contents;
  }
  .popup__car-prices {
    margin-bottom: 12px;
  }
  .popup__car-prices .model__price-item-new > div {
    font-size: 24px !important;
  }
  .popup__car-prices .model__price-item-credit > div {
    font-size: 16px !important;
  }
  .popup__car-img {
    display: block;
    margin-bottom: 12px;
  }
}

.popup__thx {
  width: 304px !important;
}
.popup__thx-inner > h2 {
  text-align: center;
  margin-bottom: 15px;
}
.popup__thx-inner > h3 {
  text-align: center;
}
.popup__thx-inner > p {
  margin-bottom: 0 !important;
}