@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --main-color: #717e91;
  --secondary-color: #1d1f31;
  /* --green-main: #7ef277; */
  /* --green-dark: #40b48b; */
  --green-dark: #3FC1E8;
  --green-main: #5DDCD8;

  --background-label: #e1e1e3;
  /* --background-main: #ecf7f3; */
  --background-main: #EBFAFF;
  --background-secondary: #eff1f3;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  /* height: 100vh; */
  min-height: 100vh;
  height: 100%;
  background: #fff;
  color: var(--secondary-color);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body.open {
  overflow: hidden;
}

main {
  position: relative;
  flex: 1 0 auto;
}

main::before,
main::after {
  content: "";
  position: absolute;
  width: 454px;
  height: 911px;
  z-index: -1;
  pointer-events: none;
}

main::before {
  top: 10%;
  left: 0;
  background: url(/static/svg/body1.svg) no-repeat center;
  background-size: contain;
}

main::after {
  bottom: 0;
  right: 0;
  background: url(/static/svg/body2.svg) no-repeat center;
  background-size: contain;
  width: 760px;
  height: 844px;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 600;
}

fieldset {
  border: none;
}

select,
button,
input,
textarea {
  font-family: "Inter", sans-serif;
  color: var(--main-color);
}

p,
li,
span,
label,
input,
textarea {
  font-weight: 400;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
}

button {
  border: none;
  cursor: pointer;
  background: inherit;
}

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

ul,
ol {
  list-style: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: inherit;
  cursor: pointer;
}

.select__arrow {
  position: absolute;
  top: 25px;
  right: 20px;
  background: url(/static/svg/arrow.svg) no-repeat center;
  width: 14px;
  height: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}

.select__arrow.open {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

option {
  text-transform: uppercase;
}

table {
  border-collapse: collapse;
}

select:disabled,
input:disabled,
button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.is-invalid {
  border: 2px solid #cc3d3d !important;
  color: #cc3d3d !important;
}

.is-invalid::-webkit-input-placeholder,
.is-invalid:placeholder-shown,
.is-invalid:focus {
  color: #cc3d3d !important;
}

input::-webkit-input-placeholder {
  color: var(--secondary-color);
}

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder,
input::placeholder {
  color: var(--secondary-color);
}

::-webkit-input-placeholder,
:-moz-placeholder,
/* Firefox 18- */
::-moz-placeholder,
/* Firefox 19+ */
:-ms-input-placeholder,
/* IE 10+ */
::-ms-input-placeholder {
  /* Edge */
  color: var(--secondary-color);
}

:-moz-placeholder-shown {
  /* Standard one last! */
  color: var(--secondary-color);
  padding: 0 10px;
  padding-left: 0;
}

:-ms-input-placeholder {
  /* Standard one last! */
  color: var(--secondary-color);
  padding: 0 10px;
  padding-left: 0;
}

:placeholder-shown {
  /* Standard one last! */
  color: var(--secondary-color);
  padding: 0 10px;
  padding-left: 0;
}

input:focus,
textarea:focus {
  color: var(--secondary-color);
}

input[type="checkbox"]:focus {
  padding: 0;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder,
textarea:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}

summary:focus {
  outline: none;
}

textarea {
  resize: none;
}

textarea:focus {
  padding: 10px 20px;
}

/* ---------------- Заголовок ----------------- */

.top__title {
  font-size: 26px;
  line-height: 32px;
}

/* ---------------- Якорь ----------------- */

#finance::before {
  display: block;
  content: "";
  height: 90px;
  margin: -90px 0 0;
}

@media screen and (max-width: 767px) {
  #finance::before {
    display: block;
    content: "";
    height: 70px;
    margin: -70px 0 0;
  }
}

/* ---------------- checkbox ----------------- */

.form__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0;
}

.form__check-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form__check-label p,
.form__check-label a {
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
}

.form__check-label p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.radio__hidden {
  display: none;
}

.radio__hidden:not(:checked)+.radio__img::before {
  background: none;
}

.radio__img {
  position: relative;
  min-width: 16px;
  height: 16px;
  border: 2px solid var(--green-dark);
  border-radius: 2px;
  margin-right: 5px;
  cursor: pointer;
}

.radio__img::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: url(/static/svg/done.svg) no-repeat center;
  background-size: cover;
}

.slider__form .radio__img::before {
  background: url(/static/svg/done2.svg) no-repeat center;
  background-size: cover;
}

/* ----------- end of checkbox ----------------- */

.dataLayer,
.errorPage {
  height: calc(100vh - 200px);
  text-align: center;
}

.lazy-preloader {
  width: 140px !important;
  height: 140px !important;
  text-align: center !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  margin: 0 auto;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 375px) {
  .container {
    padding: 0 10px;
  }
}

/* ---------- bread crumbs ---------- */

.bread__crumbs {
  padding: 10px 0;
}

.bread__crumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow-x: scroll;
}

@media (max-width: 767px) {
  .bread__crumbs-list {
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
  }
}

.bread__crumbs-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

.bread__crumbs-item:not(:first-child) {
  margin-left: 5px;
}

.bread__crumbs-item:not(:last-child)::after {
  content: "/";
  padding-left: 5px;
}

.bread__crumbs-item a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.bread__crumbs-item:last-child a {
  color: var(--green-dark);
}

.bread__crumbs-list::-webkit-scrollbar {
  width: 0;
}

.bread-crumbs {
  padding-top: 100px;
  width: 100%;
}

.bread-crumbs-container {
  max-width: 1135px;
  margin: 0 auto;
  position: relative;
  z-index: 8;
}

.bread-crumbs-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow-x: scroll;
  padding-left: 15px;
}

.bread-crumbs-items::-webkit-scrollbar {
  width: 0;
}

.bread-crumbs-items li {
  cursor: pointer;
  position: relative;
  font-size: 14px;
  margin-right: 20px;
}

.bread-crumbs-items li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: -12px;
  top: 7px;
  background: var(--secondary-color);
}

.bread-crumbs-items li a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.bread-crumbs-items li:last-child a {
  color: var(--yellow-color);
}

/* ---------- end of bread crumbs ---------- */

/* ---------- car container ---------- */

.car__container {
  max-width: 1198px;
  margin: 0 auto;
  padding: 0 20px;
}

.car__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 26px;
  padding-bottom: 20px;
}

.card {
  position: relative;
  width: 270px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 13.5px rgb(41 80 66 / 20%);
  box-shadow: 0px 0px 13.5px rgb(41 80 66 / 20%);
  border-radius: 3px;
}

.card__special-top {
  padding: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card__special-top:hover .card__special-price {
  color: var(--green-main);
  padding-left: 10px;
}

.card__special-price::before {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card__special-top:hover .card__special-price::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  background: url(/static/svg/price.svg) no-repeat center;
  width: 15px;
  height: 15px;
  opacity: 1;
  visibility: visible;
}

.card__special-name,
.card__special-mod,
.card__special .card__special-config {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card__special-name {
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
}

.card__special-mod,
.card__special-config {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--secondary-color);
  text-align: center;
  margin: 5px 0;
}

.card__row img {
  width: 20px;
  height: 25px;
  margin-left: 10px;
}

.card__price-main {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
}

.card__price-credit {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: var(--secondary-color);
  margin: 10px 0;
}

.card__special-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.card__special-img img {
  min-height: 203px;
  object-fit: cover;
}

.card__special-price {
  position: relative;
  font-weight: 800;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card__special-bottom {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; */
  padding: 10px;
  padding-top: 0;
}

.card__special-payment {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.card__btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  border-radius: 4px;
  background: var(--horizontal-grad, linear-gradient(261deg, #33B7EF 13.79%, #6AE8D1 83.98%));
  box-shadow: 0px 4px 20px 6px rgba(127, 127, 127, 0.15);
  width: 100%;
  height: 37px;
  margin-top: 15px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card__btn:hover {
  background: var(--horizontal-grad, linear-gradient(-261deg, #33B7EF 13.79%, #6AE8D1 83.98%));
}

/* --------------- card model --------------- */

.card__main {
  overflow: hidden;
  padding: 0;
}

.card__main-top {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card__main-top:hover .card__price-main {
  color: var(--green-dark);
  padding-left: 10px;
}

.card__price-main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  color: var(--secondary-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card__price-main::before {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card__main-top:hover .card__price-main::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  background: url(/static/svg/price.svg) no-repeat center;
  width: 15px;
  height: 15px;
  opacity: 1;
  visibility: visible;
}

.card__main .card__special-name {
  text-align: left;
  font-size: 16px;
  color: var(--secondary-color);
}

.card__main .card__special-config {
  font-weight: 600;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.card__img {
  width: 100%;
  height: 140px;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.card__price-del,
.card__sale {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  margin: 15px 0;
}

.card__sale .sale-date {
  font-weight: 600;
  color: var(--green-dark);
}

.card__special-config span {
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  background: #ecf7f3;
  border-radius: 2px;
  padding: 2px;
}

.btn-more {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #ecf7f3;
  background: var(--green-dark);
  padding: 12px 0;
  max-width: 160px;
  width: 100%;
  margin: 20px auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-more:hover {
  background: var(--green-main);
  color: var(--secondary-color);
}

@media (max-width: 1199px) {
  .car__container {
    max-width: 902px;
  }
}

@media (max-width: 909px) {
  .car__container {
    max-width: 606px;
  }
}

@media (max-width: 605px) {
  .car__row {
    gap: 15px 9px;
  }

  .card {
    max-width: 49%;
    width: 100%;
    height: auto;
  }

  .card__special-img img {
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 515px) {
  .card {
    max-width: 100%;
  }

  .card__special {
    height: auto;
  }

  .card__special-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

@media (max-width: 340px) {
  .car__container {
    padding: 0 10px;
  }
}

@media (max-width: 320px) {
  .card__special-img img {
    margin: initial;
    margin-right: auto;
  }
}

/* ---------- end of car container ---------- */

.main__title {
  font-size: 24px;
  line-height: 24px;
  margin: 30px 0 20px;
  color: var(--secondary-color);
}

/* @media screen and (max-width: 580px) {
  .main__title {
    font-size: 18px;
    line-height: 18px;
    margin-top: 10px;
  }
} */

/* ---------- filter form ---------- */

.filter__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: var(--secondary-color);
  margin: 40px 0;
  padding-left: 20px;
}

.filter__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 20px;
}

.filter {
  max-width: 410px;
  width: 100%;
  height: 100%;
  gap: 10px;
}

.filter__input-block {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.inputs__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
}

.inputs__label :-moz-placeholder-shown {
  padding-left: 0;
}

.inputs__label :-ms-input-placeholder {
  padding-left: 0;
}

.inputs__label :placeholder-shown {
  padding-left: 0;
}

.inputs__label .label::before {
  content: none;
}

.label {
  position: relative;
  width: 200px;
  height: 60px;
  background: var(--background-label);
  padding-top: 10px;
  padding-left: 20px;
}

/* .label::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 20px;
  background: url(/static/svg/arrow.svg) no-repeat center;
  width: 14px;
  height: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
} */

.form__select,
.inputs__row input {
  width: 100%;
  height: 33px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--secondary-color);
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 20px;
}

.form__btn {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  padding: 18px 50px;
  background: var(--green-main);
  margin-top: 10px;
  width: 100%;
}

@media (max-width: 1199px) {

  .filter__title,
  .filter__row {
    padding: 0;
  }
}

@media (max-width: 1023px) {
  .filter {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .label {
    width: 150px;
    height: 45px;
    padding-top: 5px;
    padding-left: 10px;
  }

  .label::before {
    right: 10px;
  }

  .form__select,
  .inputs__row input {
    font-size: 14px;
    line-height: 14px;
  }

  .filter .form__select,
  .filter .inputs__row input {
    height: auto;
  }

  .form__btn {
    font-size: 14px;
    line-height: 16px;
    padding: 14px 0;
  }
}

/* ---------- end of filter form ---------- */

/* ---------- brand list ---------- */

.brand__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr 0 1fr 0 1fr 0 1fr 0 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 0;
  height: 100%;
}

.brand__item {
  position: relative;
  width: 100%;
  height: 40px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand__item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: inherit;
  background: var(--main-color);
}

.brand__item a {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  width: 100%;
}

@media (max-width: 1023px) {
  .brand__list {
    gap: 32px 0;
  }

  .brand__item {
    height: 30px;
  }

  .brand__item a {
    font-size: 12px;
  }
}

/* ---------- end of brand list ---------- */

/* ---------- main form ---------- */

.main__form {
  display: block;
  float: left;
  position: sticky;
  top: 180px;
  left: 0;
  width: 380px;
  max-height: 540px;
  height: 100%;
  padding: 30px;
}

.form__title {
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 20px;
}

.main__form-input {
  width: 100%;
  height: 35px;
  background: #fff;
  padding-left: 20px;
  margin-top: 15px;
}

.main__form-btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  background: var(--green-main);
  border-radius: 3px;
  padding: 12px 0;
  width: 100%;
}

/* ---------- end of main form ---------- */

/* --------------- header ------------------ */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #fff;
}

.header.active {
  -webkit-box-shadow: 0 6px 6px rgb(0 0 0 / 20%);
  box-shadow: 0 6px 6px rgb(0 0 0 / 20%);
}

.header__nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
}

.logo {
  min-width: 123px;
  width: 123px;
  height: 100%;
}

.header__nav-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.nav-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.nav-item {
  cursor: pointer;
  position: relative;
  margin-left: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.nav-item:not(:first-child):hover .nav-item__link {
  color: var(--green-main);
}

.nav-item:hover .nav-item__group-list {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: visible;
}

.nav-item__group-list {
  position: absolute;
  top: 28px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 1px 11px 0 #414e5b33;
  box-shadow: 0 1px 11px 0 #414e5b33;
  padding: 4px;
  border-radius: 2px;
}

.nav-item__group-item {
  padding: 3px 0;
}

.nav-item__group-list .nav-item__group-item:hover {
  background: var(--green-main);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-item__link {
  position: relative;
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 4px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__first:hover svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nav__first svg {
  margin-left: 5px;
  width: 14px;
  height: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__list-right {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav__list-right .nav-item__link {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.socials img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.socials__mobile {
  display: none;
}

.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.header__phone img {
  width: 18px;
  height: 26px;
  object-fit: contain;
}

.header__phone p {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--green-dark);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.header__call-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
  background: var(--green-dark);
  width: 224px;
  height: 33px;
  padding: 12px 20px;
  font-weight: 600;
  color: #FFF;
}

/* --------------- menu burger ------------------ */

.car__menu,
.brand__list-mob,
.burger {
  display: none;
}

@media screen and (max-width: 767px) {
  .car__menu {
    display: block;
    height: 30px;
    position: absolute;
    top: 59%;
    right: 100px;
  }

  .car__menu svg {
    width: 30px;
    height: 30px;
  }

  .brand__list-mob {
    display: block;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    position: absolute;
    width: 100%;
    height: 88vh;
    top: 126px;
    left: -100%;
    background: #000000de;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    overflow: auto;
    -webkit-transition: visibility 0.5s ease, opacity 1s ease;
    -o-transition: visibility 0.5s ease, opacity 1s ease;
    transition: visibility 0.5s ease, opacity 1s ease;
    padding: 15px;
  }

  .brand__list-mob.open {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .brand__item-mob {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 25px;
    background: transparent;
    text-align: center;
  }

  .header__nav-content {
    height: 80px;
  }

  .nav-list {
    display: none;
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: fixed;
    left: 24%;
    top: 100px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    opacity: 1;
  }

  .nav__list-right {
    left: initial;
    right: 24%;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .nav-item {
    text-align: center;
    margin-top: 20px;
    margin-left: 0;
    -webkit-transform: translateX(1000px);
    -ms-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .nav__list-right .nav-item:nth-child(1) {
    margin: 0;
  }

  .nav-item__link {
    margin: 20px 0;
  }

  .nav__list-right .nav-item__link {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
  }

  .socials {
    position: fixed;
    top: 242px;
    right: 24%;
    gap: 20px;
  }

  .burger {
    width: 40px;
    height: 25px;
    position: absolute;
    top: 33%;
    right: 30px;
    cursor: pointer;
    display: inline-block;
    z-index: 100;
  }

  .burger span {
    background: var(--main-color);
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: all 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 1;
  }

  .burger span:nth-child(1) {
    top: 0px;
    left: initial;
    right: 0;
  }

  .burger span:nth-child(2) {
    top: 10px;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }

  .burger span:nth-child(3) {
    top: 20px;
    left: initial;
    right: 0;
  }

  .burger.open span {
    -webkit-transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .burger.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    width: 100%;
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
    /* left: -100px; */
  }

  .burger.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    width: 100%;
  }

  .header__nav {
    position: fixed;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100%;
    background: #000000de;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    -webkit-transition: visibility 0.5s ease, opacity 1s ease;
    -o-transition: visibility 0.5s ease, opacity 1s ease;
    transition: visibility 0.5s ease, opacity 1s ease;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-item:nth-child(n + 9) {
    display: block;
  }

  .open .nav-item {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  .open .nav-item:nth-child(1) {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }

  .open .nav-item:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .open .nav-item:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .open .nav-item:nth-child(4) {
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }

  .open .nav-item:nth-child(5) {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }

  .open .nav-item:nth-child(6) {
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  .open .nav-item:nth-child(7) {
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }

  .open .nav-item:nth-child(8) {
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }

  .open .nav-item:nth-child(9) {
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }

  .nav-item:nth-child(1):hover {
    margin-bottom: 110px;
  }

  .nav-item a,
  .nav-item__link {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
  }

  .nav-item a:hover {
    opacity: 0.6;
  }

  .nav__first svg path {
    stroke: #fff;
  }

  .nav-item:hover .nav-item__group-list {
    background: transparent;
    width: 100%;
    text-align: left;
    right: -4px;
    border-bottom: 2px solid var(--secondary-color);
    border-radius: 0;
    padding: 4px 0;
    padding-left: 0;
  }

  .nav-item__group-item {
    padding-left: 0;
  }

  .nav-item__group-list .nav-item__link {
    padding: 0;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

/* ---------- end of header & burger menu ---------- */

/* ---------- footer ---------- */

.footer {
  position: relative;
  padding-top: 30px;
  color: #fff;
  background: var(--secondary-color);
  flex: 0 0 auto;
}

.footer__container {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.footer::before,
.footer__container::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 100px;
  z-index: 1;
  pointer-events: none;
}

.footer::before {
  top: -32px;
  left: -32px;
  background: url(/static/svg/footer-icon.svg) no-repeat center;
  background-size: contain;
  width: 115px;
  height: 80px;
}

.footer__container::after {
  bottom: -50px;
  right: -50px;
  background: url(/static/svg/credit__bottom2.svg) no-repeat center;
  background-size: contain;
}

.footer__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.footer__info-item {
  min-width: 220px;
  width: 220px;
  margin: 10px;
}

.footer__info-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__info-item a img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer__info-item a p {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: var(--green-dark);
}

.footer__info-item:nth-child(2) a p {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.footer__info-item a p b {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: block;
}

.footer__nav {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 310px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.footer__nav-item {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  margin: 10px;
}

.footer__info {
  width: 330px;
}

.footer__info p,
.footer__info-bottom a {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #dcdfe2;
  margin-bottom: 10px;
}

.footer__info-bottom {
  position: absolute;
  bottom: 0;
  left: 20px;
  max-width: 440px;
  width: 100%;
}

.footer__info-bottom a {
  text-decoration: underline;
}

.map {
  position: relative;
  height: 430px;
}

.map::before {
  display: block;
  content: "";
  background-color: #ffffff00;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: grayscale(1);
  backdrop-filter: grayscale(1);
  pointer-events: none;
}

.mobile__call {
  display: none;
}

.success h1 {
  font-size: 24px;
  line-height: 26px;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.success p {
  line-height: 18px;
}

.error {
  position: relative;
  height: 640px;
}

.error img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.error h1,
.error p {
  position: absolute;
}

.error h1 {
  font-weight: 900;
  font-size: 100px;
  line-height: 80px;
  top: 10%;
  left: 10%;
  color: var(--background-main);
}

.error p {
  font-weight: 700;
  top: 23%;
  left: 10%;
  font-size: 30px;
  line-height: 40px;
}

.error a {
  position: absolute;
  bottom: 6%;
  right: 10%;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: var(--background-main);
  background: var(--green-dark);
  border-radius: 3px;
  padding: 17px 0;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 250px;
}

.error a:hover,
.error a:focus {
  background: var(--green-main);
}

.politics {
  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-bottom: 20px;
}

.politics h1,
.politics b {
  color: var(--green-dark);
}

.politics a {
  font-weight: 700;
  display: inline-block;
  color: var(--green-dark);
}

/* ---------- modal ---------- */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  /* background: rgb(0 0 0 / 50%); */
  background: rgba(29, 31, 49, 0.8);
  color: var(--secondary-color);
}

.modal.show {
  z-index: 10000;
  display: block !important;
}

.modal__dialog {
  position: relative;
  width: auto;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 500px;
  min-height: calc(100% - 3.5rem);
  margin: 1.75rem auto;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal__content {
  position: relative;
  width: 100%;
  pointer-events: auto;
  background: #fff;
  border-radius: 5px;
  padding: 15px;
  padding-top: 30px;
  margin: 0 10px;
}

.modal__title {
  font-weight: 700;
  /* font-size: 28px;
  line-height: 38px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 10px auto; */
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

.modal-dataLayer--name {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  margin-top: 15px;
}

.modal__foto {
  width: 100%;
  margin: 15px 0;
  border-radius: 5px;
}

.modal__text {
  font-weight: 600;
  text-align: center;
}

.modal__text .sale-date,
.modal-dataLayer--price {
  font-weight: 600;
  color: var(--green-dark);
}

.modal__content input {
  max-width: 100%;
  border: 0.5px solid var(--main-color);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
}

.modal__close::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 20px;
  height: 1px;
  border-radius: 0.25rem;
  background: black;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal__close::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 20px;
  height: 1px;
  border-radius: 0.25rem;
  background: black;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal .main__form-btn {
  margin: 0 auto;
  margin-top: 20px;
  width: 100%;
  background: var(--green-dark);
}

/* ----------------- credit bottom ----------------- */

.credit__bottom {
  position: relative;
  background: url(/static/bottom__bg.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  margin-top: 50px;
  padding: 100px 0;
}

.credit__bottom::before,
.credit__bottom::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 100px;
  z-index: 1;
  pointer-events: none;
}

.credit__bottom::before {
  top: -50px;
  left: 0;
  background: url(/static/svg/credit__bottom.svg) no-repeat center;
  background-size: contain;
}

.credit__bottom::after {
  bottom: -50px;
  right: 0;
  background: url(/static/svg/credit__bottom2.svg) no-repeat center;
  background-size: contain;
}

.credit__bottom-procent {
  position: absolute;
  top: 100px;
  left: 46%;
  font-weight: 900;
  font-size: 320px;
  line-height: 280px;
  color: rgb(220 240 255 / 50%);
  pointer-events: none;
}

.credit__bottom-text {
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  color: #ECF7F3;
}

.credit__bottom-title {
  position: relative;
  font-weight: 800;
  font-size: 46px;
  line-height: 54px;
  color: #33B7EF;
  z-index: 1;
}

.credit__bottom-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.credit__bottom-content::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 275px;
  background: url(/static/girl.png) no-repeat center;
  background-size: contain;
  width: 330px;
  height: 450px;
  z-index: -1;
  pointer-events: none;
}

.credit__bottom-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 15px;
  max-width: 590px;
  width: 100%;
  border: 3px solid #fff;
  border-radius: 36px;
  margin-top: 45px;
  padding: 20px;
}

.credit__bottom-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.credit__bottom-img {
  max-width: 105px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.credit__bottom-block p {
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: #ECF7F3;
}

.slider__form {
  position: relative;
  z-index: 2;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 300px;
  height: max-content;
  background: rgba(113, 126, 145, 0.11);
  -webkit-backdrop-filter: blur(19.5px);
  backdrop-filter: blur(19.5px);
  border-radius: 3px;
  padding: 20px 25px;
  gap: 15px;
}

.slider__form p {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  background: transparent;
  text-align: center;
}

.slider__form .form__check-label a {
  color: #fff;
}

.slider__form p span {
  font-weight: 600;
}

.slider__form-input {
  width: 100%;
  height: 35px;
  background: #fff;
  padding-left: 20px;
}

.slider__form .form__check {
  width: 100%;
  margin: 0;
}

.slider__form-btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  border-radius: 10px;
  background: var(--horizontal-grad, linear-gradient(261deg, #33B7EF 13.79%, #6AE8D1 83.98%));
  box-shadow: 0px 4px 20px 6px rgba(127, 127, 127, 0.15);
  color: #fff;
  padding: 12px 0;
  text-align: center;
  width: 100%;
}

/* ------------------- @media ---------------------- */
@media screen and (max-width: 1440px) {
  main::before {
    width: 303px;
    height: 607px;
  }

  main::after {
    width: 507px;
    height: 563px;
  }
}

@media screen and (max-width: 1199px) {
  main::before {
    width: 200px;
    height: 400px;
  }

  main::after {
    width: 338px;
    height: 375px;
  }

  .credit__bottom {
    padding: 50px 0;
  }

  .credit__bottom-procent {
    top: 50px;
    left: 38%;
  }

  .credit__bottom-content::before {
    bottom: -50px;
  }

  .credit__bottom-row {
    grid-template-columns: repeat(1, 1fr);
    max-width: max-content;
    gap: 10px;
  }

  .credit__bottom-form {
    margin-top: 45px;
  }
}

@media screen and (max-width: 1023px) {
  .header__phone img {
    width: 10px;
    height: 16px;
  }

  .header__phone p {
    font-size: 18px;
    line-height: 18px;
  }

  .header__call-btn {
    width: 196px;
  }

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

  .footer__info-item {
    max-width: 230px;
  }

  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__info {
    width: 100%;
  }

  .footer__info-bottom {
    position: initial;
  }
}

@media screen and (max-width: 940px) {
  .header__nav-row {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
  }

  .header__phone-block {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
  }

  .nav-list {
    justify-content: space-between;
  }
}

@media screen and (max-width: 870px) {
  .credit__bottom-procent {
    top: 40px;
    left: initial;
    right: 0;
    font-size: 200px;
    line-height: 240px;
  }

  .credit__bottom-content {
    flex-direction: column;
    align-items: center;
  }

  .credit__bottom-content::before {
    bottom: -50px;
    right: 60px;
    width: 270px;
    height: 350px;
  }

  .credit__bottom-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 10px 140px;
  }

  .credit__bottom-form {
    margin-right: auto;
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .header__phone {
    display: block;
    margin: 0;
    margin-right: 80px;
  }

  .header__phone img {
    width: 16px;
    height: 25px;
  }

  .header__phone p {
    display: none;
  }

  .top__title {
    text-align: center;
  }

  .brand__list {
    display: none;
  }

  .credit__bottom-title {
    font-size: 38px;
  }

  .credit__bottom-row {
    gap: 10px;
  }

  .credit__bottom .credit__bottom-form {
    width: 300px;
    padding: 20px 25px;
  }

  .map {
    height: 320px;
  }
}

@media screen and (max-width: 729px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
  }
}

@media screen and (max-width: 620px) {
  .credit__bottom-content::before {
    right: 0;
  }

  .credit__bottom-title {
    display: block;
    font-size: 34px;
    line-height: 38px;
    text-align: center;
    margin-top: 10px;
  }

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

  .credit__bottom-row {
    gap: 0;
    border: none;
    padding: 0;
    margin-top: 25px;
  }
}

@media screen and (max-width: 570px) {
  main::before {
    width: 133px;
    height: 266px;
  }

  main::after {
    width: 226px;
    height: 250px;
  }

  .nav-list {
    left: 15%;
  }

  .nav__list-right {
    left: inherit;
    right: 15%;
  }

  .header__call-btn,
  .credit__bottom-procent {
    display: none;
  }

  .credit__bottom {
    background: url(/static/bottom__bg.jpg) no-repeat 70% 50%;
    background-size: cover;
  }

  .credit__bottom-reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .credit__bottom-title {
    margin-top: 0;
  }

  .credit__bottom-row {
    grid-template-columns: repeat(1, 1fr);
    width: 260px;
  }

  .credit__bottom-block {
    gap: 10px;
  }

  .credit__bottom-content::before {
    bottom: 250px;
    right: calc(50% - 135px);
  }

  .credit__bottom .credit__bottom-form {
    margin: 0 auto;
    margin-top: 360px;
  }

  .mobile__call {
    display: block;
    position: fixed;
    right: calc(50% - 25px);
    top: 15px;
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: rgba(63, 193, 232, 1);
    -webkit-box-shadow: 0 0 0 0 rgba(63, 193, 232, 1);
    box-shadow: 0 0 0 0 rgba(63, 193, 232, 1);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    cursor: pointer;
    z-index: 1000;
  }

  .mobile__call svg path {
    fill: #fff;
  }

  @-webkit-keyframes pulse {
    0% {
      -webkit-transform: scale(0.95);
      transform: scale(0.95);
      -webkit-box-shadow: 0 0 0 0 rgba(63, 193, 232, 0.7);
      box-shadow: 0 0 0 0 rgba(63, 193, 232, 0.7);
    }

    70% {
      -webkit-transform: scale(1);
      transform: scale(1);
      -webkit-box-shadow: 0 0 0 10px rgba(63, 193, 232, 0);
      box-shadow: 0 0 0 10px rgba(63, 193, 232, 0);
    }

    100% {
      -webkit-transform: scale(0.95);
      transform: scale(0.95);
      -webkit-box-shadow: 0 0 0 0 rgba(63, 193, 232, 0);
      box-shadow: 0 0 0 0 rgba(63, 193, 232, 0);
    }
  }

  @keyframes pulse {
    0% {
      -webkit-transform: scale(0.95);
      transform: scale(0.95);
      -webkit-box-shadow: 0 0 0 0 rgba(63, 193, 232, 0.7);
      box-shadow: 0 0 0 0 rgba(63, 193, 232, 0.7);
    }

    70% {
      -webkit-transform: scale(1);
      transform: scale(1);
      -webkit-box-shadow: 0 0 0 10px rgba(63, 193, 232, 0);
      box-shadow: 0 0 0 10px rgba(63, 193, 232, 0);
    }

    100% {
      -webkit-transform: scale(0.95);
      transform: scale(0.95);
      -webkit-box-shadow: 0 0 0 0 rgba(63, 193, 232, 0);
      box-shadow: 0 0 0 0 rgba(63, 193, 232, 0);
    }
  }
}

@media screen and (max-width: 490px) {
  .logo {
    min-width: 100px;
    width: 100px;
  }

  .footer__logo {
    width: 150px;
    margin: 0 auto;
    margin-top: 10px;
  }

  .footer__info-item {
    /* max-width: 180px; */
    max-width: 100%;
    width: 100%;
    margin: 10px 0;
  }

  /* .footer__info-item a img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  } */

  .footer__info-item a p,
  .footer__info-item a p b {
    font-size: 26px;
    line-height: 30px;
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    width: 100%;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 10px 0;
  }

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

@media screen and (max-width: 425px) {
  .nav-list {
    left: 10px;
  }

  .nav__list-right {
    left: inherit;
    right: 10px;
  }

  .credit__bottom-text {
    max-width: 230px;
    margin: 0 auto;
  }

  .error {
    height: 340px;
  }

  .error h1 {
    font-size: 60px;
    line-height: 70px;
    top: 6%;
    left: 5%;
  }

  .error p {
    font-size: 26px;
    line-height: 28px;
    top: 25%;
    left: 5%;
  }

  .error a {
    right: 5%;
  }
}

@media screen and (max-width: 320px) {
  .top__title {
    font-size: 24px;
    line-height: 26px;
  }
}