@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Poppins;
  font-display: swap;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'ALSGorizont-MediumExpanded';
  src: url('../fonts/alsgorizont-mediumexpanded.eot');
  /* IE 9 Compatibility Mode */
  src: url('../fonts/alsgorizont-mediumexpanded.eot?#iefix') format('embedded-opentype'),
    /* IE < 9 */
    url('../fonts/alsgorizont-mediumexpanded.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/alsgorizont-mediumexpanded.woff') format('woff'),
    /* Firefox >= 3.6, any other modern browser */
    url('../fonts/alsgorizont-mediumexpanded.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/alsgorizont-mediumexpanded.svg#alsgorizont-mediumexpanded') format('svg');
  /* Chrome < 4, Legacy iOS */
}

:root {
  --main-color: #0E0E0E;
  --secondary-color: #454546;

  --blue-color: #25AB75;
  --red-color: #9C9DA2;
  --white-color: #ffffff;

  --navbar-color: #333333;
  --input-color: #7e7e7f;

  --footer-bg-color: #3b3b3b;
  --bg-main-color: #f4f6f8;
  --bg-secondary-color: #e9e9e9;

  --disabled-color: #bec0c4;
  --box-shadow: 0px 10px 20px rgba(143, 153, 191, 0.07), 0px 50.997px 33.4221px rgba(143, 153, 191, 0.0503198),
    0px 12.7598px 17.869px rgba(143, 153, 191, 0.0417275), 0px -3.80947px 10.0172px rgba(143, 153, 191, 0.035),
    0px -7.16826px 5.32008px rgba(143, 153, 191, 0.0282725), 0px -4.86427px 2.21381px rgba(143, 153, 191, 0.02);
  --box-shadow-buttons: 0px 0px 5.32008px rgb(143 153 191 / 8%), 0px 0px 2.21381px rgb(143 153 191 / 2%);
  --mask: rgba(243, 245, 247, 0.6);
}

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

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

body {
  font-family: Montserrat, sans-serif;
  height: 100%;
  color: var(--main-color);
}

body.open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 700;
  color: var(--main-color);
}

p,
li,
span,
label,
input,
textarea {
  color: var(--secondary-color);
  font-weight: 400;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  color: var(--white-color);
}

input[type="number"],
input[type="number"]:hover,
input[type="number"]:focus {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}

.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;
}

button {
  border: none;
  cursor: pointer;
  border: 1px solid var(--blue-color);
}

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

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

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

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

ul {
  list-style: none;
}

select {
  outline: none;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  color: inherit;
  color: #595959;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

table {
  border-collapse: collapse;
}

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

.main-bg {
  /* background: var(--bg-main-color); */
  overflow: hidden;
}

.bg {
  background: var(--white-color);
}

.pb {
  padding-bottom: 40px;
}

.d-flex {
  display: flex;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}

.default {
  cursor: default;
  opacity: 0.5;
}

*:disabled {
  pointer-events: none;
  opacity: 0.5;
}

#scroll::-webkit-scrollbar {
  width: 10px;
}

#scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: 5px 5px 5px -5px rgba(134, 43, 43, 0.2) inset;
  background-color: #f9f9fd;
  border-radius: 10px;
}

#scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#80b7ff), to(var(--blue-color)));
  background: linear-gradient(180deg, #80b7ff, var(--blue-color));
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#china-models::before,
#taxi-models::before {
  display: block;
  content: "";
  height: 90px;
  margin: -90px 0 0;
}

@media screen and (max-width: 767px) {

  #china-models::before,
  #taxi-models::before {
    height: 64px;
    margin: -64px 0 0;
  }
}

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

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

.checkbox__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.checkbox__block .checkbox {
  width: 15px;
  height: 15px;
  position: relative;
  margin-right: 15px;
  background: #ebebeb;
  border-radius: 50px;
}

.checkbox__block .checkbox label {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
  background: #ebebeb;
  color: var(--white-color);
  pointer-events: none;
}

.checkbox__block .checkbox label:after {
  content: "";
  width: 11px;
  height: 6px;
  position: absolute;
  top: 4px;
  left: 2px;
  border: 3px solid #5ac27d;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkbox__block .checkbox input[type="checkbox"] {
  width: 15px !important;
  height: 15px !important;
  background: black;
  opacity: 0;
  cursor: pointer;
  padding: 0 !important;
  margin: 0 !important;
}

.checkbox__block .checkbox input[type="checkbox"]:checked+label:after {
  opacity: 1;
}

.checkbox__block .checkbox input[type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
}

.checkbox__block p {
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: var(--white-color);
}

.checkbox__block p a {
  text-decoration: underline;
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: var(--main-color);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.11);
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
}

.social__header {
  margin-left: 10px;
}

.navbar {
  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;
  min-height: 36px;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .navbar {
    margin: 0;
    padding: 5px 0;
  }
}

.navbar .logo {
  width: auto;
  height: 46px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .navbar .logo {
    height: 34px;
    margin-right: 0;
  }
}

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

.navbar .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: var(--blue-color);
}

.logo__text {
  font-size: 20px;
  font-weight: 700;
  width: 100px;
  margin-left: 10px;
}

.navbar .top__car_price {
  display: none;
}

@media (max-width: 767px) {
  .navbar .top__car_price {
    display: block;
    position: absolute;
    top: calc(50% - 13px);
    right: 80px;
    background: transparent;
    border: none;
  }
}

.navbar .top__car_price svg {
  width: 26px;
  height: 26px;
  background: inherit;
}

.navbar .burger {
  width: 32px;
  height: 4px;
  position: relative;
  margin-left: auto;
  border: none;
  display: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  background: var(--white-color);
  border-radius: 50px;
}

@media (max-width: 767px) {
  .navbar .burger {
    display: block;
  }
}

.navbar .burger::after {
  content: "";
  width: 32px;
  height: 4px;
  position: absolute;
  bottom: 8px;
  left: 0;
  background: var(--white-color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 50px;
}

.navbar .burger::before {
  content: "";
  width: 32px;
  height: 4px;
  position: absolute;
  top: 8px;
  left: 0;
  background: var(--white-color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 50px;
}

.navbar .burger.open {
  z-index: 6;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar .burger.open::after {
  -webkit-transform: rotate(90deg) translate(23%);
  -ms-transform: rotate(90deg) translate(23%);
  transform: rotate(90deg) translate(23%);
}

.navbar .burger.open::before {
  opacity: 0;
  top: 0;
}

.navbar .nav__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 10px;
}

.navbar .nav__burger .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    top: -5000%;
    right: 0;
    z-index: 4;
    width: 70%;
    height: 100vh;
    padding: 50px;
    overflow: scroll;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu.open {
    top: 44px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu.open {
    width: 100%;
    padding-top: 0;
  }
}

.navbar .nav__burger .menu li {
  position: relative;
  border-bottom: 2px solid #ffffff00;
  margin: 0 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 10px;
  color: var(--white-color);
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu li {
    margin: 5px 10px;
    font-weight: 600;
  }
}

.navbar .nav__burger .menu li a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 7px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition: ease-out 0.3s;
  -o-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  opacity: 1;
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu li a {
    margin-left: auto;
  }
}

.navbar .nav__burger .menu li a:hover {
  opacity: 0.7;
  color: var(--blue-color);
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu li a:hover {
    opacity: 1;
    color: var(--white-color);
  }
}

.navbar .nav__burger .menu li a::after {
  height: 2px;
  width: 100%;
  background: var(--blue-color);
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar .nav__burger .menu li a:hover::after {
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu li {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

.navbar .nav__cars .menu__cars {
  display: none;
  position: absolute;
  top: -1000%;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100vh;
  padding: 50px 20px;
  overflow: scroll;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 767px) and (max-width: 767px) {
  .navbar .nav__cars .menu__cars.open {
    display: block;
    top: 44px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    columns: 2;
  }
}

@media (max-width: 767px) and (max-width: 375px) {
  .navbar .nav__cars .menu__cars.open {
    width: 100%;
  }
}

.navbar .nav__cars .menu__cars li {
  position: relative;
  border-bottom: 2px solid #ffffff00;
  margin: 0 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 10px;
  color: var(--white-color);
}

.navbar .nav__cars .menu__cars li a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 7px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition: ease-out 0.3s;
  -o-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  opacity: 1;
}

.navbar .nav__cars .menu__cars li a:hover {
  color: var(--blue-color);
}

@media (max-width: 767px) {
  .navbar .nav__cars .menu__cars li a:hover {
    color: var(--white-color);
  }
}

.navbar .nav__cars .menu__cars li a::after {
  height: 2px;
  width: 100%;
  background: var(--blue-color);
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar .nav__cars .menu__cars li a:hover::after {
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .navbar .nav__cars .menu__cars li {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .navbar .nav__cars .menu__cars li:last-child {
    padding-bottom: 100px;
  }
}

.navbar .nav__feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .navbar .nav__feedback {
    display: none;
  }
}

.navbar .nav__feedback img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}

.navbar .nav__feedback .nav__phone {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 144px;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 12px;
  text-align: right;
  color: #5b5c5d;
}

.navbar .nav__feedback .nav__phone a {
  font-family: Poppins;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: var(--blue-color);
  -o-transition: ease-out 0.3s 0.1s;
  -webkit-transition: ease-out 0.3s;
  -webkit-transition: ease-out 0.3s 0.1s;
  transition: ease-out 0.3s 0.1s;
}

.navbar .nav__feedback .nav__phone a:hover {
  opacity: 0.7;
  color: var(--blue-color);
}

.navbar .nav__feedback .nav__phone .nav__phone-callback {
  text-decoration: underline;
  cursor: pointer;
  color: var(--white-color);
}

/* ================================== */

.navbar .nav__burger .menu .nav__first {
  padding-bottom: 7px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu .nav__first {
    text-align: right;
    padding: 0;
    font-size: 0;
  }
}

.navbar .nav__burger .menu .nav__first:hover .nav-item__group-list {
  opacity: 1;
  transition: all 0.3s;
  visibility: visible;
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu .nav__first:hover .nav-item__group-list {
    position: relative;
    margin-bottom: 5px;
    margin-top: -5px;
  }
}

.navbar .nav__burger .menu .nav__first:hover .nav-item__group-list .nav-item__group-item {
  margin: 0;
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu .nav__first:hover .nav-item__group-list .nav-item__group-item {
    margin: 20px 0;
  }
}

.navbar .nav__burger .menu .nav-item__group-list {
  position: absolute;
  top: 19px;
  visibility: hidden;
  opacity: 0;
  background: var(--white-color);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.2s;
  box-shadow: 0 1px 11px 0 #414e5b33;
  padding: 4px;
  border-radius: 8px;
  z-index: 2;
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu .nav-item__group-list {
    visibility: visible;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    position: relative;
    margin-bottom: 5px;
    margin-top: -5px;
    padding: 0;
  }
}

.navbar .nav__burger .menu .nav-item__group-item {
  padding: 3px 0;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu .nav-item__group-item {
    color: var(--white-color);
    padding: 0;
    margin: 20px 0;
  }
}

.navbar .nav__burger .menu .nav-item__group-list .nav-item__group-item:hover {
  background: var(--blue-color);
  color: var(--white-color);
  transition: all 0.3s ease;
}

.navbar .nav__burger .menu .nav-item__group-list .nav-item__link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 4px;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .navbar .nav__burger .menu .nav-item__group-list .nav-item__link {
    padding: 0;
  }
}

.navbar .nav__burger .menu .nav-item__group-list .nav-item__link:hover {
  color: #fff;
  opacity: 1;
}

.navbar .nav__burger .menu .nav-item__group-list .nav-item__link::after {
  content: none;
}

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

.nav__first svg {
  margin-left: 5px;
  width: 13px;
  height: 9px;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .nav__first svg {
    display: none;
  }
}

/* =============== */

.show__logo {
  display: none;
}

@media (max-width: 767px) {
  .show__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
  }
}

.show__logo .logo a img {
  width: 180px;
  height: 50px;
  margin-right: 10px;
}

.show__logo .logo a {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: var(--blue-color);
}

@media (max-width: 767px) {

  .mask,
  .mask__cars {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-color);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
}

@media (max-width: 767px) {

  .mask.open,
  .mask__cars.open {
    opacity: 1;
    z-index: 1;
    top: 44px;
    height: 100vh;
  }
}

.sub-navbar {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .sub-navbar {
    padding-top: 80px;
  }
}

.sub-navbar .sub-navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 60px;
}

@media (max-width: 570px) {
  .sub-navbar .sub-navbar__container {
    padding-left: 10px;
  }
}

.sub-navbar .sub-navbar__container .sub-navbard__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
}

.sub-navbar .sub-navbar__container .sub-navbard__box::-webkit-scrollbar {
  width: 0;
}

.sub-navbar .sub-navbar__container .sub-navbard__box .sub-navbar__link {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  line-height: 12px;
  padding: 5px 5px 5px 0;
  padding-right: 15px;
}

.sub-navbar .sub-navbar__container .sub-navbard__box .sub-navbar__link:not(:last-of-type)::after {
  content: "/";
  position: absolute;
  top: 5px;
  right: 4px;
}

.sub-navbar .sub-navbar__container .sub-navbard__box .sub-navbar__link a {
  width: max-content;
  display: flex;
  flex-wrap: nowrap;
}

.sub-navbar .sub-navbar__container .sub-navbard__box .sub-navbar__link:last-child a {
  color: var(--blue-color);
}

.sub-navbar .sub-navbar__container .sub-navbard__box .sub-navbar__link:hover a {
  color: var(--blue-color);
  transition: all 0.4s ease;
}

.title__main {
  font-weight: 700;
  font-size: 24px;
  line-height: 48px;
  text-align: center;
}

@media (max-width: 540px) {
  .title__main {
    font-size: 18px;
    line-height: 24px;
  }
}

.title__main span {
  font-weight: 700;
  color: var(--blue-color);
}

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

/* --------------------------- Блок с нижними кнопками ----------------------- */

.navbar__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;
  margin-top: 15px;
  min-height: 36px;
  padding: 0 20px;
  margin-bottom: 20px;
}

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

@media (max-width: 767px) {
  .navbar__bottom .logo {
    margin-top: 4px;
  }
}

.navbar__bottom .logo img {
  width: auto;
  height: 50px;
  margin-right: 10px;
}

.navbar__bottom .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: var(--blue-color);
}

.navbar__bottom .burger {
  width: 32px;
  height: 5px;
  position: relative;
  margin-left: auto;
  border: none;
  display: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  background: var(--main-color);
  border-radius: 50px;
}

@media (max-width: 767px) {
  .navbar__bottom .burger {
    display: block;
  }
}

.navbar__bottom .burger::after {
  content: "";
  width: 32px;
  height: 5px;
  position: absolute;
  bottom: 8.5px;
  left: 0;
  background: var(--main-color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 50px;
}

.navbar__bottom .burger::before {
  content: "";
  width: 32px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
  background: var(--main-color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 50px;
}

.navbar__bottom .burger.open {
  z-index: 6;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar__bottom .burger.open::after {
  -webkit-transform: rotate(90deg) translate(23%);
  -ms-transform: rotate(90deg) translate(23%);
  transform: rotate(90deg) translate(23%);
}

.navbar__bottom .burger.open::before {
  opacity: 0;
  top: 0;
}

.navbar__bottom nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.navbar__bottom nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .navbar__bottom nav .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: absolute;
    top: -100%;
    right: 0;
    z-index: 4;
    background: var(--bg-main-color);
    width: 70%;
    height: 100vh;
    padding: 50px;
    overflow: scroll;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0.9;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .navbar__bottom nav .menu.open {
    top: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media (max-width: 767px) and (max-width: 375px) {
  .navbar__bottom nav .menu.open {
    width: 100%;
  }
}

.navbar__bottom nav .menu li {
  margin: 0 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--white-color);
}

@media (max-width: 767px) {
  .navbar__bottom nav .menu li {
    margin-bottom: 25px;
    font-size: 16px;
  }
}

.navbar__bottom .nav__feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .navbar__bottom .nav__feedback {
    display: none;
  }
}

.navbar__bottom .nav__feedback .nav__phone {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 144px;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 12px;
  text-align: right;
  color: var(--white-color);
}

.navbar__bottom .nav__feedback .nav__phone a {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.navbar__bottom .nav__feedback .nav__phone .nav__phone-callback {
  text-decoration: underline;
  cursor: pointer;
  color: var(--white-color);
}

@media (max-width: 767px) {
  .hide__group {
    display: none;
  }
}

/* -------------------- Блок с формой и кнопками ----------------------- */

.section__form {
  background: #050B20;
  border-radius: 50% 50% 0 0/19px 19px 0 0;
}

.hide__group .section__form {
  position: relative;
  border-radius: 0;
  padding-top: 40px;
  margin-top: -40px;
}

.hide__group .section__form::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  background: var(--white-color);
  border-bottom-left-radius: 6% 100%;
  border-bottom-right-radius: 6% 100%;
}

.section__form .buttons__container {
  padding-top: 15px;
  padding-bottom: 25px;
}

@media (max-width: 640px) {
  .section__form .buttons__container {
    margin-top: 20px;
    padding-top: 0;
  }
}

.section__form .buttons__container .span__show {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: var(--white-color);
  text-align: center;
  display: none;
}

@media (max-width: 640px) {
  .section__form .buttons__container .span__show {
    display: block;
    padding: 20px 0;
  }
}

@media (max-width: 540px) {
  .section__form .buttons__container .span__show {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .section__form .buttons__container .display__none {
    display: none;
  }
}

.filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px 0 30px;
  gap: 10px;
}

@media (max-width: 640px) {
  .filter {
    margin: 0;
  }
}

@media (max-width: 575px) {

  .filter,
  .inputs__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
  }
}

.inputs__row {
  display: flex;
  gap: 10px;
}

.label {
  position: relative;
}

.form__select {
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  font-size: 14px;
  line-height: 24px;
  color: var(--input-color);
  border-radius: 5px;
  padding: 6px 10px;
  width: 260px;
  height: 35px;
}

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

.input__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

/* .input__group.active {
  pointer-events: none;
  opacity: 0.5;
} */

.input__group span {
  width: 2px;
  height: 24px;
  background: var(--input-color);
  position: absolute;
  top: 6px;
  right: 50%;
}

.filter__input {
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  font-size: 14px;
  line-height: 24px;
  color: var(--input-color);
  padding: 6px 12px 6px 24px;
  width: 130px;
  height: 35px;
}

.filter__input:first-child {
  border-radius: 5px 0 0 5px;
}

.filter__input:last-child {
  border-radius: 0 5px 5px 0;
}

.filter__btn {
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  background: var(--blue-color);
  color: var(--white-color);
  width: 260px;
  height: 35px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filter__btn:hover {
  color: var(--blue-color);
  background: var(--white-color);
}

@media (max-width: 575px) {

  .label,
  .form__select,
  .input__group,
  .filter__input,
  .filter__btn {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .filter__btn {
    height: 38px;
  }
}

.top__form_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 5px;
  gap: 10px;
}

@media (max-width: 767px) {
  .top__form_buttons {
    padding-bottom: 20px;
  }
}

.top__form_buttons .buttons__container {
  max-width: 1100px;
  margin: 0 auto;
}

.top__form_buttons a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 26px;
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow-buttons);
  box-shadow: var(--box-shadow-buttons);
  border-radius: 8px;
  width: 142px;
  height: 34px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: var(--disabled-color);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.top__form_buttons a:hover {
  color: var(--white-color);
  background: var(--blue-color);
}

.top__form_buttons a::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--blue-color);
  border: 4px solid var(--blue-color);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.top__form_buttons a:hover::after {
  background: var(--bg-secondary-color);
  border: 4px solid var(--bg-secondary-color);
}

@media (max-width: 375px) {
  .models .models__container {
    padding: 0 10px !important;
  }
}

.choose .choose__container .choose__row .choose__card .card__img {
  position: relative;
}

.choose .choose__container .choose__row .choose__card .card__img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, #FFFFFF 100%);
  width: 100%;
  height: 50%;
}

.card__btn {
  font-family: ALSGorizont-MediumExpanded, sans-serif !important;
  font-weight: 500 !important;
  width: 100% !important;
  height: 40px !important;
  border: 1px solid var(--blue-color) !important;
}

.models__card .card__name {
  font-size: 18px !important;
  line-height: 36px !important;
}

.card__count span {
  font-family: ALSGorizont-MediumExpanded, sans-serif;
  color: var(--blue-color);
}

.choose__card .card__name {
  font-family: ALSGorizont-MediumExpanded, sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 28px !important;
}

.card__set {
  color: #A9A9A9 !important;
}

.card__payment {
  font-family: ALSGorizont-MediumExpanded, sans-serif;
  font-weight: 500;
  color: var(--main-color);
  margin-top: -15px;
  margin-bottom: 20px;
}

.models .models__container .models__row .models__card .card__img {
  background: linear-gradient(180deg, rgba(209, 209, 209, 0) 72.15%, #D1D1D1 98%);
}

.models .models__container .models__row .models__card .card__img .models__img {
  position: initial !important;
}

.models .models__container .models__row .models__card .card__img .models__round {
  display: none;
}

.models .models__container .models__row .models__card .card__img .models__img a {
  display: block;
  max-width: 240px;
  width: 100%;
  height: 120px;
  margin: 0 auto;
}

.models .models__container .models__row .models__card .card__img .models__img img {
  max-width: 100% !important;
  width: 100%;
  height: 100% !important;
  object-fit: contain;
}

/* ---------------------- Footer -------------------------- */

.footer {
  background: var(--main-color);
}

.footer__logo-mob {
  display: none;
}

@media (max-width: 767px) {
  .footer {
    position: relative;
    background: #050B20;
    padding-top: 40px;
    margin-top: -40px;
  }

  .footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 30px;
    top: 0;
    left: 0;
    background: var(--white-color);
    border-bottom-left-radius: 6% 100%;
    border-bottom-right-radius: 6% 100%;
  }

  .footer__logo-mob {
    display: block;
  }
}

@media (max-width: 640px) {
  .footer {
    padding-bottom: 40px;
  }
}

.footer .footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  gap: 20px;
}

@media (max-width: 767px) {
  .footer .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer .footer__container .footer__left {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-item-align: start;
  align-self: flex-start;
  gap: 20px;
  min-width: 280px;
}

@media (max-width: 767px) {
  .footer .footer__container .footer__left {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.footer .footer__container .footer__left .footer__adress {
  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: 17px;
}

@media (max-width: 640px) {
  .footer .footer__container .footer__left .footer__adress {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
  }
}

.footer .footer__container .footer__left .footer__adress div {
  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 10px;
}

.footer .footer__container .footer__left .footer__adress div span,
.footer__phone p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 20px;
  color: #dcdfe2;
}

.footer__phone p {
  font-size: 18px;
}

.footer__phone,
.social__mob {
  width: 100%;
}

.footer__phone {
  display: flex;
  gap: 17px;
}

.footer .footer__container .footer__left .footer__adress div p {
  font-family: "Roboto", sans-serif;
  line-height: 14px;
  color: #dcdfe2;
}

.footer .footer__container .footer__left .footer__socials {
  margin-top: 25px;
  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;
}

@media (max-width: 640px) {
  .footer .footer__container .footer__left .footer__socials {
    margin-top: 0;
    width: 100%;
  }
}

.footer .footer__container .footer__left .footer__socials .footer__socials_block {
  margin-left: 4px;
}

.footer .footer__container .footer__left .footer__socials .footer__feedback {
  display: none;
}

@media (max-width: 640px) {
  .footer .footer__container .footer__left .footer__socials .footer__feedback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer .footer__container .footer__left .footer__socials .footer__feedback img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .footer .footer__container .footer__left .footer__socials .footer__feedback .footer__phone {
    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: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 137px;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 13px;
    text-align: right;
    color: var(--white-color);
    margin-right: 7px;
  }
}

@media (max-width: 640px) and (max-width: 360px) {
  .footer .footer__container .footer__left .footer__socials .footer__feedback .footer__phone {
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .footer .footer__container .footer__left .footer__socials .footer__feedback .footer__phone a {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
  }
}

@media (max-width: 640px) and (max-width: 360px) {
  .footer .footer__container .footer__left .footer__socials .footer__feedback .footer__phone a {
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .footer .footer__container .footer__left .footer__socials .footer__feedback .footer__phone p {
    text-decoration: underline;
    color: var(--white-color);
  }
}

.footer .footer__container .footer__right {
  max-width: 914px;
}

@media (max-width: 640px) {
  .footer .footer__container .footer__right {
    max-width: none;
  }
}

.footer .footer__container .footer__right p {
  font-family: Roboto;
  font-size: 14px;
  line-height: 16px;
  color: #dcdfe2;
  margin-bottom: 5px;
}

.footer .footer__container .footer__right a {
  font-family: Roboto;
  font-size: 14px;
  line-height: 16px;
  color: #dcdfe2;
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer .footer__container .footer__right a:hover {
  color: var(--blue-color);
}

.social {
  margin-left: 5px;
}

.footer__cars {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: var(--white-color);
}

/* ------------------- Модалка получения помощи ------------------------ */

.modal__time.show {
  display: flex;
}

.modal,
.modal__credit,
.modal__trade-in {
  display: none;
  -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;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal__container {
  position: relative;
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  padding: 50px;
  width: 40%;
}

@media (max-width: 1200px) {
  .modal__container {
    width: 50%;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .modal__container {
    width: 65%;
    padding: 30px;
  }
}

@media (max-width: 490px) {
  .modal__container {
    width: 95%;
    padding: 20px;
  }
}

.modal__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 490px) {
  .modal__title {
    font-size: 17px;
    line-height: 22px;
  }
}

.modal__form {
  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;
}

.modal__form input {
  width: 100%;
  height: 34px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 0px 22px rgba(174, 193, 207, 0.3);
  box-shadow: 0px 0px 22px rgba(174, 193, 207, 0.3);
  border-radius: 5px;
  margin-bottom: 11px;
  padding: 0 20px;
}

.modal__btn {
  width: 100%;
  height: 44px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  background: var(--blue-color);
  color: var(--white-color);
  margin: 10px 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.modal__btn:hover {
  background: var(--white-color);
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
}

.checkbox__block {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.checkbox__block p {
  color: var(--main-color);
}

.checkbox__block p a {
  color: var(--blue-color);
}

.modal__close,
.modal__close-credit,
.modal__close-trade-in {
  font-weight: 700;
  font-size: 40px;
  color: var(--main-color);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 15px;
  border: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.modal__close:hover,
.modal__close-credit:hover,
.modal__close-trade-in:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (max-width: 490px) {

  .modal__close,
  .modal__close-credit,
  .modal__close-trade-in {
    top: -10px;
    right: 5px;
  }
}

.modal__mask {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: var(--mask);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.modal__mask.open {
  opacity: 1;
  z-index: 1;
}

.show__btn {
  position: relative;
  width: 267px;
  height: 44px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #7E7E7F;
  background: transparent;
  border: 1px solid #7E7E7F;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  padding: 5px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 0 auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.show__btn:hover {
  color: var(--white-color);
  background: #7E7E7F;
}

.loading {
  width: 120px;
  height: 120px;
  margin: 20px auto;
  margin-top: 0;
  background: transparent;
  box-shadow: none;
  padding: 20px;
  padding-top: 0;
}

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

.modal__credit-btn,
.modal__trade-in-btn,
.nav__phone-callback {
  cursor: pointer;
}

.modal__time .modal__container {
  padding: 20px;
}

.modal__time .modal__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin: 10px 0;
  padding-top: 8px;
  width: auto;
}

.modal__time .modal__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
}

.modal__time .modal__text span {
  font-weight: 700;
  color: var(--blue-color);
}

.modal__time .modal__time-foto {
  display: flex;
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: 50% 70%;
  margin: 10px auto;
}

.modal__time .modal__form {
  gap: 0;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 15px;
}

.modal__time .main__form-input,
.modal__time .main__form-button {
  width: 100%;
}

@media (max-width: 490px) {
  .modal__time .modal__container {
    padding: 15px 10px;
  }

  .modal__time .modal__title {
    font-size: 18px;
    line-height: 22px;
    padding: 0;
  }

  .modal__time .modal__text {
    font-size: 16px;
    line-height: 22px;
  }

  .modal__time .modal__form {
    max-width: 100%;
  }
}

.d-none {
  display: none;
}

.call__button {
  display: none;
}

@media (max-width: 570px) {
  .call__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    position: fixed;
    left: calc(50% - 140px);
    bottom: 10px;
    z-index: 99;
    width: 280px;
    height: 36px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    background: var(--blue-color);
    border-radius: 6px;
    box-shadow: 0 0 20px var(--blue-color);
  }

  .call__button p,
  .call__button p span {
    font-weight: 700;
    color: #fff;
  }
}

/* ------------------- error page -------------------- */

.error__page {
  position: relative;
  background: url(/img/error.webp) no-repeat center;
  background-size: cover;
  height: calc(100vh - 200px);
  padding-top: 130px;
  color: #fff;
}

.error__page h1 {
  font-size: 50px;
  line-height: 50px;
  padding: 10px 0;
}

.error__page p {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: var(--main-color);
}

.error__page a {
  position: absolute;
  bottom: 70px;
  right: 70px;
  background: var(--red-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.error__page a:hover {
  color: var(--blue-color);
  background: #fff;
  border: 1px solid var(--blue-color);
}

@media (max-width: 575px) {
  .error__page {
    background: url(/img/error.webp) no-repeat 30% 10% #33434c;
    background-size: cover;
    background-blend-mode: overlay;
  }
}

@media (max-width: 575px) {
  .error__page {
    padding-top: 100px;
  }

  .error__page h1 {
    color: #fff;
  }

  .error__page p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
  }

  .error__page a {
    bottom: 30px;
    right: 30px;
  }
}

/* ------------------- success page -------------------- */

.success {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 60px;
  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;
  height: calc(100vh - 200px);
}

@media (max-width: 320px) {
  .success {
    height: auto;
  }
}

.success h1 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 30px;
  text-align: center;
}

/* ------------------- thanks page -------------------- */

.thanks {
  padding: 30px 20px 60px;
  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;
  height: calc(100vh - 200px);
}

@media (max-width: 320px) {
  .thanks {
    height: auto;
  }
}

.thanks h1 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.models__title {
  font-family: 'Montserat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  margin: 10px 0;
}

.models__title span {
  font-family: 'Montserat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

@media (max-width: 580px) {
  .models__title {
    width: auto;
    text-align: center;
  }
}

.filter__section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
}

.sort__label {
  display: block;
}

.sort__arrow {
  background: url(/static/svg/sort.svg) no-repeat center;
  background-size: contain;
  top: calc(50% - 3px);
  width: 10px;
  height: 6px;
  z-index: 1;
}

.sort {
  border-radius: 5px;
  background: var(--blue-color);
  color: var(--white-color);
  width: 230px;
  height: 35px;
  padding: 6px 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}

@media (max-width: 640px) {
  .filter__section-title {
    flex-direction: column;
  }

  .sort__label {
    max-width: 330px;
    width: 100%;
  }

  .sort {
    width: 100%;
  }
}

input::placeholder {
  font-family: "Montserrat", "sans-serif" !important;
  font-weight: 600;
}

select,
option,
input {
  font-family: "Montserrat", "sans-serif" !important;
  font-weight: 600;

}