/***Fonts***/
@font-face {
  font-family: "VW Head";
  src: local(OpenSans), url("../fonts/VWHeadRegular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "VW Head";
  src: local(OpenSans), url("../fonts/VWHeadBold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

/***Colors***/
:root {
  --black: #000;
  --white: #fff;
  --light-blue: #0099DA;
  --dark-blue: #001E50;
  --gray: #828282;
  --light-gray: #E0E0E0;
  --sky: #F3F5F6;
}

/***Global***/
.page {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  overflow-x: hidden;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.page-body {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 0;
  color: var(--black);
  font-family: "VW Head", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: normal;
  background-color: var(--white);
  /*overflow-x: hidden;*/
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: -webkit-min-content 1fr -webkit-min-content;
  -ms-grid-rows: min-content 1fr min-content;
  grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
  grid-template-rows: min-content 1fr min-content;
  -ms-flex-line-pack: start;
  align-content: start;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  padding: 0;
  outline: none;
  border: none;
  cursor: pointer;
}

.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/***Elements***/
.phone {
  font-weight: 700;
  color: var(--light-blue);
  -webkit-transition: color .25s ease;
  -o-transition: color .25s ease;
  transition: color .25s ease;
}

.phone:hover {
  color: var(--dark-blue);
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.second-heading {
  margin: 0 0 50px 0;
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
}

.btn {
  height: 45px;
  padding: 0 15px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--light-blue);
  border-radius: 30px;
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
  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;
}

.btn:hover {
  background-color: var(--dark-blue);
}

.btn.bordered {
  color: var(--dark-blue);
  background-color: var(--white);
  border: 2px solid var(--dark-blue);
}

.btn.bordered:hover {
  background-color: rgba(134, 137, 139, 0.2);
}

.text-bold {
  font-weight: 700;
}

.car-name {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: var(--white);
}

.standart-list__item {
  position: relative;
  padding-left: 25px;
}

.standart-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 13px;
  height: 10px;
  background-image: url(../img/icons/done.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.standart-list__item+.standart-list__item {
  margin-top: 10px;
}

.standart-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-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.standart-input {
  width: 220px;
  height: 45px;
  text-align: center;
  border-radius: 30px;
  border: none;
}

.standart-input::-moz-placeholder {
  font-family: "VW Head", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray);
  font-weight: 400;
  opacity: 1;
}

.standart-input::-webkit-input-placeholder {
  font-family: "VW Head", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray);
  font-weight: 400;
  opacity: 1;
}

.standart-input:-ms-input-placeholder {
  font-family: "VW Head", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray);
  font-weight: 400;
  opacity: 1;
}

.standart-input::-ms-input-placeholder {
  font-family: "VW Head", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray);
  font-weight: 400;
  opacity: 1;
}

.standart-input::placeholder {
  font-family: "VW Head", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray);
  font-weight: 400;
  opacity: 1;
}

.standart-input:focus {
  outline: none;
  border: 2px solid var(--light-blue);
}

.standart-form .btn {
  width: 220px;
  margin-top: 15px;
}

.standart-form .standart-input+.standart-input {
  margin-top: 10px;
}

.agreement {
  margin-top: 20px;
  padding-left: 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 14px;
}

.personal-data-ckeck__link {
  color: var(--black);
}

.modal__inner .agreement a.personal-data-ckeck__link {
  text-decoration: underline;
}

.agreement__label {
  position: relative;
  left: 15px;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: -30px;
  top: -3px;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  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;
}

.checkmark::before {
  content: "";
  width: 85%;
  height: 85%;
  background-image: url(../img/icons/done.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity .2s ease;
  -o-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

.agreement__label input:checked~.checkmark::before {
  opacity: 1;
  -webkit-transition: opacity .2s ease;
  -o-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

/***Header***/

.main-header {
  width: 100%;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  background-color: var(--white);
}

.shadow-bottom::after {
  content: "";
  position: absolute;
  z-index: 100;
  bottom: -20px;
  width: 100%;
  height: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3029586834733894)), color-stop(33%, rgba(0, 0, 0, 0.20211834733893552)), color-stop(66%, rgba(0, 0, 0, 0.10127801120448177)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.3029586834733894) 0%, rgba(0, 0, 0, 0.20211834733893552) 33%, rgba(0, 0, 0, 0.10127801120448177) 66%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3029586834733894) 0%, rgba(0, 0, 0, 0.20211834733893552) 33%, rgba(0, 0, 0, 0.10127801120448177) 66%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  -webkit-transition: opacity .25s;
  -o-transition: opacity .25s;
  transition: opacity .25s;
}

.shadow-bottom.active::after {
  opacity: 1;
}

.main-header__inner {
  height: 100px;
  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;
}

.mobile-header {
  display: none;
}

.logo {
  width: 50px;
  height: 50px;
  background-image: url(../img/icons/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.promo .logo {
  margin-right: 20px;
}

.site-name {
  color: var(--dark-blue);
  display: inline-block;
}

.promo .site-name {
  margin-bottom: 7px;
}

.main-header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-header__buttons .btn+.btn {
  margin-left: 20px;
}

/***Main***/

.page-content {
  padding-top: 100px;
}

.main-banner__logo--img {
  width: 50px;
  height: 50px;
  background-image: url(../img/icons/logo-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.main-banner__top {
  position: relative;
  height: 624px;
  background-image: url(../img/main-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.main-banner__logo {
  width: 100%;
  position: absolute;
  top: 36px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.line {
  height: 2px;
  background-color: var(--white);
}

.line.first {
  width: 70%;
}

.line.second {
  width: 25%;
}

.main-banner__bottom {
  /* height: 450px; */
}

.banner-sticky {
  display: flex;
}

.banner-sticky__left {
  width: 75%;
  height: 310px;
  padding: 12px 45px 10px 10px;
  background: linear-gradient(90deg, #00437A 0%, #001E50 100%);
  display: flex;
  justify-content: flex-end;
}

.banner-sticky__left span {
  font-size: 58px;
  line-height: 70px;
  font-weight: 700;
  color: var(--white);
}

.banner-sticky__right {
  width: 45%;
  height: 310px;
  padding: 34px 10px 10px 40px;
}

.banner-sticky__right ul {
  margin-bottom: 34px;
}

.banner-sticky__right li {
  font-size: 20px;
  line-height: 24px;
  color: var(--dark-blue);
}

.banner-sticky__right li+li {
  margin-top: 8px;
}

.models {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: var(--sky);
}

.models-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 60px;
}

.model {
  position: relative;
  /* height: 400px; */
  height: 430px;
  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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* .model:nth-last-child(1) {
  grid-column: 2 / 3;
} */

/* .model.last {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
} */

.model__bg {
  width: 90%;
  height: 250px;
  padding: 20px;
}

.model:hover .model__bg {
  background: var(--light-blue) !important;
}

.model__img {
  width: 75%;
  position: absolute;
  top: 50%;
  /* top: 53%; */
  /* left: 50%; */
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  justify-content: center;
}

.costs {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-cost {
  margin-right: 20px;
  font-size: 28px;
  line-height: 32px;
}

.main-cost span {
  display: inline-block;
}

.credit-cost span {
  display: inline-block;
}

.model__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.model__buttons .btn+.btn {
  margin-left: 20px;
}

.list-model {
    color: var(--white);
    font-size: 15px;
    padding-top: 10px;
}

.list-model li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
}




.complictations {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: var(--white);
}

.complictations__inner {
  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: center;
  -ms-flex-align: center;
  align-items: center;
}

.select-lists {
    width: 515px;
    gap: 15px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dropbtn {
  width: 250px;
  height: 50px;
  position: relative;
  padding: 0 30px;
  color: var(--gray);
  font-weight: 400;
  background-color: var(--white);
  border: 2px solid var(--sky);
  border-radius: 30px;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  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;
}

.dropbtn:hover,
.dropbtn:focus {
  -webkit-box-shadow: 0px 0px 20px 2px var(--sky);
  box-shadow: 0px 0px 20px 2px var(--sky);
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  width: 7px;
  height: 5px;
  background-image: url(../img/icons/down.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.dropdown+.dropdown {
  margin-left: 15px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  width: 100%;
  position: absolute;
  top: 54px;
  border: 2px solid var(--sky);
  background-color: var(--white);
  overflow: auto;
  -webkit-box-shadow: 0px 8px 16px 0px var(--sky);
  box-shadow: 0px 8px 16px 0px var(--sky);
  z-index: 5;
}

.dropdown-item {
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  color: var(--gray);
  font-weight: 400;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--sky);
}

.show-list {
  display: block;
}

.complictations-list {
  width: 100%;
  margin-bottom: 30px;
}

.complictations-item.hidden {
  display: none;
}

.complictation {
  padding: 30px 10% 30px 0;
  border-bottom: 2px solid var(--dark-blue);
  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;
}

.complictation__img {
  max-width: 400px;
  max-height: 180px;
  align-items: center;
  justify-content: flex-start;
}

.complictation__description--top {
  margin-bottom: 13px;
  font-size: 30px;
  line-height: 32px;
  color: var(--dark-blue);
}

.complictation__description--middle {
  margin-bottom: 8px;
}

.complictation__name {
  margin-right: 5px;
}

.complictation__cost {
  margin-right: 5px;
  color: var(--light-blue);
}

.complictation__old-cost {
  position: relative;
  font-weight: 400;
}

.complictation__old-cost::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: var(--black);
}

.complictation__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.complictation__buttons .btn+.btn {
  margin-top: 12px;
}

.showMore {
  color: var(--dark-blue);
  text-decoration: underline;
  background-color: transparent;
}

.credit {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: var(--white);
}

.credit__tabs {
  margin-bottom: 30px;
  background-color: var(--sky);
}

.credit__tabs--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tab {
  height: 70px;
  padding: 0 30px;
  color: var(--dark-blue);
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  background-color: transparent;
  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;
}

.tab.active,
.tab:hover {
  color: var(--white);
  background: -webkit-gradient(linear, left top, right top, from(#00437A), to(#001E50));
  background: -o-linear-gradient(left, #00437A 0%, #001E50 100%);
  background: linear-gradient(90deg, #00437A 0%, #001E50 100%);
}

.tab-content {
  height: 600px;
  display: none;
}

.tab-content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tab-content__img {
  position: relative;
  width: 70%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.credit__conditions {
  width: 25%;
}

.credit__tabs {
    overflow: auto;
}

.mobile-conditions {
  width: 90%;
  padding: 40px;
  background-color: #F3F5F6;
  opacity: 0.78;
  display: none;
  box-sizing: border-box;
}

.mobile-conditions__heading {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 40px;
}

.mobile-conditions__list {
  font-size: 16px;
  line-height: 18px;
}

.credit__conditions p {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 40px;
}

.credit__conditions .standart-list {
  margin-bottom: 48px;
}

.credit__form--wrapper {
  padding: 8% 5%;
  background-color: var(--sky);
}

/***Footer***/

.page-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page-footer__inner {
  position: relative;
  height: 600px;
  background-image: url(../img/map.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.page-footer__inner .container {
  position: relative;
}

.feedback.mob-feedback {
  display: none;
}

.feedback {
  position: absolute;
  top: 45px;
  left: 20%;
  padding: 36px 35px 50px 18px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  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: center;
  -ms-flex-align: center;
  align-items: center;
}

.feedback .promo {
  margin-bottom: 30px;
}

.feedback .standart-input {
  background-color: var(--sky);
}

.feedback .checkmark {
  background-color: var(--sky);
}

.disclaimer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f1f1f1;
  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: center;
  -ms-flex-align: center;
  align-items: center;
}

.disclaimer div {
  padding-top: 25px;
}

.disclaimer div.hidden {
  display: none;
}

/***Modals***/

.modal {
  /* width: 100%;
  height: 100%; */
  /* position: fixed;
  z-index: -1;
  left: 0;
  top: 0; */
  background-color: rgba(0, 0, 0, 0.8);
  /* opacity: 0;
  -webkit-transition: opacity .8s ease;
  -o-transition: opacity .8s ease;
  transition: opacity .8s ease; */
  /* 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; */
  display: none;
  padding: 0;
}

/* .modal.active {
  opacity: 1;
} */

.modal__inner {
  position: relative;
  width: 880px;
  padding: 30px 50px 70px 50px;
  background-image: url(../img/modal-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.modal-thanks .modal__inner,
.modal-already .modal__inner {
  height: 490px;
  align-items: center;
}

.modal-thanks .modal-heading,
.modal-already .modal-heading {
  max-width: 100%;
}

.modal-heading {
  max-width: 60%;
  margin-bottom: 50px;
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
}

.modal-text {
  color: var(--white);
  font-size: 22px;
  line-height: 24px;
}

.modal .agreement__label,
.modal .personal-data-ckeck__link {
  color: var(--white);
}

.close-modal {
  position: absolute;
  top: 0;
  right: -60px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-image: url(../img/icons/close.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: opacity .25s ease;
  -o-transition: opacity .25s ease;
  transition: opacity .25s ease;
}

.close-modal:hover {
  opacity: 0.7;
}

.banks {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bank-btn {
  width: 140px;
  height: 75px;
  padding: 0;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all .25s ease;
  cursor: pointer;
  display: block;
}

.bank-btn:hover {
  transform: translateY(-5px);
}

.bank-btn:active {
  outline: none;
  transform: translateY(0);
}

.banks .bank-btn+.bank-btn {
  margin-left: 20px;
}

.present-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 90px;
  height: 90px;
  padding: 0;
  border: 2px solid #000;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(../img/gift-icon.png);
  background-size: 60%;
  background-position-x: center;
  background-position-y: 45%;
  background-repeat: no-repeat;
  transition: all .25s ease;
  cursor: pointer;
  display: block;
}

.present-btn:hover {
  transform: scale(1.05);
}

.modaal-wrapper .modaal-container {
  width: 830px;
  height: 750px;
  background-color: transparent;
  background-image: url(../img/present.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: none;
  display: flex;
  align-items: flex-end;
}

.modaal-wrapper .modaal-content {
  width: 100%;
  padding: 0 0 90px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modaal-wrapper .modaal-content-container {
  padding: 0;
}

.present-modal__heading {
  margin-bottom: 10px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: #FD2020;
  text-shadow: 2px 2px 0 #fff;
  display: block;
}

.present-modal__countdown {
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
}

.present-modal__form {}

.present-modal__form input[type="tel"],
.present-modal__form input[type="text"] {
  width: 220px;
  height: 42px;
  padding: 0 10px;
  font-size: 18px;
  text-align: center;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.35));
  border: none;
  border-radius: 16px;
  transition: all .3s ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.present-modal__form input[type="tel"]:focus,
.present-modal__form input[type="text"]:focus {
  outline: none;
  background-color: rgb(226, 226, 226);
}

.present-modal__form button[type="submit"] {
  width: 220px;
  height: 42px;
  margin-left: 20px;
  padding: 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background-color: #FB2A2A;
  text-align: center;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.35));
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.present-modal__form button[type="submit"]:hover {
  background-color: #e01c1c;
}

.present-modal__form-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.d-flex {
  display: flex;
}

.agreement {
  max-width: 350px;
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
}

/***Adaptive***/
@media screen and (max-width: 1700px) {
  .container {
    max-width: 1450px;
  }
}

@media screen and (max-width: 1500px) {
  .container {
    max-width: 1150px;
  }

  .banner-sticky__left span {
    font-size: 55px;
    line-height: 65px;
  }

  .tab {
    font-size: 24px;
    line-height: 28px;
  }

  .tab-content {
    height: 450px;
  }

  .costs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main-cost {
    margin-right: 0;
    font-size: 22px;
    line-height: 24px;
  }

  .credit-cost {
    margin-top: 5px;
    display: inline-block;
  }

  .complictation {
    padding-right: 0;
  }

  .complictation__img {
    max-width: 300px;
  }

  .feedback {
    left: 10%;
  }
}

@media screen and (max-width: 1200px) {
  .page-body {
    font-size: 15px;
    line-height: 17px;
  }

  .container {
    max-width: 900px;
  }

  .second-heading {
    margin-bottom: 38px;
    font-size: 40px;
    line-height: 45px;
  }

  .modal__inner {
    width: 70%;
    padding: 25px;
  }

  .tab-content {
    height: unset;
    flex-direction: column;
  }

  .tab-content__img {
    width: 100%;
    height: 350px;
  }

  .credit__conditions {
    width: 55%;
    margin: 30px auto 0 auto;
    padding: 20px;
    background-color: var(--sky);
  }

  .credit__tabs {
    margin-bottom: 20px;
  }

  .models-list {
    column-gap: 25px;
    row-gap: 40px;
  }

  .model {
    height: 385px;
  }

  .model__buttons {
    flex-direction: column;
  }

  .model__buttons .btn+.btn {
    margin-left: 0;
    margin-top: 10px;
  }

  .model__bg {
    width: 100%;
    height: 200px;
  }

  .car-name {
    font-size: 32px;
    line-height: 36px;
  }

  .model__img {
    top: 35%;
  }

  .complictations {
    padding-top: 40px;
  }

  .complictation__img {
    max-width: 250px;
  }
}

@media screen and (max-width: 1000px) {
  .container {
    max-width: 750px;
  }

  .credit__tabs--menu {
    overflow-x: scroll;
  }
}

@media screen and (max-width: 800px) {
  .page-content {
    padding-top: 90px;
  }

  .container {
    max-width: 90%;
  }

  .shadow-bottom::after {
    height: 15px;
    bottom: -15px;
  }

  .main-header__inner {
    display: none;
  }

  .mobile-header {
    height: 90px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-header .logo {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }

  .mobile-header .site-name {
    margin-bottom: 0;
  }

  .mobile-header__bottom {
    display: flex;
    align-items: center;
  }

  .mobile-header .phone {
    margin-left: 10px;
  }

  .main-banner__top {
    height: 250px;
    background-image: url(../img/main-banner-mob.jpg);
  }

  .main-banner__logo {
    display: none;
  }

  .main-banner__bottom {
    height: unset;
  }

  .banner-sticky {
    flex-direction: column;
  }

  .banner-sticky__left {
    width: 100%;
    padding: 20px;
    height: unset;
    justify-content: center;
    box-sizing: border-box;
  }

  .banner-sticky__left span {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
  }

  .banner-sticky__right {
    width: 100%;
    height: unset;
    padding: 20px;
    box-sizing: border-box;
  }

  .banner-sticky__right .btn {
    margin: 0 auto;
  }

  .complictation {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .models-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .model {
    /* height: 325px; */
    height: 375px;
  }

  .select-lists {
    width: 100%;
  }

  .model__buttons {
    flex-direction: row;
  }

  .model__buttons .btn+.btn {
    margin-left: 10px;
    margin-top: 0;
  }

  .credit__conditions {
    margin-top: 10px;
    box-sizing: border-box;
  }

  .mobile-conditions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .credit__conditions--heading {
    display: none;
  }

  .credit__conditions--list {
    display: none;
  }

  .complictation__buttons {
    flex-direction: row;
  }

  .complictation__buttons .btn+.btn {
    margin-left: 10px;
    margin-top: 0;
  }

  .banks {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    justify-content: center;
  }

  .bank-btn {
    width: 80px;
    height: 42px;
    padding: 0;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all .25s ease;
    cursor: pointer;
    display: block;
  }

  .banks .bank-btn+.bank-btn {
    margin-left: 10px;
  }

  .modaal-inner-wrapper {
    padding: 0;
  }

  .modaal-wrapper .modaal-container {
    width: 100%;
    max-height: 614px;
    height: 100%;
    background-image: url(../img/present__mob.png);
  }

  .modaal-wrapper .modaal-content {
    width: 100%;
    padding: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .present-modal__heading {
    margin-bottom: 8px;
    font-size: 16px;
    text-shadow: 1px 1px 0 #fff;
  }

  .present-modal__countdown {
    margin-bottom: 25px;
  }

  .present-modal__form-inner .d-flex {
    flex-direction: column;
  }

  .present-modal__form input[type="tel"],
  .present-modal__form input[type="text"] {
    width: 160px;
    height: 36px;
    padding: 0 8px;
    font-size: 14px;
  }

  .present-modal__form button[type="submit"] {
    width: 160px;
    height: 36px;
    margin-left: 0;
    margin-top: 8px;
    font-size: 14px;
  }

  .agreement {
    max-width: 280px;
    margin-top: 15px;
    font-size: 9px;
  }
}

@media screen and (max-width: 450px) {
  .second-heading {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 34px;
  }

  .btn {
    height: 40px;
  }

  .models {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .model__img {
    /* top: 42%; */
    top: 51%;
  }

  .dropbtn {
    width: 100%;
    height: 40px;
    padding: 0 15px;
  }

  .dropdown {
    width: 45%;
  }

  .tab-content.container {
    max-width: 100%;
  }

  .tab-item {
    width: 100px;
  }

  .tab {
    height: 36px;
    padding: 0 7px;
    font-size: 16px;
    line-height: 18px;
  }

  .tab-content__img {
    height: 375px;
  }

  .modal__inner {
    width: 85%;
    padding-top: 50px;
    background-image: url(../img/modal-bg__mobile.jpg);
  }

  .modal-heading {
    max-width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 34px;
  }

  .close-modal {
    right: 5px;
    top: 5px;
    background-image: url(../img/icons/close__mobile.svg);
  }

  .modal .standart-form {
    margin-left: auto;
    margin-right: auto;
  }

  .modal .standart-input {
    margin-left: auto;
    margin-right: auto;
  }

  .credit {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .credit__conditions {
    width: 100%;
  }

  .credit__tabs--swiper {
    overflow: visible;
  }

  .credit__tabs--swiper .swiper-button-next:after,
  .credit__tabs--swiper .swiper-button-prev:after {
    display: none;
  }

  .credit__tabs--swiper .swiper-button-next,
  .credit__tabs--swiper .swiper-button-prev {
    width: 20px;
    height: 20px;
    top: -15px;
    background-image: url(../img/icons/next.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .credit__tabs--swiper .swiper-button-prev {
    left: 0;
  }

  .credit__tabs--swiper .swiper-button-next {
    right: 0;
    transform: rotate(180deg);
  }

  .credit__tabs--menu {
    overflow-x: unset;
  }

  .credit__tabs--menu .swiper-slide {
    width: 33%;
    display: flex;
    justify-content: center;
  }

  .complictation {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .complictation__description {
    width: 100%;
    margin-bottom: 14px;
  }

  .complictation__description--top {
    margin-bottom: 18px;
  }

  .complictation__description--middle {
    margin-bottom: 5px;
  }

  .complictation__benefits {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-footer__inner {
    height: 350px;
    /* background-size: 400%;
    background-position: 73% 100%; */
    background-image: url(../img/map-mob.webp);
  }

  .feedback.mob-feedback {
    display: flex;
  }

  .page-footer .feedback {
    position: static;
    padding-left: 0;
    padding-right: 0;
  }

  .feedback .promo {
    justify-content: center;
  }

  .page-footer__inner .feedback {
    display: none;
  }
}

@media screen and (max-width: 350px) {
  .second-heading {
    font-size: 26px;
    line-height: 30px;
  }

  .credit__tabs--swiper {
    width: 300px;
  }

  .tab {
    padding: 0 5px;
    font-size: 12px;
    line-height: 14px;
  }
}

.filtered-hide,
.showmore-hide {
    display: none !important;
}

.map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

/* .ymaps-2-1-79-map {
	filter: grayscale(1);
} */
