:root {
  --color-black: #000;
  --color-white: #fff;
  --color-light-grey: #F6F6F6;
  --color-grey: #595757;
  --color-red: #A62035;
  --color-green: #17D25E;
  --font-base-vw: clamp(8px, 0.62vw, 10px);
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-md: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-h1: 5.2rem;
  --font-size-h2: 4rem;
  --font-size-h3: 3rem;
  --font-size-h4: 2.4rem;
  --font-size-h5: 2rem;
  --headerHeight: 6rem;
  --fontDefault: "Source Sans 3", sans-serif;
  --fontMain: "Benzin", sans-serif;
}

* {
  box-sizing: border-box;
  padding: 0;
}

*,
html {
  margin: 0;
}

html {
  font-size: var(--font-base-vw);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--fontMain);
  font-size: 1.6rem;
  line-height: normal;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  margin: 0;
}

main {
  display: block;
  flex: 1 1 auto;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

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

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

picture,
img {
  border-style: none;
  display: block;
}

picture,
img,
.video,
video {
  width: 100%;
  height: 100%;
}

.video,
video {
  -o-object-fit: cover;
  object-fit: cover;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
  font-family: inherit;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template,
[hidden] {
  display: none;
}

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

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

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin-Semibold.woff2") format("woff2");
  font-weight: 550;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin-ExtraBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

.font-default {
  font-family: var(--fontDefault);
}

.font-main {
  font-family: var(--fontMain);
}

.text-xs {
  font-size: var(--font-size-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-md {
  font-size: var(--font-size-md);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl,h6 {
  font-size: var(--font-size-xl);
}

.title-xs,
h5 {
  font-size: var(--font-size-h5);
}

.title-sm,
h4 {
  font-size: var(--font-size-h4);
}

.title-md,
h3 {
  font-size: var(--font-size-h3);
}

.title-lg,
h2 {
  font-size: var(--font-size-h2);
  line-height: 1.2;
}

.title-xl,
h1 {
  font-size: var(--font-size-h1);
  line-height: 1;
}

.title-xs,
.title-sm,
.title-md,
.title-lg,
.title-xl,
h5,
h4,
h3,
h2,
h1 {
  font-weight: normal;
}

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

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

.text-underline {
  text-decoration: underline;
}

.text-line-through {
  text-decoration: line-through;
}

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

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

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

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

.text-pretty {
  text-wrap-style: pretty;
  text-wrap: pretty;
}

.text {
  line-height: 1.35;
  text-wrap: balance;
}

.text h6:not(:last-child),
.text h5:not(:last-child),
.text h4:not(:last-child),
.text h3:not(:last-child),
.text h2:not(:last-child),
.text h1:not(:last-child),
.text p:not(:last-child),
.text ul:not(:last-child),
.text ol:not(:last-child) {
  margin-bottom: 3rem;
}

.text ul {
  list-style-type: none;
}

.text ul li {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.text ul li::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--color-black);
  margin-top: 0.8rem;
  flex-shrink: 0;
}

.text ul,
.text ol {
  list-style-position: inside;
}

.text li:not(:last-child) {
  margin-bottom: 0.7rem;
}

.text li::marker {
  color: inherit;
}

.text ol {
  list-style: none;
  counter-reset: item;
}

.text ol li {
  counter-increment: item;
}

.text ol li,
.text ol li::before {
  display: flex;
  align-items: center;
}

.text ol li::before {
  content: counter(item);
  min-width: 24px;
  height: 24px;
  border: 1px solid #000;
  border-radius: 50%;
  justify-content: center;
  font-size: inherit;
  line-height: 1;
  margin-right: 1.5rem;
}

.border-text {
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  padding: 6rem 0;
  display: flex;
}

.border-text::before {
  content: "";
  display: inline-flex;
  border-left: 3px solid var(--color-red);
  height: auto;
  background-color: var(--color-red);
  margin-right: 4rem;
}

.border-text::after {
  content: "";
  display: block;
  background-color: var(--color-light-grey);
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  margin-left: calc(-50vw + 50%);
  z-index: -1;
}

hr {
  opacity: 0.35;
  display: block;
  border: none;
  border-bottom: 1px solid;
  margin: 3rem auto;
}

.text-opacity {
  opacity: 0.65;
}

mark {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--fontDefault);
  display: inline-flex;
  background: none;
  padding: 0.15rem 0.65rem;
  font-weight: 600;
  border-radius: 4px;
  position: absolute;
  top: 0;
  border: 1px solid;
}

mark.promo {
  color: var(--color-red);
}

mark.new {
  background-color: var(--color-red);
  color: #fff;
}

mark.green {
  border-color: var(--color-green);
  color: var(--color-green);
}

.container {
  max-width: 88vw;
  position: relative;
}

.container,
.container-md {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.container-md {
  max-width: 1366px;
}

.container-sm {
  max-width: 1024px;
}

.container-sm,
.container-xs {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.container-xs {
  max-width: 680px;
}

.sidebar-container {
  display: grid;
  grid-template-columns: 1fr 35rem;
  gap: 2rem;
  align-items: flex-start;
}

.sticky {
  position: sticky;
}

aside {
  padding: 3.8rem 1.6rem;
}

section {
  position: relative;
  overflow: hidden;
}

section.overflow-auto {
  overflow: visible;
}

.section {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.section-md {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.full-height {
  height: 100vh;
}

.full-width,
.fullscreen {
  width: 100%;
}

.fullscreen {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}

.image {
  display: block;
}

.img {
  -o-object-fit: cover;
  object-fit: cover;
}

.bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flex {
  display: flex;
  flex-flow: row wrap;
}

.flex-2 .col {
  flex: 1;
  max-width: 50%;
}

.f-col {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
  align-items: flex-start;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.row-reverse {
  flex-flow: row-reverse wrap;
}

.grid.row-reverse .text {
  order: 2;
}

.grid.row-reverse .image {
  order: 1;
}

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

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-vw {
  gap: 3vw;
}

.pc {
  display: block !important;
}

.mobile {
  display: none !important;
}

.section__title {
  margin-bottom: 6rem;
}

.visual {
  position: relative;
  /* height: 100dvh; */
  /* padding-top: 20vh; */
  color: #fff;
}

.visual .content-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  gap: 2rem;
  top: clamp(8rem, 20vh, 80px);
  left: 50%;
  transform: translateX(-50%);
  color: #000;
}

/* .visual .content-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  gap: 2rem;
} */

.cta {
  position: relative;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  /* padding-bottom: calc(620 / 1920 * 100vw); */
  padding-bottom: 0;
  background: #497494;
  padding-top: 0;
}

.cta .container {
  position: absolute;
  top: calc(125 / 1920 * 100vw);
  left: 50%;
  transform: translateX(-50%);
}

.cta .img-elem {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(452 / 1920 * 100vw);
  width: calc(585/ 1920 * 100vw);
  height: calc(88/1920*100vw);
  object-fit: contain;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  /* transform: translateX(-50%); */
}

.cta .img-elem img {
  width: auto;
  height: auto;
}

@media (max-width: 1920px) and (min-width: 1024px) {
  .cta .img-elem {
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(80 / 1920 * 100vw);
    width: calc(980/ 1920 * 100vw);
    height: calc(490/1920*100vw);
  }
}

.cta-block {
  padding: calc(114 / 1920 * 100vw) calc(94 / 1920 * 100vw);
  background-color: var(--color-black);
  color: white;
  /* margin-bottom: -20%; */
}

.cta-block .grid {
  grid-gap: calc(90 / 1920 * 100vw);
}

.cta-block .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 0;
}

.cta-block .text-group {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr 25rem;
  grid-gap: 4rem;
  font-family: var(--fontDefault);
}

#news .post__item {
  background-color: #fff;
}

#news .post__title,
#news .post__announce {
  margin-bottom: 2rem;
}

#news .text-group {
  padding: 4rem;
}

.post__item,
.post__item mark {
  position: relative;
}

.post__item mark {
  top: 0;
  border: 1px solid;
  margin-bottom: 1rem;
}

.post__img {
  max-height: 26rem;
}

.post__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.post__title {
  text-transform: uppercase;
}

.post__announce {
  color: rgba(0, 0, 0, 0.45);
  font-family: var(--fontDefault);
}

.post__item {
  align-self: stretch;
}

.post__item .text-group {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
}

#main-news .post__announce {
  margin-top: auto;
}

.post__date {
  position: relative;
  font-family: var(--fontDefault);
}

.post__date mark {
  border-color: green;
  right: 0;
  background-color: green;
  color: #fff;
}

.sticky-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

.sticky-content .right-block {
  position: sticky;
  top: 6rem;
}

.page-form .section {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.page-form .sidebar {
  font-size: var(--font-size-xs);
  top: 6rem;
}

.form-container {
  border: 1px solid;
  padding: 6rem 4rem;
}

.form {
  display: grid;
  gap: 2rem;
  font-family: var(--fontDefault);
  grid-template-columns: repeat(2, 1fr);
  gap: 3.8rem 2.5rem ;
  font-size: 1.6rem;
  font-weight: 500;
}

.form .form-row {
  position: relative;
}

.form-label {
  display: block;
  font-size: 1.2rem;
  color: var(--color-grey);
  font-weight: inherit;
}

.form-field {
  padding: 5px 0 1rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #2d2d22;
  outline: none;
  border-radius: 0;
  font-weight: inherit;
  background-color: var(--color-light-grey);
}

textarea.form-field {
  height: 4rem;
}

[bg="white"] .form-field {
  background-color: #fff;
}

.form .note {
  margin-top: 12px;
  font-size: 1.2rem;
}



.error .form-field {
  border-color: var(--color-red);
  color: var(--color-red);
  position: relative;
}

.errorMessage {
  display: block;
  color: var(--color-red);
  font-size: 12px;
  margin-top: 5px;
}

.checkbox {
  display: inline-flex;
  align-items: center;
}

.checkbox.align-end {
  align-items: flex-end;
  padding-bottom: 1rem;
}

.checkbox a {
  text-decoration: underline;
  color: var(--color-blue);
}

.form-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form-checkbox+label {
  display: inline-flex;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  align-items: center;
}

.form-checkbox+label::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid var(--color-black);
  margin-right: 1.5rem;
  background-repeat: no-repeat;
  align-self: stretch;
  background-position: center center;
  border-radius: 4px;
}

.form-checkbox:checked+label::before {
  background-color: var(--color-black);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 13l5 5L20 7' stroke='%23fff' stroke-linecap='square'/%3E%3C/svg%3E");
  background-size: 2rem 2rem;
}

.form-checkbox:disabled+label::before {
  background-color: #fff;
}

#to-top {
  width: 4rem;
  height: 4rem;
  position: fixed;
  bottom: 6rem;
  right: 3rem;
  background: #fff url(../img/icons/arrow-top.svg) no-repeat center/1.2rem 0.8rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  z-index: 999;
}

#to-top,
button {
  cursor: pointer;
}

button {
  border: none;
  background-color: inherit;
  font-size: inherit;
}

.btn-link {
  border: 1px solid var(--color-grey);
  padding: 0.6rem 1rem;
  font-size: var(--font-size-xs);
  display: inline-block;
}

.btn,
.btn-sm {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
  padding: 1.4rem 3rem;
  cursor: pointer;
  border: 1px solid;
}

.btn {
  font-family: var(--fontDefault);
  min-width: 25rem;
  font-weight: 500;
}

.btn-default {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid;
}

.btn-primary.white {
  color: var(--color-black);
  background-color: #fff;
  border-color: #fff;
}

.btn-primary.black {
  color: #fff;
  background-color: #000;
}

.loading:not([href]) {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.0' width='160px' height='20px' viewBox='0 0 128 16' xml:space='preserve'%3E%3Cpath fill='%23ffffff' fill-opacity='0.42' d='M6.4,4.8A3.2,3.2,0,1,1,3.2,8,3.2,3.2,0,0,1,6.4,4.8Zm12.8,0A3.2,3.2,0,1,1,16,8,3.2,3.2,0,0,1,19.2,4.8ZM32,4.8A3.2,3.2,0,1,1,28.8,8,3.2,3.2,0,0,1,32,4.8Zm12.8,0A3.2,3.2,0,1,1,41.6,8,3.2,3.2,0,0,1,44.8,4.8Zm12.8,0A3.2,3.2,0,1,1,54.4,8,3.2,3.2,0,0,1,57.6,4.8Zm12.8,0A3.2,3.2,0,1,1,67.2,8,3.2,3.2,0,0,1,70.4,4.8Zm12.8,0A3.2,3.2,0,1,1,80,8,3.2,3.2,0,0,1,83.2,4.8ZM96,4.8A3.2,3.2,0,1,1,92.8,8,3.2,3.2,0,0,1,96,4.8Zm12.8,0A3.2,3.2,0,1,1,105.6,8,3.2,3.2,0,0,1,108.8,4.8Zm12.8,0A3.2,3.2,0,1,1,118.4,8,3.2,3.2,0,0,1,121.6,4.8Z'/%3E%3Cg%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M-42.7,3.84A4.16,4.16,0,0,1-38.54,8a4.16,4.16,0,0,1-4.16,4.16A4.16,4.16,0,0,1-46.86,8,4.16,4.16,0,0,1-42.7,3.84Zm12.8-.64A4.8,4.8,0,0,1-25.1,8a4.8,4.8,0,0,1-4.8,4.8A4.8,4.8,0,0,1-34.7,8,4.8,4.8,0,0,1-29.9,3.2Zm12.8-.64A5.44,5.44,0,0,1-11.66,8a5.44,5.44,0,0,1-5.44,5.44A5.44,5.44,0,0,1-22.54,8,5.44,5.44,0,0,1-17.1,2.56Z'/%3E%3CanimateTransform attributeName='transform' type='translate' values='23 0;36 0;49 0;62 0;74.5 0;87.5 0;100 0;113 0;125.5 0;138.5 0;151.5 0;164.5 0;178 0' calcMode='discrete' dur='1170ms' repeatCount='indefinite'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  text-indent: 1000%;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  transition: none;
}

.form-btn {
  width: 100%;
  font-weight: 500;
  border-radius: 0.6rem;
  height: 7rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}

.icon {
  display: inline-flex;
  align-items: center;
}

.icon::before {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.phone__icon::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.193984 0.73698C0.00540544 1.06479 -0.0332675 1.35021 0.0248673 1.98456C0.278464 4.75147 1.28112 7.24486 3.02917 9.45573C3.40319 9.92882 4.65244 11.1781 5.12552 11.5521C7.02464 13.0536 9.17318 14.0284 11.475 14.4328C12.2223 14.5641 13.1778 14.6467 13.4268 14.6015C14.016 14.4947 14.5115 13.9736 14.5623 13.4075C14.5742 13.2745 14.595 12.4728 14.6085 11.6258C14.6364 9.88239 14.6079 9.70173 14.2487 9.34372C13.998 9.09369 13.8437 9.0415 12.3117 8.68843C11.0418 8.39576 10.7098 8.35952 10.4133 8.48124C10.048 8.63127 9.93535 8.73718 9.43817 9.398C8.80438 10.2404 8.82575 10.2211 8.64284 10.1155C6.93894 9.13117 5.61886 7.84069 4.632 6.19458C4.503 5.97941 4.39728 5.78401 4.39703 5.76035C4.39681 5.73673 4.67822 5.50619 5.02243 5.24809C5.93769 4.56174 6.15803 4.26518 6.14989 3.73064C6.14529 3.4251 5.56786 0.953562 5.44098 0.696273C5.3096 0.429848 5.11398 0.245869 4.81933 0.111671C4.54102 -0.0150807 4.41189 -0.0197428 2.48208 0.0277852C1.12896 0.061139 0.98672 0.0792238 0.6845 0.256538C0.412694 0.416018 0.334721 0.492363 0.193984 0.73698ZM1.21513 0.899682C1.27295 0.883662 2.00711 0.852623 2.84656 0.83069C4.41164 0.789826 4.59649 0.809289 4.70923 1.02678C4.73488 1.07628 4.89411 1.70328 5.06307 2.4201C5.32662 3.53796 5.36182 3.74719 5.31072 3.89053C5.25321 4.05204 5.22402 4.07823 4.44662 4.66671C4.0041 5.00166 3.60413 5.31364 3.55779 5.36004C3.41339 5.50463 3.44118 5.70763 3.66324 6.13081C4.3321 7.40549 5.41463 8.72238 6.5875 9.68811C7.3405 10.3082 8.7066 11.1416 8.94465 11.1261C9.13254 11.114 9.21477 11.0334 9.71464 10.3723C9.98738 10.0116 10.3023 9.60789 10.4145 9.4751C10.6167 9.23593 10.6205 9.23364 10.836 9.2281C11.0875 9.22156 13.4831 9.774 13.631 9.87262C13.6856 9.90898 13.7503 10.0018 13.7748 10.0789C13.7994 10.156 13.8074 10.9386 13.7926 11.8181C13.7636 13.5422 13.754 13.5947 13.4384 13.7537C13.3328 13.8069 13.1462 13.8163 12.7893 13.7864C10.2042 13.57 7.7858 12.6087 5.7069 10.9711C5.19314 10.5664 4.14909 9.5358 3.7046 8.99456C2.30949 7.29583 1.32786 5.12397 0.965068 2.93334C0.838817 2.17117 0.777334 1.45938 0.824049 1.30115C0.868573 1.15031 1.0748 0.938637 1.21513 0.899682Z' fill='black'/%3E%3C/svg%3E%0A");
  margin-right: 6px;
}

.icon__wa::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.21129 0.0230987C5.89905 0.168642 4.78802 0.552943 3.70575 1.23566C2.30602 2.11865 1.17793 3.46989 0.564607 4.99828C-0.258386 7.04901 -0.179324 9.30001 0.786485 11.3157L0.969033 11.6967L0.789985 12.5C0.691494 12.9418 0.571825 13.4836 0.524074 13.7041C0.476286 13.9245 0.344442 14.5286 0.231043 15.0465C0.117644 15.5644 0.0301975 15.9931 0.0367587 15.9993C0.0432835 16.0053 0.212672 15.9731 0.413153 15.9275C2.08498 15.5475 2.9979 15.3397 3.62085 15.1974C4.02181 15.1057 4.38268 15.0381 4.42278 15.0471C4.46287 15.0561 4.6506 15.1319 4.83992 15.2156C6.51321 15.9549 8.50374 16.0723 10.306 15.538C13.293 14.6525 15.539 12.0399 15.9424 8.98134C16.0197 8.3957 16.0191 7.42471 15.9412 6.87147C15.5743 4.26616 13.9078 1.9735 11.5307 0.803982C10.8256 0.457032 9.98223 0.191527 9.2161 0.0752815C8.75233 0.0049149 7.637 -0.0241282 7.21129 0.0230987ZM8.57821 1.26105C10.2277 1.41655 11.6658 2.09496 12.8133 3.25905C13.7519 4.21124 14.3578 5.33736 14.638 6.65071C14.7267 7.06639 14.7358 7.18183 14.7371 7.91002C14.7383 8.60553 14.7273 8.76721 14.6544 9.13078C14.3826 10.4846 13.8145 11.5803 12.8824 12.5483C10.833 14.6763 7.64491 15.226 4.9901 13.9091C4.62275 13.7268 4.55218 13.7035 4.441 13.7279C4.37083 13.7432 4.05918 13.8142 3.74843 13.8858C2.33522 14.2111 1.70192 14.3487 1.68676 14.3335C1.67247 14.3192 1.90575 13.2215 2.20392 11.9L2.29851 11.4808L2.16226 11.2483C1.50166 10.1215 1.15665 8.65804 1.26498 7.44216C1.28743 7.19007 1.34772 6.78532 1.39897 6.54274C1.94468 3.95882 4.04547 1.89621 6.66452 1.37285C7.37386 1.2311 7.92128 1.19914 8.57821 1.26105ZM5.2247 4.49026C4.81543 4.70504 4.44457 5.303 4.36475 5.8769C4.25189 6.68803 4.65931 7.6103 5.6814 8.85747C6.11411 9.38546 6.85968 10.06 7.36566 10.3812C7.98033 10.7714 9.06618 11.1811 9.75109 11.2812C10.3429 11.3678 10.917 11.1949 11.3489 10.8003C11.6275 10.5458 11.7076 10.3698 11.7862 9.83973C11.8291 9.55032 11.8076 9.53137 10.9574 9.10968C10.505 8.88531 10.1181 8.7166 10.0285 8.70468C9.8545 8.68154 9.90904 8.63428 9.43164 9.22188C9.26881 9.4223 9.11681 9.59834 9.09381 9.61307C9.0022 9.67181 8.83923 9.63337 8.50538 9.47419C7.97505 9.22144 7.52889 8.90641 7.11903 8.49537C6.72171 8.09693 6.22711 7.40671 6.22711 7.2507C6.22711 7.18927 6.30409 7.07816 6.46623 6.90561C6.69044 6.66689 6.84415 6.41629 6.84597 6.28634C6.84678 6.23059 6.30657 4.87387 6.20673 4.68085C6.1023 4.47897 5.99222 4.42981 5.64808 4.43141C5.43535 4.4324 5.29877 4.45138 5.2247 4.49026Z' fill='black'/%3E%3C/svg%3E%0A");
}

.icon__ig::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("/static/img/icons/instagram.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon__telegram::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("/static/img/icons/telegram.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  filter: invert(1);
}

.icon__download::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='15' viewBox='0 0 14 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.76719 0.0546724C6.70373 0.0867939 6.63004 0.165203 6.59277 0.240267C6.52978 0.367148 6.52825 0.485974 6.52825 5.26129V10.1524L5.45682 9.05527C4.86752 8.45189 4.35273 7.94123 4.31283 7.92047C4.20961 7.86681 4.04835 7.87381 3.91752 7.93758C3.66423 8.06108 3.59107 8.41042 3.76742 8.65422C3.87552 8.80366 6.59094 11.5863 6.74038 11.7008C6.80682 11.7517 6.8844 11.7742 6.99337 11.7742C7.10234 11.7742 7.17991 11.7517 7.24636 11.7008C7.39579 11.5863 10.1112 8.80366 10.2193 8.65422C10.3957 8.41042 10.3225 8.06108 10.0692 7.93758C9.93839 7.87381 9.77713 7.86681 9.6739 7.92047C9.634 7.94123 9.11922 8.45189 8.52992 9.05527L7.45849 10.1524V5.26129C7.45849 0.479283 7.45706 0.367319 7.3937 0.239755C7.28363 0.018045 7.00314 -0.0648018 6.76719 0.0546724ZM0.256413 10.2248C0.196446 10.2562 0.11422 10.3296 0.0736879 10.388L0 10.4941V12.3204V14.1466L0.0944853 14.3412C0.205947 14.5708 0.454453 14.8215 0.673855 14.9256L0.830566 15H6.99337H13.1562L13.3115 14.9262C13.5321 14.8215 13.7598 14.5925 13.8819 14.3527L13.9867 14.1466L13.9964 12.3627C14.0052 10.7559 14.0006 10.5668 13.9508 10.459C13.7966 10.125 13.3727 10.0858 13.1585 10.3856C13.0916 10.4793 13.0893 10.5297 13.0731 12.2232C13.0571 13.8969 13.054 13.9663 12.992 14.0128C12.895 14.0857 1.09173 14.0857 0.99472 14.0128C0.932726 13.9663 0.929603 13.897 0.913623 12.2277C0.898473 10.6434 0.891862 10.483 0.838407 10.3992C0.710832 10.1992 0.452958 10.1219 0.256413 10.2248Z' fill='black'/%3E%3C/svg%3E%0A");
  margin-right: 1rem;
}
.close__icon {
  cursor: pointer;
}

.close__icon::before {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.707031 0.707108L20.707 20.7071' stroke='black' stroke-width='2'/%3E%3Cpath d='M20.707 0.707108L0.707031 20.7071' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.arrow-left__icon::before {
  content: "";
  width: 7px;
  height: 10px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.707031 0.707108L4.70703 4.70711L0.707031 8.70711' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.arrow-right__icon {
  border: none;
}

.arrow-right__icon::after {
  content: "";
  width: 7px;
  height: 10px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.530334 0.530273L5.53033 5.53027L0.530334 10.5303' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}

.menu.mobile {
  width: 3.4rem;
  height: 3.4rem;
  background: url(../img/icons/menu.svg) no-repeat center/3.4rem 1.6rem;
}

.menu.mobile.is-active {
  background: url(../img/icons/close.svg) no-repeat center/2.2rem 2.2rem;
}

.user-select-none {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.filter-invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.img-auto {
  height: auto;
}

/* Padding top */

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pt-10 {
  padding-top: 10rem;
}

/* Padding bottom */

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

/* Margin top */

.mt-auto {
  margin-top: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mt-10 {
  margin-top: 10rem;
}

/* Margin bottom */

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.h-opacity {
  transition: opacity 0.3s;
}

.h-opacity:hover {
  opacity: 0.75;
}

.h-underline:hover {
  text-decoration: underline;
}

.h-color {
  transition: color 0.15s;
}

.h-color:hover {
  color: var(--primary-color);
}

.h-imgZoom,
.h-imgZoom .post__img {
  position: relative;
  overflow: hidden;
}

.h-imgZoom img {
  transition: 0.35s;
}

.h-imgZoom:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.popup {
  padding: 4rem;
  max-width: 1024px;
  display: none;
}

.popup .fancybox-close-small {
  padding: 3px;
  opacity: 1;
  top: 1rem;
  right: 1rem;
}
.popup .form {
  grid-template-columns: repeat(1,1fr);
  grid-gap: 2rem;
}
.popup .form-btn {
  height: 6rem;
}
.popup .checkbox {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.popup .form-field {
  background-color: unset;
}
.popup .title {
  text-align: center;
  margin-bottom: 2rem;

}
#breadcrumbs {
  font-family: var(--fontDefault);
}

#breadcrumbs .sep {
  margin: 0 0.6em;
}

.page__pagination {
  display: flex;
  margin-top: 8rem;
}

.page__pagination,
.page__pagination .page__link {
  position: relative;
  align-items: center;
  justify-content: center;
}

.page__pagination .page__link {
  display: inline-flex;
  width: 3.2rem;
  height: 3.2rem;
  line-height: 3.2rem;
  border-radius: 50%;
  margin: 0 0.35em;
  font-weight: 400;
  text-decoration: underline;
}

.page__pagination .page__link:hover {
  text-decoration: none;
}

.page__pagination .prev {
  margin-right: 4rem;
}

.page__pagination .next {
  margin-left: 4rem;
}

.page__pagination .prev,
.page__pagination .next {
  border: 1px solid;
  border-radius: 50%;
  width: 5.4rem;
  height: 5.4rem;
}

.page__pagination .prev.disabled,
.page__pagination .next.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.share-block .ya-share2__list {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.header {
  background-color: #fff;
}

.header .car__item:not(:last-child) {
  border-right: 1px solid #ccc;
}

.header .cars .sub__menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 6rem;
}

.header .cars .dropdown {
  left: 0;
  right: 0;
}

.header .dropdown {
  top: 100%;
}

.header .car__item {
  padding-left: 3.6vw;
  padding-right: 3.6vw;
  padding-bottom: 2rem;
}

.header .lang__item {
  position: relative;
}

.header .langs {
  top: 1.6rem;
}

.header__menu .logo {
  margin-right: 4vw;
}

.header__menu .flex {
  position: relative;
  align-items: center;
}

.header__nav {
  justify-content: space-between;
  flex: 1;
}

.header__nav,
.header__nav .menu__items {
  display: flex;
  align-items: center;
}

.header__nav .nav__item {
  display: inline-flex;
  cursor: pointer;
}

.header__nav .nav__item .nav-link {
  font-size: 1.4rem;
  padding: 2rem 0;
  position: relative;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.header__nav .nav__item .lang-link {
  display: inline-flex;
}

.header__nav .nav__item.active .nav-link::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--color-black);
  bottom: 0;
  z-index: 10;
}

.header__nav .nav__item.active+.nav__item .nav-link {
  border-top: none;
}

.header__nav .nav__item:not(:last-child) {
  margin-right: 4rem;
}

.header__nav .menu__items:last-of-type {
  justify-content: flex-end;
}

.dropdown__item .nav-link::after {
  content: "";
  display: inline-flex;
  width: 7px;
  height: 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='4' viewBox='0 0 7 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.94033 3.64645L0.147438 0.853553C-0.167545 0.538571 0.0555385 0 0.500991 0H6.08678C6.53223 0 6.75531 0.53857 6.44033 0.853552L3.64744 3.64645C3.45218 3.84171 3.13559 3.84171 2.94033 3.64645Z' fill='black'/%3E%3C/svg%3E%0A");
  margin-left: 8px;
  margin-top: 1px;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.dropdown__item.active .nav-link::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.dropdown__item.active .dropdown {
  display: block;
}

.dropdown {
  position: absolute;
  top: 6.05rem;
  display: none;
  z-index: 2;
  cursor: default;
}

.dropdown .close__icon {
  position: absolute;
  top: 3rem;
  right: 3rem;
}

.sub__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--color-light-grey);
  max-width: -webkit-max-content;
  max-width: max-content;
  padding: 3rem 4rem;
  gap: 1.6rem;
}

.sub-link {
  font-family: var(--fontDefault);
  color: black;
}

.langs {
  display: none;
  position: absolute;
}

.lang__item:hover .langs {
  display: block;
}

.lang__item:hover .current-lang::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.current-lang {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.current-lang::after {
  content: "";
  display: inline-flex;
  width: 7px;
  height: 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='4' viewBox='0 0 7 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.94033 3.64645L0.147438 0.853553C-0.167545 0.538571 0.0555385 0 0.500991 0H6.08678C6.53223 0 6.75531 0.53857 6.44033 0.853552L3.64744 3.64645C3.45218 3.84171 3.13559 3.84171 2.94033 3.64645Z' fill='black'/%3E%3C/svg%3E%0A");
  margin-left: 8px;
  margin-top: 1px;
}

.current-lang::after,
.header {
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.header.transparent {
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.header.transparent.black {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.header.transparent .nav-link,
.header.transparent .lang-link {
  color: #fff;
}

.header.transparent.black .nav-link,
.header.transparent.black .lang-link {
  color: #000;
}

.header.transparent .logo,
.header.transparent .dropdown__item .nav-link::after,
.header.transparent .nav-link .icon::before,
.header.transparent .right-menu .icon::before,
.header.transparent .current-lang::after {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.header.transparent .right-menu .icon.icon__telegram::before {
  filter: none;
}

.header.transparent.black .right-menu .icon.icon__telegram::before {
  filter: invert(1);
}

.header.transparent.black .logo,
.header.transparent.black .dropdown__item .nav-link::after,
.header.transparent.black .nav-link .icon::before,
.header.transparent.black .right-menu .icon::before,
.header.transparent.black .current-lang::after {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.header.is-hide {
  -webkit-transform: translateY(calc(-100% - 1px));
  transform: translateY(calc(-100% - 1px));
}

footer {
  flex-shrink: 0;
}

.footer {
  background-color: var(--color-black);
  color: white;
  font-family: var(--fontDefault);
  padding-bottom: 10rem;
}

.footer .footer__menu {
  padding: 4rem 0;
  display: flex;
}

.footer .lang__item:hover .langs {
  top: 6rem;
}

.footer__text {
  flex: 1;
  max-width: 40rem;
  font-size: var(--font-size-xs);
  margin-right: 6rem;
}

.footer-logo {
  display: block;
  width: 15rem;
  margin-bottom: 2rem;
  text-wrap: balance;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.footer__nav .main-link {
  font-family: var(--fontMain);
  font-size: 1.4rem;
  display: inline-flex;
  margin-bottom: 1.6rem;
}

.footer__nav .icon::before,
.footer__nav .current-lang::after {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.footer__nav .langs {
  position: absolute;
  top: 6rem;
}

.footer__nav .col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav .col a {
  opacity: 0.35;
  font-size: 12px;
}

.copyright .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.right-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.right-menu .nav-link,
.lang-link {
  font-family: var(--fontDefault);
  font-size: 1.6rem;
}

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
[bg=white] {
  background-color: #fff;
}
[bg=light] {
  background-color: var(--color-light-grey);
}

[bg=dark] {
  background-color: var(--color-black);
  color: #fff;
}

.page {
  padding-top: var(--headerHeight);
}

.page__title {
  margin-top: 1rem;
}

.full-width {
  width: 100%;
}

.text-light {
  color: var(--color-white);
}

.text-dark {
  color: var(--color-black);
}

.banner-sm {
  height: 45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner-sm,
.banner {
  position: relative;
  overflow: hidden;
}

.banner {
  text-wrap: balance;
}

.banner::after {
  content: none;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 40%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.banner .banner-content {
  display: flex;
  min-height: 60rem;
  max-height: 100vh;
  height: 100%;
  align-items: flex-start;
}
.car__page .banner .banner-content {
    max-height: calc(100vh - 5.6rem);
}

.car__page .banner .banner-content:has(.youtube_video_container) {
  max-height: calc(100vh - 5.6rem);
}

.banner .banner-content.center {
  align-items: center;
}

.banner .banner-content.top {
  align-items: flex-start;
}

.banner .banner-content.top .text-group {
  padding-top: 30vh;
}

.banner .banner-content.top.text-center .text-group {
  margin-left: auto;
  margin-right: auto;
}

.banner .banner-content.end {
  align-items: flex-end;
}

.banner .banner-content.end .text-group {
  padding-bottom: 4rem;
}

.banner .title-lg {
  margin-bottom: 2rem;
}

.banner .title-svg {
  max-width: 50rem;
}

.banner h5 {
  margin-bottom: 2rem;
  font-size: var(--font-size-h4);
}

.banner .text-lg {
  font-size: calc(22 / 1920 * 100vw);
}

.banner .title-md {
  font-size: calc(36 / 1920 * 100vw);
}

.banner .btn {
  font-size: calc(18/1920*100vw);
}

.banner .img, .banner picture {
  -o-object-fit: cover;
  object-fit: cover;
}

.banner .slider {
  display: flex;
}

.banner .slider .swiper-wrapper {
  flex: 1;
}

.banner .text-group {
  max-width: 75rem;
}

.banner .btn-group {
  margin-top: 2rem;
}

.banner .container {
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 3;
}

.top-overlay {
  position: relative;
  overflow: hidden;
}

.top-overlay::after {
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  mix-blend-mode: hard-light;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-overlay .container,
.top-overlay .container-sm {
  z-index: 2;
}

.swiper-button-prev,
.swiper-button-next {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  color: inherit;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 3.2rem;
}

.slider-container .swiper-pagination {
  bottom: 4rem;
  position: relative;
}

.slider-container .swiper-button-prev,
.slider-container .swiper-button-next {
  border: 1px solid;
}

.slider-container .swiper-button-prev::after,
.slider-container .swiper-button-next::after {
  font-size: 1.2rem;
}

.slider-container .swiper-pagination-bullet {
  width: 5rem;
  height: 3px;
  background-color: #666;
  border-radius: 0;
  opacity: 1;
  position: relative;
}

.slider-container .swiper-pagination-bullet-active {
  background-color: #666;
}

.slider-container .swiper-pagination-bullet .line {
  position: absolute;
  inset: 0;
  background: #D9D9D9;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  height: 100%;
}

.slider-container .swiper-pagination-bullet-active .line {
  -webkit-animation: bullet-progress 5.5s linear forwards;
  animation: bullet-progress 5.5s linear forwards;
}

@-webkit-keyframes bullet-progress {
  from {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes bullet-progress {
  from {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.filter-invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

#models .grid {
  grid-gap: 6vw;
}

#models .btn {
  width: 100%;
}

.cars .car__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-top: 2rem;
}

.cars .title-svg {
  width: auto;
  height: 1.6rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 1rem;
}

.cars .car__icon {
  margin-bottom: 2rem;
}

.cars .car__text {
  line-height: 1.6;
  width: 100%;
}

.cars .car__desc {
  min-height: 4.5rem;
}

.cars .car__text .text-xs {
  font-size: 10px;
  color: var(--color-grey);
}

.spec__info {
  color: #595757;
  font-family: var(--fontDefault);
  margin: 3rem 0;
  display: grid;
  gap: 1rem;
  color: #9aa0a6;
  font-size: 1.4rem;
  line-height: 1;
}

.spec__row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
}

.spec__label {
  flex: 0 0 auto;
  white-space: nowrap;
}

.spec__dots {
  flex: 1 0 auto;
  height: 1px;
  align-self: flex-end;
  opacity: 0.6;
  margin-bottom: 2px;
  border-bottom: 1px dashed #9aa0a6;
}

.spec__value {
  flex: 0 1 auto;
  min-width: 0;
  text-align: right;
  white-space: nowrap;
}

#main-news .post__item {
  padding: 0 4.86vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#main-news .post__item:first-child {
  padding-left: 0;
}

#main-news .post__item:last-child {
  padding-right: 0;
}

#main-news .post__item:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

#main-news .post__title,
#main-news .post__announce {
  margin-bottom: 1rem;
}
.search-field {
  display: flex;
  align-items: center;
}
.search-field .icon__search {
  margin-left: -1.7rem;
}
.search-field .form-field{
  background: none;
  font-family: var(--fontDefault);
}
.map-container {
  display: flex;
}

#map {
  flex: 1;

}
.contacts {
  background-color: var(--color-light-grey);
  position: relative;
  width: 55rem;
  min-width: 48rem;
  overflow: hidden;
}
.contacts .btn-group {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 1rem;
}
.contacts .btn {min-width: auto; padding: .9rem 2rem;}
.contacts__header,
.contacts__body{
  padding: 3rem 4.6vw;

}
.contacts__body {
  overflow-x: hidden;
  overflow-y: auto;
  height: 45rem;
  height: 80rem;
  scrollbar-gutter: stable;
}
.contacts__header {
  background-color: white;
  padding-right: calc(4.6vw + 17px);
}

.contacts__header .search-field {
  min-width: 37.4rem;
}

.dealer__item {
  background-color: white;
  padding: 2.4rem;
  min-width: 37.4rem;
  box-shadow: rgba(0, 0, 0, 0) 0px 4px 6px -1px, rgba(0, 0, 0, 0) 0px 2px 4px -1px;
  transition: box-shadow 0.3s ease;
}

.dealer__item[open] {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.dealer__item .row p, .dealer__item .work{
  margin-bottom: 0.5rem;
}

.dealer__item p:last-child, .dealer__item .work:last-child{
  margin-bottom: 0;
}

.work table {
  width: 100%;
  border-spacing: 0;
}

.work table tr {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.8rem;
}

.work table tr td:nth-child(2) {
  flex-grow: 1;
  flex-shrink: 0;
}

.work table tr td:nth-child(2):after {
  content: '';
  border-bottom: 1px dashed #57586133;
  display: block;
  width: 100%;
  height: 1px;
  transform: translateY(-0.6rem);
}


.dealer__item:not(:last-child) {
  margin-bottom: 1rem;
}
.dealer__item .dealer__name {
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
}
.dealer__item .dealer__name::after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.707031 0.707031L6.70703 6.70703L12.707 0.707031' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
  width: 14px;
  height: 9px;
  margin-left: auto;
  transition: transform .25s;
}
.dealer__count {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background-color: #000;
  font-family: var(--fontDefault);
  font-size: 1.4rem;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  line-height: .7;
}
details{
  list-style: none;
}
details[open] summary::after {
    transform: rotate(-180deg);
}
details .row {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 2rem;
  margin-top: 2rem;
  font-family: var(--fontDefault);
}

.item {
  background-color: #fff;
  padding: 4rem 3rem;
}

.page__list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.page__list .item .text-group {
  gap: 1rem;
  flex-grow: 1;
}

.page__list .item .text-group .item__title {
  color: rgba(0, 0, 0, 0.45);
}

.page__list .grid .btn {
  margin-top: auto;
  min-width: revert;
}

.img-container {
  cursor: pointer;
}


@media screen and (min-width: 768px) {

.fancybox-can-swipe .fancybox-content {
  min-width: 40vw;
  height: auto !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.fancybox-can-swipe .form-message.fancybox-content {
  top: revert !important;
  left: revert !important;
  transform: revert !important;

}
}

.fancybox-image {
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.item__img {
  height: 16.5rem;
}
.item__img img {object-fit: contain;}
.item .text-group {
  display: grid;
  grid-gap: 2rem;
}
#regulations-to .item {
  padding: 0;
}
#regulations-to .grid {
  grid-template-columns: repeat(3,1fr);
}
#regulations-to .item__img {height: 21.5rem;}
#regulations-to .item__img img {object-fit: cover;}
#regulations-to .text-group {
  padding: 3rem 3rem 4rem;
}

.car__page .banner .title-svg {
  max-height: 5.4rem;
  object-fit: contain;
  object-position: left;
  margin-bottom: 2rem;
}
.car__page .banner .prices {
  margin-top: 3rem;
}

.car__nav {
  position: sticky;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #DCDCDC;
  top: 0;
}
.car__nav .btn {
  min-width: auto;
  padding: 1rem 3rem;
}
.car__nav .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.navbar::-webkit-scrollbar {
  height: 0;
}

.navbar .navbar__name {
  margin-right: 4rem;
}

.navbar nav {
  flex: 1;
  max-width: 1000px;
  display: flex;
  justify-content: space-evenly;
  font-weight: 500;
}

.navbar .link {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 0;
}
.navbar .link:not(:last-child) {
  margin-right: 3.5rem;
}

.link-underline {
  position: absolute;
  height: 3px;
  background: var(--color-black);
  bottom: -1px;
  transition: 0.35s ease;
  pointer-events: none;
}

.tab-nav {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.tab-nav .tab {
  cursor: pointer;
  padding-bottom: 5px;
}
.tab-nav .tab.active {
  border-bottom: 1px solid;
}
.tab-nav .tab:not(:last-child) {
  margin-bottom: 1rem;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-nav {
  position: relative;
  margin-right: 10rem;
}

.tab-nav .tabs {
  display: flex;
  flex-direction: column;
  align-items: start;
  border-bottom: none;
  position: sticky;
  top: 6rem;
  z-index: 90;
}

.tab-info {
  flex: 1;
}
.features .text-group {
  padding: 2rem;
  background-color: #fff;
}
.colors .btn-select {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
}
.colors .swiper-wrapper {
  justify-content: center;
}
.colors .swiper-slide {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}

.colors .swiper-slide:last-child {
  margin-right: 0;
}

.colors .swiper-wrapper {
  margin-bottom: 1rem;
}

.item .btn-default.icon__download:before {
  margin-top: 0;
  filter: none;
}



@media screen and (max-width: 1024px) {
  :root {
    --font-size-h1: 3.2rem;
    --font-size-h2: 2.2rem;
    --font-size-h3: 1.8rem;
    --font-size-h4: 1.8rem;
    --font-size-h5: 1.6rem;
    --font-size-md: 1.4rem;
    --font-size-lg: 1.6rem;
    --font-size-xl: 1.8rem;
    --font-size-xs: 1rem
  }

  html {
    font-size: 2.8vw;
    overflow-x: hidden;
  }

  .pc {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6 {
    grid-template-columns: repeat(1, 100%);
  }

  .container,
  .container-md,
  .container-sm {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .header {
    padding: 1.4rem 0;
    box-shadow: 0px 6px 15px 0px #0000001A;
  }

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

  .header.transparent .nav-link,
  .header.transparent .lang-link {
    color: inherit;
  }

  .header.transparent .logo,
  .header.transparent .nav-link .icon::before,
  .header.transparent .right-menu .icon::before,
  .header.transparent .dropdown__item .nav-link::after,
  .header.transparent .dropdown__item::after {
    -webkit-filter: none;
    filter: none;
  }

  .header__nav {
    display: none;
    background-color: var(--color-white);
    color: #000;
    order: 3;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100dvh - 6rem);
    overflow-x: hidden;
    overflow-y: auto;
    top: 6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }

  .is-active .header__nav {
    border-top:none;
  }

  .header__menu .logo {
    order: 1;
  }

  .header__menu .menu {
    order: 2;
  }

  .header__menu .flex {
    justify-content: space-between;
  }

  .header__menu.is-active .header__nav {
    display: block;
  }

  .header .cars .sub__menu {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .header .cars .container,
  .header .cars .sub__menu {
    padding: 0;
  }

  .header .close__icon {
    display: none;
  }

  .header .car__item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .header .cars .car__icon {
    margin-bottom: 0;
  }

  .header__nav .menu__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .header__nav .nav__item {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 1.5rem;
  }

  .header__nav .nav__item:not(:last-child) {
    margin-right: 0;
  }

  .header .cars .dropdown,
  .header .dropdown {
    position: relative;
  }

  .header .cars .car__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    padding: 2rem 0;
  }

  .header mark {
    top: 1rem;
  }

  .header__nav .nav__item .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease-in-out;
  }

  .header__nav .nav__item:last-child .nav-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .header__nav .nav__item.active {
    background-color: var(--color-light-grey);
  }

  .header__nav .nav__item.active .nav-link {
    border-top: 1px solid transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .header__nav .nav__item.active .nav-link::before {
    content: none;
  }

  .header__nav .menu__items:last-of-type {
    justify-content: flex-start;
  }

  .header .right-menu {
    flex-direction: row;
    padding: 2rem 1.2rem;
  }

  .cars .title-svg {
    margin-top: 1.2rem;
  }

  .banner .btn {
    font-size: 1.4rem;
  }

  .banner .title-md {
    font-size: 1.8rem;
  }

  .banner .text-lg {
    font-size: 1.2rem;
  }

  .dropdown {
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
  }

  .page__title {
    text-align: center;
  }

  .sub__menu {
    padding: 1.5rem 1.2rem;
    max-width: 100%;
  }

  .popup {
    padding: 4rem 3rem;
  }

  .popup .title-lg {
    margin-bottom: 3rem;
  }

  .popup .fancybox-close-small {
    top: 5px;
    right: 5px;
  }

  .page__pagination {
    padding: 0;
    justify-content: center;
    margin-top: 4rem;
  }

  .page__pagination .page__link {
    margin: 0 3px;
  }

  hr {
    margin: 2.5rem auto;
  }

  .border-text {
    font-size: 1.6rem;
    padding: 4rem 0;
  }

  .border-text::before {
    margin-right: 3rem;
  }

  #news .text-group {
    padding: 3rem;
  }

  #news .posts {
    grid-gap: 3rem;
  }

  .post__img {
    max-height: 24.7rem;
  }

  .post__item {
    align-self: revert;
  }

  #main-news .post__title {
    font-size: 1.4rem;
  }

  #post #breadcrumbs,
  #post .post__header {
    text-align: center;
  }

  #post .post__header hr {
    display: none;
  }

  #post .post__header .post__date {
    margin: 2rem 0 4rem;
  }

  .post__date mark {
    position: relative;
    right: auto;
    margin-top: 2rem;
  }

  .form {
    font-size: 1.4rem;
    gap: 3rem;
    grid-template-columns: repeat(1, 100%);
    padding: 0;
  }

  .form .form-btn {
    height: 6rem;
  }

  .form-field {
    padding: 0 0 1.6rem;
  }

  .form-container {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    max-width: calc(100% - 3rem);
  }

  .form-container .title-lg {
    margin-bottom: 3rem;
    font-size: 1.8rem;
  }

  .checkbox {
    font-size: 12px;
  }

  .footer__nav {
    display: none;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__text {
    margin-right: 0;
    text-align: center;
  }

  .footer .footer__menu {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  html {
    font-size: 10px;
  }

  body {
    font-size: 1.4rem;
  }

  .banner-sm {
    height: 24rem;
  }

 .page__list .item {
    padding: 2.8rem 1.5rem 3.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

 .page__list .item__img {
    height: 7.8rem;
  }

  

 .page__list .grid, #regulations-to .grid {
    grid-template-columns: repeat(2,1fr);
    row-gap: 3rem;
    column-gap: 1rem;
    font-size: calc(10/360*100vw);
    align-items: stretch;
  }

  #regulations-to .item .item__img {
    height: 8.8rem;
    width: 100%;
  }

  #regulations-to .text-group {
    padding: 2rem 1.5rem 3rem ;
  }

 .page__list .item .text-group {
    gap: 1rem;
    flex-grow: 1;
  }

 .page__list .item .text-group .item__title {
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 1rem;
  }

 .page__list .grid .btn {
    padding: calc(10/480*100vw);
    margin-top: auto;
    min-width: revert;
  }

  .banner .slider {
    /* height: 100dvh; */
    height: calc(700/480*100vw);
    max-height: 70rem;
  }
  
  .cars_select {display: flex;padding-bottom: 2.2rem;border-bottom: 1px solid rgba(0, 0, 0, 0.15); margin-bottom: 4.2rem; position: relative;}

  .car_select_button {flex: 1;}

  .car_select_button.last img {margin-left: auto;}

  .car_select_button img {object-fit: contain; width: 100%; height: 100%;height: 1rem; width: auto; margin: 0 auto;}

  .car_select_button_active_line {background: var(--color-red); position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; max-width: 0; transition: max-width 0.3s ease-in-out, transform 0.3s ease-in-out;}

  #models .section__title {
    margin-bottom: 2rem;
  }

  .cars_slider_mobile {overflow: hidden; width: calc(100% + 3rem); margin-left: -1.5rem; padding: 0 1.5rem;}


  .cars_slider_mobile .swiper-slide {align-self: stretch; height: auto; opacity: 0.25;transition: opacity 0.3s ease-in-out;}

  .cars_slider_mobile .swiper-slide.swiper-slide-active {opacity: 1}

  .cars_slider_mobile .car__icon img, .cars_slider_mobile .car__icon {height: auto;}

  .cars_slider_mobile .car__item {height: 100%; display: flex; flex-direction: column;}

  .car__text {display: flex; flex-direction: column; height: 100%; align-items: flex-start;}

  .car__text img {width: auto; margin-bottom: 2rem; margin-top: 2.9rem; max-height: 1.8rem;}

  .car__desc {margin-bottom: 3.5rem}

  .spec__info {margin-top: auto; width: 100%;}

  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    display: none;
  }

  .banner .text-lg {
    font-size: 12px;
  }

  .banner .title-svg {
    max-width: 22rem;
    height: 3rem;
    margin-left: auto;
    margin-right: auto;
  }

  .banner .title-svg img {
    width: auto;
    height: 100%;
    margin: 0 auto;
  }

  .banner .text-group {
    justify-content: center;
    text-align: center;
  }

  .banner .banner-content {
    min-height: revert;
  }


  .banner .banner-content.center {
    align-items: flex-start;
  }

  .banner .banner-content.center .container {
    padding-top: 10rem;
  }

  .btn-group {
    justify-content: center;
  }

  .btn-group .btn {
    min-width: auto;
    width: 48%;
  }

  .cars .car__icon {
    width: 100%;
  }

  .spec__value {
    white-space: normal;
    max-width: 55%;
  }

  .spec__label {
    /* max-width: 45%; */
    /* overflow: hidden; */
    text-overflow: ellipsis;
  }

  .stock_slider .text-md {
    font-size: 1.2rem;
  }

  .visual {
    /* height: 37.2rem; */
    /* padding-top: 6rem; */
  }

  .visual .content-center {
    top: 4rem;
  }

  .cta {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cta h3:not(:last-child) {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .cta .container {
    padding-left: 3rem;
    padding-right: 3rem;
    top: 7rem;
  }

  .cta-block .text {
    padding-bottom: 0;
  }

  .cta-block .text-group {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
  }

  .cta-block {
    padding: 3rem;
  }

  .cta .img-container {
    /* margin-top: calc(-155/480*100vw); */
  }

  .cta .img-elem {
    width: calc(350/480*100vw);
    height: calc(190/480*100vw);
    bottom: calc(20/480*100vw);
  }

  #main-news .post__item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  #main-news .post__item:first-child {
    padding-top: 0;
  }

  #main-news .post__item:last-child {
    padding-bottom: 0;
  }

  #main-news .post__item {
    padding: 3rem 0;
  }

  #main-news .post__announce {
    font-size: 14px;
    text-transform: inherit;
    font-family: var(--fontDefault);
  }
  .map-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .contacts__body {
    height: auto;
  }
  .contacts {width: 100%; min-width: auto; order: 2;}
  #map {
    order: 1;
    height: 28rem;
    width: 100%;
    flex: auto;
  }
  .dealer__item {
    min-width: auto;
  }
  .contacts .btn {
    width: 100%;
  }
  .contacts__header, .contacts__body {
    padding: 2rem;
  }
  .btn {
    min-width: 18rem;
  }

  .form-checkbox+label::before {
    margin-top: 0.5rem;
  }
  .text ul li {
    gap: 1.4rem;
  }
}