@charset "UTF-8";
@import url(font/stylesheet.css);
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

body, body *, body *::before, body *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  outline: none;
}

body {
  font-family: 'Museo Sans Cyrl 500';
  min-width: 425px;
  color: #000000;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  -webkit-transition: 0.05s;
  transition: 0.05s;
}

a:hover {
  -webkit-transition: 0.02s;
  transition: 0.02s;
}

a:hover, a:focus {
  opacity: 0.8;
}

hr {
  border: 1px solid transparent;
  border-bottom: 1px solid #4D5863;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  max-width: 100vw;
  min-width: 425px;
  overflow: hidden;
}

.page .main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.section {
  margin: 60px 0;
}

.section .section__title {
  margin-bottom: 40px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .section {
    margin: 50px 0;
  }
}

@media (max-width: 800px) {
  .section {
    margin: 40px 0;
  }
  .section .section__title {
    margin-bottom: 30px;
  }
}

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

:root {
  font-size: 14px;
}

h1, .h1 {
  font-size: 30px;
}

@media screen and (min-width: 600px) {
  h1, .h1 {
    font-size: calc(30px + 20 * ((100vw - 600px) / 500));
  }
}

@media screen and (min-width: 1100px) {
  h1, .h1 {
    font-size: 50px;
  }
}

h2, .h2 {
  font-size: 26px;
}

@media screen and (min-width: 600px) {
  h2, .h2 {
    font-size: calc(26px + 14 * ((100vw - 600px) / 500));
  }
}

@media screen and (min-width: 1100px) {
  h2, .h2 {
    font-size: 40px;
  }
}

h3, .h3 {
  font-size: 24px;
}

@media screen and (min-width: 600px) {
  h3, .h3 {
    font-size: calc(24px + 6 * ((100vw - 600px) / 500));
  }
}

@media screen and (min-width: 1100px) {
  h3, .h3 {
    font-size: 30px;
  }
}

h4, .h4 {
  font-size: 18px;
}

@media screen and (min-width: 600px) {
  h4, .h4 {
    font-size: calc(18px + 4 * ((100vw - 600px) / 500));
  }
}

@media screen and (min-width: 1100px) {
  h4, .h4 {
    font-size: 22px;
  }
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 17px;
}

small, .small {
  font-size: 12px;
}

.text--black {
  color: #000000;
}

.text--gray {
  color: #4d5863;
}

.text--gray-light {
  color: #D0D0D0;
}

.text--white {
  color: #ffffff;
}

.text--primary {
  color: #E51C24;
}

.text--yellow {
  color: #FFD155;
}

.text--green {
  color: #2CAC41;
}

.text--uppercase {
  text-transform: uppercase;
}

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

.text--100 {
  font-weight: 100;
}

.text--200 {
  font-weight: 200;
}

.text--300 {
  font-weight: 300;
}

.text--400 {
  font-weight: 400;
}

.text--500 {
  font-weight: 500;
}

.text--600 {
  font-weight: 600;
}

.text--700 {
  font-weight: 700;
}

.text--800 {
  font-weight: 800;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 20px;
}

.form .form__title {
  margin-top: 25px;
}

.form .form__item {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form .form__item.form__item--fluid {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.form .form__item.form__item--half {
  -ms-flex-preferred-size: calc(100%/2 - 20px/2);
      flex-basis: calc(100%/2 - 20px/2);
}

.btn {
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  height: 43px;
  padding: 0 20px;
  background: #0001;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 1rem;
  opacity: 1 !important;
}

.btn--primary {
  background: #E51C24;
  color: #ffffff;
}

.btn--primary:hover {
  background: #ea4a50;
}

.btn--yellow {
  background: #FFD155;
  color: #000000;
}

.btn--yellow:hover {
  background: #ffc322;
}

.btn--outline {
  color: currentColor;
  border-color: #D0D0D0;
  background: transparent;
}

.btn--outline:hover {
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
}

.btn--gray-color{
  background: rgba(0, 0, 0, 0.75);
}

.btn--gray-color:hover{
  background: rgb(60 60 60 / 75%);
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  position: relative;
  line-height: 1;
}

.options .options__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 3px;
  padding: 10px 16px;
  gap: 5px;
}

.options .options__item.options__item--green {
  background: #2CAC41;
  color: #ffffff;
}

.options .options__item.options__item--yellow {
  background: #FFD155;
  color: #000000;
}

.options .options__item svg {
  height: 0.8em;
  width: auto;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.input input {
  display: inline-block;
  height: 43px;
  background: #fff;
  border: 1px solid #e2ddd3;
  border-radius: 3px;
  padding: 0 16px;
  font-family: inherit;
}

.input textarea {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e2ddd3;
  border-radius: 3px;
  padding: 10px 20px;
  font-family: inherit;
  resize: none;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.checkbox input {
  display: none;
  opacity: 0;
  position: absolute;
  z-index: -100;
}

.checkbox input + .checkbox__checkmark {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #D0D0D0;
  border-radius: 3px;
  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;
  background: #ffffff;
  margin-right: 16px;
  cursor: pointer;
}

.checkbox input + .checkbox__checkmark::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: #E51C24;
  border-radius: 3px;
  opacity: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.checkbox input:checked + .checkbox__checkmark {
  border-color: #E51C24;
}

.checkbox input:checked + .checkbox__checkmark::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.checkbox .checkbox__label {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 120%;
}

.checkbox .checkbox__label a {
  text-decoration: underline;
}

.checkbox.checkbox--yellow input + .checkbox__checkmark::after {
  background: #FFD155;
}

.checkbox.checkbox--yellow input:checked + .checkbox__checkmark {
  border-color: #FFD155;
}

.list {
  list-style: url(../img/ico_check.svg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.list > * {
  margin-left: 1.25rem;
}

.select2 .select2-selection {
  height: 43px;
  padding: 0 16px;
  padding-right: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e2ddd3;
  border-radius: 3px;
  background: #ffffff;
}

.select2 .select2-selection {
  font-size: 12px;
}

@media screen and (min-width: 600px) {
  .select2 .select2-selection {
    font-size: calc(12px + 2 * ((100vw - 600px) / 500));
  }
}

@media screen and (min-width: 1100px) {
  .select2 .select2-selection {
    font-size: 14px;
  }
}

.select2 .select2-selection__rendered {
  padding: 0 !important;
}

.select2 .select2-selection__arrow {
  height: 43px !important;
  width: 43px !important;
}

.select2 .select2-selection__arrow b {
  border-color: #E51C24 transparent transparent transparent !important;
  border-width: 7px 5px 0 5px !important;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.select2.select2-container--open .select2-selection__arrow b {
  -webkit-transform: translateY(-3px) rotate(180deg);
          transform: translateY(-3px) rotate(180deg);
}

.breadcrumbs {
  margin: 30px 0px;
}

.breadcrumbs .beadecrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumbs .breadcrumbs__item {
  color: #179ADE;
}

.breadcrumbs .breadcrumbs__item:not(a) {
  color: #000000;
}

.breadcrumbs .breadcrumbs__item:not(:last-child):after {
  content: ' - ';
  color: #000000;
  pointer-events: none;
}

.widget {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}

.widget.sticky {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.widget .widget__btn {
  pointer-events: all;
  position: relative;
  display: block;
  margin-left: auto;
  width: 90px;
  height: 90px;
  left: -100px;
  border-radius: 50%;
  background: #E51C24;
  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;
  color: white;
  opacity: 1 !important;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
}

.widget .widget__btn svg {
  -webkit-animation: swing 5s infinite linear;
          animation: swing 5s infinite linear;
}

.widget .widget__btn::before, .widget .widget__btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #E51C24;
  border-radius: 50%;
  -webkit-animation: wave 3s infinite linear;
          animation: wave 3s infinite linear;
  background: rgba(229, 28, 36, 0.3);
  z-index: -1;
}

.widget .widget__btn::after {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.widget .widget__btn:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@-webkit-keyframes wave {
  from {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes wave {
  from {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@-webkit-keyframes swing {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  45% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  55% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  60% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes swing {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  45% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  55% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  60% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.views {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #D0D0D0;
}

.text-content > * {
  margin-top: 1em;
}

.ico-clock::before {
  content: url(../img/ico_clock.png);
  margin-right: 10px;
  position: relative;
  top: 3px;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.ico-maptag::before {
  content: url(../img/ico_maptag.png);
  margin-right: 10px;
  position: relative;
  top: 3px;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.header {
  position: relative;
  z-index: 20;
}

.header .header__head {
  background: #EBEBEB;
}

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

.header .header__main {
  border-bottom: 1px solid #D0D0D0;
}

.header .header__main-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
}

.header .header__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 65px;
}

.header .header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-left: auto;
}

.header .header__contacts-phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 50px;
}

.header .header__nav {
  border-bottom: 1px solid #D0D0D0;
}

.header .header__nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: #ffffff;
}

.header .header__nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

.header .header__nav-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .header__nav-item {
  position: relative;
}

.header__nav-item a {
  font-size: 16px;
  font-weight: 600;
}

.header .header__nav-item::after {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  height: 2px;
  background: #E51C24;
  bottom: -20px;
}

.header .header__nav-item.current::after {
  content: '';
}

.header .header__nav-logo {
  display: none;
}

.header .header__nav-logo svg {
  width: auto;
  height: 30px;
}

.header .header__nav-toggle {
  display: none;
}

@media (max-width: 1000px) {
  .header .header__contacts-phones {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 750px) {
  .header .header__main-inner {
    padding: 20px 0;
  }
  .header .header__nav-inner {
    padding: 10px 0;
  }
  .header .header__head {
    display: none;
  }
  .header .header__logo {
    display: none;
  }
  .header .header__nav-logo {
    display: block;
  }
  .header .header__nav-toggle {
    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: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-left: auto;
    width: 40px;
    height: 40px;
    padding: 6px;
    border: 1px solid #C8C8C8;
    border-radius: 3px;
    cursor: pointer;
  }
  .header .header__nav-toggle span {
    display: block;
    height: 3px;
    background: #179ADE;
    border-radius: 3px;
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
  .header .header__nav-toggle.active span {
    background: #E51C24;
  }
  .header .header__nav-toggle.active span:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
  .header .header__nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .header .header__nav-toggle.active span:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
  .header .header__nav .header__nav-inner {
    position: relative;
  }
  .header .header__nav .header__nav-list {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    right: 0;
    bottom: -15px;
    background: #ffffff;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 30px;
    padding-right: 60px;
    padding-left: 0;
    border-radius: 7px;
    -webkit-box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.3);
    -webkit-transform: translateX(9999px);
            transform: translateX(9999px);
  }
  .header .header__nav .header__nav-item {
    position: relative;
    padding: 10px 0;
    padding-left: 30px;
  }
  .header .header__nav .header__nav-item::after {
    position: absolute;
    display: block;
    width: 3px;
    height: 100%;
    background: #E51C24;
    right: -30px;
    bottom: 0;
  }
  .header .header__nav .header__nav-item.current::after {
    content: '';
  }
  .header .header__nav.active .header__nav-list {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  @-webkit-keyframes show {
    from {
      opacity: 0;
      -webkit-transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(-30deg) translateY(50%) scale(0.9);
              transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(-30deg) translateY(50%) scale(0.9);
    }
    to {
      opacity: 1;
      -webkit-transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(0deg) translateY(50%) scale(1);
              transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(0deg) translateY(50%) scale(1);
    }
  }
  @keyframes show {
    from {
      opacity: 0;
      -webkit-transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(-30deg) translateY(50%) scale(0.9);
              transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(-30deg) translateY(50%) scale(0.9);
    }
    to {
      opacity: 1;
      -webkit-transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(0deg) translateY(50%) scale(1);
              transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(0deg) translateY(50%) scale(1);
    }
  }
  @-webkit-keyframes hide {
    from {
      opacity: 1;
      -webkit-transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(0deg) translateY(50%) scale(1);
              transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(0deg) translateY(50%) scale(1);
    }
    to {
      opacity: 0;
      -webkit-transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(-30deg) translateY(50%) scale(0.9);
              transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(-30deg) translateY(50%) scale(0.9);
    }
  }
  @keyframes hide {
    from {
      opacity: 1;
      -webkit-transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(0deg) translateY(50%) scale(1);
              transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(0deg) translateY(50%) scale(1);
    }
    to {
      opacity: 0;
      -webkit-transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(-30deg) translateY(50%) scale(0.9);
              transform: perspective(700px) translateY(100%) translateY(-50%) rotateX(-30deg) translateY(50%) scale(0.9);
    }
  }
}

.footer .footer__top {
  border-bottom: 1px solid #D0D0D0;
}

.footer .footer__top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}

.footer .footer__main-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
  gap: 30px;
}

.footer .footer__main-contacts {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer__nav-list {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.footer .footer__nav-item {
  position: relative;
}

.footer .footer__nav-item a::after {
  position: absolute;
  width: 100%;
  left: 0;
  height: 3px;
  background: #E51C24;
  bottom: -5px;
}

.footer .footer__nav-item.current a {
  position: relative;
}

.footer .footer__nav-item.current a::after {
  content: '';
}

.footer .footer__address {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer .footer__contacts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer .footer__rules {
  background: #EBEBEB;
}

.footer .footer__rules-inner {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding-bottom: 90px;
}

@media (max-width: 750px) {
  .footer .footer__logo svg {
    height: 30px;
    width: auto;
  }
}

@media (max-width: 800px) {
  .footer .footer__main-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer__main-contacts {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mark-logos .mark-logos__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(90px, 9%))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(90px, 9%));
  grid-gap: 20px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mark-logos .mark-logos__item {
  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;
}

.hero .hero__inner {
  background: radial-gradient(130.17% 130.17% at 50% 25.9%, #F8F8F8 0%, #B1B1B1 100%);
  padding: 80px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero .hero__asset {
  margin: -55px 0;
}

@media (max-width: 1000px) {
  .hero .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 30px;
  }
  .hero .hero__asset {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin: 0px 0 -10px;
  }
  .hero .hero__asset img {
    max-width: 90%;
  }
}

.marks .marks__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[5];
      grid-template-columns: repeat(5, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 20px;
}

.marks .marks__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 160px;
}

.marks .marks__item-count {
  min-width: 35px;
  text-align: center;
  padding: 2px 5px;
  background: #EBEBEB;
}

@media (max-width: 1000px) {
  .marks .marks__inner {
    -ms-grid-columns: (minmax(125px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  }
  .marks .marks__item {
    width: auto;
  }
}

.choise .choise__inner {
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
}

.choise .choise__form-complects {
  border-radius: 3px;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 20px 40px;
  text-align: center;
}

.choise .choise__form-complects .form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[1];
      grid-template-columns: repeat(1, auto);
  -ms-grid-rows: (auto)[6];
      grid-template-rows: repeat(6, auto);
  grid-auto-flow: row dense;
}

.choise .choise__form-complects .form * {
  min-width: 0;
}

.choise .choise__form-callback {
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  background: #FFD155;
  padding: 20px 40px;
  background-size: cover;
  background-position: bottom right;
}

.choise .choise__progs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.choise .choise__progs > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 324px;
}

.choise .choise__progs-item {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  background: #0001;
  color: #ffffff;
  border-radius: 3px;
  padding: 20px 40px;
  min-height: 250px;
  position: relative;
}

.choise .choise__progs-item .btn {
  max-width: 260px;
}

.choise .choise__progs-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.choise .choise__progs-item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 600px) {
  .choise .choise__inner {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 'complects callback'
 'selections selections'
 'progs progs';
  }
  .choise .choise__form-complects {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: complects;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .choise .choise__form-callback {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: callback;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .choise .choise__car-selections {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: selections;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .choise .choise__car-selections > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .choise .choise__progs {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: progs;
  }
}

@media (min-width: 800px) {
  .choise .choise__inner {
    -ms-grid-columns: 2fr 1fr;
        grid-template-columns: 2fr 1fr;
        grid-template-areas: 'complects callback'
 'selections selections'
 'progs progs';
  }
  .choise .choise__form-complects {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: complects;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .choise .choise__form-complects .form {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (auto)[3];
        grid-template-rows: repeat(3, auto);
    grid-auto-flow: column dense;
  }
  .choise .choise__form-callback {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: callback;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .choise .choise__car-selections {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: selections;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .choise .choise__car-selections > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .choise .choise__progs {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: progs;
  }
}

@media (min-width: 1100px) {
  .choise .choise__inner {
    -ms-grid-columns: auto 320px;
        grid-template-columns: auto 320px;
        grid-template-areas: 'complects callback'
 'selections callback'
 'progs progs';
  }
  .choise .choise__form-complects {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: complects;
  }
  .choise .choise__form-complects .form {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (auto)[2];
        grid-template-rows: repeat(2, auto);
    grid-auto-flow: row dense;
  }
  .choise .choise__form-callback {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    grid-area: callback;
  }
  .choise .choise__car-selections {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: selections;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .choise .choise__car-selections > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .choise .choise__progs {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: progs;
  }
}

.car-selections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.car-selections > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.car-selections .car-selections__item {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  background: #0001;
  color: #ffffff;
  border-radius: 3px;
  padding: 20px 40px;
  min-height: 200px;
  text-align: center;
  position: relative;
}

.car-selections .car-selections__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.car-selections .car-selections__item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.models .models__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(345px, calc(100%/3 - 15px)))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(345px, calc(100%/3 - 15px)));
  grid-gap: 30px 20px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (min-width: 1001px) {
  .models.models--hits .models__inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.model {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.model .model__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

.model .model__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 30px;
}

.model .model__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.model .model__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  position: relative;
  padding: 10px 30px;
}

.model .model__options-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 5px;
  border-radius: 3px;
  padding: 3px 8px;
}

.model .model__options-item svg {
  height: 0.8em;
  width: auto;
}

.model .model__options-item.model__options-item--green {
  background: #2CAC41;
  color: #ffffff;
}

.model .model__options-item.model__options-item--yellow {
  background: #FFD155;
  color: #000000;
}

.model .model__safe {
  position: absolute;
  top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  gap: 10px;
  background: #EBEBEB;
  border-radius: 3px;
  max-width: 41px;
  white-space: nowrap;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.model .model__safe svg {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.model .model__safe .model__safe-text {
  position: relative;
  left: 10px;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.model .model__safe:hover {
  max-width: 350px;
}

.model .model__safe:hover .model__safe-text {
  left: 0;
  opacity: 1;
}

.model .model__body {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.model .model__name {
  color: #179ADE;
}

.model .model__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.model .model__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  white-space: nowrap;
}

.model .model__current-price {
  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;
  height: 40px;
  background: #FFD155;
  color: #000000;
  border-radius: 3px;
  padding: 0 15px;
}

.model .model__last {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 15px;
}

.model .model__profit {
  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;
  gap: 10px;
}

.model .model__profit img {
  width: 47px;
}

.model .model__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media (min-width: 1001px) {
  .model.model--hit {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
    font-size: 18px;
    min-height: 260px;
  }
  .model.model--hit h5, .model.model--hit .h5 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1001px) and (min-width: 600px) {
  .model.model--hit h5, .model.model--hit .h5 {
    font-size: calc(20px + 4 * ((100vw - 600px) / 500));
  }
}

@media screen and (min-width: 1001px) and (min-width: 1100px) {
  .model.model--hit h5, .model.model--hit .h5 {
    font-size: 24px;
  }
}

@media (min-width: 1001px) {
  .model.model--hit .model__head {
    position: static;
    height: auto;
  }
  .model.model--hit .model__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 320px;
        grid-template-columns: auto 320px;
  }
  .model.model--hit .model__main {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .model.model--hit .model__safe {
    position: static;
    max-width: none;
  }
  .model.model--hit .model__safe .model__safe-text {
    opacity: 1;
    position: static;
  }
  .model.model--hit .model__img {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .model.model--hit .model__options {
    position: absolute;
    top: 20px;
    right: 30px;
    padding: 0;
  }
}

.benefits .benefits__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px 30px;
  padding: 25px;
  background: #F6F6F6;
}

.benefits .benefits__item {
  height: 170px;
  background: #0002;
  color: #ffffff;
  padding: 15px;
  padding-right: 20px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.benefits .benefits__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.benefits .benefits__item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.benefits .benefits__item-body {
  background: #404040ae;
  color: #ffffff;
  padding: 5px 10px;
}

@media (max-width: 1100px) {
  .benefits .benefits__inner {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}

@media (max-width: 600px) {
  .benefits .benefits__inner {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }

  .widget .widget__btn {
    left: -50px;
    width: 60px;
    height: 60px;
  }
  .widget .widget__btn svg{
    width: 40px;
  }
}

.request-form .request-form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 50px;
  overflow: hidden;
}

.request-form .request-form__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 600px;
}

.request-form .request-form__main .h1 {
  font-weight: 700;
}

.request-form .request-form__main .h1 {
  font-size: 52px;
}

@media screen and (min-width: 600px) {
  .request-form .request-form__main .h1 {
    font-size: calc(52px + 38 * ((100vw - 600px) / 500));
  }
}

@media screen and (min-width: 1100px) {
  .request-form .request-form__main .h1 {
    font-size: 90px;
  }
}

.request-form .request-form__form-place {
  margin-top: 60px;
  max-width: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: relative;
  padding: 20px 0;
}

.request-form .request-form__form-place::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  height: 100%;
  bottom: 0;
  top: 0;
  left: -100vw;
  right: -100vw;
  background: #F6F6F6;
}

.request-form .request-form__asset {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  z-index: -1;
}

.request-form .request-form__asset img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 800px;
  width: 65vw;
  margin-right: -12%;
}

@media (max-width: 800px) {
  .request-form .request-form__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    overflow: visible;
  }
  .request-form .request-form__form-place {
    margin-top: 30px;
    padding: 0;
  }
  .request-form .request-form__form-place::after {
    display: none;
  }
  .request-form .request-form__asset {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    z-index: -1;
  }
  .request-form .request-form__asset img {
    position: static;
    width: 100%;
    margin-top: -20%;
  }
  .request-form .request-form__asset::after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    height: 50%;
    bottom: 0;
    top: 50%;
    left: -100vw;
    right: -100vw;
    background: #F6F6F6;
  }
}

@media (max-width: 600px) {
  .request-form .request-form__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .request-form .request-form__form-place {
    margin-left: auto;
    margin-right: auto;
  }
  .request-form .request-form__asset {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    z-index: -1;
  }
  .request-form .request-form__asset img {
    position: static;
    width: 100%;
    margin-top: 0;
  }
}

.model-main .section__title {
  margin-bottom: 20px;
}

.model__present {
  margin-bottom: 40px;
}

.model__present-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.model__present-item {
  background: #E81A29;
  border-radius: 3px;
  color: #fff;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0px 20px;
  position: relative;
}

.model__present-text {
  font-size: 24px;
  color: #fff;
  z-index: 1;
  width: 54%;
}

.model__present-text span {
  font-size: 32px;
  font-weight: 600;
}

.model__present-img {
  position: absolute;
  left: 20px;
  bottom: 0;
  max-width: 200px;
  margin-right: 50px;
  margin-top: -16px;
  z-index: 1;
}

.model__present-item-ins {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 30%;
  height: 71px;
}


.model-main .model-main__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 405px;
      grid-template-columns: 1fr 350px;
  grid-gap: 15px;
  margin-bottom: 25px;
}

.model-main-col {
  overflow: hidden;
}

.model-main-box {
  background-color: #FFD155;
  border-radius: 3px;
  padding: 25px 30px;
}

.model-main__feature-item .text--400 {
  display: flex;
  align-items: center;
}

.model-main__feature-icon {
  margin-right: 10px;
}

.model-main__feature-item .text--600,
.model-main__feature-item .text--400 {
  font-size: 15px;
}

.model-main__feature-item .text--600 {
  text-align: right;
  font-weight: 600;
}

.model-main .model-main__options {
  /* -ms-grid-row: 1;
  -ms-grid-column: 1; */
}

.model-main .model-main__views_year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* .model-main .model-main__galery {
  -ms-grid-row: 2;
  -ms-grid-row-span: 4;
  -ms-grid-column: 1;
}

.model-main .model-main__price {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

.model-main .model-main__feature {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: feature;
}

.model-main .model-main__safe {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
  grid-area: safe;
} */

.model-main .model-main__payment {
  /* -ms-grid-row: 5;
  -ms-grid-column: 2;
  grid-area: payment; */
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

/* .model-main .model-main__tradein {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
  grid-area: tradein;
} */

.tradein__feedback .model-main__benefits {
  /* -ms-grid-row: 6;
  -ms-grid-column: 2;
  grid-area: benefits; */
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.model-main .model-main__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.model-main .model-main__views_year {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.model-main .model-main__galery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.model-main .model-main__galery img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 3px;
}

.model-main .model-main__galery .swiper.galery {
  max-width: 100%;
  min-width: 0;
  height: 558px;
}

.model-main .model-main__galery .swiper.thumbs {
  max-width: 100%;
  min-width: 0;
}

.model-main .model-main__galery .swiper.thumbs .swiper-slide {
  min-height: 70px;
  opacity: 0.6;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.model-main .model-main__galery .swiper.thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.model-main .model-main__galery .swiper.thumbs .swiper-button-prev,
.model-main .model-main__galery .swiper.thumbs .swiper-button-next {
  color: white;
}

.model-main .model-main__galery .swiper.thumbs .swiper-button-prev::after,
.model-main .model-main__galery .swiper.thumbs .swiper-button-next::after {
  font-size: 35px;
  font-weight: 100;
}

.model-main .model-main__price img {
  width: 23px;
  height: 23px;
}

.model-main .model-main__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.model-main .model-main__safe {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  height: 85px;
  gap: 10px;
  background: #EBEBEB;
  padding: 5px 10px;
  border-radius: 3px;
  justify-self: flex-start;
}

.model-main .model-main__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  padding: 16px 30px;
  text-align: center;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
}

.model-main__payment-price {
  font-size: 20px;
  margin-bottom: 25px;
}

.model-main__payment-price span {
  
  font-size: 28px;
  font-weight: 600;
}

.model-main .model-main__payment .btn--primary {
  margin-bottom: 15px;
}

.tradein__feedback-inner {
  display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 45px 405px;
    grid-template-columns: 1fr 350px;
    grid-gap: 15px;
  align-items: center;
}

.tradein__feedback .model-main__tradein {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  background: #F6F6F6;
  border-radius: 3px;
}

.model-main .model-main__tradein > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.tradein__feedback .model-main__tradein .form {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tradein__feedback .model-main__tradein .form > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.tradein__feedback .model-main__tradein .form > *:last-child {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.tradein__feedback .model-main__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.model-main .model-main__feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  font-size: 18px;
  margin-bottom: 20px;
}

.model-main .model-main__feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 13px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.model-main .model-main__feature-item:last-child {
  border-bottom: 0;
}

.model-main .model-main__feature-item > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 800px) {
  .model-main .model-main__inner {
    -ms-grid-columns: 320px auto;
        grid-template-columns: 320px auto;
        /* grid-template-areas: 'options options'
 'galery galery'
 'safe feature'
 'safe feature'
 'price feature'
 'tradein feature'
 'tradein payment'
 'tradein benefits';
  */
  }
  .model-main .model-main__options {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: options;
    gap: 15px;
  }
  .model-main .model-main__galery {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: galery;
  }
  .model-main .model-main__price {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: price;
  }
  .model-main .model-main__feature {
    -ms-grid-row: 3;
    -ms-grid-row-span: 4;
    -ms-grid-column: 2;
    grid-area: feature;
  }
  .model-main .model-main__safe {
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    grid-area: safe;
  }
  .model-main .model-main__payment {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
    grid-area: payment;
  }
  .model-main .model-main__tradein {
    -ms-grid-row: 6;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    grid-area: tradein;
  }
  .model-main .model-main__benefits {
    -ms-grid-row: 8;
    -ms-grid-column: 2;
    grid-area: benefits;
  }
}

@media (max-width: 600px) {
  .model-main .model-main__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 15px;
        /* grid-template-areas: 'options'
 'galery'
 'safe'
 'price'
 'payment'
 'feature'
 'tradein'
 'benefits'; */
  }
  .model-main .model-main__options {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: options;
  }
  .model-main .model-main__galery {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: galery;
  }
  .model-main .model-main__price {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: price;
  }
  .model-main .model-main__feature {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    grid-area: feature;
  }
  .model-main .model-main__safe {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: safe;
  }
  .model-main .model-main__payment {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: payment;
  }
  .model-main .model-main__tradein {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    grid-area: tradein;
  }
  .model-main .model-main__benefits {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    grid-area: benefits;
  }
}

.reviews .reviews__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.reviews .reviews__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 350px 1fr auto;
      grid-template-columns: 350px 1fr auto;
      grid-template-areas: 'img name red-circle'
 'img text text'
 'img car-info date';
  grid-gap: 30px 40px;
}

.reviews .reviews__item-img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: img;
  min-height: 250px;
}

.reviews .reviews__item-img img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.reviews .reviews__item-name {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: name;
}

.reviews .reviews__item-red-circle {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: red-circle;
  justify-self: end;
  width: 38px;
  height: 38px;
  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;
  text-align: center;
  border: 3px solid #E51C24;
  border-radius: 50%;
}

.reviews .reviews__item-text {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: text;
  line-height: 2;
}

.reviews .reviews__item-car-info {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: car-info;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  line-height: 1.5;
}

.reviews .reviews__item-date {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: date;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  color: #BABABA;
}

@media (max-width: 1000px) {
  .model-main .model-main__galery .swiper.galery {
    height: 100%;
  }
  
  .model-main .model-main__inner {
    grid-template-columns: 1fr;
  }

  .model__present-inner {
    grid-template-columns: 1fr;
  }

  .model__present-item:first-child {
    margin-bottom: 40px;
  }

  .tradein__feedback-inner {
    grid-template-columns: 1fr;
  }

  .reviews .reviews__item {
        grid-template-areas: 'img name red-circle'
 'img car-info date'
 'img . .'
 'text text text';
    grid-gap: 10px 20px;
  }
  .reviews .reviews__item-img {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .reviews .reviews__item {
    -ms-grid-columns: 1fr auto;
        grid-template-columns: 1fr auto;
        grid-template-areas: 'img img '
 'name red-circle'
 'car-info red-circle'
 'date date'
 'text text';
    grid-gap: 10px 20px;
  }
}

.review-form .review-form__inner {
  border: 1px solid #D0D0D0;
  border-radius: 7px;
  padding: 20px 40px;
}

.review-form .review-form__inner .form {
  margin-top: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contacts .contacts__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 420px auto 360px;
      grid-template-columns: 420px auto 360px;
  -ms-grid-rows: auto min-content;
      grid-template-rows: auto -webkit-min-content;
      grid-template-rows: auto min-content;
  grid-gap: 30px;
  min-height: 650px;
}

.contacts .contacts__info {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contacts .contacts__info > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contacts .contacts__info-item {
  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;
}

.contacts .contacts__info-item:not(:last-child) {
  border-bottom: 1px solid #C8C8C8;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.contacts .contacts__map {
  min-height: 260px;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts .contacts__map > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contacts .contacts__form {
  position: relative;
  z-index: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  border: 1px solid #D0D0D0;
  background: #ffffff;
  border-radius: 7px;
  padding: 30px 40px;
  margin-bottom: 50px;
}

.contacts .contacts__form .form {
  margin-top: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contacts .contacts__form .form .form__item {
  -ms-flex-preferred-size: calc(100%/3 - 15px);
      flex-basis: calc(100%/3 - 15px);
}

.contacts .contacts__form .form .form__item.form__item--fluid {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

@media (max-width: 1000px) {
  .contacts .contacts__inner {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .contacts .contacts__info {
    grid-column: span 1;
    grid-row: span 1;
  }
  .contacts .contacts__map {
    grid-column: span 1;
    grid-row: span 1;
  }
  .contacts .contacts__form {
    grid-column: span 2;
    grid-row: span 1;
    margin-bottom: auto;
  }
}

@media (max-width: 800px) {
  .contacts .contacts__form .form .form__item {
    -ms-flex-preferred-size: calc(100%/2 - 10px);
        flex-basis: calc(100%/2 - 10px);
  }
}

@media (max-width: 600px) {
  .form .form__item {
    min-width: auto;
  }

  .model__present-text {
    font-size: 16px;
  }

  .model__present-text span {
    font-size: 20px;
  }

  .contacts .contacts__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.main-form .main-form__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: 1fr 475px;
  gap: 40px;
  margin-top: 70px;
  margin-bottom: 40px;
}

.main-form .main-form__form {
  grid-row: span 2;
  padding: 30px 50px;
  border: 1px solid #EBEBEB;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  border-radius: 3px;
  position: relative;
}

.main-form-ins {
  position: absolute;
  z-index: 1;
  top: -120px;
  right: -22px;
  
}

.main-form-ins img {
  max-width: 315px;
}

.buyingup__docs-inner {
  display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[475px];
    grid-template-columns: 1fr 475px;
    gap: 40px;
    margin-top: 20px;
  align-items: end;
}

.buyingup__docs-content {
  background: #FFD155;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  padding: 30px;
  overflow: hidden;
  position: relative;
}

.buyingup__docs-content-ins {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.buyingup__docs-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  z-index: 1;
}

.buyingup__docs-content ul {
  z-index: 1;
}

.buyingup__docs-content ul li {
  font-size: 14px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.buyingup__docs-content ul li::before {
  content: '';
  min-width: 10px;
  min-height: 10px;
  background-color: #fff;
  margin-right: 15px;
  border-radius: 100%;
}

.buyingup__docs-content ul li:last-child {
  margin-bottom: 0;
}

.buyingup__docs-content ul li span {
  color: rgba(0, 0, 0, 0.2);
}

.buyingup__docs-text {
  padding: 25px;
  border: 2px solid #FFD155;
  border-radius: 3px;
  position: relative;
  height: max-content;
}

.buyingup__docs-text-ins {
  position: absolute;
  z-index: 0;
  top: -50px;
  left: 0;
}

.main-form .main-form__form .btn {
  margin-top: 20px;
}


.main-form .main-form__form .form__item {
  min-width: 200px;
}

.main-form .main-form__main {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

.main-form .main-form__content {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

.buyingup__steps-item {
  display: flex;
  align-items: start;
  padding-bottom: 40px;
  position: relative;
}

.buyingup__steps-item::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 35px;
  width: 2px;
  height: 100%;
  border: 1px dashed #E81A29;
}

.buyingup__steps-item:last-child::before {
  display: none;
}

.buyingup__steps-item:last-child .buyingup__steps-icon {
  background-color: #E81A29;
}

.buyingup__steps-item:last-child {
  padding-bottom: 0;
}

.buyingup__steps-text p {
  font-size: 14px;
}

.buyingup__steps-icon {
  margin-top: -25px;
  margin-right: 23px;
  min-width: 70px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E81A29;
  border-radius: 100%;
  background-color: #fff;
}

.main-form .main-form__main-img {
  position: relative;
  margin-bottom: 75px;
}

.main-form .main-form__main-img img {
  width: 100%;
}

.main-form .main-form__main-options {
  position: absolute;
  top: 15px;
  right: 15px;
}

.main-form .main-form__main-price {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  bottom: -20px;
  right: 20px;
  padding: 10px 15px;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  border-radius: 3px;
}

.main-form .main-form__main-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 40px;
  -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: 1140px) {
  .main-form-ins {
    position: absolute;
    z-index: 1;
    top: -76px;
    right: -22px;
  }

  .main-form-ins img {
    max-width: 200px;
  }
}

@media (max-width: 1040px) {
  .main-form .main-form__inner,
  .buyingup__docs-inner {
    grid-template-columns: 1fr;
  }
  
  .buyingup__docs-inner {
    gap: 60px;
  }

  .buyingup__steps-item {
    padding-bottom: 30px;
  }
}

@media (max-width: 800px) {
  .main-form .main-form__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-form .main-form__main {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}

.credit .credit__benefits-box {
  padding: 40px 95px;
  border: 1px solid #FFD155;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.credit__benefits-ins {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 40px;
}

.credit .credit__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E2DDD3;
  margin-bottom: 30px;
}



.credit .credit__benefits > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 260px;
}

.credit .credit__benefits h3 {
  margin-bottom: 1em;
}

.credit .main-form__inner {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
}

.credit__offer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0px;
}

.credit__offer-item {
  background: #FFD155;
  border-radius: 3px;
  padding: 50px 30px;
}

.credit__offer-item > img {
  max-width: 200px;
  margin-top: -70px;
}

.trade-in .trade-in__discount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.trade-in .trade-in__benefits {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.trade-in .trade-in__benefits > * {
  -ms-flex-preferred-size: calc(50% - 15px);
      flex-basis: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  min-width: 260px;
}

.trade-in .trade-in__benefits > * img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.buyingup__steps-text .h3 {
  font-weight: 600;
  margin-bottom: 10px;
}


.partners .partners__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px 30px;
}

.partners .partners__item {
  border: 1px solid #E1E1E1;
  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;
  min-height: 80px;
}
/*# sourceMappingURL=styles.css.map */

@media (max-width: 1040px) {
  .credit .main-form__inner {
    grid-template-columns: 1fr;
  }

  .credit .credit__benefits-box {
    padding: 40px 60px;
  }
}

@media (max-width: 771px)  {
  .credit__offer {
    grid-template-columns: repeat(1, 1fr);
  }
  .credit .credit__benefits-box {
    padding: 20px 30px;
  }

  .credit__offer-item > img {
    max-width: 150px;
  }
}

.section-first {
  margin-top: 0;
}

.tradein__offer {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin: 40px 0px;
}

.tradein__offer-item {
  display: flex;
  align-items: center;
  height: 55px;
  border: 2px solid #E81A29;
  border-radius: 60px;
}

.tradein__offer-icon {
  min-width: 64px;
  min-height: 64px;
  border-radius: 100%;
  background-color: #E81A29;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -20px;
  margin-right: 25px;
}

.tradein__offer-des {
  font-size: 16px;
}

.trade-in .main-form__inner {
  margin-top: 0;
  grid-template-columns: repeat(2, 1fr);
}

.trade-in .main-form__main-info {
  margin-bottom: 40px;
}

.tradein__info-list {
  padding: 30px;
  background: #FFD155;
  border-radius: 3px;
}

.tradein__info-list ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tradein__info-list ul li {
  display: flex;
  align-items: center;
  width: 48%;
  margin-bottom: 30px;
}

.tradein__info-list ul li:last-child {
  width: 100%;
  margin-bottom: 0;
}

.tradein__info-list ul li:before {
  content: '';
  min-width: 10px;
  min-height: 10px;
  background-color: #fff;
  margin-right: 15px;
  border-radius: 100%;
}

.trade-in .main-form__form {
  grid-row: auto;
}

@media (max-width: 1110px) {
  .tradein__offer {
    grid-template-columns: repeat(2, auto);
  }
}

@media (max-width: 810px) {
  .tradein__offer {
    grid-template-columns: repeat(1, auto);
  }
}

.banner__credit-inner {
  background: url('../img/credit-banner-bg.jpg') center no-repeat;
  background-size: cover;
  padding: 50px 180px;
  color: #fff;
} 

.banner__credit-inner h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 30px;
}

.banner__credit-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 65px;
  margin-bottom: 25px;
}

.banner__credit-row-item {
  max-height: 115px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 20px;
}

.banner__credit-row-item p {
  text-align: center;
}

.banner__credit-row-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner__credit-row-item-title svg {
  margin-right: 10px;
}

.banner__credit-form {
  display: flex;
}

.banner__credit-form {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.banner__credit-form > * {
  webkit-box-flex: 1 !important;
  -ms-flex: 1 !important;
  flex: 1 !important;
}

@media (max-width: 1180px) {
  .banner__credit-inner {
    padding: 35px 100px;
  }

  .banner__credit-inner h2 {
    font-size: 38px;
  }

  .banner__credit-row-item-title {
    font-size: 18px;
  }
}

@media (max-width:885px) {
  .banner__credit-row {
    gap: 35px;
  }
}

@media (max-width:771px) {
  .banner__credit-inner {
    padding: 30px;
  }
}

@media (max-width:771px) {
  .banner__credit-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .banner__credit-inner h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .banner__credit-row-item {
    max-height: 100%;
  }
}

.banner__car {
  background: url('../img/car-banner-bg.jpg') center no-repeat;
  background-size: cover;
  padding: 95px 95px 40px 95px;
  color: #fff;
}

.banner__car h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 60px;
}

.banner__car-offer {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-gap: 70px;
}

.banner__car-offer-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
}


.banner__car-offer-icon {
  min-width: 70px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E81A29;
  border-radius: 100%;
  margin-right: 15px;
}

@media (max-width: 940px) {
  .banner__car {
    padding: 40px;
  }

  .banner__car h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .banner__car-offer {
    grid-template-columns: repeat(2, auto);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .banner__car {
    padding: 30px;
  }

  .banner__car-offer {
    grid-template-columns: repeat(1, auto);
    gap: 20px;
  }

  .banner__car h2 {
    font-size: 24px;
  }
}

.new-banner-car__mobile {
  display: none;
}

.new-banner-car__desktop {
  display: block;
  width: 100%;
}

@media (max-width: 992px) {
  .new-banner-car__mobile {
    display: block;
    width: 100%;
    max-width: 375px;
    margin: auto;
  }

  .new-banner-car__desktop {
    display: none;
  }
}



