* {
  font-family: "Manrope", sans-serif;
}

p {
  color: var(--font-color);
}
p strong {
  font-weight: bold;
}
p blockquote {
  font-style: italic;
}
p a {
  color: inherit !important;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6em;
  text-decoration: none !important;
}
p a:hover {
  text-decoration: underline !important;
}

span {
  display: block;
}

ul {
  width: 100%;
  list-style: disc outside;
  padding: 0 0 0 1.2em;
}
ul li {
  color: var(--font-color);
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.3em;
}
ul li strong {
  font-weight: bold;
}

ol {
  width: 100%;
  padding: 0 0 0 1.2em;
}
ol li {
  color: var(--font-color);
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.3em;
}
ol li strong {
  font-weight: bold;
}

input, textarea, select {
  background-color: transparent;
  border-radius: 0;
}

.richText * {
  color: var(--font-color);
  margin-bottom: 1em;
}
.richText *:last-child {
  margin-bottom: 0;
}
.richText figure {
  width: 100%;
  max-width: 1000px;
}
.richText figure img {
  width: 100%;
}

h1.title_h1 {
  color: var(--font-color);
  font-size: 2.5em;
  font-weight: 600;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.2em;
}

h2.title_h2 {
  color: var(--font-color);
  font-size: 3.125em;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.2em;
}
@media (max-width: 600px) {
  h2.title_h2 {
    font-size: 3em;
  }
}

h3.title_h3 {
  color: var(--font-color);
  font-size: 2.5em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.23em;
}

p {
  font-size: 1.125em;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.5em;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}
.absolute.top {
  top: 0;
}
.absolute.bottom {
  bottom: 0;
}
.absolute.left {
  left: 0;
}
.absolute.right {
  right: 0;
}

.flex {
  display: flex;
}
.flex.align_center {
  align-items: center;
}
.flex.align_start {
  align-items: flex-start;
}
.flex.align_end {
  align-items: flex-end;
}
.flex.justify_start {
  justify-content: flex-start;
}
.flex.justify_center {
  justify-content: center;
}
.flex.justify_end {
  justify-content: flex-end;
}
.flex.space_between {
  justify-content: space-between;
}
.flex.space_evenly {
  justify-content: space-evenly;
}

.flex_column {
  display: flex;
  flex-direction: column;
}
.flex_column.align_center {
  align-items: center;
}
.flex_column.align_start {
  align-items: flex-start;
}
.flex_column.align_end {
  align-items: flex-end;
}
.flex_column.justify_start {
  justify-content: flex-start;
}
.flex_column.justify_center {
  justify-content: center;
}
.flex_column.justify_end {
  justify-content: flex-end;
}
.flex_column.space_between {
  justify-content: space-between;
}
.flex_column.space_evenly {
  justify-content: space-evenly;
}

.overflow {
  overflow: hidden;
}

.uppercase {
  text-transform: uppercase;
}

.hidden {
  display: none;
}

.pointer {
  cursor: pointer;
}

a {
  color: #000000;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

button {
  border: none;
  background: transparent;
}

.line {
  display: block;
}
.line.vertical {
  width: 1px;
}
.line.vertical.strong {
  width: 2px;
}
.line.horizontal {
  height: 1px;
}
.line.horizontal.strong {
  height: 2px;
}

* {
  position: relative;
  box-sizing: border-box;
  font-weight: 400;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  transition: color 1s ease;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  background-color: #000000;
  overflow: hidden auto;
  transition: background-color 1s ease;
}
@media (max-width: 1500px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 1050px) {
  body.fixed_body {
    position: fixed;
    overflow: hidden;
  }
}

p strong {
  font-weight: 700;
}
p blockquote {
  font-style: italic;
}

span {
  display: block;
}

ul {
  width: 100%;
  list-style: disc outside;
  padding: 0 0 0 1.2em;
}
ul li {
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
}
ul li strong {
  font-weight: 700;
}

ol {
  width: 100%;
  padding: 0 0 0 1.2em;
}
ol li {
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
}
ol li strong {
  font-weight: 700;
}

input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  border: none;
}

section.subpage {
  min-height: 50vh;
}

.fancybox-navigation .fancybox-button {
  top: calc(50vh - 50px) !important;
}

.richText * {
  margin-bottom: 1em;
}
.richText *:last-child {
  margin-bottom: 0;
}
.richText figure {
  width: 100%;
  max-width: 1000px;
}
.richText figure img {
  width: 100%;
}

#email2 {
  display: none;
}

:root {
  --main-color: #F4AB36;
  --font-color: #D2C7AE;
  --button-text-color: #ffffff;
  --background-color: #141414;
}

.color_picker {
  bottom: 0;
  right: 0;
  gap: 10px;
  background-color: #252525;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  padding: 10px 20px;
  z-index: 200;
}
.color_picker .color_text {
  font-size: 20px;
  color: #ffffff;
}
.color_picker .color_grid {
  gap: 20px;
}
.color_picker .color_grid .color_item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}
.color_picker .color_grid .color_item.active {
  border: 2px solid #ffffff;
}

.btn {
  width: fit-content;
  height: fit-content;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn span {
  text-align: center;
  z-index: 5;
}
.btn.square {
  min-width: 10em;
  height: 3.75em;
  padding: 0.625em 1.25em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  transition: all 0.3s ease;
}
.btn.square span {
  color: var(--button-text-color);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5em;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .btn.square:hover {
    transform: scale(1.01);
    box-shadow: var(--main-color) 0px 3px 6px;
  }
  .btn.square:hover span {
    color: var(--background-color);
  }
}
.btn.square.small {
  min-width: 2em;
  height: 2em;
  padding: 0.625em;
}
.btn.square.small span {
  font-size: 0.8em;
}
.btn.next {
  gap: 0.625em;
}
.btn.next span {
  color: var(--button-text-color);
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.25em;
}
.btn.next::after {
  content: "";
  display: inline-block;
  width: 1.875em;
  height: 1.875em;
  background-image: url("../svg/arrow_yellow_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .btn.next:hover::after {
    transform: translateX(10px);
  }
}

.gdpr #gdpr_input {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.gdpr .custom_checkbox {
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-color);
}
.gdpr .custom_checkbox::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-image: url("../svg/checkbox.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(0);
  transition: all 0.3s ease;
}
.gdpr #gdpr_input:checked ~ .custom_checkbox::after {
  transform: scale(1);
}
.gdpr label {
  width: calc(100% - 20px);
  color: var(--font-color);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 0 0 0 10px;
}
.gdpr label a {
  font-size: 1em;
  font-weight: inherit;
  color: var(--main-color);
}

header {
  width: 100%;
  max-width: 1600px;
  height: 8.125em;
  padding: 2.5em;
  z-index: 220;
}
header .header_logo {
  width: 11.25em;
  height: 3.125em;
}
header .header_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
header .header_nav {
  gap: 1.5em;
  margin: 0 auto;
}
header .header_nav .nav_item {
  color: var(--button-text-color);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.65em;
  text-align: right;
  text-transform: uppercase;
  cursor: pointer;
}
header .header_nav .nav_item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--button-text-color);
  transition: all 0.3s ease;
}
header .header_nav .nav_item:hover::after {
  left: 0;
  width: 100%;
}
header .header_lang {
  width: 11.25em;
  height: 2.875em;
}
header .header_lang .lang_active {
  color: var(--button-text-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 1.5em;
  letter-spacing: 0;
  text-transform: uppercase;
  gap: 1.25em;
  border: 1px solid var(--main-color);
  border-radius: 0.625em;
  padding: 0.625em 1.25em;
  cursor: pointer;
}
header .header_lang .lang_active::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.375em;
  background-image: url("../svg/arrow_down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
header .header_lang .lang_dropdown {
  top: 100%;
  border: 1px solid var(--main-color);
  border-radius: 0.625em;
  background-color: var(--background-color);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.3s ease 0.15s;
}
header .header_lang .lang_dropdown a {
  color: var(--button-text-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 1.5em;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0.625em 2.125em;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.3s ease;
}
header .header_lang .lang_dropdown a:hover {
  background-color: var(--main-color);
}
header .header_lang .lang_dropdown.open {
  transform: scaleY(1);
  transition: transform 0.3s ease;
}
header .header_lang .lang_dropdown.open a {
  opacity: 1;
  transition: opacity 0.15s ease 0.3s;
}
header .hamburger {
  width: 45px;
  height: 31px;
  margin: 0 20px 0 auto;
}
header .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: var(--main-color);
}
header .hamburger span:nth-child(1) {
  top: 0;
  transition: top 0.25s ease 0.25s, transform 0.25s ease;
}
header .hamburger span:nth-child(2) {
  top: 12px;
  transition: opacity 0.01s ease 0.25s;
}
header .hamburger span:nth-child(3) {
  top: 24px;
  transition: top 0.25s ease 0.25s, transform 0.25s ease;
}
@media (min-width: 1051px) {
  header .hamburger {
    display: none;
  }
}
header .hamburger.open span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
  transition: top 0.25s ease, transform 0.25s ease 0.25s;
}
header .hamburger.open span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.01s ease 0.25s;
}
header .hamburger.open span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
  transition: top 0.25s ease, transform 0.25s ease 0.25s;
}
header.header_subpage {
  border-bottom: 1px solid rgba(210, 199, 174, 0.2);
  margin-bottom: 5em;
}
@media (max-width: 1500px) {
  header {
    height: 75px;
    padding: 10px 2.5em;
  }
}
@media (max-width: 1050px) {
  header .header_logo {
    width: 10em;
    height: 10em;
    border-radius: 0 0 5em 0;
  }
  header .header_nav {
    display: none;
  }
  header .header_lang {
    width: auto;
  }
}
@media (max-width: 600px) {
  header {
    padding: 20px 10px;
    margin-bottom: 2.5em;
  }
  header .header_logo {
    left: 0;
  }
}

.menu {
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  background-color: var(--background-color);
  transition: all 0.5s ease;
  padding: 10px;
  z-index: 200;
}
.menu.open {
  transform: translateX(0%);
}
.menu .menu_nav {
  gap: 1.75em;
}
.menu .menu_nav .nav_item {
  color: var(--font-color);
  font-size: 1.75em;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-align: right;
  text-transform: uppercase;
}

footer {
  width: 100%;
  max-width: 1600px;
  padding: 0 2.5em;
}
footer .footer_wrapper {
  width: 100%;
  gap: 3.75em;
  border-top: 1px solid rgba(210, 199, 174, 0.2);
  border-bottom: 1px solid rgba(210, 199, 174, 0.2);
  padding: 3.75em 0;
}
footer .footer_wrapper .footer_column {
  gap: 1.25em;
}
footer .footer_wrapper .footer_column .footer_logo {
  height: 5em;
}
footer .footer_wrapper .footer_column .footer_logo img {
  height: 100%;
}
footer .footer_wrapper .footer_column .footer_social {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 0.625em;
  align-self: center;
}
footer .footer_wrapper .footer_column .footer_social .footer_icon {
  width: 1.875em;
  height: 1.875em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer_wrapper .footer_column .footer_social .footer_icon.facebook {
  background-image: url("../svg/facebook.svg");
}
footer .footer_wrapper .footer_column .footer_social .footer_icon.instagram {
  background-image: url("../svg/instagram.svg");
}
footer .footer_wrapper .footer_column .footer_social .footer_icon.tiktok {
  background-image: url("../svg/tiktok.svg");
}
footer .footer_wrapper .footer_column .footer_social .footer_icon.youtube {
  background-image: url("../svg/instagram.svg");
}
footer .footer_wrapper .footer_column .footer_title {
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.25em;
  letter-spacing: 0;
  margin-bottom: 1.6em;
}
footer .footer_wrapper .footer_column .footer_nav {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
footer .footer_wrapper .footer_column .footer_link {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
footer .footer_wrapper .footer_column .footer_text {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
footer .copyright {
  width: 100%;
  padding: 3.75em 0;
}
footer .copyright span {
  color: var(--font-color);
  font-size: 1.125em;
  font-weight: 300;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.45em;
  cursor: pointer;
}
footer .copyright span a {
  color: var(--font-color);
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.45em;
  cursor: pointer;
  transition: color 0.3s ease;
}
footer .copyright span a:hover {
  color: var(--main-color);
}
@media (max-width: 1000px) {
  footer .footer_wrapper {
    flex-wrap: wrap;
  }
  footer .footer_wrapper .footer_column {
    width: calc(50% - 2.5em);
    align-items: flex-start !important;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 0 10px;
  }
  footer .footer_wrapper {
    padding: 2.5em;
  }
  footer .footer_wrapper .footer_column {
    width: 100%;
  }
  footer .copyright {
    flex-direction: column;
    gap: 10px;
  }
  footer .copyright span {
    text-align: center;
  }
}

.index {
  width: 100%;
  max-width: 1600px;
  padding: 0 2.5em 13em 2.5em;
}
.index .index_header {
  width: 100%;
}
.index .index_header .index_header_swiper {
  width: 100%;
  overflow: hidden;
}
.index .index_header .index_header_swiper .swiper-slide {
  border-radius: min(100px, 6.25vw);
  overflow: hidden;
}
.index .index_header .index_header_swiper .swiper-slide img {
  width: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: center;
}
.index .index_header .index_header_swiper .swiper-slide .column {
  left: 5em;
  width: calc(50% - 5em);
  max-width: 600px;
}
.index .index_header .index_header_swiper .swiper-slide .column .tag {
  color: var(--background-color);
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.555em;
  letter-spacing: 0;
  background-color: var(--font-color);
  border-radius: 0.625em;
  padding: 0.625em 1.25em;
  margin-bottom: 1em;
}
.index .index_header .index_header_swiper .swiper-slide .column .title {
  color: var(--font-color);
  font-weight: 500;
  font-size: min(96px, 6vw);
  line-height: 1.06em;
  letter-spacing: 0;
}
.index .index_header .index_header_swiper .swiper-slide .column .richText {
  margin: 2.5em 0;
}
.index .index_header .index_header_swiper .swiper-slide .column .richText p {
  font-size: 1.875em;
}
.index .index_header .index_header_navigation {
  left: 5em;
  bottom: 2.5em;
  gap: 1.25em;
  z-index: 20;
}
.index .index_header .index_header_navigation .index_navigation_prev {
  width: 4.68em;
  height: 4.68em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .index .index_header .index_header_navigation .index_navigation_prev:hover {
    transform: scale(1.05);
  }
}
.index .index_header .index_header_navigation .index_navigation_prev.swiper-button-disabled {
  opacity: 0.5;
}
.index .index_header .index_header_navigation .index_navigation_prev .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_white_prev.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index .index_header .index_header_navigation .index_navigation_next {
  width: 4.68em;
  height: 4.68em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .index .index_header .index_header_navigation .index_navigation_next:hover {
    transform: scale(1.05);
  }
}
.index .index_header .index_header_navigation .index_navigation_next.swiper-button-disabled {
  opacity: 0.5;
}
.index .index_header .index_header_navigation .index_navigation_next .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_white_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index .index_header .index_header_filter {
  top: 35%;
  left: 50%;
  width: min(620px, 50%);
  background-color: var(--background-color);
  border: 1px dashed var(--main-color);
  border-radius: 2.5em;
  padding: 2.5em;
  z-index: 50;
}
.index .index_header .index_header_filter .title {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.875em;
  line-height: 1.5em;
  letter-spacing: 0;
  text-align: center;
}
.index .index_header .index_header_filter .filter_form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.875em;
  margin-top: 2.5em;
}
.index .index_header .index_header_filter .filter_form .input_box {
  width: 100%;
}
.index .index_header .index_header_filter .filter_form .input_box.price {
  grid-column: 1/3;
}
.index .index_header .index_header_filter .filter_form .input_box.search {
  grid-column: 1/3;
}
.index .index_header .index_header_filter .filter_form .input_box.search::before {
  content: "";
  position: absolute;
  left: 0.1875em;
  bottom: 1em;
  width: 1.125em;
  height: 1.125em;
  background-image: url("../svg/search.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index .index_header .index_header_filter .filter_form .input_box label {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 1.2em;
  letter-spacing: 0;
}
.index .index_header .index_header_filter .filter_form .input_box select {
  width: 100%;
  color: var(--font-color);
  font-weight: 300;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
  border-bottom: 1px solid var(--font-color);
  padding: 1em 0.625em;
}
.index .index_header .index_header_filter .filter_form .input_box input {
  width: 100%;
  color: var(--font-color);
  font-weight: 300;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
  border-bottom: 1px solid var(--font-color);
  padding: 1em 0.625em 1em 1.5em;
}
.index .index_header .index_header_filter .filter_form .btn {
  width: 100%;
  grid-column: 1/3;
}
.index .index_cars {
  width: 100vw;
  background-color: #191919;
  padding: 5em 2.5em;
  margin-top: 18em;
  overflow: hidden;
}
.index .index_cars .index_cars_header {
  width: 100%;
  max-width: 1520px;
}
.index .index_cars .index_cars_header .more {
  gap: 0.625em;
}
.index .index_cars .index_cars_header .more span {
  color: var(--button-text-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.index .index_cars .index_cars_header .more .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_yellow_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index .index_cars .index_cars_grid {
  width: 100%;
  max-width: 1560px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 2.5em 0;
  margin-top: 2.5em;
}
.index .index_cars .index_cars_grid .line {
  width: calc(100% - 2.5em);
  height: 1px;
  background-color: rgba(210, 199, 174, 0.2);
  grid-column: 1/5;
  justify-self: center;
}
.index .index_cars .index_cars_grid .line:last-child {
  display: none;
}
.index .index_cars .index_cars_grid .index_cars_item {
  width: 100%;
  gap: 0.625em;
  border-right: 1px solid rgba(210, 199, 174, 0.2);
  padding: 0 1.25em;
}
.index .index_cars .index_cars_grid .index_cars_item:nth-child(4), .index .index_cars .index_cars_grid .index_cars_item:nth-child(9), .index .index_cars .index_cars_grid .index_cars_item:nth-child(14), .index .index_cars .index_cars_grid .index_cars_item:nth-child(19) {
  border-right: none;
}
.index .index_cars .index_cars_grid .index_cars_item .image {
  width: 100%;
  border-radius: 1.25em;
  overflow: hidden;
  margin-bottom: 0.625em;
}
.index .index_cars .index_cars_grid .index_cars_item .image img {
  width: 100%;
}
.index .index_cars .index_cars_grid .index_cars_item .title {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.index .index_cars .index_cars_grid .index_cars_item .year {
  color: var(--font-color);
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.index .index_cars .index_cars_grid .index_cars_item .power {
  color: var(--font-color);
  font-weight: 400;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.index .index_cars .index_cars_grid .index_cars_item .price_wrapper {
  width: 100%;
  flex-wrap: wrap;
  gap: 1.25em;
}
.index .index_cars .index_cars_grid .index_cars_item .price_wrapper .price {
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.875em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.index .index_cars .index_cars_grid .index_cars_item .price_wrapper .btn {
  width: 4.68em;
  height: 4.68em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  margin: 0 0 0 auto;
  transition: all 0.3s ease;
}
.index .index_cars .index_cars_grid .index_cars_item .price_wrapper .btn .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_white_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-45deg);
}
@media (min-width: 1200px) {
  .index .index_cars .index_cars_grid .index_cars_item .price_wrapper .btn:hover {
    transform: scale(1.05);
  }
}
.index .index_how {
  width: 100%;
  gap: 5em;
  margin-top: 7.5em;
}
.index .index_how .title_h2 {
  width: calc(34% - 0.5em);
  font-size: 6em;
  font-weight: 500;
}
.index .index_how .index_how_grid {
  width: 66%;
  gap: 1.875em;
  flex-wrap: wrap;
}
.index .index_how .index_how_grid .index_how_item {
  width: calc(33% - 1.25em);
  gap: 0.625em;
}
.index .index_how .index_how_grid .index_how_item .image {
  width: 4.68em;
  height: 4.68em;
  object-position: center;
  object-fit: contain;
}
.index .index_how .index_how_grid .index_how_item .title {
  color: var(--font-color);
  font-size: 6em;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.1em;
}
.index .index_how .index_how_grid .index_how_item .text {
  font-size: 1.5em;
  white-space: nowrap;
}
.index .index_brands {
  width: 100%;
  gap: 2.5em;
  margin-top: 7.5em;
}
.index .index_brands .title_h2 {
  text-align: center;
}
.index .index_brands .index_brands_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-gap: 1.875em;
}
.index .index_brands .index_brands_grid .index_brands_item {
  width: 100%;
  background-color: #191919;
  padding: 2em 1.25em;
}
.index .index_brands .index_brands_grid .index_brands_item img {
  width: 100%;
  height: 5em;
  object-fit: contain;
  object-position: center;
}
.index .index_about {
  width: 100%;
  gap: 1.875em;
  margin-top: 10em;
}
.index .index_about .index_about_column {
  width: 33%;
  gap: 2.5em;
}
.index .index_about .index_about_column .btn {
  align-self: flex-end;
}
.index .index_about .index_about_swiper {
  width: 33%;
  padding: 1.875em;
  overflow: hidden;
}
.index .index_about .index_about_swiper .swiper-slide {
  border-radius: 2.5em;
  overflow: hidden;
}
.index .index_about .index_about_swiper .swiper-slide img {
  width: 100%;
}
.index .index_about .index_about_swiper .index_about_prev {
  width: 4.68em;
  height: 4.68em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}
@media (min-width: 1200px) {
  .index .index_about .index_about_swiper .index_about_prev:hover {
    transform: scale(1.05);
  }
}
.index .index_about .index_about_swiper .index_about_prev.swiper-button-disabled {
  opacity: 0.5;
}
.index .index_about .index_about_swiper .index_about_prev .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_white_prev.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-45deg);
}
.index .index_about .index_about_swiper .index_about_next {
  width: 4.68em;
  height: 4.68em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}
@media (min-width: 1200px) {
  .index .index_about .index_about_swiper .index_about_next:hover {
    transform: scale(1.05);
  }
}
.index .index_about .index_about_swiper .index_about_next.swiper-button-disabled {
  opacity: 0.5;
}
.index .index_about .index_about_swiper .index_about_next .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_white_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-45deg);
}
.index .index_about .index_about_info {
  width: 33%;
  gap: 1.25em;
}
.index .index_about .index_about_info .index_about_info_item {
  width: 100%;
  gap: 0.625em;
}
.index .index_about .index_about_info .index_about_info_item .image {
  width: 4.68em;
  height: 4.68em;
  object-position: center;
  object-fit: contain;
}
.index .index_about .index_about_info .index_about_info_item .title {
  color: var(--font-color);
  font-size: 6em;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.1em;
}
.index .index_about .index_about_info .index_about_info_item .text {
  font-size: 1.5em;
  white-space: nowrap;
}
.index .index_about .index_about_info .line {
  width: 100%;
  height: 1px;
  background-color: rgba(210, 199, 174, 0.2);
}
.index .index_lease {
  width: 100%;
  gap: 3.75em;
  margin-top: 10em;
}
.index .index_lease .index_lease_wrapper {
  width: 100%;
  gap: 2.5em;
}
.index .index_lease .index_lease_wrapper .column {
  width: calc(50% - 1.25em);
  gap: 2.5em;
}
.index .index_lease .index_lease_wrapper .column .title_h2 strong {
  font-size: 1.92em;
  font-weight: inherit;
  line-height: 1.3em;
}
.index .index_lease .index_lease_wrapper .column .btn {
  align-self: flex-end;
}
.index .index_lease .index_lease_wrapper .index_lease_form {
  width: calc(50% - 1.25em);
  background-color: var(--background-color);
  border: 1px dashed var(--main-color);
  border-radius: 2.5em;
  padding: 3.75em 2.5em;
  z-index: 50;
}
.index .index_lease .index_lease_wrapper .index_lease_form .title {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.875em;
  line-height: 1.5em;
  letter-spacing: 0;
  text-align: center;
}
.index .index_lease .index_lease_wrapper .index_lease_form .filter_form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.875em;
  margin-top: 2.5em;
}
.index .index_lease .index_lease_wrapper .index_lease_form .filter_form .input_box {
  width: 100%;
}
.index .index_lease .index_lease_wrapper .index_lease_form .filter_form .input_box label {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 1.2em;
  letter-spacing: 0;
}
.index .index_lease .index_lease_wrapper .index_lease_form .filter_form .input_box input {
  width: 100%;
  color: var(--font-color);
  font-weight: 300;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
  border-bottom: 1px solid var(--font-color);
  padding: 1em 0.625em;
}
.index .index_lease .index_lease_wrapper .index_lease_form .filter_form .input_box input::placeholder {
  width: 100%;
  text-align: right;
}
.index .index_lease .index_lease_wrapper .index_lease_form .filter_form .btn {
  width: 100%;
  grid-column: 1/3;
}
.index .index_lease .index_lease_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25em;
}
.index .index_lease .index_lease_grid .index_lease_grid_item {
  width: 100%;
}
.index .index_lease .index_lease_grid .index_lease_grid_item img {
  width: 100%;
  height: 5em;
  object-fit: contain;
  object-position: center;
}
.index .index_review {
  width: 100%;
  gap: 3.75em;
  margin-top: 10em;
}
.index .index_review .index_review_swiper {
  width: 100vw;
  max-width: 1750px;
  overflow: hidden;
}
.index .index_review .index_review_swiper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #000000;
  z-index: 15;
}
.index .index_review .index_review_swiper .swiper-slide {
  gap: 1em;
  border-right: 1px solid rgba(210, 199, 174, 0.2);
  padding: 0 5em;
}
.index .index_review .index_review_swiper .swiper-slide:last-child {
  border: none;
}
.index .index_review .index_review_swiper .swiper-slide .stars {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-gap: 8px;
}
.index .index_review .index_review_swiper .swiper-slide .text {
  max-width: 350px;
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
  text-align: center;
}
.index .index_review .index_review_swiper .swiper-slide .author {
  max-width: 350px;
  color: var(--font-color);
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
  text-align: center;
}
.index .index_review .index_review_navigation {
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 20;
}
.index .index_review .index_review_navigation .index_review_navigation_prev {
  width: 4.68em;
  height: 4.68em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .index .index_review .index_review_navigation .index_review_navigation_prev:hover {
    transform: scale(1.05);
  }
}
.index .index_review .index_review_navigation .index_review_navigation_prev.swiper-button-disabled {
  opacity: 0.5;
}
.index .index_review .index_review_navigation .index_review_navigation_prev .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_white_prev.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.index .index_review .index_review_navigation .index_review_navigation_next {
  width: 4.68em;
  height: 4.68em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .index .index_review .index_review_navigation .index_review_navigation_next:hover {
    transform: scale(1.05);
  }
}
.index .index_review .index_review_navigation .index_review_navigation_next.swiper-button-disabled {
  opacity: 0.5;
}
.index .index_review .index_review_navigation .index_review_navigation_next .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_white_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1500px) {
  .index .index_header .index_header_swiper .swiper-slide .column {
    left: 2.5em;
    width: calc(50% - 2.5em);
  }
  .index .index_header .index_header_navigation {
    left: 2.5em;
  }
  .index .index_how .index_how_grid {
    gap: 1.875em 1.25em;
  }
  .index .index_how .index_how_grid .index_how_item .text {
    white-space: normal;
  }
}
@media (max-width: 1000px) {
  .index .index_header .index_header_swiper .swiper-slide .column {
    left: 2.5em;
    width: calc(100% - 5em);
  }
  .index .index_header .index_header_filter {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 600px;
    align-self: center;
    margin-top: 2.5em;
  }
  .index .index_cars {
    margin-top: 7.5em;
  }
  .index .index_cars .index_cars_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 2.5em;
  }
  .index .index_cars .index_cars_grid .line {
    display: none;
  }
  .index .index_cars .index_cars_grid .index_cars_item {
    border: none;
    padding: 0;
  }
  .index .index_how {
    flex-direction: column;
  }
  .index .index_how .title_h2 {
    width: 100%;
    text-align: center;
  }
  .index .index_how .index_how_grid {
    width: 100%;
  }
  .index .index_brands .index_brands_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .index .index_about {
    flex-wrap: wrap;
    margin-top: 7.5em;
  }
  .index .index_about .index_about_column {
    width: 100%;
  }
  .index .index_about .index_about_swiper {
    width: calc(50% - 0.9375em);
  }
  .index .index_about .index_about_info {
    width: calc(50% - 0.9375em);
  }
  .index .index_lease {
    margin-top: 7.5em;
  }
  .index .index_lease .index_lease_wrapper {
    flex-direction: column;
  }
  .index .index_lease .index_lease_wrapper .column {
    width: 100%;
  }
  .index .index_lease .index_lease_wrapper .index_lease_form {
    width: 100%;
    max-width: 600px;
    align-self: center;
  }
  .index .index_lease .index_lease_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .index .index_review {
    margin-top: 7.5em;
  }
  .index .index_review .index_review_swiper .swiper-slide {
    padding: 0 2.5em;
  }
  .index .index_review .index_review_navigation {
    position: relative;
    left: auto;
    top: auto;
    width: 250px;
    transform: translateY(0);
    margin: 2.5em auto 0 auto;
  }
}
@media (max-width: 800px) {
  .index .index_cars .index_cars_grid .index_cars_item .price_wrapper .price {
    font-size: 1.5em;
  }
  .index .index_lease .index_lease_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .index {
    padding: 0 10px 7.5em 10px;
  }
  .index .index_header .index_header_swiper .swiper-slide img {
    height: 50vh;
  }
  .index .index_header .index_header_swiper .swiper-slide .column {
    left: 10px;
    width: calc(100% - 20px);
  }
  .index .index_header .index_header_navigation {
    left: 10px;
    width: calc(100% - 20px);
    justify-content: space-between;
  }
  .index .index_header .index_header_filter {
    padding: 2.5em 10px;
  }
  .index .index_cars {
    padding: 5em 10px;
    margin-top: 5em;
  }
  .index .index_cars .index_cars_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 1.25em;
  }
  .index .index_cars .index_cars_grid .index_cars_item .price_wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .index .index_cars .index_cars_grid .index_cars_item .price_wrapper .btn {
    width: 100%;
  }
  .index .index_how .title_h2 {
    font-size: 4em;
  }
  .index .index_how .index_how_grid {
    width: 100%;
  }
  .index .index_how .index_how_grid .index_how_item {
    width: calc(50% - 0.625em);
  }
  .index .index_how .index_how_grid .index_how_item .image {
    width: 3.5em;
    height: 3.5em;
  }
  .index .index_how .index_how_grid .index_how_item .title {
    font-size: 3em;
  }
  .index .index_how .index_how_grid .index_how_item .text {
    font-size: 1em;
  }
  .index .index_brands .index_brands_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 1.25em;
  }
  .index .index_about {
    margin-top: 5em;
  }
  .index .index_about .index_about_column {
    width: 100%;
  }
  .index .index_about .index_about_swiper {
    width: 100%;
  }
  .index .index_about .index_about_info {
    width: 100%;
  }
  .index .index_about .index_about_info .index_about_info_item {
    justify-content: center;
  }
  .index .index_lease {
    margin-top: 5em;
  }
  .index .index_lease .index_lease_wrapper .column .title_h2 strong {
    font-size: 1.5em;
  }
  .index .index_lease .index_lease_wrapper .index_lease_form {
    padding: 2.5em 10px;
  }
  .index .index_lease .index_lease_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .index .index_review {
    margin-top: 5em;
  }
  .index .index_review .index_review_swiper .swiper-slide {
    padding: 0 10px;
  }
}

.listView {
  width: 100%;
  max-width: 1600px;
  gap: 2.5em;
  padding: 0 2.5em 8.75em 2.5em;
}
.listView .listView_filter {
  position: sticky;
  top: 2.5em;
  width: 22em;
  gap: 1.25em;
  background-color: var(--background-color);
  border: 1px dashed var(--main-color);
  border-radius: 1.25em;
  padding: 1.25em;
  z-index: 150;
}
.listView .listView_filter .title {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.5em;
  line-height: 100%;
  letter-spacing: 0;
}
.listView .listView_filter .filter_btn_wrapper {
  top: 1.25em;
  right: 1.25em;
  gap: 1.25em;
}
.listView .listView_filter .filter_close_btn {
  display: none;
}
.listView .listView_filter .input_box {
  width: 100%;
}
.listView .listView_filter .input_box.price {
  grid-column: 1/3;
}
.listView .listView_filter .input_box.search {
  grid-column: 1/3;
}
.listView .listView_filter .input_box.search::before {
  content: "";
  position: absolute;
  left: 0.1875em;
  bottom: 1em;
  width: 1.125em;
  height: 1.125em;
  background-image: url("../svg/search.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.listView .listView_filter .input_box.checkbox_box {
  border-bottom: 1px solid var(--font-color);
}
.listView .listView_filter .input_box label {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 1.2em;
  letter-spacing: 0;
}
.listView .listView_filter .input_box select {
  width: 100%;
  color: var(--font-color);
  font-weight: 300;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
  border-bottom: 1px solid var(--font-color);
  padding: 1em 0.625em;
}
.listView .listView_filter .input_box input {
  width: 100%;
  color: var(--font-color);
  font-weight: 300;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
  border-bottom: 1px solid var(--font-color);
  padding: 1em 0.625em 1em 1.5em;
}
.listView .listView_filter .input_box .checkbox {
  width: 100%;
  margin-top: 10px;
}
.listView .listView_filter .input_box .checkbox:last-child {
  margin-bottom: 10px;
}
.listView .listView_filter .input_box .checkbox input {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.listView .listView_filter .input_box .checkbox .custom_checkbox {
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-color);
}
.listView .listView_filter .input_box .checkbox .custom_checkbox::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
  transform: scale(0);
  transition: all 0.3s ease;
}
.listView .listView_filter .input_box .checkbox input:checked ~ .custom_checkbox::after {
  transform: scale(1);
}
.listView .listView_filter .input_box .checkbox label {
  width: calc(100% - 20px);
  color: var(--font-color);
  font-size: 1.125em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 0 0 0 10px;
}
.listView .listView_filter > .btn {
  width: 100%;
  grid-column: 1/3;
}
.listView .listView_wrapper {
  width: calc(100% - 24.5em);
  gap: 3.75em;
}
.listView .listView_wrapper .listView_wrapper_header {
  width: 100%;
  gap: 2.5em;
  flex-wrap: wrap;
}
.listView .listView_wrapper .listView_wrapper_header .title_h1 {
  gap: 10px;
}
.listView .listView_wrapper .listView_wrapper_header .title_h1 span {
  font-size: 0.5em;
  font-weight: 400;
  line-height: 1.75em;
  vertical-align: bottom;
}
.listView .listView_wrapper .listView_wrapper_header .listView_sort {
  gap: 5px;
  z-index: 100;
}
.listView .listView_wrapper .listView_wrapper_header .listView_sort .listView_sort_label {
  color: var(--button-text-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 100%;
  letter-spacing: 0;
}
.listView .listView_wrapper .listView_wrapper_header .listView_sort .listView_sort_wrapper {
  height: 2.875em;
}
.listView .listView_wrapper .listView_wrapper_header .listView_sort .listView_sort_wrapper .listView_sort_active {
  color: var(--button-text-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 1.5em;
  letter-spacing: 0;
  text-transform: uppercase;
  gap: 1.25em;
  border: 1px solid var(--main-color);
  border-radius: 0.625em;
  padding: 0.625em 1.25em;
  cursor: pointer;
}
.listView .listView_wrapper .listView_wrapper_header .listView_sort .listView_sort_wrapper .listView_sort_active::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.375em;
  background-image: url("../svg/arrow_down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.listView .listView_wrapper .listView_wrapper_header .listView_sort .listView_sort_wrapper .listView_sort_dropdown {
  top: 100%;
  border: 1px solid var(--main-color);
  border-radius: 0.625em;
  background-color: var(--background-color);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.3s ease 0.15s;
}
.listView .listView_wrapper .listView_wrapper_header .listView_sort .listView_sort_wrapper .listView_sort_dropdown div {
  color: var(--button-text-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 1.5em;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0.625em 2.125em;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.3s ease;
}
.listView .listView_wrapper .listView_wrapper_header .listView_sort .listView_sort_wrapper .listView_sort_dropdown div:hover {
  background-color: var(--main-color);
}
.listView .listView_wrapper .listView_wrapper_header .listView_sort .listView_sort_wrapper .listView_sort_dropdown.open {
  transform: scaleY(1);
  transition: transform 0.3s ease;
}
.listView .listView_wrapper .listView_wrapper_header .listView_sort .listView_sort_wrapper .listView_sort_dropdown.open div {
  opacity: 1;
  transition: opacity 0.15s ease 0.3s;
}
.listView .listView_wrapper .filter_open_btn {
  width: 100%;
  display: none;
}
.listView .listView_wrapper .listView_grid {
  width: calc(100% + 2.5em);
  align-self: center;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 2.5em 0;
}
.listView .listView_wrapper .listView_grid .line {
  width: calc(100% - 2.5em);
  height: 1px;
  background-color: rgba(210, 199, 174, 0.2);
  grid-column: 1/5;
  justify-self: center;
}
.listView .listView_wrapper .listView_grid .line:last-child {
  display: none;
}
.listView .listView_wrapper .listView_grid .index_cars_item {
  width: 100%;
  gap: 0.625em;
  border-right: 1px solid rgba(210, 199, 174, 0.2);
  padding: 0 1.25em;
}
.listView .listView_wrapper .listView_grid .index_cars_item:nth-child(4), .listView .listView_wrapper .listView_grid .index_cars_item:nth-child(9), .listView .listView_wrapper .listView_grid .index_cars_item:nth-child(14), .listView .listView_wrapper .listView_grid .index_cars_item:nth-child(19) {
  border-right: none;
}
.listView .listView_wrapper .listView_grid .index_cars_item .image {
  width: 100%;
  border-radius: 1.25em;
  overflow: hidden;
  margin-bottom: 0.625em;
}
.listView .listView_wrapper .listView_grid .index_cars_item .image img {
  width: 100%;
}
.listView .listView_wrapper .listView_grid .index_cars_item .title {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.listView .listView_wrapper .listView_grid .index_cars_item .year {
  color: var(--font-color);
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.listView .listView_wrapper .listView_grid .index_cars_item .power {
  color: var(--font-color);
  font-weight: 400;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.listView .listView_wrapper .listView_grid .index_cars_item .price_wrapper {
  width: 100%;
  flex-wrap: wrap;
  gap: 1.25em;
}
.listView .listView_wrapper .listView_grid .index_cars_item .price_wrapper .price {
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.875em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.listView .listView_wrapper .listView_grid .index_cars_item .price_wrapper .btn {
  width: 4.68em;
  height: 4.68em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  margin: 0 0 0 auto;
}
.listView .listView_wrapper .listView_grid .index_cars_item .price_wrapper .btn .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_white_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-45deg);
}
@media (max-width: 1200px) {
  .listView .listView_wrapper .listView_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 2.5em;
  }
  .listView .listView_wrapper .listView_grid .line {
    display: none;
  }
  .listView .listView_wrapper .listView_grid .index_cars_item {
    border: none;
    padding: 0;
  }
}
@media (max-width: 800px) {
  .listView .listView_filter {
    width: 18em;
  }
  .listView .listView_wrapper {
    width: calc(100% - 20.5em);
  }
  .listView .listView_wrapper .listView_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 1.25em;
  }
  .listView .listView_wrapper .listView_grid .index_cars_item .price_wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .listView .listView_wrapper .listView_grid .index_cars_item .price_wrapper .btn {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .listView {
    padding: 0 10px 8.75em 10px;
  }
  .listView .listView_filter {
    position: fixed;
    top: 75px;
    left: 10px;
    width: calc(100% - 20px);
    height: 80vh;
    padding: 1.25em;
    overflow: scroll;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .listView .listView_filter.open {
    transform: scale(1);
    opacity: 1;
  }
  .listView .listView_filter .filter_close_btn {
    display: flex;
  }
  .listView .listView_wrapper {
    width: 100%;
  }
  .listView .listView_wrapper .filter_open_btn {
    display: flex;
  }
  .listView .listView_wrapper .listView_grid {
    width: 100%;
  }
}

.vehicle {
  width: 100%;
  max-width: 1600px;
  gap: 3.75em;
  padding: 0 2.5em 8.75em 2.5em;
}
.vehicle .vehicle_header {
  width: 100%;
  gap: 2.5em;
  flex-wrap: wrap;
}
.vehicle .vehicle_header .print {
  gap: 5px;
  cursor: pointer;
}
.vehicle .vehicle_header .print .icon {
  width: 1.5em;
  height: 1.5em;
  background-image: url("../svg/printer.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.vehicle .vehicle_header .print span {
  color: var(--button-text-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 100%;
  letter-spacing: 0;
}
.vehicle .vehicle_main {
  width: 100%;
  gap: 2.5em;
}
.vehicle .vehicle_main .image {
  width: calc(50% - 1.25em);
  border-radius: 2.5em;
  overflow: hidden;
}
.vehicle .vehicle_main .image img {
  width: 100%;
}
.vehicle .vehicle_main .image .more {
  bottom: 0;
  right: 0;
  gap: 0.625em;
  background-color: var(--main-color);
  padding: 1em 2.5em;
  z-index: 10;
}
.vehicle .vehicle_main .image .more .icon {
  width: 2.5em;
  height: 2.5em;
  background-image: url("../svg/photo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.vehicle .vehicle_main .image .more span {
  color: var(--button-text-color);
  font-weight: 700;
  font-size: 1.5em;
  line-height: 100%;
  letter-spacing: 0;
}
.vehicle .vehicle_main .column {
  width: calc(50% - 1.25em);
  gap: 2.5em;
  background-color: #191919;
  padding: 1.25em;
}
.vehicle .vehicle_main .column table {
  width: 100%;
}
.vehicle .vehicle_main .column table tr td {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.5em;
  line-height: 100%;
  letter-spacing: 0;
  padding: 0.83em 0;
  border-bottom: 1px solid rgba(210, 199, 174, 0.2);
}
.vehicle .vehicle_main .column table tr td:nth-child(2) {
  color: var(--main-color);
  text-align: right;
}
.vehicle .vehicle_main .column table tr td:nth-child(2) strong {
  color: var(--font-color);
  font-size: 1.875em;
}
.vehicle .vehicle_main .column table tr:first-child td {
  padding: 0 0 0.83em 0;
}
.vehicle .vehicle_main .column table tr:last-child td {
  border-bottom: none;
  padding: 0.83em 0 0 0;
}
.vehicle .vehicle_main .column .btn {
  width: 100%;
}
.vehicle .vehicle_lease {
  width: 100%;
  background-color: #363636;
  border-radius: 2.5em;
  padding: 1.875em;
}
.vehicle .vehicle_lease .title_h2 {
  font-size: 1.875em;
}
.vehicle .vehicle_lease .vehicle_lease_open {
  top: 1.75em;
  right: 1.25em;
  width: 2.5em;
  height: 2.5em;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.vehicle .vehicle_lease .vehicle_lease_open span {
  position: absolute;
  width: 1.25em;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}
.vehicle .vehicle_lease .vehicle_lease_open.open {
  transform: rotate(180deg);
}
.vehicle .vehicle_lease .vehicle_lease_open.open span:nth-child(2) {
  transform: rotate(90deg);
}
.vehicle .vehicle_lease .vehicle_lease_wrapper {
  width: 100%;
  display: none;
}
.vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item {
  width: 100%;
  border-bottom: 1px solid rgba(210, 199, 174, 0.2);
  padding: 1.25em 0;
}
.vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item:nth-last-child(2) {
  border: none;
}
.vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .line {
  height: auto;
  align-self: stretch;
  width: 1px;
  background-color: rgba(210, 199, 174, 0.2);
}
.vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .image {
  height: 3.75em;
}
.vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .image img {
  height: 100%;
}
.vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .column {
  gap: 8px;
}
.vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .column .label {
  color: var(--font-color);
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .column .price {
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .column .price strong {
  color: var(--button-text-color);
  font-size: 1.875em;
  font-weight: 700;
}
.vehicle .vehicle_lease .vehicle_lease_wrapper.open {
  display: flex;
}
.vehicle .vehicle_lease .btn {
  align-self: center;
  margin-top: 1.25em;
}
.vehicle .vehicle_info {
  width: 100%;
  background-color: #191919;
  border-radius: 2.5em;
  padding: 1.875em;
}
.vehicle .vehicle_info .title_h2 {
  font-size: 1.875em;
}
.vehicle .vehicle_info .vehicle_info_open {
  top: 1.75em;
  right: 1.25em;
  width: 2.5em;
  height: 2.5em;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.vehicle .vehicle_info .vehicle_info_open span {
  position: absolute;
  width: 1.25em;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}
.vehicle .vehicle_info .vehicle_info_open.open {
  transform: rotate(180deg);
}
.vehicle .vehicle_info .vehicle_info_open.open span:nth-child(2) {
  transform: rotate(90deg);
}
.vehicle .vehicle_info .vehicle_info_wrapper {
  width: 100%;
  display: none;
}
.vehicle .vehicle_info .vehicle_info_wrapper table {
  width: 50%;
}
.vehicle .vehicle_info .vehicle_info_wrapper table tr td {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 100%;
  letter-spacing: 0;
  padding: 1em 0;
  border-bottom: 1px solid rgba(210, 199, 174, 0.2);
}
.vehicle .vehicle_info .vehicle_info_wrapper table tr td:nth-child(2) {
  color: var(--main-color);
  text-align: right;
}
.vehicle .vehicle_info .vehicle_info_wrapper table tr:last-child td {
  border-bottom: none;
  padding: 1em 0 0 0;
}
.vehicle .vehicle_info .vehicle_info_wrapper table:first-child tr td:nth-child(2) {
  padding-right: 1em;
}
.vehicle .vehicle_info .vehicle_info_wrapper table:first-child tr td:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 1em;
  right: 0;
  width: 1px;
  height: 1em;
  background-color: rgba(210, 199, 174, 0.2);
}
.vehicle .vehicle_info .vehicle_info_wrapper table:last-child tr td:nth-child(1) {
  padding-left: 1em;
}
.vehicle .vehicle_info .vehicle_info_wrapper.open {
  display: flex;
}
.vehicle .vehicle_features {
  width: 100%;
  background-color: #191919;
  border-radius: 2.5em;
  padding: 1.875em;
}
.vehicle .vehicle_features .title_h2 {
  font-size: 1.875em;
}
.vehicle .vehicle_features .vehicle_features_open {
  top: 1.75em;
  right: 1.25em;
  width: 2.5em;
  height: 2.5em;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.vehicle .vehicle_features .vehicle_features_open span {
  position: absolute;
  width: 1.25em;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}
.vehicle .vehicle_features .vehicle_features_open.open {
  transform: rotate(180deg);
}
.vehicle .vehicle_features .vehicle_features_open.open span:nth-child(2) {
  transform: rotate(90deg);
}
.vehicle .vehicle_features .vehicle_features_wrapper {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  gap: 0;
}
.vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item {
  width: 25%;
  gap: 8px;
  border-right: 1px solid rgba(210, 199, 174, 0.2);
  padding: 0 1.25em;
  margin: 1.25em 0;
}
.vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item .arrow {
  width: 1.625em;
  height: 1.625em;
  background-image: url("../svg/yes.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item .title {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 100%;
  letter-spacing: 0;
}
.vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item.border_4 {
  border-right: none;
}
.vehicle .vehicle_features .vehicle_features_wrapper .line {
  width: 100%;
  height: 1px;
  background-color: rgba(210, 199, 174, 0.2);
}
.vehicle .vehicle_features .vehicle_features_wrapper.open {
  display: flex;
}
.vehicle .vehicle_content {
  width: 100%;
  background-color: #191919;
  border-radius: 2.5em;
  padding: 1.875em;
}
.vehicle .vehicle_content .title_h2 {
  font-size: 1.875em;
}
.vehicle .vehicle_content .vehicle_content_open {
  top: 1.75em;
  right: 1.25em;
  width: 2.5em;
  height: 2.5em;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.vehicle .vehicle_content .vehicle_content_open span {
  position: absolute;
  width: 1.25em;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}
.vehicle .vehicle_content .vehicle_content_open.open {
  transform: rotate(180deg);
}
.vehicle .vehicle_content .vehicle_content_open.open span:nth-child(2) {
  transform: rotate(90deg);
}
.vehicle .vehicle_content .vehicle_content_wrapper {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  gap: 0;
}
.vehicle .vehicle_content .vehicle_content_wrapper .universalMatrix {
  margin-top: 5em;
}
.vehicle .vehicle_content .vehicle_content_wrapper.open {
  display: flex;
}
@media (max-width: 1100px) {
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .column .price strong {
    font-size: 1.5em;
  }
}
@media (max-width: 1000px) {
  .vehicle .vehicle_main {
    flex-direction: column;
  }
  .vehicle .vehicle_main .image {
    width: 100%;
  }
  .vehicle .vehicle_main .column {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .image {
    height: 3em;
  }
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .column .price strong {
    font-size: 1.25em;
  }
  .vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item {
    width: 33%;
  }
  .vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item.border_4 {
    border-right: 1px solid rgba(210, 199, 174, 0.2);
  }
  .vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item.border_3 {
    border-right: none;
  }
  .vehicle .vehicle_features .vehicle_features_wrapper .line {
    display: none;
  }
}
@media (max-width: 700px) {
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item {
    gap: 8px;
    flex-wrap: wrap;
  }
  .vehicle .vehicle_info .vehicle_info_wrapper {
    flex-direction: column;
  }
  .vehicle .vehicle_info .vehicle_info_wrapper table {
    width: 100%;
  }
  .vehicle .vehicle_info .vehicle_info_wrapper table tr td {
    color: var(--font-color);
    font-weight: 700;
    font-size: 1.25em;
    line-height: 100%;
    letter-spacing: 0;
    padding: 1em 0;
    border-bottom: 1px solid rgba(210, 199, 174, 0.2);
  }
  .vehicle .vehicle_info .vehicle_info_wrapper table tr td:nth-child(2) {
    color: var(--main-color);
    text-align: right;
  }
  .vehicle .vehicle_info .vehicle_info_wrapper table tr:last-child td {
    border-bottom: none;
    padding: 1em 0 0 0;
  }
  .vehicle .vehicle_info .vehicle_info_wrapper table:first-child tr td:nth-child(2) {
    padding-right: 0;
  }
  .vehicle .vehicle_info .vehicle_info_wrapper table:first-child tr td:nth-child(2)::after {
    display: none;
  }
  .vehicle .vehicle_info .vehicle_info_wrapper table:first-child tr:last-child td {
    padding: 1em 0;
    border-bottom: 1px solid rgba(210, 199, 174, 0.2);
  }
  .vehicle .vehicle_info .vehicle_info_wrapper table:last-child tr td:nth-child(1) {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .vehicle {
    padding: 0 10px 5em 10px;
  }
  .vehicle .vehicle_main .column {
    padding: 1.25em 10px;
  }
  .vehicle .vehicle_main .column table {
    width: 100%;
  }
  .vehicle .vehicle_main .column table tr td {
    font-size: 1.25em;
  }
  .vehicle .vehicle_main .column table tr td:nth-child(2) strong {
    color: var(--font-color);
    font-size: 1.5em;
  }
  .vehicle .vehicle_lease {
    padding: 1.875em 10px;
  }
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .image {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .line:nth-child(2) {
    display: none;
  }
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .line:nth-child(8) {
    display: none;
  }
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .line:nth-child(10) {
    display: none;
  }
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .btn {
    margin: 0 0 0 auto;
  }
  .vehicle .vehicle_info {
    padding: 1.875em 10px;
  }
  .vehicle .vehicle_features {
    padding: 1.875em 10px;
  }
  .vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item {
    width: 50%;
    padding: 0 1.25em 0 0;
  }
  .vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item.border_4 {
    border-right: 1px solid rgba(210, 199, 174, 0.2);
  }
  .vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item.border_3 {
    border-right: 1px solid rgba(210, 199, 174, 0.2);
  }
  .vehicle .vehicle_features .vehicle_features_wrapper .vehicle_features_item.border_2 {
    border: none;
    padding: 0 0 0 1.25em;
  }
  .vehicle .vehicle_content {
    padding: 1.875em 10px;
  }
}
@media (max-width: 400px) {
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .column:nth-child(9) {
    width: 60%;
    align-items: flex-start !important;
  }
  .vehicle .vehicle_lease .vehicle_lease_wrapper .vehicle_lease_item .btn {
    margin: 0 auto;
  }
}

.contact {
  width: 100%;
  max-width: 1780px;
  gap: 5em;
  padding: 0 2.5em 7.5em 2.5em;
}
@media (max-width: 600px) {
  .contact {
    padding: 0 10px 5em 10px;
  }
}
.contact .contact_header {
  width: 100%;
  min-height: 26.5em;
  gap: 1.25em;
  border-radius: 6.25em;
  border: 1px dashed var(--main-color);
  padding: 5em 5.625em;
  overflow: hidden;
}
.contact .contact_header .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact .contact_header .gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #141414 0%, rgba(255, 255, 255, 0) 100%);
}
.contact .contact_header h1 {
  max-width: 60%;
  color: var(--font-color);
  font-weight: 500;
  font-size: 6em;
  line-height: 1.06em;
  letter-spacing: 0;
}
.contact .contact_header .subtitle {
  color: var(--font-color);
  font-weight: 400;
  font-size: 1.875em;
  line-height: 100%;
  letter-spacing: 0;
}
@media (max-width: 1500px) {
  .contact .contact_header {
    padding: 5em 2.5em;
  }
}
@media (max-width: 1000px) {
  .contact .contact_header h1 {
    max-width: 80%;
    font-size: 5em;
  }
}
@media (max-width: 800px) {
  .contact .contact_header {
    padding: 4em 2.5em;
  }
  .contact .contact_header h1 {
    max-width: 80%;
    font-size: 4em;
  }
}
@media (max-width: 600px) {
  .contact .contact_header {
    min-height: 250px;
    padding: 3em 10px;
  }
  .contact .contact_header h1 {
    max-width: 100%;
    font-size: 3em;
  }
}
.contact .contact_wrapper {
  width: 100%;
  max-width: 1520px;
  gap: 2.5em;
}
.contact .contact_wrapper .column {
  width: calc(35% - 2.5em);
}
.contact .contact_wrapper .column .richText {
  margin: 2.5em 0;
}
.contact .contact_wrapper .column .line {
  width: 100%;
  height: 1px;
  background-color: rgba(210, 199, 174, 0.2);
  margin: 1.25em 0;
}
.contact .contact_wrapper .column .contact_link {
  gap: 8px;
}
.contact .contact_wrapper .column .contact_link::before {
  content: "";
  display: inline-block;
  width: 1.125em;
  height: 1.125em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.contact .contact_wrapper .column .contact_link span {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
  transition: color 0.3s ease;
}
.contact .contact_wrapper .column .contact_link:hover span {
  color: var(--main-color);
}
.contact .contact_wrapper .column .contact_link.email::before {
  background-image: url("../svg/email.svg");
}
.contact .contact_wrapper .column .contact_link.phone::before {
  background-image: url("../svg/phone.svg");
}
.contact .contact_wrapper .column .contact_link.address::before {
  background-image: url("../svg/address.svg");
}
.contact .contact_wrapper .contact_form {
  width: 65%;
  gap: 2.5em;
  background-color: var(--background-color);
  border: 1px dashed var(--main-color);
  border-radius: 2.5em;
  padding: 2.5em;
}
.contact .contact_wrapper .contact_form .contact_form_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.875em;
}
.contact .contact_wrapper .contact_form .input_box {
  width: 100%;
}
.contact .contact_wrapper .contact_form .input_box label {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 1.2em;
  letter-spacing: 0;
}
.contact .contact_wrapper .contact_form .input_box textarea {
  width: 100%;
  color: var(--font-color);
  font-weight: 300;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
  border-bottom: 1px solid var(--font-color);
  padding: 1em 0.625em;
}
.contact .contact_wrapper .contact_form .input_box input {
  width: 100%;
  color: var(--font-color);
  font-weight: 300;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
  border-bottom: 1px solid var(--font-color);
  padding: 1em 0.625em 1em 1.5em;
}
.contact .contact_wrapper .contact_form .btn {
  align-self: flex-end;
}
@media (max-width: 950px) {
  .contact .contact_wrapper {
    flex-direction: column;
  }
  .contact .contact_wrapper .column {
    width: 100%;
  }
  .contact .contact_wrapper .contact_form {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact .contact_wrapper .contact_form {
    padding: 2.5em 10px;
  }
  .contact .contact_wrapper .contact_form .contact_form_wrapper {
    grid-template-columns: 100%;
  }
  .contact .contact_wrapper .contact_form .btn {
    align-self: center;
  }
}

.universalPage {
  width: 100%;
  max-width: 1780px;
  gap: 5em;
  padding: 0 2.5em 7.5em 2.5em;
}
@media (max-width: 600px) {
  .universalPage {
    padding: 0 10px 5em 10px;
  }
}
.universalPage .universalPage_header {
  width: 100%;
  min-height: 26.5em;
  gap: 1.25em;
  border-radius: 6.25em;
  border: 1px dashed var(--main-color);
  padding: 5em 5.625em;
  overflow: hidden;
}
.universalPage .universalPage_header .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.universalPage .universalPage_header .gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #141414 0%, rgba(255, 255, 255, 0) 100%);
}
.universalPage .universalPage_header h1 {
  max-width: 60%;
  color: var(--font-color);
  font-weight: 500;
  font-size: 6em;
  line-height: 1.06em;
  letter-spacing: 0;
}
.universalPage .universalPage_header .subtitle {
  color: var(--font-color);
  font-weight: 400;
  font-size: 1.875em;
  line-height: 100%;
  letter-spacing: 0;
}
@media (max-width: 1500px) {
  .universalPage .universalPage_header {
    padding: 5em 2.5em;
  }
}
@media (max-width: 1000px) {
  .universalPage .universalPage_header h1 {
    max-width: 80%;
    font-size: 5em;
  }
}
@media (max-width: 800px) {
  .universalPage .universalPage_header {
    padding: 4em 2.5em;
  }
  .universalPage .universalPage_header h1 {
    max-width: 80%;
    font-size: 4em;
  }
}
@media (max-width: 600px) {
  .universalPage .universalPage_header {
    min-height: 250px;
    padding: 3em 10px;
  }
  .universalPage .universalPage_header h1 {
    max-width: 100%;
    font-size: 3em;
  }
}

.universalMatrix {
  width: 100%;
  max-width: 1520px;
}
.universalMatrix .universalMatrix_elem {
  width: 100%;
  margin-top: 5em;
}
.universalMatrix .universalMatrix_elem:first-child {
  margin: 0;
}
.universalMatrix .universalMatrix_elem.header {
  margin-top: 3.75em;
}
.universalMatrix .universalMatrix_elem.header h2 {
  width: 100%;
  color: var(--font-color);
  font-weight: 700;
  font-size: 3.125em;
  line-height: 1.1em;
  letter-spacing: 0;
  text-align: center;
}
.universalMatrix .universalMatrix_elem.header h3 {
  width: 100%;
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.875em;
  line-height: 1.1em;
  letter-spacing: 0;
  text-align: center;
}
.universalMatrix .universalMatrix_elem.text .richText {
  width: 100%;
}
.universalMatrix .universalMatrix_elem.textImage {
  gap: 1.875em;
}
.universalMatrix .universalMatrix_elem.textImage.left {
  flex-direction: row-reverse;
}
.universalMatrix .universalMatrix_elem.textImage .richText {
  width: calc(35% - 1.875em);
}
.universalMatrix .universalMatrix_elem.textImage .richText h2 {
  width: 100%;
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.875em;
  line-height: 1.1em;
  letter-spacing: 0;
}
.universalMatrix .universalMatrix_elem.textImage .richText h3 {
  width: 100%;
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.875em;
  line-height: 1.1em;
  letter-spacing: 0;
}
.universalMatrix .universalMatrix_elem.textImage .image {
  width: 65%;
  border-radius: 2.5em;
  overflow: hidden;
}
.universalMatrix .universalMatrix_elem.textImage .image img {
  width: 100%;
}
.universalMatrix .universalMatrix_elem.textImage .image .more {
  bottom: 0;
  right: 0;
  gap: 0.625em;
  background-color: var(--main-color);
  padding: 1em 2.5em;
  z-index: 10;
}
.universalMatrix .universalMatrix_elem.textImage .image .more .icon {
  width: 2.5em;
  height: 2.5em;
  background-image: url("../svg/photo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.universalMatrix .universalMatrix_elem.textImage .image .more span {
  color: var(--button-text-color);
  font-weight: 700;
  font-size: 1.5em;
  line-height: 100%;
  letter-spacing: 0;
}
.universalMatrix .universalMatrix_elem.textImage .hidden {
  display: none;
}
.universalMatrix .universalMatrix_elem.features .line_grid {
  width: 100%;
  gap: 1.875em;
  flex-wrap: wrap;
}
.universalMatrix .universalMatrix_elem.features .line_grid .line {
  width: 1px;
  height: auto;
  align-self: stretch;
  background-color: rgba(210, 199, 174, 0.2);
}
.universalMatrix .universalMatrix_elem.features .line_grid .line_grid_item {
  width: calc(33% - 2.5em);
  max-width: 385px;
  gap: 0.625em;
}
.universalMatrix .universalMatrix_elem.features .line_grid .line_grid_item .image {
  width: 4.68em;
  height: 4.68em;
  object-position: center;
  object-fit: contain;
}
.universalMatrix .universalMatrix_elem.features .line_grid .line_grid_item .title {
  color: var(--font-color);
  font-size: 6em;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  line-height: 1.1em;
}
.universalMatrix .universalMatrix_elem.features .line_grid .line_grid_item .text {
  font-size: 1.5em;
  white-space: nowrap;
}
.universalMatrix .universalMatrix_elem.features .line_grid.small .line_grid_item {
  width: calc(25% - 2.87em);
  max-width: 330px;
}
.universalMatrix .universalMatrix_elem.features .line_grid.small .line_grid_item .title {
  font-size: 3.125em;
}
.universalMatrix .universalMatrix_elem.features .cards_grid {
  width: 100%;
  gap: 1.875em;
  flex-wrap: wrap;
}
.universalMatrix .universalMatrix_elem.features .cards_grid .line {
  width: 1px;
  height: auto;
  align-self: stretch;
  background-color: rgba(210, 199, 174, 0.2);
}
.universalMatrix .universalMatrix_elem.features .cards_grid .cards_grid_item {
  width: calc(33% - 2.5em);
  gap: 0.85em;
}
.universalMatrix .universalMatrix_elem.features .cards_grid .cards_grid_item .image {
  width: 4.68em;
  height: 4.68em;
  object-position: center;
  object-fit: contain;
}
.universalMatrix .universalMatrix_elem.features .cards_grid .cards_grid_item .title {
  width: 100%;
  color: var(--font-color);
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.1em;
}
.universalMatrix .universalMatrix_elem.features .cards_grid .cards_grid_item .text {
  width: 100%;
  font-size: 1.5em;
  text-align: center;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper {
  width: 100%;
  gap: 2.5em;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .column {
  width: calc(50% - 1.25em);
  gap: 2.5em;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .column .title_h2 strong {
  font-size: 1.92em;
  font-weight: inherit;
  line-height: 1.3em;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .column .btn {
  align-self: flex-end;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .index_lease_form {
  width: calc(50% - 1.25em);
  background-color: var(--background-color);
  border: 1px dashed var(--main-color);
  border-radius: 2.5em;
  padding: 3.75em 2.5em;
  z-index: 50;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .index_lease_form .title {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.875em;
  line-height: 1.5em;
  letter-spacing: 0;
  text-align: center;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .index_lease_form .filter_form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.875em;
  margin-top: 2.5em;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .index_lease_form .filter_form .input_box {
  width: 100%;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .index_lease_form .filter_form .input_box label {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1em;
  line-height: 1.2em;
  letter-spacing: 0;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .index_lease_form .filter_form .input_box input {
  width: 100%;
  color: var(--font-color);
  font-weight: 300;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
  border-bottom: 1px solid var(--font-color);
  padding: 1em 0.625em;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .index_lease_form .filter_form .input_box input::placeholder {
  width: 100%;
  text-align: right;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .index_lease_form .filter_form .btn {
  width: 100%;
  grid-column: 1/3;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper {
  width: 100%;
  gap: 3.75em;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper h2 {
  text-align: center;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_swiper {
  width: 100vw;
  max-width: 1750px;
  overflow: hidden;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_swiper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #000000;
  z-index: 15;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_swiper .swiper-slide {
  gap: 1em;
  border-right: 1px solid rgba(210, 199, 174, 0.2);
  padding: 0 5em;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_swiper .swiper-slide:last-child {
  border: none;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_swiper .swiper-slide .stars {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-gap: 8px;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_swiper .swiper-slide .text {
  max-width: 350px;
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
  text-align: center;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_swiper .swiper-slide .author {
  max-width: 350px;
  color: var(--font-color);
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.25em;
  letter-spacing: 0;
  text-align: center;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_navigation {
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 20;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_navigation .index_review_navigation_prev {
  width: 4.68em;
  height: 4.68em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_navigation .index_review_navigation_prev:hover {
    transform: scale(1.05);
  }
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_navigation .index_review_navigation_prev.swiper-button-disabled {
  opacity: 0.5;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_navigation .index_review_navigation_prev .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_white_prev.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_navigation .index_review_navigation_next {
  width: 4.68em;
  height: 4.68em;
  background-color: var(--main-color);
  border-radius: 0.625em;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_navigation .index_review_navigation_next:hover {
    transform: scale(1.05);
  }
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_navigation .index_review_navigation_next.swiper-button-disabled {
  opacity: 0.5;
}
.universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_navigation .index_review_navigation_next .arrow {
  width: 1.25em;
  height: 0.625em;
  background-image: url("../svg/arrow_white_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1000px) {
  .universalMatrix .universalMatrix_elem.features .line_grid .line_grid_item {
    width: calc(50% - 1.875em);
    justify-content: center;
  }
  .universalMatrix .universalMatrix_elem.features .line_grid .line {
    display: none;
  }
  .universalMatrix .universalMatrix_elem.features .line_grid.small .line_grid_item {
    width: calc(33% - 2.5em);
  }
  .universalMatrix .universalMatrix_elem.features .cards_grid .line {
    display: none;
  }
  .universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper {
    flex-direction: column;
  }
  .universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .column {
    width: 100%;
  }
  .universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .index_lease_form {
    width: 100%;
    max-width: 600px;
    align-self: center;
  }
  .universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_swiper .swiper-slide {
    padding: 0 2.5em;
  }
  .universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_navigation {
    position: relative;
    left: auto;
    top: auto;
    width: 250px;
    transform: translateY(0);
    margin: 2.5em auto 0 auto;
  }
}
@media (max-width: 800px) {
  .universalMatrix .universalMatrix_elem.textImage {
    flex-direction: column !important;
  }
  .universalMatrix .universalMatrix_elem.textImage .richText {
    width: 100%;
  }
  .universalMatrix .universalMatrix_elem.textImage .image {
    width: 100%;
  }
  .universalMatrix .universalMatrix_elem.features .line_grid .line_grid_item {
    width: calc(50% - 0.9375em);
  }
  .universalMatrix .universalMatrix_elem.features .line_grid.small .line_grid_item {
    width: calc(50% - 0.9375em);
  }
  .universalMatrix .universalMatrix_elem.features .cards_grid .cards_grid_item {
    width: calc(50% - 0.9375em);
  }
}
@media (max-width: 600px) {
  .universalMatrix .universalMatrix_elem.features .line_grid {
    gap: 1.875em 1.25em;
  }
  .universalMatrix .universalMatrix_elem.features .line_grid .line_grid_item {
    width: calc(50% - 0.625em);
  }
  .universalMatrix .universalMatrix_elem.features .line_grid .line_grid_item .image {
    width: 3.5em;
    height: 3.5em;
  }
  .universalMatrix .universalMatrix_elem.features .line_grid .line_grid_item .title {
    font-size: 3em;
  }
  .universalMatrix .universalMatrix_elem.features .line_grid .line_grid_item .text {
    font-size: 1em;
  }
  .universalMatrix .universalMatrix_elem.features .line_grid.small .line_grid_item {
    width: calc(50% - 0.625em);
  }
  .universalMatrix .universalMatrix_elem.features .line_grid.small .line_grid_item .image {
    width: 3.5em;
    height: 3.5em;
  }
  .universalMatrix .universalMatrix_elem.features .line_grid.small .line_grid_item .title {
    font-size: 2em;
  }
  .universalMatrix .universalMatrix_elem.features .line_grid.small .line_grid_item .text {
    font-size: 1em;
  }
  .universalMatrix .universalMatrix_elem.features .cards_grid .cards_grid_item {
    width: 100%;
  }
  .universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .column .title_h2 strong {
    font-size: 1.5em;
  }
  .universalMatrix .universalMatrix_elem.widgets .widgets_lease_wrapper .index_lease_form {
    padding: 2.5em 10px;
  }
  .universalMatrix .universalMatrix_elem.widgets .widgets_review_wrapper .index_review_swiper .swiper-slide {
    padding: 0 10px;
  }
}

/*# sourceMappingURL=main.css.map */
