@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: 'Montserat', sans-serif;
  font-display: swap;
  src: url("../fonts/'Montserat', sans-serif-Bold.woff2") format("woff2"),
    url("../fonts/'Montserat', sans-serif-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: #1F2B6C;
  --secondary-color: #BFD2F8;

  --blue-color: #159EEC;
  --red-color: #9C9DA2;
  --white-color: #ffffff;
  --black-color: #0F0F0F;

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

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

  --disabled-color: #B4B5B7;
  --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: sticky;
  z-index: 1000;
  width: 100%;
  background: var(--white-color);
  top: 0;
}

.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;
  min-height: 36px;
  padding: 20px 0;
  background: var(--main-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-left: 0;
}

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

.navbar .logo {
  min-width: 202px;
  width: 202px;
  height: 22px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .navbar .logo {
    min-width: 165px;
    width: 165px;
    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;
}

.top__car_price {
  display: none;
}

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

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

.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(--main-color);
  border-radius: 50px;
}

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

.burger::after {
  content: "";
  width: 32px;
  height: 4px;
  position: absolute;
  bottom: 8px;
  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;
}

.burger::before {
  content: "";
  width: 32px;
  height: 4px;
  position: absolute;
  top: 8px;
  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;
}

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

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

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

.navbar .nav__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  padding-top: 10px;
}

.navbar .nav__burger .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nav__burger .menu {
  display: none;
}

@media (max-width: 767px) {
  .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;
    background: #f4f6f8de;
    width: 70%;
    height: 100vh;
    padding: 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) {
  .nav__burger .menu.open {
    top: 64px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-align: right;
    display: flex;
  }
}

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

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

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

.navbar .nav__burger .menu li a:hover {
  color: var(--secondary-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;
  }
}

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

  .nav__burger .menu li {
    font-size: 22px;
    color: var(--main-color);
    line-height: 120%;
  }
}

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


}

.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(--navbar-color);
}

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

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

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

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

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

@media (max-width: 375px) {
  .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;
  background: var(--secondary-color);
  padding: 10px;
  border-radius: 14px;
  max-height: 80px;
}

@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: 'Montserat', sans-serif;
  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 {
  cursor: pointer;
  color: var(--main-color);
  font-size: 16px;
}

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

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

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

.navbar .nav__burger .menu .nav-item__group-list {
  position: absolute;
  top: 19px;
  visibility: hidden;
  opacity: 0;
  background: var(--main-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;
  color: var(--white-color);
}

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

.navbar .nav__burger .menu .nav-item__group-list .nav-item__group-item:hover {
  background: var(--secondary-color);
  color: var(--main-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;
}

.navbar .nav__burger .menu .nav-item__group-list .nav-item__link:hover {
  color: var(--main-color);
  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;
}

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

.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: rgba(243, 245, 247, 0.6); */
    background: #f4f6f8;
    -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: 54px;
    height: 100vh;
  }
}

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


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

@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;
  color: var(--secondary-color);
}

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

.sub-navbar .sub-navbar__container .sub-navbard__box .sub-navbar__link:hover a {
  color: var(--main-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(--main-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: 180px;
  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: 'Montserat', sans-serif;
  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: var(--main-color);
}

.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: 14px;
  padding: 10px;
  width: 260px;
}

.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: 32px;
  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: 10px 12px 10px 24px;
  width: 130px;
}

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

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

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



@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: 15px;
  background: var(--disabled-color);
  -webkit-box-shadow: 0px 0px 2.21px 0px #8F99BF05;
  box-shadow: 0px 0px 2.21px 0px #8F99BF05;
  box-shadow: 0px 0px 5.32px 0px #8F99BF14;
  border-radius: 8px;
  width: 142px;
  height: 34px;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  color: var(--white-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(--main-color);
  background: var(--secondary-color);
}

.top__form_buttons a::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--disabled-color);
  border: 4px solid #E9E9E9;
  -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(--secondary-color);
  border: 4px solid var(--white-color);
}

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

.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: 14px !important;
  line-height: 200% !important;
  color: black !important;
  font-weight: 500 !important;
}

.card__count {
  font-weight: 300;
  font-size: 12px;
  line-height: 200%;
  text-transform: lowercase;
  color: #454546;
}

.card__count span {
  color: var(--main-color);
  font-weight: 600;
  font-size: 12px;
  line-height: 200%;
}

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

.card__set {
  color: #A9A9A9 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

.card__payment {
  font-weight: 500;
  font-size: 12px;
  color: #454546;
  margin-top: -15px;
  margin-bottom: 10px;
  line-height: 200%;
}

.choose .choose__container .choose__row .choose__card .card__main .card__price span {
  font-weight: 500 !important;
  font-size: 17px !important;
  color: #454546 !important;
  line-height: 200% !important;
}

.choose .choose__container .choose__row .choose__card .card__main .card__price del {
  font-weight: 400;
  font-size: 12px;
  line-height: 200%;
  color: #A9A9A9;
}

.choose .choose__container .choose__row .choose__card .card__main .card__bottom {
  flex-direction: column;
  gap: 10px;
}

.choose .choose__container .choose__row .choose__card .card__main .card__bottom .modal__trade-in-btn {
  background: var(--secondary-color) !important;
  color: var(--main-color) !important;
  border: none !important;
}

.choose .choose__container .choose__row .choose__card .card__main .card__bottom .modal__credit-btn {
  background: var(--main-color) !important;
  color: var(--white-color) !important;
  border: none !important;
}

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

.footer {
  background: var(--main-color);
  padding-bottom: 30px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__top {
  display: flex;
  gap: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.footer__nav .menu {
  display: flex;
  gap: 25px;
}

.footer__nav .menu li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: var(--white-color);
}

.footer .nav__feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--secondary-color);
  padding: 10px;
  border-radius: 14px;
  max-height: 80px;
}

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

.footer .nav__feedback .nav__phone .nav__phone-callback {
  cursor: pointer;
  color: var(--main-color);
  font-size: 16px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer__contact-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--white-color);
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--white-color);
}

.footer__info a {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: var(--secondary-color);
  text-decoration: underline;
}

.footer__contacts .nav__feedback {
  display: none;
}

@media screen and (max-width: 970px) {
  .footer__top {
    flex-wrap: wrap;
  }
}

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

  .footer__nav .menu,
  .footer__top .nav__feedback {
    display: none;
  }

  .footer__contacts .nav__feedback {
    display: flex;
    max-width: 199px;
  }
}

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

.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: 184px;
  height: 52px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #7E7E7F;
  background: transparent;
  border: 1px solid #7E7E7F;
  box-shadow: 0px -4.86px 2.21px 0px #8F99BF05;

  box-shadow: 0px -7.17px 5.32px 0px #8F99BF07;

  box-shadow: 0px -3.81px 10.02px 0px #8F99BF09;

  box-shadow: 0px 12.76px 17.87px 0px #8F99BF0B;

  box-shadow: 0px 51px 33.42px 0px #8F99BF0D;

  box-shadow: 0px 100px 80px 0px #8F99BF12;

  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: #050B20;
  background: var(--white-color);
}

.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;
  color: var(--main-color);
}

.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;
  margin: 10px 0;
  color: black;
}

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

@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;

}

.top__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0 10px 0;
  max-height: 80px;
  align-items: center;
}

.top__header a img {
  height: 100%;
}

.header__contact {
  display: flex;
  gap: 30px;
}

.header__contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.item-text__first {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: var(--blue-color);
}

.item-text__second {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: var(--main-color);
}

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

  .top__header {
    max-height: 44px;
    height: 100%;
  }

  .top__header a img {
    height: 40px;
  }

  .header {
    padding-top: 10px;
  }
}

.main__form {
  width: 100%;
  background: url("/static/img/main/main_form-bg.png") no-repeat;
  background-size: 100%;
  padding: 50px 60px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  position: relative;
}

.main__form::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(5, 11, 32, 0.5);
  left: 0;
  border-radius: 14px;
}

.main__form-title {
  font-family: 'Montserat', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: var(--white-color);
  position: relative;
  z-index: 2;
}

.main__form-text {
  font-family: 'Montserat', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 125%;
  color: var(--white-color);
  position: relative;
  z-index: 2;
}

.form-main__form {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.form-main__form input {
  padding: 16px;
  border-radius: 14px;
  width: 100%;
  max-width: 321px;
}

.form-main__form button {
  background: var(--secondary-color);
  padding: 14.75px;
  color: var(--main-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  text-align: center;
  width: 100%;
  max-width: 303px;
  border: none;
  border-radius: 14px;
}

.section__form {
  margin: 0 0 60px 0;
}

@media screen and (max-width: 767px) {
  .form-main__form {
    flex-direction: column;
  }

  .main__form {
    padding: 50px 10px 50px 10px;
    background-size: cover;
    background-position: right;
  }

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

@media screen and (max-width: 580px) {
  .main__form-title {
    font-size: 22px;
    line-height: 125%;
  }
}

.programs__autosalon-title {
  font-family: 'Montserat', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 200%;
  color: black;
}

.programs__autosalon-text {
  font-family: 'Montserat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  color: #7E7E7F;
  margin-bottom: 20px;
}

.programs__autosalon {
  display: grid;
  grid-template-columns: repeat(4, 256px);
  width: 100%;
  gap: 58px;
}

.program__item {
  width: 256px;
  height: 385px;
  border-radius: 14px;
  background: url("/static/img/prog1.png") no-repeat center;
  background-size: cover;
  display: flex;
  align-items: end;
}

.program__item:nth-of-type(2) {
  background: url("/static/img/prog2.png") no-repeat center;
  background-size: cover;
}

.program__item:nth-of-type(3) {
  background: url("/static/img/prog3.png") no-repeat center;
  background-size: cover;
}

.program__item:nth-of-type(4) {
  background: url("/static/img/prog4.png") no-repeat center;
  background-size: cover;
}

.item__text {
  background: #1F2B6CCC;
  height: max-content;
  width: 100%;
  padding: 10px;
  border-radius: 0 0 14px 14px;
}

.item__text p {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: white;
}

@media screen and (max-width: 1200px) {
  .programs__autosalon {
    gap: 20px;
    justify-content: center;
    align-content: center;
  }
}

@media screen and (max-width: 1023px) {
  .programs__autosalon {
    grid-template-columns: repeat(3, 256px);
  }
}

@media screen and (max-width: 767px) {
  .programs__autosalon {
    grid-template-columns: repeat(2, 1fr);
  }

  .program__item {
    margin: 0 auto;
  }
}

@media screen and (max-width: 560px) {
  .programs__autosalon {
    gap: 10px;
  }

  .program__item {
    width: 100%;
    height: 194px;
  }

  .item__text p {
    font-weight: 600;
    font-size: 10px;
    line-height: 120%;
  }
}

.models .models__container .models__row .models__card .card__img .models__img {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  padding: 10px;
  height: 137px;
  display: flex;
  justify-content: center;
}

.models .models__container .models__row .models__card .card__main {
  box-shadow: none !important;
}

.models .models__container .models__row .models__card {
  box-shadow: var(--box-shadow);
}

.models .models__container .models__row .models__card .card__img .models__img img {
  object-fit: contain;
}

.models .models__container .models__row .models__card .card__main .card__price span {
  font-weight: 500 !important;
  font-size: 17px !important;
  line-height: 200% !important;
  color: #454546 !important;
}

.models .models__container .models__row .models__card .card__main .card__price {
  padding: 10px 0 !important;
  margin: 0 !important;
}

.models .models__container .models__row .models__card .card__main .card__price p {
  font-size: 12px !important;
  color: #A9A9A9 !important;
  font-weight: 400 !important;
  line-height: 200% !important;
}

.models .models__container .models__row .models__card .card__main .card__bottom .card__btn {
  background: var(--main-color) !important;
  color: var(--white-color) !important;
  border: none !important;
}

/* ------------------ Форма помощи ----------------- */

.gethelp {
  background: var(--white-color);
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .gethelp {
    min-height: 216px;
  }
}

.gethelp .gethelp__container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  padding-top: 20px;
}

.gethelp .gethelp__container h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: black;
}

@media (max-width: 1100px) {
  .gethelp .gethelp__container h3 {
    font-size: 18px;
    line-height: 27px;
  }
}

.gethelp .gethelp__container a {
  font-weight: 500;
  font-size: 36px;
  line-height: 61px;
  color: var(--blue-color);
}

@media (max-width: 1100px) {
  .gethelp .gethelp__container a {
    font-size: 28px;
    line-height: 48px;
  }
}

.gethelp .gethelp__container p {
  font-weight: 700;
  font-size: 14px;
  line-height: 2px;
  color: #454546;
}

.gethelp .gethelp__container button {
  width: 353px;
  height: 50px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: var(--main-color);
  background: var(--secondary-color);
  border-radius: 5px;
  box-shadow: 0px -4.86px 2.21px 0px #8F99BF05, 0px -7.17px 5.32px 0px #8F99BF07, 0px -3.81px 10.02px 0px #8F99BF09,
    0px 12.76px 17.87px 0px #8F99BF0B, 0px 51px 33.42px 0px #8F99BF0D, 0px 10px 20px 0px #8F99BF12;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-top: 20px;
  border: none;
}

@media (max-width: 440px) {
  .gethelp .gethelp__container button {
    width: 100%;
  }
}

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

.gethelp .bottom__logo {
  display: none;
}

@media (max-width: 767px) {
  .gethelp .bottom__logo {
    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-top: 15px;
  }
}

.polititcs__info {
  font-size: 12px;
  width: max-content;
  max-width: 100%;
  color: black;
  text-align: left;
}

.polititcs__info a {
  color: #016eb1;
  text-decoration: underline;
  width: max-content;
}

.polititcs__info-main {
  color: white;
  position: relative;
  z-index: 2;
}

.polititcs__info-main a,
.polititcs__info-sps a {
  color: lightskyblue;
}

.polititcs__info-sps {
  color: white;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  max-width: 390px;
}

.app__input{
  display: none;
}