@charset "UTF-8";
:root {
  --primary: #db2920;
  --white: #fff;
  --black: #0c0c0c;
  --background: #efefef;
  --light-red: #feeae6;
  --grey-900: #484848;
  --grey-800: #959595;
  --grey-700: #d3d3d3;
  --grey-600: #e3e3e3;
  --grey-500: #f6f6f6;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background: var(--background);
}
body.lock {
  overflow: hidden;
}
body.overlay {
  position: relative;
  overflow: hidden;
}
body.overlay:before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

a {
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.section-el {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .section-el {
    padding: 60px 0;
  }
}

.h1-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 116%;
  color: var(--white);
}

.h2-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 125%;
  color: var(--black);
}

.sctn-subtitle {
  font-weight: 500;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  text-align: center;
  color: var(--primary);
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.sctn-subtitle:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--grey-700);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.thin {
  font-weight: 300;
}

.grey {
  color: var(--grey-800);
}

.btn-primary {
  font-weight: 500;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 120%;
  color: var(--white);
  padding: 16px 32px;
  display: inline-block;
  border-radius: 40px;
  background: var(--primary);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  border: 1px solid var(--primary);
}
@media (hover: hover) {
  .btn-primary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--black);
  }
}

.btn-light {
  display: inline-block;
  padding: 10px 20px;
  backdrop-filter: blur(24px);
  background: var(--white);
  border-radius: 40px;
  font-weight: 500;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 140%;
  color: var(--black);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  border: 1px solid var(--white);
}
@media (hover: hover) {
  .btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}
.breadcrumbs span a {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.72);
}
.breadcrumbs .breadcrumb_last {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--white);
}

.product-sctn-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 125%;
  text-align: center;
  color: var(--black);
}

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

.slider-nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.slider-nav-wrap .swiper-button-prev,
.slider-nav-wrap .swiper-button-next {
  position: initial;
  width: auto;
  margin: 0;
  padding: 0;
  height: auto;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
}
.slider-nav-wrap .swiper-button-prev svg,
.slider-nav-wrap .swiper-button-next svg {
  width: 24px;
}

.telegram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.telegram-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0088cc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.telegram-icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5);
            box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5);
  }
  80% {
    -webkit-box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
            box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5);
            box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5);
  }
  80% {
    -webkit-box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
            box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 1025px) {
  .header.open-sub-menu {
    background: var(--background);
  }
}
.header.active {
  background: var(--background);
}
.header__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
}
@media screen and (min-width: 1025px) {
  .header__content-wrap {
    padding: 0 16px;
  }
}
.header__logo {
  width: 94px;
  position: relative;
  z-index: 100;
}
.header__logo-img {
  width: 100%;
}
.header__nav {
  height: auto;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header__nav {
    width: auto;
  }
}
.header__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 56px;
  position: fixed;
  top: 74px;
  left: 0;
  width: 100vw;
  height: calc(100dvh - 74px);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 0;
  padding: 32px 16px 60px;
  overflow-y: auto;
}
.header__nav-wrap.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 99;
  background: var(--background, #efefef);
}
.header__nav-wrap.active .header__nav-menu .menu-item a {
  color: var(--black);
}
@media screen and (min-width: 1025px) {
  .header__nav-wrap {
    position: inherit;
    padding: 0;
    -webkit-transform: none;
            transform: none;
    width: auto;
    height: auto;
    gap: 8px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1232px) {
  .header__nav-wrap {
    gap: 40px;
  }
}
.header__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 12px;
}
@media screen and (min-width: 1025px) {
  .header__nav-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
.header__nav-menu .menu-item {
  height: 100%;
}
.header__nav-menu .menu-item a {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.header__nav-menu .menu-item a svg {
  fill: var(--black);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media screen and (min-width: 1025px) {
  .header__nav-menu .menu-item a {
    padding: 24px 8px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: var(--white);
    height: 100%;
    position: relative;
  }
  .header__nav-menu .menu-item a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    background-color: var(--primary);
    left: 50%;
  }
  .header__nav-menu .menu-item a svg {
    fill: var(--white);
  }
  .header__nav-menu .menu-item a.active::before {
    width: 100%;
    left: 0;
  }
  .header__nav-menu .menu-item a.active svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    fill: var(--primary);
  }
}
@media screen and (min-width: 1232px) {
  .header__nav-menu .menu-item a {
    padding: 24px 10px;
    font-size: 16px;
  }
}
.header__nav-menu .menu-item .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
@media screen and (min-width: 1025px) {
  .header__nav-menu .menu-item .sub-menu {
    padding: 16px 0 0 0;
    gap: 16px;
  }
}
.header__nav-menu .menu-item .sub-menu .menu-item {
  height: auto;
}
.header__nav-menu .menu-item .sub-menu .menu-item a {
  font-weight: 500;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 120%;
  color: var(--black);
  padding: 0;
}
@media screen and (min-width: 1025px) {
  .header__nav-menu .menu-item .sub-menu .menu-item a {
    font-weight: 700;
    font-family: "Exo2";
  }
}
.header__nav-menu .menu-item .sub-menu .menu-item a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: -4px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  background-color: var(--black);
  left: 50%;
}
.header__nav-menu .menu-item .sub-menu .menu-item a:hover:before {
  width: 100%;
  left: 0;
}
.header__nav-menu .menu-item .sub-menu-images {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header__nav-menu .menu-item .sub-menu-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
  }
  .header__nav-menu .menu-item .sub-menu-images__img-1-wrap, .header__nav-menu .menu-item .sub-menu-images__img-2-wrap {
    width: 236px;
    height: 236px;
    position: relative;
  }
  .header__nav-menu .menu-item .sub-menu-images__img-1, .header__nav-menu .menu-item .sub-menu-images__img-2 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 24px;
  }
  .header__nav-menu .menu-item .sub-menu-images__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header__nav-menu .menu-item .sub-menu-images__socials a.sub-menu-images__socials-item {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    fill: rgba(255, 255, 255, 0.08);
    stroke-width: 1px;
    stroke: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
}
.header__btn-soc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 16px;
}
@media screen and (min-width: 1025px) {
  .header__btn-soc-wrap {
    width: auto;
  }
}
.header__btn {
  background: var(--black);
  color: var(--white);
  width: 100%;
  text-align: center;
  font-size: clamp(14px, 2.5vw, 16px);
  padding: 16px;
  max-width: 343px;
}
@media screen and (min-width: 768px) {
  .header__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 1025px) {
  .header__btn {
    background: var(--white);
    color: var(--black);
  }
}
.header__socials-wrap {
  width: 343px;
  height: 236px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .header__socials-wrap {
    display: none;
  }
}
.header__socials-wrap .header__socials-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.header__socials-wrap .header__socials-items {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__socials-wrap .header__socials-item {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  fill: rgba(255, 255, 255, 0.08);
  stroke-width: 1px;
  stroke: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.header.open-sub-menu .header__nav-menu .menu-item a {
  color: var(--black);
}
.header.open-sub-menu .header__nav-menu .menu-item a svg {
  fill: var(--black);
}
.header.open-sub-menu .header__nav-menu .menu-item a.active {
  color: var(--primary);
}
.header.open-sub-menu .header__nav-menu .menu-item a.active svg {
  fill: var(--primary);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 1025px) {
  .header.open-sub-menu .header__btn {
    background: var(--black);
    color: var(--white);
  }
}
.header .sub-menu-wrapper {
  width: 100%;
  z-index: 999;
  margin-top: 12px;
  display: none;
}
@media screen and (min-width: 1025px) {
  .header .sub-menu-wrapper {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 1px solid var(--grey-700);
    background: var(--background);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    /* Замість display: none/block використовуємо visibility + opacity */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 16px 0;
    margin-top: 0;
  }
}
.header .sub-menu-wrapper.visible {
  display: block;
}
@media screen and (min-width: 1025px) {
  .header .sub-menu-wrapper.visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
.header .sub-menu-wrapper__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 132px;
}
@media screen and (min-width: 1025px) {
  .header .sub-menu-wrapper__container {
    padding: 0 16px;
  }
}
.header__burger {
  display: block;
  position: relative;
  z-index: 101;
  width: 24px;
  height: 16px;
}
@media screen and (min-width: 1025px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--white);
  height: 2px;
  top: 7px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 1px;
}
.header__burger:before, .header__burger:after {
  content: "";
  background: var(--white);
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 1px;
}
.header__burger:before {
  top: 0;
}
.header__burger:after {
  bottom: 0;
}
.header__burger.active span {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.header__burger.active:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
  background: var(--black);
}
.header__burger.active:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 7px;
  background: var(--black);
}

.header.with-bg {
  position: relative;
  background: var(--background);
}
.header.with-bg .header__nav-menu .menu-item a {
  color: var(--black);
}
.header.with-bg .header__nav-menu .menu-item a svg {
  fill: var(--black);
}
.header.with-bg .header__btn {
  color: var(--white);
  background: var(--black);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  border: 1px solid var(--black);
}
@media (hover: hover) {
  .header.with-bg .header__btn:hover {
    color: var(--black);
    background: var(--white);
    border-color: var(--black);
  }
}
.header.with-bg .header__burger span,
.header.with-bg .header__burger:before,
.header.with-bg .header__burger:after {
  background: var(--black);
}

.home-hero {
  position: relative;
  min-height: max(700px, 100dvh);
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.32)), to(rgba(0, 0, 0, 0.12)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.12) 100%);
  padding-top: 174px;
}
.home-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home-hero__bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.home-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}
.home-hero__title {
  max-width: 894px;
}

.about {
  background: var(--background);
}
.about__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.about__title {
  max-width: 997px;
}
.about__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .about__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 122px;
  }
}
@media screen and (min-width: 1024px) {
  .about .about__col-1 {
    -ms-flex-preferred-size: 41%;
        flex-basis: 41%;
  }
}
@media screen and (min-width: 1024px) {
  .about .about__col-2 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
.about__experience-wrap {
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}
.about__experience {
  font-family: "Exo2";
  font-weight: 600;
  font-size: clamp(16px, 3vw, 32px);
  line-height: 140%;
  color: var(--black);
  position: absolute;
  top: -20px;
  right: 0;
  text-align: center;
}
.about__experience-img {
  margin: auto;
}
.about__experience-year {
  display: block;
  font-family: "Exo2";
  font-weight: 800;
  font-size: clamp(92px, 12vw, 186px);
  line-height: 75%;
  color: var(--primary);
}
.about__col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.about__info-text {
  font-weight: 400;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 160%;
  color: var(--grey-900);
}
.about__info-img {
  width: 100%;
  border-radius: 16px;
  height: 172px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 500px) {
  .about__info-img {
    height: 280px;
  }
}
@media screen and (min-width: 768px) {
  .about__info-img {
    height: 350px;
  }
}
@media screen and (min-width: 768px) {
  .about__info-img {
    height: 296px;
  }
}

.catalog__title-wrap {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.catalog__items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.catalog__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 32px;
  overflow: hidden;
  color: #fff;
  padding: 24px;
  background: var(--black);
  -webkit-transition: -webkit-box-flex 0.5s ease;
  transition: -webkit-box-flex 0.5s ease;
  transition: flex 0.5s ease;
  transition: flex 0.5s ease, -webkit-box-flex 0.5s ease, -ms-flex 0.5s ease;
  min-height: 543px;
}
.catalog__item:before {
  position: absolute;
  content: "";
  width: 200%;
  height: 40%;
  background-color: var(--primary);
  bottom: -60px;
  left: -50%;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.catalog__item.active {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
@media (max-width: 768px) {
  .catalog__item {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .catalog__item {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 calc(50% - 10px) !important;
            flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
  }
}
@media (hover: none) and (min-width: 1025px) {
  .catalog__item {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 !important;
            flex: 1 !important;
    -webkit-transition: none;
    transition: none;
    height: auto !important;
  }
}
.catalog__item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
  max-width: calc(100% - 60px);
}
.catalog__item-tag {
  border: 1px solid var(--grey-800);
  border-radius: 100px;
  padding: 6px 16px;
  backdrop-filter: blur(24px);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  text-align: center;
}
.catalog__item-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  color: var(--white);
  margin-bottom: 8px;
}
.catalog__item-descr {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--white);
  font-weight: 400;
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, height 0.3s ease;
  transition: opacity 0.3s ease, height 0.3s ease;
  position: relative;
  z-index: 2;
}
.catalog__item.active .catalog__item-descr {
  opacity: 1;
}
.catalog__item-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  width: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
@media screen and (min-width: 768px) {
  .catalog__item-img {
    height: 300px;
  }
}
.catalog__item-arrow {
  position: absolute;
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--white);
  border-radius: 50%;
  right: 12px;
  top: 12px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media (hover: hover) {
  .catalog__item-arrow {
    -webkit-transform: translate(100%, -100%);
            transform: translate(100%, -100%);
  }
}
@media (hover: none) {
  .catalog__item-arrow {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@media (hover: hover) {
  .catalog__item.active .catalog__item-arrow {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@media (hover: none) {
  .catalog__item-descr {
    opacity: 1 !important;
    height: auto !important;
  }
}
.about-quadro__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .about-quadro__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .about-quadro__info {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.about-quadro__info-subtitle {
  margin-bottom: 8px;
}
.about-quadro__info-title {
  margin-bottom: 16px;
}
.about-quadro__info-descr p {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  margin-bottom: 8px;
}
.about-quadro__info-descr p:nth-last-child(1) {
  margin-bottom: 0;
}
.about-quadro__info-btn.desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .about-quadro__info-btn.desktop {
    display: inline-block;
    margin-top: 32px;
  }
}
.about-quadro__info-btn.mobile {
  margin: 8px auto 0;
}
@media screen and (min-width: 1024px) {
  .about-quadro__info-btn.mobile {
    display: none;
  }
}
.about-quadro__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .about-quadro__items {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    gap: 20px;
  }
}
.about-quadro__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 180px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .about-quadro__item {
    min-height: 258px;
  }
}
.about-quadro__item:nth-child(even) {
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.about-quadro__item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}
.about-quadro__item-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.about-quadro__item-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 120%;
  color: var(--white);
  position: relative;
  z-index: 3;
  max-width: 380px;
}
.about-quadro__item-text {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--white);
  position: relative;
  z-index: 3;
  max-width: 380px;
}

.about-moto__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .about-moto__cols-wrap {
    gap: 32px;
  }
}
.about-moto__info {
  max-width: 590px;
  margin: 0 auto;
  text-align: center;
}
.about-moto__info-subtitle {
  margin-bottom: 8px;
}
.about-moto__info-descr {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  text-align: center;
  color: var(--grey-900);
  margin-top: 16px;
}
.about-moto__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}
@media screen and (min-width: 600px) {
  .about-moto__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .about-moto__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.about-moto__item {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 16px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about-moto__item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}
.about-moto__item-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.about-moto__item-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.about-moto__item-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--white);
  position: relative;
  z-index: 3;
}

.banner {
  height: 100vh;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1200px) {
  .banner {
    background-attachment: fixed;
  }
}
.banner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(3deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.12) 100%);
  z-index: 1;
}
.banner .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .banner .container {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.banner__info {
  max-width: 576px;
}
.banner__info-title {
  color: var(--white);
  margin-bottom: 16px;
}
.banner__info-text {
  font-weight: 400;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 160%;
  color: var(--white);
}
.banner__info-btn {
  margin-top: 32px;
}

.gallery-carousel__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 590px;
  margin: 0 auto 32px;
  text-align: center;
}
.gallery-carousel__slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.gallery-carousel__bottom {
  margin-top: 16px;
}
.gallery-carousel__btn-wrap {
  margin-top: 32px;
  text-align: center;
}

.popular {
  overflow: hidden;
}
.popular__swiper-slide {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.popular__title-wrap {
  margin-bottom: 32px;
}
.popular__title-col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.popular__btn-desktop {
  display: none;
}
.popular__swiper {
  overflow: visible;
}
.popular__swiper-wrapper {
  overflow: visible;
}
.popular__swiper-slide {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .popular__swiper-slide {
    -webkit-transform: scale(0.6) !important;
            transform: scale(0.6) !important;
    opacity: 0.6;
    -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
    transition: opacity 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  }
  .popular__swiper-slide.swiper-slide-active {
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
    opacity: 1;
    z-index: 2;
  }
}
.popular__item-bg-title {
  font-family: "Exo2";
  font-weight: 800;
  font-size: clamp(35px, 6vw, 60px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--grey-700);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .popular__item-bg-title {
    opacity: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
}
@media screen and (min-width: 1024px) {
  .popular .popular__swiper-slide.swiper-slide-active .popular__item-bg-title {
    opacity: 1;
  }
}
.popular__item-img {
  height: 244px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .popular__item-img {
    height: 488px;
  }
}
.popular__item-info {
  border-radius: 16px;
  padding: 16px;
  -webkit-box-shadow: 0 0 19px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 19px 0 rgba(0, 0, 0, 0.08);
  background: var(--grey-500);
  margin: 0 auto;
  z-index: 2;
  position: relative;
  max-width: 520px;
}
@media screen and (min-width: 1024px) {
  .popular__item-info {
    margin: -50px auto 0;
    opacity: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
}
@media screen and (min-width: 1024px) {
  .popular .popular__swiper-slide.swiper-slide-active .popular__item-info {
    opacity: 1;
  }
}
.popular__item-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
.popular__item-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 120%;
  color: var(--black);
}
.popular__item-category {
  font-weight: 500;
  font-size: 12px;
  color: var(--black);
  padding: 4px 10px;
  border: 1px solid var(--grey-700);
  border-radius: 100px;
}
.popular__item-excerpt {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  margin-bottom: 12px;
}
.popular__item-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--primary);
}
.popular__swiper-pagination {
  position: initial;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
.popular__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--black);
  width: 12px;
  height: 12px;
}
.popular__btn-wrap {
  text-align: center;
  margin: 32px 0 0;
}

.hero-product {
  padding: 80px 0 163px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .hero-product {
    padding: 148px 0 220px;
  }
}
.hero-product::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-product__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-product .container {
  position: relative;
  z-index: 2;
}
.hero-product__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 125%;
  color: var(--white);
}

.product-about {
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .product-about {
    overflow: visible;
  }
}
.product-about__title {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .product-about__title {
    margin-bottom: 40px;
  }
}
.product-about__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .product-about__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .product-about__slider-wrap {
    width: 48%;
    position: sticky;
    top: 10px;
    left: 0;
  }
}
.product-about__info-wrap > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .product-about__info-wrap {
    width: 48%;
  }
}
.product-about__slider-main {
  border-radius: 16px;
  max-width: 576px;
}
.product-about__main-swiper-slide-link {
  height: 230px;
  display: block;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .product-about__main-swiper-slide-link {
    height: 300px;
  }
}
@media screen and (min-width: 768px) {
  .product-about__main-swiper-slide-link {
    height: 386px;
  }
}
.product-about__main-swiper-slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
}
.product-about__slider-thumbs {
  margin-top: 8px;
  overflow: visible;
}
@media screen and (min-width: 1024px) {
  .product-about__slider-thumbs {
    overflow: hidden;
  }
}
.product-about__thumbs-swiper-slide {
  width: 104px;
  height: 72px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .product-about__thumbs-swiper-slide {
    width: 132px;
    height: 90px;
  }
}
.product-about__thumbs-swiper-slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.product-about__slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 16px;
  width: calc(100% - 32px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}
.product-about__slider-nav .swiper-button-prev:after,
.product-about__slider-nav .swiper-rtl .swiper-button-next:after,
.product-about__slider-nav .swiper-button-next:after,
.product-about__slider-nav .swiper-rtl .swiper-button-prev:after {
  display: none;
}
.product-about__slider-nav .product-about__slider-prev,
.product-about__slider-nav .product-about__slider-next {
  position: initial;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  background: var(--grey-500);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  pointer-events: all;
}
.product-about__slider-nav .product-about__slider-prev svg,
.product-about__slider-nav .product-about__slider-next svg {
  stroke: #0C0C0C;
  width: 20px;
}
.product-about__simple-descr {
  margin-bottom: 24px;
}
.product-about__simple-descr h2 {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(24px, 3vw, 28px);
  line-height: 130%;
  color: var(--primary);
  margin-bottom: 12px;
}
.product-about__simple-descr h3, .product-about__simple-descr h4, .product-about__simple-descr h5, .product-about__simple-descr h6 {
  font-weight: 800;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 160%;
  color: var(--black);
  margin-bottom: 8px;
}
.product-about__simple-descr p {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  margin-bottom: 8px;
}
.product-about__simple-descr ul {
  list-style: disc;
  padding-left: 20px;
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  margin-bottom: 8px;
}
.product-about__simple-descr ol {
  list-style: auto;
  padding-left: 20px;
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  margin-bottom: 8px;
}
.product-about__equipment {
  margin-bottom: 24px;
}
.product-about__equipment-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 120%;
  color: var(--black);
  margin-bottom: 16px;
}
.product-about__equipment-items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .product-about__equipment-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.product-about__equipment-item {
  border: 1px solid var(--grey-700);
  border-radius: 12px;
  padding: 12px;
  font-weight: 800;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.product-about__equipment-item svg {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-about__colors {
  margin-bottom: 24px;
}
.product-about__colors-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 120%;
  color: var(--black);
  margin-bottom: 16px;
}
.product-about__colors-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.product-about__colors-item {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.product-about__colors-item::before {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  border-radius: 50%;
  border: 1px solid var(--grey-800);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}
.product-about__colors-item.selected::before {
  opacity: 1;
}
.product-about__technical {
  margin-bottom: 24px;
}
.product-about__technical-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 120%;
  color: var(--black);
  margin-bottom: 16px;
}
.product-about__technical-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-about__technical-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 16px 0 6px;
  border-bottom: 1px solid var(--grey-700);
}
.product-about__technical-item:nth-of-type(1) {
  padding-top: 0;
}
@media screen and (min-width: 1024px) {
  .product-about__technical-item {
    padding-bottom: 8px;
  }
}
.product-about__technical-item-name {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
.product-about__technical-item-text {
  font-weight: 800;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  text-align: right;
  color: var(--black);
  -ms-flex-preferred-size: 58%;
      flex-basis: 58%;
}
.product-about__details {
  margin-bottom: 24px;
  background: var(--grey-600);
  border-radius: 16px;
}
.product-about__details-items {
  display: none;
}
.product-about__details-title-wrap {
  padding: 16px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .product-about__details-title-wrap {
    padding: 20px;
  }
}
.product-about__details-title-wrap svg {
  width: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.product-about__details-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 120%;
  color: var(--black);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.product-about__details-items {
  padding: 0 16px 16px;
}
@media screen and (min-width: 1024px) {
  .product-about__details-items {
    padding: 0 20px 20px;
  }
}
.product-about__details-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 14px;
}
.product-about__details-item:nth-last-child(1) {
  margin-bottom: 0;
}
.product-about__details-item:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 7px;
  left: 0;
  background: var(--grey-900);
  border-radius: 50%;
}
.product-about__details-item-name {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
}
.product-about__details-item-text {
  font-weight: 800;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}
.product-about__details.active .product-about__details-title {
  color: var(--primary);
}
.product-about__details.active .product-about__details-title-wrap svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.product-about__features {
  margin-bottom: 24px;
  background: var(--grey-600);
  border-radius: 16px;
}
.product-about__features-items {
  display: none;
}
.product-about__features-title-wrap {
  padding: 16px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .product-about__features-title-wrap {
    padding: 20px;
  }
}
.product-about__features-title-wrap svg {
  width: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.product-about__features-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 120%;
  color: var(--black);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.product-about__features-items {
  padding: 0 16px 16px;
}
@media screen and (min-width: 1024px) {
  .product-about__features-items {
    padding: 0 20px 20px;
  }
}
.product-about__features-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.product-about__features-item:nth-last-child(1) {
  margin-bottom: 0;
}
.product-about__features-item-name {
  font-weight: 800;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 160%;
  color: var(--black);
  padding-left: 26px;
  position: relative;
}
.product-about__features-item-name svg {
  position: absolute;
  width: 11px;
  top: 8px;
  left: 6px;
}
.product-about__features-item-text {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
}
.product-about__features.active .product-about__features-title {
  color: var(--primary);
}
.product-about__features.active .product-about__features-title-wrap svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.product-about__price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 32px;
}
.product-about__price {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 125%;
  color: var(--primary);
}
.product-about__instruction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 32px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.product-about__instruction-icon {
  width: 32px;
}
.product-about__instruction-icon svg {
  width: 100%;
}
.product-about__instruction-text {
  font-weight: 600;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 140%;
  text-align: right;
  color: var(--black);
  position: relative;
}
@media (hover: hover) {
  .product-about__instruction:hover {
    text-decoration: underline;
    text-decoration-color: var(--black);
  }
}

.numbers__title {
  margin-bottom: 24px;
}
.numbers__items-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 15px;
}
@media screen and (min-width: 768px) {
  .numbers__items-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .numbers__items-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
.numbers__item {
  display: grid;
  grid-auto-rows: 1fr;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.numbers__item-title {
  font-weight: 800;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--grey-900);
  display: block;
  -ms-flex-item-align: center;
      align-self: center;
}
.numbers__item-num {
  display: block;
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 116%;
  text-align: center;
  color: var(--primary);
}
.numbers__item-text {
  font-weight: 800;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--primary);
  display: block;
}

.photos__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .photos__title-wrap {
    margin-bottom: 40px;
  }
}
.photos__category {
  font-weight: 500;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--black);
  border: 1px solid var(--grey-700);
  border-radius: 100px;
  padding: 8px 16px;
  text-align: center;
  min-width: 100px;
}
.photos__gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media screen and (min-width: 500px) {
  .photos__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.photos__gallery-item {
  width: 100%;
  height: 244px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .photos__gallery-item {
    height: 420px;
  }
}

.upsales-slider {
  position: relative;
}
.upsales-slider__title-wrap {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .upsales-slider__title-wrap {
    margin-bottom: 32px;
  }
}
.upsales-slider__nav {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .upsales-slider__nav {
    position: initial;
  }
}

.product-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.product-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.product-popup__content {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: calc(100% - 32px);
  width: 996px;
  max-height: calc(100% - 80px);
  background: #fff;
  border-radius: 24px;
  overflow: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.product-popup__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .product-popup__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.product-popup__details {
  padding: 24px 16px;
  background: var(--grey-600);
  border-radius: 0 0 24px 24px;
}
.product-popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--white);
  border-radius: 50%;
}
.product-popup__close svg {
  width: 20px;
}
@media screen and (min-width: 1024px) {
  .product-popup__details {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.product-popup__details-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 120%;
  color: var(--black);
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .product-popup__details-title {
    margin-bottom: 24px;
  }
}
.product-popup__details-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-popup__details-col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.product-popup__details-product-img {
  width: 116px;
  height: 118px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.product-popup__details-product-name {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(18px, 3vw, 20px);
  line-height: 120%;
  color: var(--black);
  margin-bottom: 4px;
}
.product-popup__details-product-price {
  font-weight: 800;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--primary);
}
@media screen and (min-width: 768px) {
  .product-popup__details-product-price {
    margin-bottom: 8px;
  }
}
.product-popup__details-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
}
.product-popup__details-item.desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .product-popup__details-item.desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product-popup__details-item.mobile {
    display: none;
  }
}
.product-popup__details-item-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.product-popup__details-item-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-900);
}
.product-popup__form {
  padding: 24px 16px;
}
@media screen and (min-width: 1024px) {
  .product-popup__form {
    -ms-flex-preferred-size: 52%;
        flex-basis: 52%;
    padding: 32px;
  }
}
.product-popup__form .form__fieldset {
  border: none;
}
.product-popup__form .form__inputs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .product-popup__form .form__inputs-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.product-popup__form .form__input-item {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .product-popup__form .form__input-item-sm {
    -ms-flex-preferred-size: calc(50% - 4px);
        flex-basis: calc(50% - 4px);
  }
  .product-popup__form .form__input-item-lg {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.product-popup__form .form__input-item-error-icon {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.product-popup__form .form__input-item.invalid .form__input-item-error-icon {
  display: block;
}
.product-popup__form .form__input {
  width: 100%;
  border-radius: 16px;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--grey-800);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.product-popup__form .form__input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.product-popup__form .form__input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.product-popup__form .form__input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.product-popup__form .form__input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.product-popup__form .form__input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.product-popup__form .form__input.formMessage {
  min-height: 100px;
  resize: vertical;
}
.product-popup__form .form__input.formActivity option {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}
.product-popup__form .form .formAgreement {
  display: none;
}
.product-popup__form .form___checkbox-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  gap: 8px;
}
.product-popup__form .form___checkbox-label:before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  top: 0px;
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid var(--grey-800);
  cursor: pointer;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.product-popup__form .form__checkbox-input:checked + .form___checkbox-label::before {
  background-image: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="18" height="18" rx="4" fill="%23D3D3D3" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.7493 6.17145C13.0449 6.43297 13.0848 6.89937 12.8385 7.21318L10.5809 10.089C10.1671 10.6161 9.80969 11.0715 9.47958 11.388C9.12674 11.7262 8.71076 12 8.1742 12C7.63764 12 7.22165 11.7262 6.86881 11.388C6.53871 11.0715 6.18126 10.6162 5.7675 10.089C5.75694 10.0756 5.74635 10.0621 5.73572 10.0485L5.16151 9.31708C4.91516 9.00326 4.9551 8.53686 5.25073 8.27535C5.54635 8.01384 5.98571 8.05624 6.23206 8.37005L6.80627 9.10151C7.261 9.68076 7.55523 10.0528 7.80276 10.2901C8.03597 10.5136 8.13058 10.5207 8.1742 10.5207C8.21781 10.5207 8.31242 10.5136 8.54563 10.2901C8.79316 10.0528 9.08739 9.68077 9.54212 9.10151L11.7679 6.26616C12.0143 5.95234 12.4536 5.90994 12.7493 6.17145Z" fill="%230C0C0C" /></svg>');
}
.product-popup__form .form__agree-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-900);
}
.product-popup__form .form__button-wrap {
  margin-top: 16px;
}
.product-popup__form .form__error-msg {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: var(--grey-900);
  padding: 8px 0 0 8px;
  display: none;
}
.product-popup__form .form__error-msg.active {
  display: block;
}
.product-popup__form-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(24px, 3vw, 28px);
  line-height: 130%;
  color: var(--black);
  margin-bottom: 12px;
}
.product-popup__form-subtitle {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  margin-bottom: 16px;
}

.hero-category {
  padding: 80px 0 163px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .hero-category {
    padding: 148px 0 220px;
  }
}
.hero-category::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-category__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-category .container {
  position: relative;
  z-index: 2;
}
.hero-category__title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 125%;
  color: var(--white);
}

.category-products__title-wrap {
  text-align: center;
  margin-bottom: 32px;
}
.category-products__subtitle {
  margin-bottom: 12px;
}
.category-products__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: var(--grey-600);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto 0;
  border-radius: 16px;
  padding: 4px;
}
.category-products__filter .filter-btn {
  font-weight: 500;
  font-size: clamp(12px, 3vw, 18px);
  line-height: 115%;
  text-align: center;
  color: var(--grey-900);
  padding: 8px 16px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.category-products__filter .filter-btn.active {
  background: var(--grey-500);
  border-radius: 12px;
  padding: 8px 16px;
  color: var(--primary);
}
.category-products__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .category-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .category-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border-radius: 16px;
  padding: 16px;
  background: var(--white);
}
.product-card__title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--black);
}
.product-card__cat {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
  margin-top: 6px;
}
.product-card__image {
  width: 100%;
  display: block;
  height: 230px;
  overflow: hidden;
  margin: 12px 0;
  border-radius: 12px;
}
@media screen and (min-width: 450px) {
  .product-card__image {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .product-card__image {
    height: 226px;
  }
}
.product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-card__price {
  font-family: "Exo2";
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: var(--primary);
}
.product-card__btn {
  padding: 10px 20px;
  font-size: clamp(14px, 2.5vw, 16px);
}

.pagination-wrapper {
  margin: 32px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.pagination-wrapper .page-numbers {
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-700);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  color: var(--black);
}
.pagination-wrapper .page-numbers.current {
  background: var(--black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination-wrapper .prev.page-numbers,
.pagination-wrapper .next.page-numbers {
  border: none;
}

.hero-contacts {
  padding: 80px 0 163px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .hero-contacts {
    padding: 148px 0 220px;
  }
}
.hero-contacts::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-contacts__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-contacts .container {
  position: relative;
  z-index: 2;
}
.hero-contacts__title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 125%;
  color: var(--white);
}

.shops__title-wrap {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.shops__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.shops__subtitle-text {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
}
.shops__subtitle-img {
  width: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .shops__subtitle-img {
    width: 150px;
  }
}
.shops__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .shops__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    gap: 32px;
  }
}
.shops__maps-wrap {
  height: 300px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .shops__maps-wrap {
    width: 65%;
    height: 500px;
  }
}
.shops .map {
  width: 100%;
  height: 100%;
}
.shops__btns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  height: auto;
  width: calc(100% + 32px);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 -16px;
  padding: 0 16px;
  overflow-x: auto;
}
@media screen and (min-width: 1024px) {
  .shops__btns-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 33%;
    height: 500px;
  }
}
.shops__btns-wrap::-webkit-scrollbar {
  width: 8px;
}
.shops__btns-wrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.shops__btns-wrap::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
  border: 2px solid #f1f1f1;
}
.shops__btns-wrap::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary);
}
.shops__btns-wrap {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #f1f1f1;
}
.shops__btns-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  gap: 8px;
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
}
@media screen and (min-width: 1024px) {
  .shops__btns-scroll {
    display: none;
  }
}
.shops__btn {
  padding: 12px;
  border: 1px solid var(--grey-900);
  border-radius: 16px;
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: var(--grey-900);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-wrap: nowrap;
  width: auto;
}
@media screen and (min-width: 1024px) {
  .shops__btn {
    text-wrap: wrap;
    width: 100%;
    padding: 16px;
  }
}
.shops__btn-icon {
  width: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.shops__btn-icon svg {
  fill: var(--grey-900);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.shops__btn.active {
  color: var(--white);
  background-color: var(--primary);
}
.shops__btn.active .shops__btn-icon svg {
  fill: var(--white);
}
@media (hover: hover) {
  .shops__btn:hover:not(.active) {
    background-color: var(--white);
  }
}

.test-drive__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .test-drive__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .test-drive__col-1 {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
@media screen and (min-width: 768px) {
  .test-drive__col-2 {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.test-drive__img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .test-drive__img {
    height: 350px;
  }
}
.test-drive__title {
  margin-bottom: 16px;
}
.test-drive__subtitle {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  margin-bottom: 24px;
}
.test-drive__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.test-drive__address-logo {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .test-drive__address-logo {
    width: 100px;
  }
}
.test-drive__address-text {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
}
.test-drive__btn {
  margin-top: 24px;
}

.contact__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .contact__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
.contact__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .contact__info {
    -ms-flex-preferred-size: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
    gap: 32px;
  }
}
.contact__info-title {
  margin-bottom: 16px;
}
.contact__info-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: var(--grey-900);
  max-width: 498px;
}
.contact__info-soc {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .contact__info-soc {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact__info-soc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__info-soc-item-title {
  font-weight: 800;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 160%;
  color: var(--black);
}
.contact__info-soc-item-link {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
}
.contact__info-img {
  width: 100%;
  height: 172px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .contact__info-img {
    height: 276px;
  }
}
.contact__form-wrap {
  background: var(--primary);
  padding: 16px;
  border-radius: 24px;
}
@media screen and (min-width: 1024px) {
  .contact__form-wrap {
    -ms-flex-preferred-size: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
    padding: 24px;
    border-radius: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contact__form-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(24px, 3vw, 28px);
  line-height: 130%;
  color: var(--white);
  margin-bottom: 16px;
}

.form__fieldset {
  border: none;
}
.form__inputs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .form__inputs-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.form__input-item {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .form__input-item-sm {
    -ms-flex-preferred-size: calc(50% - 4px);
        flex-basis: calc(50% - 4px);
  }
  .form__input-item-lg {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.form__input-item-error-icon {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.form__input-item.invalid .form__input-item-error-icon {
  display: block;
}
.form__input {
  width: 100%;
  border-radius: 16px;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--grey-600);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-600);
}
.form__input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-600);
}
.form__input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-600);
}
.form__input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-600);
}
.form__input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-600);
}
.form__input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-600);
}
.form__input.formMessage {
  min-height: 100px;
  resize: vertical;
}
.form__input.formActivity option {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}
.form .formAgreement {
  display: none;
}
.form___checkbox-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  gap: 8px;
}
.form___checkbox-label:before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  top: 0px;
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid var(--white);
  cursor: pointer;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.form__checkbox-input:checked + .form___checkbox-label::before {
  background-image: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="18" height="18" rx="4" fill="white" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.7493 6.17145C13.0449 6.43297 13.0848 6.89937 12.8385 7.21318L10.5809 10.089C10.1671 10.6161 9.80969 11.0715 9.47958 11.388C9.12674 11.7262 8.71076 12 8.1742 12C7.63764 12 7.22165 11.7262 6.86881 11.388C6.53871 11.0715 6.18126 10.6162 5.7675 10.089C5.75694 10.0756 5.74635 10.0621 5.73572 10.0485L5.16151 9.31708C4.91516 9.00326 4.9551 8.53686 5.25073 8.27535C5.54635 8.01384 5.98571 8.05624 6.23206 8.37005L6.80627 9.10151C7.261 9.68076 7.55523 10.0528 7.80276 10.2901C8.03597 10.5136 8.13058 10.5207 8.1742 10.5207C8.21781 10.5207 8.31242 10.5136 8.54563 10.2901C8.79316 10.0528 9.08739 9.68077 9.54212 9.10151L11.7679 6.26616C12.0143 5.95234 12.4536 5.90994 12.7493 6.17145Z" fill="%230C0C0C" /></svg>');
}
.form__agree-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--white);
}
.form__button-wrap {
  margin-top: 16px;
}
.form__error-msg {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: var(--grey-600);
  padding: 8px 0 0 8px;
  display: none;
}
.form__error-msg.active {
  display: block;
}

@media screen and (min-width: 1024px) {
  .thank-you {
    height: calc(100vh - 71px);
    min-height: 600px;
  }
}
.thank-you__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .thank-you__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
    gap: 0;
  }
}
.thank-you__col-1 {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .thank-you__col-1 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .thank-you__col-2 {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
.thank-you__img {
  width: 345px;
  height: 215px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media screen and (min-width: 1024px) {
  .thank-you__img {
    width: 100%;
    height: 498px;
  }
}
.thank-you__title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(24px, 3vw, 28px);
  line-height: 130%;
  text-align: center;
  color: var(--black);
  margin-bottom: 12px;
}
.thank-you__subtitle {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  text-align: center;
  color: var(--grey-900);
}
@media screen and (min-width: 1024px) {
  .thank-you__subtitle {
    max-width: 397px;
    margin: 0 auto;
  }
}
.thank-you__btn {
  margin: 24px 0 0;
}

.cta-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.cta-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.cta-popup__content {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: calc(100% - 32px);
  width: 996px;
  max-height: calc(100% - 80px);
  background: #fff;
  border-radius: 24px;
  overflow: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .cta-popup__content {
    border-radius: 32px;
  }
}
.cta-popup__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .cta-popup__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.cta-popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--white);
  border-radius: 50%;
}
.cta-popup__close svg {
  width: 20px;
}
@media screen and (min-width: 1024px) {
  .cta-popup__image-wrap {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.cta-popup__image {
  height: 215px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .cta-popup__image {
    height: 370px;
  }
}
@media screen and (min-width: 1024px) {
  .cta-popup__image {
    width: 100%;
    height: 100%;
    border-radius: 32px;
  }
}
.cta-popup__form {
  padding: 24px 16px;
}
@media screen and (min-width: 1024px) {
  .cta-popup__form {
    -ms-flex-preferred-size: 52%;
        flex-basis: 52%;
    padding: 32px;
  }
}
.cta-popup__form .form__fieldset {
  border: none;
}
.cta-popup__form .form__inputs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .cta-popup__form .form__inputs-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.cta-popup__form .form__input-item {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .cta-popup__form .form__input-item-sm {
    -ms-flex-preferred-size: calc(50% - 4px);
        flex-basis: calc(50% - 4px);
  }
  .cta-popup__form .form__input-item-lg {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.cta-popup__form .form__input-item-error-icon {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.cta-popup__form .form__input-item.invalid .form__input-item-error-icon {
  display: block;
}
.cta-popup__form .form__input {
  width: 100%;
  border-radius: 16px;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--grey-800);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.cta-popup__form .form__input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.cta-popup__form .form__input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.cta-popup__form .form__input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.cta-popup__form .form__input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.cta-popup__form .form__input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-800);
}
.cta-popup__form .form__input.formMessage {
  min-height: 100px;
  resize: vertical;
}
.cta-popup__form .form__input.formActivity option {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}
.cta-popup__form .form .formAgreement {
  display: none;
}
.cta-popup__form .form___checkbox-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  gap: 8px;
}
.cta-popup__form .form___checkbox-label:before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  top: 0px;
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid var(--grey-800);
  cursor: pointer;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-popup__form .form__checkbox-input:checked + .form___checkbox-label::before {
  background-image: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="18" height="18" rx="4" fill="%23D3D3D3" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.7493 6.17145C13.0449 6.43297 13.0848 6.89937 12.8385 7.21318L10.5809 10.089C10.1671 10.6161 9.80969 11.0715 9.47958 11.388C9.12674 11.7262 8.71076 12 8.1742 12C7.63764 12 7.22165 11.7262 6.86881 11.388C6.53871 11.0715 6.18126 10.6162 5.7675 10.089C5.75694 10.0756 5.74635 10.0621 5.73572 10.0485L5.16151 9.31708C4.91516 9.00326 4.9551 8.53686 5.25073 8.27535C5.54635 8.01384 5.98571 8.05624 6.23206 8.37005L6.80627 9.10151C7.261 9.68076 7.55523 10.0528 7.80276 10.2901C8.03597 10.5136 8.13058 10.5207 8.1742 10.5207C8.21781 10.5207 8.31242 10.5136 8.54563 10.2901C8.79316 10.0528 9.08739 9.68077 9.54212 9.10151L11.7679 6.26616C12.0143 5.95234 12.4536 5.90994 12.7493 6.17145Z" fill="%230C0C0C" /></svg>');
}
.cta-popup__form .form__agree-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-900);
}
.cta-popup__form .form__button-wrap {
  margin-top: 16px;
}
.cta-popup__form .form__error-msg {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: var(--grey-900);
  padding: 8px 0 0 8px;
  display: none;
}
.cta-popup__form .form__error-msg.active {
  display: block;
}
.cta-popup__form-title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(24px, 3vw, 28px);
  line-height: 130%;
  color: var(--black);
  margin-bottom: 12px;
}

.privacy__container {
  max-width: 794px;
  margin: 0 auto;
}
.privacy__title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 125%;
  color: var(--black);
  margin-bottom: 12px;
}
.privacy__date {
  font-weight: 500;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 160%;
  color: var(--grey-900);
  margin-bottom: 32px;
}
.privacy__content h2 {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(24px, 3vw, 28px);
  line-height: 130%;
  color: var(--black);
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .privacy__content h2 {
    margin-bottom: 24px;
  }
}
.privacy__content h3 {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 130%;
  color: var(--black);
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .privacy__content h3 {
    margin-bottom: 24px;
  }
}
.privacy__content h4, .privacy__content h5, .privacy__content h6 {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(18px, 3vw, 20px);
  line-height: 130%;
  color: var(--black);
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .privacy__content h4, .privacy__content h5, .privacy__content h6 {
    margin-bottom: 24px;
  }
}
.privacy__content p {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  margin-bottom: 16px;
}
.privacy__content ul {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  list-style: disc;
  padding-left: 16px;
}
.privacy__content ol {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  color: var(--grey-900);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  list-style: auto;
  padding-left: 16px;
}

.error__content {
  text-align: center;
  max-width: 635px;
  margin: 0 auto;
}
.error__num {
  font-family: "Exo2";
  font-weight: 700;
  font-size: 164px;
  color: var(--black);
  margin-bottom: 32px;
  line-height: 120%;
}
@media screen and (min-width: 1024px) {
  .error__num {
    font-size: 280px;
  }
}
.error__num span {
  color: var(--primary);
  position: relative;
}
.error__num span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 18px;
  background: var(--background);
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .error__num span::before {
    height: 32px;
  }
}
.error__title {
  font-family: "Exo2";
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 125%;
  text-align: center;
  color: var(--black);
  margin-bottom: 16px;
}
.error__subtitle {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 140%;
  text-align: center;
  color: var(--grey-900);
  margin-bottom: 24px;
}

.footer {
  background-color: var(--black);
  background-image: url("../img/footer-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  padding: 40px 0;
}
.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .footer__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 42px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .footer .footer__main-left {
    -ms-flex-preferred-size: 52%;
        flex-basis: 52%;
  }
}
@media screen and (min-width: 1024px) {
  .footer .footer__main-right {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.footer__logo {
  width: 86px;
  display: inline-block;
  margin-bottom: 16px;
}
.footer__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: var(--white);
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.footer__socials-item {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--grey-900);
  border-radius: 50%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.footer__socials-item svg {
  fill: var(--white);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media (hover: hover) {
  .footer__socials-item:hover {
    background-color: var(--white);
  }
  .footer__socials-item:hover svg {
    fill: var(--black);
  }
}
.footer__main-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .footer__main-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 42px;
  }
}
.footer__nav-1 .sub-menu, .footer__nav-2 .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}
.footer__nav-1 .sub-menu > li > a, .footer__nav-2 .sub-menu > li > a {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: var(--grey-800);
}
.footer__nav-1 .menu-item-has-children > a, .footer__nav-2 .menu-item-has-children > a {
  font-family: "Exo2";
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-top: 32px;
  gap: 24px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__bottom::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--grey-900);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .footer__bottom::before {
    position: initial;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.footer__copyrights {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: var(--grey-800);
}
@media screen and (min-width: 1024px) {
  .footer__copyrights {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.footer__privacy {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: var(--grey-800);
}
@media screen and (min-width: 1024px) {
  .footer__privacy {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.footer__marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .footer__marquee {
    margin-bottom: 48px;
  }
}
.footer__marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee 50s linear infinite;
          animation: marquee 50s linear infinite;
}
.footer__marquee-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__marquee-item {
  font-family: "Exo2";
  font-weight: 800;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 116%;
  color: var(--primary);
  padding: 0 24px;
}
.footer__marquee-item span {
  color: var(--white);
}
@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}/*# sourceMappingURL=main.css.map */