﻿@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Book.eot");
  src: url("../fonts/Futura-Book.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Futura-Book.woff") format("woff"),
    url("../fonts/Futura-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Medium.eot");
  src: url("../fonts/Futura-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Futura-Medium.woff") format("woff"),
    url("../fonts/Futura-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "ruble";
  src: url("../fonts/ruble.eot?m8nztz");
  src: url("../fonts/ruble.eot?m8nztz#iefix") format("embedded-opentype"),
    url("../fonts/ruble.ttf?m8nztz") format("truetype"),
    url("../fonts/ruble.woff?m8nztz") format("woff"),
    url("../fonts/ruble.svg?m8nztz#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

* {
  padding: 0rem;
  margin: 0rem;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 2.666vw;
}

body {
  font-family: var(--openSans);
  font-size: 1.6rem;
  line-height: 100%;
  font-style: normal;
  font-weight: normal;
  background: var(--black-2);
  color: var(--white);
  overflow-x: hidden;
}

@media screen and (min-width: 1280px) {
  html {
    font-size: unset;
  }

  body {
    font-size: 16px;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
}

body._overflow {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  padding: 0;
  margin: 0 0 1.6rem;
  font-family: var(--openSans);
  font-size: 1.6rem;
  line-height: 150%;
}

input,
button,
textarea {
  font-family: "";
}

ul {
  margin: 0;
  padding: 0;
  margin-left: 2rem;
  list-style: none;
}

ul.list-style-none {
  list-style: none;
  margin-left: 0;
}

ul.list-style-circle {
  list-style: circle;
  list-style-type: disc;
}

li {
  font-size: 1.6rem;
  line-height: 100%;
  margin: 0 0 1.6rem;
  position: relative;
}

ul li::before {
  content: "\2014";
  position: absolute;
  top: 0;
  left: -2rem;
}

ul.list-style-none li::before,
ul.list-style-circle li::before {
  content: "";
  display: none;
}

input {
  outline: none;
  border: 0;
  font-size: max(16px, 1.8rem);
}

textarea {
  outline: none;
  border: 0;
  font-size: max(16px, 1.8rem);
}

button {
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  line-height: normal;
}

a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 100%;
  color: var(--white);
}

h1 {
  font-family: var(--futuraPT);
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 88.7%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
}

h2 {
  font-family: var(--futuraPT);
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin: 1.6rem 0;
}

h3 {
  font-family: var(--futuraPT);
  font-style: normal;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 97.1%;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.hidden {
  display: none !important;
}

:root {
  --futuraPT: "Futura", sans-serif;
  --openSans: "Open Sans", sans-serif;
  --black: #1d1d1d;
  --black-2: #000000;
  --white: #fff;
  --orange: #ff9c00;
  --red: #ff4000;
  --grey: #f5f5f7;
  --grey-2: #e0e0df;
  --greyA5A: #a5a5a5;
  --blue: #00b2ff;
}

.page {
  overflow: clip;
}

.container {
  padding: 0 1.6rem;
}

.btn {
  display: inline-flex;
  padding: 1.2rem 1.6rem;
  color: var(--white);
  background-color: var(--red);
  border-radius: 2.8rem;
  -webkit-border-radius: 2.8rem;
  -moz-border-radius: 2.8rem;
  -ms-border-radius: 2.8rem;
  -o-border-radius: 2.8rem;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 150%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.btn.bg-white {
  color: var(--black);
}

.vat {
  color: rgba(255, 255, 255, 0.5);
}

@media (hover: hover) and (pointer: fine) {
  .btn.bg-white:hover {
    background-color: var(--red);
    color: var(--white);
  }
}

[class^="icon-ruble"],
[class*=" icon-ruble"] {
  font-family: "ruble" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ruble:after {
  content: "\e900";
  font-size: 2.2rem;
}

@media screen and (min-width: 1280px) {
  .container {
    padding: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
  }

  h1 {
    font-size: 68px;
    line-height: 88.7%;
    margin-bottom: 32px;
  }

  h2 {
    font-size: 68px;
    line-height: 100%;
    text-align: left;
    margin: 24px 0;
  }

  h3 {
    font-size: 48px;
    line-height: 97.1%;
    text-align: left;
  }

  a {
    font-size: 16px;
    line-height: 100%;
  }

  p {
    font-size: 26px;
    line-height: 150%;
    margin-bottom: 16px;
  }

  li {
    font-size: 16px;
    line-height: 100%;
    margin: 0 0 16px;
  }

  .btn {
    padding: 20px 24px;
    font-size: 16px;
    line-height: 100%;
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    -ms-border-radius: 28px;
    -o-border-radius: 28px;
    cursor: pointer;
  }

  .icon-ruble:after {
    font-size: 23px;
  }
}

.mt0 {
  margin-top: 0;
}

/* -------------------------------- UI -------------------------------------- */
.main {
  padding-top: 5.6rem;
}

@media screen and (min-width: 1280px) {
  .main {
    padding-top: 76px;
  }
}

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

.bg-white {
  background: var(--white);
}

.color-black {
  color: var(--black-2);
}

.bg-black {
  background: var(--black-2);
}

.invert-color {
  mix-blend-mode: difference;
}

.iti__country {
  margin-bottom: 0;
}

/* ------------------------------------ FORM ------------------------------------- */
.grecaptcha-badge {
  display: none !important;
}

.form-group.has-error .form-line {
  border: 2px solid #dd363c;
}

.form-group.has-error .form-label {
  color: #dd363c;
  opacity: 1;
}

.form-group.has-success .form-line {
  border: 2px solid #359e07;
}

.form-group {
  width: 100%;
}

.form-group:not(:last-child) {
  margin-bottom: 1.6rem;
}

.form-line {
  position: relative;
  height: 5.6rem;
  border: 2px solid rgba(29, 29, 29, 0.2);
  /* overflow: hidden; */
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  background: #fff;
  transition: border 150ms ease-out;
  -webkit-transition: border 150ms ease-out;
  -moz-transition: border 150ms ease-out;
  -ms-transition: border 150ms ease-out;
  -o-transition: border 150ms ease-out;
  cursor: text;
}

.form-input {
  display: block;
  width: 100%;
  /* height: 2.2rem; */
  height: 3rem;
  font-family: var(--openSans);
  font-size: max(18px, 1.8rem);
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  outline: none;
  border: 0;
  padding: 0 2.2rem;
  background: transparent;
  position: absolute;
  bottom: 0.4rem;
  left: 0;
}

.iti .form-input.phone {
  padding: 0 2.2rem 0 4.2rem;
}

.iti + .form-label {
  padding: 0 2.2rem 0 4.2rem;
}

.textarea-line {
  position: relative;
  height: 11rem;
  border: 2px solid rgba(29, 29, 29, 0.2);
  overflow: hidden;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  background: #fff;
  transition: border 150ms ease-out;
  -webkit-transition: border 150ms ease-out;
  -moz-transition: border 150ms ease-out;
  -ms-transition: border 150ms ease-out;
  -o-transition: border 150ms ease-out;
  cursor: text;
}

.form-textarea {
  display: block;
  width: 100%;
  height: 7.6rem;
  font-family: var(--openSans);
  font-size: max(18px, 1.8rem);
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--black);
  outline: none;
  border: 0;
  padding: 0 2.2rem;
  background: transparent;
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  resize: none;
}

.form-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  padding: 0 2.2rem;
  font-family: var(--openSans);
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--black);
  opacity: 0.5;
  transition: all 150ms ease-out;
  -webkit-transition: all 150ms ease-out;
  -moz-transition: all 150ms ease-out;
  -ms-transition: all 150ms ease-out;
  -o-transition: all 150ms ease-out;
  cursor: text;
  display: flex;
  align-items: center;
  user-select: none;
  pointer-events: none;
}

.form-line._active .form-label {
  font-size: 1.2rem;
  line-height: 100%;
  transition: all 150ms ease-out;
  -webkit-transition: all 150ms ease-out;
  -moz-transition: all 150ms ease-out;
  -ms-transition: all 150ms ease-out;
  -o-transition: all 150ms ease-out;
  top: 25%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.textarea-line label {
  top: 0;
  align-items: flex-start;
  padding-top: 1.5rem;
}

.form-line.textarea-line._active label {
  top: 0;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  padding-top: 1rem;
}

.form-select {
  display: block;
  width: 100%;
  height: 100%;
  font-family: var(--openSans);
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--black);
  outline: none;
  border: 0;
  padding: 1.8rem 2.2rem 0.8rem;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
}

form._send {
}

.form-btn {
  position: relative;
}

.form-btn__dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: flex;
  gap: 0.4rem;
  opacity: 0;
  visibility: hidden;
}

form._send .form-btn__dots {
  opacity: 1;
  visibility: visible;
}

.form-btn__dots .dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: #ffffff;
  opacity: 0.1;
}

form._send .form-btn__dots .dot.dot-1 {
  animation: anim-dot 800ms linear 300ms infinite normal forwards;
  -webkit-animation: anim-dot 800ms linear 300ms infinite normal forwards;
}

form._send .form-btn__dots .dot.dot-2 {
  animation: anim-dot 800ms linear 600ms infinite normal forwards;
  -webkit-animation: anim-dot 800ms linear 600ms infinite normal forwards;
}

form._send .form-btn__dots .dot.dot-3 {
  animation: anim-dot 800ms linear 900ms infinite normal forwards;
  -webkit-animation: anim-dot 800ms linear 900ms infinite normal forwards;
}

.form-btn button span {
  display: inline;
  background: unset;
  color: unset;
  border-radius: unset;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  -ms-border-radius: unset;
  -o-border-radius: unset;
  padding: unset;
  font-family: var(--openSans);
  font-weight: unset;
  font-size: unset;
  line-height: unset;
  letter-spacing: unset;
}

form._send .make-request__btn.close {
  opacity: 0;
  visibility: hidden;
}

button {
  outline: none;
}

form._send .form-btn button {
  padding: 1.4rem 0;
  width: 8rem;
}

form._send .form-btn button span {
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
}

@keyframes anim-dot {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 0.5;
  }
}

@media screen and (min-width: 1280px) {
  .form-group:not(:last-child) {
    margin-bottom: 0;
  }

  .form-line {
    width: 100%;
    height: 56px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  .form-input {
    height: 22px;
    font-size: 18px;
    line-height: 150%;
    padding: 0 22px;
    bottom: 8px;
  }

  .textarea-line {
    height: 110px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  .form-textarea {
    height: 72px;
    font-size: 18px;
    line-height: 150%;
    padding: 0 22px;
    bottom: 8px;
  }

  .textarea-line label {
    top: 0;
    padding-top: 20px;
  }

  .form-line.textarea-line._active label {
    padding-top: 10px;
  }

  .form-label {
    font-size: 18px;
    padding: 0 22px;
    line-height: 100%;
  }

  .form-line._active .form-label {
    font-size: 12px;
    line-height: 100%;
  }

  .form-select {
    height: 100%;
    font-size: 18px;
    line-height: 150%;
    padding: 20px 22px 8px;
    bottom: 0;
  }

  .iti .form-input.phone {
    padding: 0 22px 0 46px;
  }

  .iti + .form-label {
    padding: 0 22px 0 46px;
  }

  .form-btn__dots {
    gap: 4px;
  }

  .form-btn__dots .dot {
    width: 8px;
    height: 8px;
  }

  form._send .form-btn button {
    padding: 14px 0;
    width: 80px;
  }
}

/* ------------------------------------ FORM END ------------------------------------- */

/* ----------------------- tabs ------------------------- */

.tabs {
}

.tab-head {
}

.tab-item {
  cursor: pointer;
}

.click-tab-item__js {
}

.tab-body {
}

.tab-item-block {
  display: none;
}

.tab-item-block._active {
  display: block;
}

.tab-item-block__body {
}

/* ----------------------- tabs ------------------------- */

/* ----------------------- swiper ----------------------- */
._swiper {
  position: relative;
}

.controls {
}

.control-arrow {
  display: none;
}

@media screen and (min-width: 1280px) {
  .control-arrow {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 4;
    background-color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
  }

  .control-arrow svg {
    width: 24px;
    height: 24px;
  }

  .control-arrow.left {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: -28px;
  }

  .control-arrow.right {
    right: -28px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  .control-arrow.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
  }
}

/* ----------------------- swiper ----------------------- */

.audio-control {
  z-index: 6;
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 5.6rem;
  height: 5.6rem;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.audio-control::before {
  content: "";
  display: block;
  background-image: url(../img/promo/svg/audio_play.svg);
  background-size: 1.4rem 2.4rem;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  margin-left: 3px;
}

.audio-control::after {
  content: "";
  display: none;
  background-color: #fff;
  background-image: url(../img/promo/svg/audio_pause.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.play .audio-control::before {
  display: none;
}

.play .audio-control::after {
  display: block;
}

.hide_audio_active {
  display: none;
}

.about-speaker__under-text ul {
  margin: 0;
}

.audio-control svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  opacity: 0;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  overflow: visible;
}

.play .audio-control svg {
  opacity: 1;
}

@media screen and (min-width: 1280px) {
  .audio-control {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    opacity: 0;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
  }

  .audio-control::before {
    background-size: 14px 24px;
    margin-left: 2px;
  }

  .swiper-slide:hover .audio-control,
  .play .audio-control {
    opacity: 1;
  }
}

/* -------------------------- header ------------------------------ */

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  background-color: var(--black);
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.burger-menu {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
}

.burger-menu__line {
  background-color: var(--white);
  width: 1.8rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.burger-menu__line.line-1 {
  transform: translateY(calc(-50% - 0.7rem));
  -webkit-transform: translateY(calc(-50% - 0.7rem));
  -moz-transform: translateY(calc(-50% - 0.7rem));
  -ms-transform: translateY(calc(-50% - 0.7rem));
  -o-transform: translateY(calc(-50% - 0.7rem));
}

.burger-menu__line.line-3 {
  transform: translateY(calc(-50% + 0.7rem));
  -webkit-transform: translateY(calc(-50% + 0.7rem));
  -moz-transform: translateY(calc(-50% + 0.7rem));
  -ms-transform: translateY(calc(-50% + 0.7rem));
  -o-transform: translateY(calc(-50% + 0.7rem));
}

.burger-menu._active .burger-menu__line.line-1 {
  animation: burger-first-line 500ms linear forwards;
  -webkit-animation: burger-first-line 500ms linear forwards;
}

@keyframes burger-first-line {
  0% {
    transform: translateY(calc(-50% - 0.7rem));
    -webkit-transform: translateY(calc(-50% - 0.7rem));
    -moz-transform: translateY(calc(-50% - 0.7rem));
    -ms-transform: translateY(calc(-50% - 0.7rem));
    -o-transform: translateY(calc(-50% - 0.7rem));
  }

  30% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  40% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  100% {
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
  }
}

.burger-menu .burger-menu__line.line-1 {
  animation: burger-first-line-back 500ms linear forwards;
  -webkit-animation: burger-first-line-back 500ms linear forwards;
}

@keyframes burger-first-line-back {
  0% {
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
  }

  30% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  40% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  100% {
    transform: translateY(calc(-50% - 0.7rem));
    -webkit-transform: translateY(calc(-50% - 0.7rem));
    -moz-transform: translateY(calc(-50% - 0.7rem));
    -ms-transform: translateY(calc(-50% - 0.7rem));
    -o-transform: translateY(calc(-50% - 0.7rem));
  }
}

.burger-menu._active .burger-menu__line.line-2 {
  animation: burger-middle-line 500ms linear forwards;
  -webkit-animation: burger-middle-line 500ms linear forwards;
}

@keyframes burger-middle-line {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.burger-menu .burger-menu__line.line-2 {
  animation: burger-middle-line-back 500ms linear forwards;
  -webkit-animation: burger-middle-line-back 500ms linear forwards;
}

@keyframes burger-middle-line-back {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.burger-menu._active .burger-menu__line.line-3 {
  animation: burger-last-line 500ms linear forwards;
  -webkit-animation: burger-last-line 500ms linear forwards;
}

@keyframes burger-last-line {
  0% {
    transform: translateY(calc(-50% + 0.7rem));
    -webkit-transform: translateY(calc(-50% + 0.7rem));
    -moz-transform: translateY(calc(-50% + 0.7rem));
    -ms-transform: translateY(calc(-50% + 0.7rem));
    -o-transform: translateY(calc(-50% + 0.7rem));
  }

  30% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  40% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  100% {
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -moz-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    -o-transform: translateY(-50%) rotate(-45deg);
  }
}

.burger-menu .burger-menu__line.line-3 {
  animation: burger-last-line-back 500ms linear forwards;
  -webkit-animation: burger-last-line-back 500ms linear forwards;
}

@keyframes burger-last-line-back {
  0% {
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -moz-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    -o-transform: translateY(-50%) rotate(-45deg);
  }

  30% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  40% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  100% {
    transform: translateY(calc(-50% + 0.7rem));
    -webkit-transform: translateY(calc(-50% + 0.7rem));
    -moz-transform: translateY(calc(-50% + 0.7rem));
    -ms-transform: translateY(calc(-50% + 0.7rem));
    -o-transform: translateY(calc(-50% + 0.7rem));
  }
}

.header__logo svg {
  display: block;
  width: 5.4rem;
  height: 1.6rem;
}

.header__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--black);
  padding: 1.6rem 1.6rem 4rem;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transition: transform 0.3s ease-out;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
}

.header__menu._active {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.header__item {
  margin-bottom: 0;
}

.header__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header__link {
  padding: 1.6rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.02em;
}

.header__item:last-child a {
  padding-bottom: 0;
}

.header__box {
  display: none;
}

@media screen and (min-width: 1280px) {
  .header__container {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header__row {
    padding: 0;
  }

  .burger-menu {
    display: none;
  }

  .header__logo svg {
    width: 80px;
    height: 24px;
  }

  .header__menu {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    position: unset;
    top: unset;
    left: unset;
    right: unset;
    padding: 0;
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }

  .header__nav ul {
    display: flex;
  }

  .header__item:not(:last-child) {
    border-bottom: 0;
    margin-right: 32px;
  }

  .header__link {
    padding: 0;
    font-family: var(--futuraPT);
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease-out;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
  }

  .header__link:hover {
    color: var(--white);
  }

  .header__item._active a {
    color: rgba(255, 255, 255, 1);
  }

  .header__box {
    display: flex;
  }

  .header__socials {
    margin-left: 16px;
    display: flex;
  }

  .header__social:not(:last-child) {
    margin-right: 5px;
  }

  .header__socials {
    margin-left: 16px;
    display: flex;
  }

  .header__box {
    display: flex;
  }

  .header__contacts {
    display: flex;
    align-items: center;
  }

  .header__social:not(:last-child) {
    margin-right: 5px;
  }

  .header__social__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 29, 29, 0.6);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    cursor: pointer;
    transition: background 150ms ease-out;
    -webkit-transition: background 150ms ease-out;
    -moz-transition: background 150ms ease-out;
    -ms-transition: background 150ms ease-out;
    -o-transition: background 150ms ease-out;
  }

  .header__social__icon:hover {
    background: rgba(29, 29, 29, 1);
  }

  .header .header__social__icon {
    background-color: rgba(255, 255, 255, 0.6);
  }

  .header .header__social__icon:hover {
    background-color: rgba(255, 255, 255, 1);
  }

  .header__social__icon svg {
    width: 16px;
    height: 12px;
  }

  .header .header__social__icon svg path {
    fill: var(--black);
  }

  .header__social.wspp .header__social__icon svg {
    width: 17px;
    height: 17px;
    transform: translate(1px, -1px);
    -webkit-transform: translate(1px, -1px);
    -moz-transform: translate(1px, -1px);
    -ms-transform: translate(1px, -1px);
    -o-transform: translate(1px, -1px);
  }

  .header__social.tlgm .header__social__icon svg {
    width: 17px;
    height: 15px;
    transform: translateX(-1px);
    -webkit-transform: translateX(-1px);
    -moz-transform: translateX(-1px);
    -ms-transform: translateX(-1px);
    -o-transform: translateX(-1px);
  }

  .header__phone a {
    font-family: var(--openSans);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 150ms ease-out;
    -webkit-transition: color 150ms ease-out;
    -moz-transition: color 150ms ease-out;
    -ms-transition: color 150ms ease-out;
    -o-transition: color 150ms ease-out;
  }

  .header__phone a:hover {
    color: rgba(255, 255, 255, 1);
  }
}

/* --------------------------- header end ------------------------------ */

/* ------------------------- first-screen ---------------------------- */

.first-screen {
  margin-bottom: 0.4rem;
  background: linear-gradient(
    91deg,
    var(--black-2) 30.45%,
    rgba(0, 0, 0, 0) 91.74%
  );
  position: relative;
}

.first-screen::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 14rem;
  left: 0;
  right: 0;
  background: linear-gradient(
    358deg,
    var(--black-2) 4.05%,
    rgba(0, 0, 0, 0) 42.3%
  );
  pointer-events: none;
}

.first-screen__container {
  padding-top: 1.8rem;
  padding-bottom: 9rem;
}
.first-screen__container--ru {
  padding-bottom: 0;
}

.first-screen__box {
  position: relative;
  z-index: 2;
}

.first-screen__logo {
  margin-bottom: 1.4rem;
}
.first-screen__logo--ru {
  margin-bottom: 1.2rem;
}

.first-screen__logo svg {
  width: 9.8rem;
  height: 3rem;
}

.first-screen__title {
  max-width: 22.6rem;
}
.first-screen__title--ru {
  max-width: 23.3rem;

  font-size: 3.2rem;
  line-height: 1;
}
.first-screen__title .orange-text {
  color: var(--red);
}
.first-screen__img {
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;

  right: 8rem;
}
.first-screen__img__2 {
  right: 0;
  top: 15rem;
}
.first-screen__img img{
  object-fit: cover;
  object-position: unset;
  max-width: unset;
  width: 53rem;
  aspect-ratio: 2 / 1;
}
.first-screen__img__2 img {
  height: 42rem;
  width: 100%;
}
.first-screen__text {
  display: none;
}
.first-screen__text--ru {
  margin-top: 5rem;
  display: block;
}
.first-screen__text--ru p{
  text-align: center;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 2.4rem;
}
.first-screen__text--ru__2 {
  margin-top: 30rem;
}
.first-screen__btns-row {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.swiper-backface-hidden.first-screen__swiper .swiper-slide {
  overflow: hidden;
}

@media screen and (min-width: 1280px) {
  .first-screen {
    margin-bottom: 0;
  }

  .first-screen::after {
    bottom: -72px;
    height: 477px;
    background: linear-gradient(
      357.9deg,
      #000000 4.05%,
      rgba(0, 0, 0, 0) 42.3%
    );
  }

  .first-screen__container {
    padding-top: 64px;
    padding-bottom: 72px;
    position: relative;
  }

  .first-screen__logo {
    margin-bottom: 32px;
  }

  .first-screen__logo svg {
    width: 136px;
    height: 40px;
  }

  .first-screen__title {
    max-width: 418px;
  }
  .first-screen__title--ru {
    max-width: 696px;

    font-size: 68px;
    line-height: 89%;
  }

  .first-screen__btn {
    margin-bottom: 26px;
  }

  .first-screen__text {
    display: block;
    max-width: 690px;
  }
  .first-screen__text--ru {
    margin-top: 30px;
    max-width: 700px;
  }
  .first-screen__text--ru p {
    text-align: left;
  }
  
  .first-screen__text p {
    margin-bottom: 0;
  }

  .first-screen__text p:not(:last-child) {
    margin-bottom: 16px;
  }

  .first-screen__img {
    right: 0rem;
  }
  .first-screen__img img{
    width: 100%;
    height: 100%;
  }
  .first-screen__img__2 img {
    width: 1058px;
    height: 100%;
  }
  .first-screen__img__2 {
    text-align: right;
    position: absolute;
    top: 0;
  }
}

/* Появление */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Исчезновение */
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.fadeIn  { animation: fadeIn  0.6s ease-out forwards; }
.fadeOut { animation: fadeOut 0.6s ease-in  forwards; }

.animated-image {
  /* opacity: 0; */
  height: 100%;
}

/* ------------------------- first-screen ---------------------------- */

/* ------------------------- main-benefits ---------------------------- */
.main-benefits {
  position: relative;
  z-index: 2;
  margin-bottom: 10rem;
}

.main-benefits__list {
  display: flex;
  gap: 0.8rem;
  overflow-x: scroll;
  margin: 0 -1.6rem;
  padding: 0 1.6rem;
}

.main-benefits__list::-webkit-scrollbar {
  height: 0px;
  background-color: transparent;
}

.main-benefits-item {
  width: 12.8rem;
  flex-shrink: 0;
  border: 1px solid rgba(165, 165, 165, 0.5);
  border-radius: 1.2rem;
  -webkit-border-radius: 1.2rem;
  -moz-border-radius: 1.2rem;
  -ms-border-radius: 1.2rem;
  -o-border-radius: 1.2rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(0deg, #000000, #000000),
    linear-gradient(0deg, rgba(165, 165, 165, 0.5), rgba(165, 165, 165, 0.5));
}

.main-benefits-item__body {
  padding: 1.6rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: -2;
  height: 100%;
}

.main-benefits-item__icon {
  height: 3.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.main-benefits-item__icon svg {
  display: block;
  width: 3.1rem;
  height: 3.1rem;
}

.main-benefits-item__icon .mb-app {
  width: 2.5rem;
  height: 2.5rem;
}

.main-benefits-item__label {
  text-align: center;
  font-size: 1.2rem;
  line-height: 150%;
  font-weight: 600;
}

@media screen and (min-width: 1280px) {
  .main-benefits {
    margin-bottom: 100px;
  }

  .main-benefits__list {
    gap: 30px;
    padding: 0;
    margin: 0;
    overflow-x: unset;
  }

  .main-benefits-item {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    width: 170px;
    transition: transform 0.3s ease-out;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
  }

  .main-benefits-item:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }

  .main-benefits-item__body {
    padding: 22px 4px;
  }

  .main-benefits-item__icon {
    height: 40px;
    margin-bottom: 14px;
  }

  .main-benefits-item__icon svg {
    width: 40px;
    height: 40px;
  }

  .main-benefits-item__icon .mb-app {
    width: 34px;
    height: 34px;
  }

  .main-benefits-item__label {
    font-size: 16px;
    line-height: 150%;
  }
}

/* ------------------------- main-benefits ---------------------------- */

/* ------------------------- about-system ------------------------- */

.about-system {
  margin-bottom: 9.6rem;
}

.about-system__info {
  margin-bottom: 4.8rem;
}

.about-system__text {
  margin-bottom: 1.6rem;
}

.about-system__under-text {
  border-top: 1px solid var(--greyA5A);
  padding-top: 20px;
}

.about-system__under-text,
.about-system__text {
  text-align: center;
}

.about-system__text p,
.about-system__under-text p {
  font-weight: 600;
  font-family: Open Sans;
  letter-spacing: -0.02em;
}

.about-system__text p {
  margin-bottom: 0;
}

.about-system__text p:not(:last-child) {
  margin-bottom: 3rem;
}

.about-system__under-text p {
  color: var(--greyA5A);
}

.about-system__img img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .about-system {
    margin-bottom: 262px;
  }

  .about-system__container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .about-system__img {
    width: 560px;
  }

  .about-system__text {
    width: 567px;
    margin-bottom: 24px;
  }

  .about-system__info {
    margin-bottom: 0;
    margin-left: 30px;
  }

  .about-system__title {
    margin-top: 0;
  }

  .about-system__under-text,
  .about-system__text {
    text-align: left;
  }

  .about-system__text p {
    font-size: 26px;
    line-height: 150%;
  }

  .about-system__text p:not(:last-child) {
    margin-bottom: 16px;
  }

  .about-system__text p span {
    font-size: 18px;
    line-height: 150%;
  }

  .about-system__under-text p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 0;
  }
}

/* ------------------------- about-system ------------------------- */

/* ------------------------  about-speaker ----------------------- */

.about-speaker {
  margin-bottom: 9.6rem;
}

.about-speaker__container {
  display: flex;
  flex-direction: column;
}

.about-speaker__col {
  position: relative;
}

.about-speaker__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.about-speaker__under-text {
  color: var(--greyA5A);
  width: 100%;
  border-top: 1px solid var(--greyA5A);
  padding-top: 1.6rem;
  text-align: center;
}

.about-speaker__under-text ul li:before {
  display: none;
}

.about-speaker__under-text ul li {
  list-style: none;
  text-align: center;
}

.about-speaker__frequency {
  font-family: var(--openSans);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.about-speaker__under-text ul {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-speaker__under-text li {
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 150%;
}

.about-speaker__col.col-1 .about-speaker__btn {
  display: none;
}

.about-speaker__btn {
  display: flex;
  justify-content: center;
}

.about-speaker__img {
  margin: 0;
  width: 100%;
}

.about-speaker__img img {
  display: block;
  width: 100%;
}

.about-speaker__img__sounds {
  display: none;
}

@media screen and (min-width: 1280px) {
  .about-speaker {
    margin-bottom: 230px;
  }

  .about-speaker__container {
    max-width: 100%;
    margin: 0;
    margin-left: calc((100% - 1170px) / 2);
    display: grid;
    grid-template-columns: 502px 566px;
    grid-column-gap: 97px;
  }

  .about-speaker__col.col-1 {
    margin-bottom: 0;
  }

  .about-speaker__info {
    display: block;
  }

  .about-speaker__text {
    text-align: left;
    margin-bottom: 24px;
    max-width: 480px;
  }

  .about-speaker__under-text {
    padding-top: 24px;
    margin-bottom: 24px;
  }

  .about-speaker__frequency {
    font-size: 28px;
    line-height: 150%;
    text-align: left;
  }

  .about-speaker__under-text ul {
    align-items: start;
    margin: 0;
  }

  .about-speaker__under-text li {
    font-size: 18px;
    line-height: 150%;
  }

  .about-speaker__col.col-1 .about-speaker__btn {
    display: block;
  }

  .about-speaker__col.col-2 .about-speaker__btn {
    display: none;
  }

  .about-speaker__img {
    margin: -12rem 0 1.6rem -10rem;
    width: 989px;
  }

  .about-speaker__img img {
    position: relative;
    z-index: 2;
  }

  .about-speaker__img__sounds {
    display: block;
    position: absolute;
    top: 50%;
    left: 180px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  .about-speaker__img svg {
    display: block;
    width: 1164px;
    height: 174px;
  }

  .about-speaker__btn .btn {
    font-size: 16px;
    line-height: 100%;
  }
}

/* ------------------------  about-speaker ----------------------- */

/* ---------------- n-select-sound --------------------- */

.n-select-sound {
  padding: 3.8rem 0 2.4rem;
  margin-bottom: 15rem;
  background-color: #0d0d0d;
}

.n-select-sound .container {
  text-align: center;
}

.n-select-sound__ellipses {
  display: none;
}

.n-select-sound__title {
  max-width: 32rem;
  margin: 0 auto 2.4rem;
}

.n-select-sound-tab__head {
  display: flex;
  margin-bottom: 1.6rem;
}

.n-select-sound-tab__item {
  width: 100%;
  font-family: var(--futuraPT);
  font-size: 2.8rem;
  line-height: 88.7%;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.n-select-sound-tab__item.thor._active {
  color: #ff4001;
  border-bottom: 1px solid #ff4001;
}

.n-select-sound-tab__item.ev._active {
  color: #00b2ff;
  border-bottom: 1px solid #00b2ff;
}

.n-select-sound-tab__item.boombox._active {
  color: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.n-select-sound__slider::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2.4rem;
  left: -1.6rem;
  right: -1.6rem;
  height: 30.2rem;
  background: linear-gradient(176.95deg, transparent 22.32%, #ff4000 96.52%);
}

.n-select-sound__slider.ev::after {
  background: linear-gradient(176.95deg, transparent 22.32%, #00b2ff 96.52%);
}

.n-select-sound__slider.boombox::after {
  background: linear-gradient(176.95deg, transparent 22.32%, #a5a5a5 96.52%);
}

.n-select-sound__text {
  max-width: 32rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.n-select-sound__slider__slide {
  position: relative;
  max-width: 15.8rem;
  width: 100%;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  overflow: hidden;
  height: unset;
  z-index: 2;
  cursor: pointer;
}

.n-select-sound__slide__box {
  position: relative;
  z-index: -2;
}

.n-select-sound__slider__slide:not(:last-child) {
  margin-right: 2rem;
}

.n-select-sound__slide__image img {
  display: block;
  height: 25.6rem;
  width: 40rem;
  object-fit: cover;
}

.n-select-sound__slide__info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.6rem;
  z-index: 6;
}

.n-select-sound__slide__name {
  font-family: var(--futuraPT);
  font-size: 2.4rem;
  line-height: 88.7%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.35);
}

.n-select-sound__controls {
}

@media screen and (min-width: 1280px) {
  .n-select-sound {
    padding: 90px 0 68px;
    margin-bottom: 216px;
    position: relative;
  }

  .n-select-sound h2 {
    margin: 0 0 32px;
    text-align: center;
  }

  .n-select-sound__title {
    max-width: 494px;
    margin: 0 auto;
    position: relative;
  }

  .n-select-sound__ellipses {
    display: block;
  }

  .n-select-sound__ellipse {
    position: absolute;
    right: -25px;
    top: 0;
  }

  .n-select-sound__ellipse.ellipse-1 {
    top: 20px;
    height: 30px;
    width: 18px;
  }

  .n-select-sound__ellipse.ellipse-2 {
    top: -2px;
    right: -66px;
    height: 74px;
    width: 46px;
  }

  .n-select-sound__ellipse.ellipse-3 {
    top: -27px;
    right: -106px;
    height: 126px;
    width: 78px;
  }

  .n-select-sound__ellipse.ellipse-4 {
    top: -52px;
    right: -142px;
    height: 174px;
    width: 102px;
  }

  .n-select-sound-tab__head {
    max-width: 658px;
    margin: 0 auto 32px;
  }

  .n-select-sound__slider {
    position: unset;
  }

  .n-select-sound__slider-body {
    position: relative;
  }

  .n-select-sound-tab__item {
    font-size: 48px;
    line-height: 88.7%;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  }

  .n-select-sound-tab__item.thor._active,
  .n-select-sound-tab__item.thor:hover {
    border-bottom: 2px solid #ff4001;
    color: #ff4001;
  }

  .n-select-sound-tab__item.ev._active,
  .n-select-sound-tab__item.ev:hover {
    border-bottom: 2px solid #00b2ff;
    color: #00b2ff;
  }

  .n-select-sound-tab__item.boombox._active,
  .n-select-sound-tab__item.boombox:hover {
    border-bottom: 2px solid rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
  }

  .n-select-sound__text {
    max-width: 718px;
    margin: 0 auto 46px;
  }

  .n-select-sound__slider::after {
    bottom: 0;
    left: 0;
    right: 0;
    height: 302px;
  }

  .n-select-sound__slider__slide {
    max-width: 270px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
  }

  .n-select-sound__slider__slide.no_active {
    opacity: 0.3;
  }

  .n-select-sound__slider__slide:not(:last-child) {
    margin-right: 30px;
  }

  .n-select-sound__slide__info {
    padding: 16px;
  }

  .n-select-sound__slide__name {
    font-size: 24px;
    line-height: 88.7%;
  }

  .n-select-sound__slide__image img {
    width: auto;
    height: 270px;
  }
}

/* ---------------- n-select-sound --------------------- */

/* ---------------- app-benefits ---------------------- */

.app-benefits {
  margin-bottom: 11rem;
}

.app-benefits__row {
  display: grid;
  grid-gap: 0.7rem;
}

.app-benefits__row:not(:last-child) {
  margin-bottom: 0.7rem;
}

.app-benefits__row:nth-child(odd) {
  grid-template-columns: 13.2rem 1fr;
}

.app-benefits__row:nth-child(even) {
  grid-template-columns: 1fr 13.2rem;
}

.app-benefits-item {
  border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
  overflow: hidden;
  background-color: var(--black);
  color: var(--white);
  position: relative;
}

.app-benefits-item__body {
  height: 100%;
  position: relative;
}

.app-benefits-item:not(.app) .app-benefits-item__info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
}

.app-benefits-item.item-1 .app-benefits-item__info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-benefits-item.app .app-benefits-item__info {
  margin-bottom: 1.6rem;
}

.app-benefits-item__label {
  font-family: var(--futuraPT);
  font-size: 1.2rem;
  line-height: 88.7%;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  font-weight: 450;
}

.app-benefits-item__label span {
  color: var(--red);
}

.app-benefits-item.item-1 .app-benefits-item__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.6rem;
  line-height: 88.7%;
  margin-bottom: 0;
}

.app-benefits-item.item-1 .app-benefits-item__label span {
  font-size: 2.8rem;
  line-height: 88.7%;
}

.app-benefits-item.item-4 .app-benefits-item__label {
  text-align: center;
  color: var(--black);
}

.app-benefits-item.app .app-benefits-item__label {
  font-size: 3.2rem;
  line-height: 3.2rem;
}

.app-benefits-item__text.desktop {
  display: none;
}

.app-benefits-item.item-1 .app-benefits-item__text {
  color: rgba(29, 29, 29, 0.5);
}

.app-benefits-item.item-2 .app-benefits-item__text {
  color: var(--white);
}

.app-benefits-item.item-3 .app-benefits-item__text {
  color: rgba(255, 255, 255, 0.5);
}

.app-benefits-item__text p,
.app-benefits-item__text li {
  font-size: 1.2rem;
  line-height: 150%;
  font-weight: 600;
  margin-bottom: 0;
}

.app-benefits-item__text p:not(:last-child) {
  margin-bottom: 0.8rem;
}

.app-benefits-item__text li {
  font-weight: normal;
}

.app-benefits-item-hidden {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-benefits-item-hidden__body {
  width: 100%;
  transition: height 0.3s ease-out;
  -webkit-transition: height 0.3s ease-out;
  -moz-transition: height 0.3s ease-out;
  -ms-transition: height 0.3s ease-out;
  -o-transition: height 0.3s ease-out;
}

.app-benefits-item.app .app-benefits-item__body {
  padding: 1.5rem 1.7rem;
}

.app-benefits-item__img {
  display: flex;
  justify-content: center;
  width: 100%;
}

.app-benefits-item__img picture {
  display: block;
  width: 100%;
}

.app-benefits-item__img img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.app-benefits-item.item-1 .app-benefits-item__img img,
.app-benefits-item.item-2 .app-benefits-item__img img {
  height: 13.2rem;
}

.app-benefits-item.item-3 .app-benefits-item__img img,
.app-benefits-item.item-4 .app-benefits-item__img img {
  height: 20rem;
}

.app-benefits-item.app img {
  width: 12.5rem;
}

.app-benefits-item-hidden__arrow {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 1280px) {
  .app-benefits {
    margin-bottom: 270px;
  }

  .app-benefits-item.app {
    display: none;
  }

  .app-benefits-item:not(.app) .app-benefits-item__info {
    padding: 30px;
  }

  .app-benefits__row:nth-child(odd) {
    grid-template-columns: 452px 1fr;
  }

  .app-benefits__row:nth-child(even) {
    grid-template-columns: 1fr 458px;
  }

  .app-benefits-item.item-1 .app-benefits-item__img img,
  .app-benefits-item.item-2 .app-benefits-item__img img {
    height: 452px;
  }

  .app-benefits-item.item-3 .app-benefits-item__img img,
  .app-benefits-item.item-4 .app-benefits-item__img img {
    height: 526px;
  }

  .app-benefits-item__label {
    font-size: 36px;
    line-height: 88.7%;
  }

  .app-benefits-item.item-1 .app-benefits-item__label {
    font-size: 20px;
    line-height: 88.7%;
  }

  .app-benefits-item.item-1 .app-benefits-item__label span {
    font-size: 96px;
    line-height: 88.7%;
  }
}

/* ---------------- app-benefits ---------------------- */

/* ---------------- main-configuration ------------------- */

.main-configuration {
  margin-bottom: 9.6rem;
  position: relative;
}

.main-configuration__container {
  position: relative;
  z-index: 2;
}

.main-configuration__list {
  display: flex;
  flex-direction: column;
  grid-gap: 3.2rem;
}

.main-configuration-item__body {
  height: 100%;
}

.main-configuration-item__img {
  position: relative;
  z-index: 2;
  border-radius: 1.2rem;
  -webkit-border-radius: 1.2rem;
  -moz-border-radius: 1.2rem;
  -ms-border-radius: 1.2rem;
  -o-border-radius: 1.2rem;
  overflow: hidden;
  height: 29.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #a5a5a580;
  margin-bottom: 2.4rem;
}

.main-configuration-item__img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #ff4000 -62.59%, #000000 79.83%);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.main-configuration-item__img img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}

.main-configuration-item.item-1 .main-configuration-item__img img {
  max-width: 30.2rem;
}

.main-configuration-item.item-2 .main-configuration-item__img img {
  max-width: 18.2rem;
}

.main-configuration-item__info {
  margin-bottom: 1.6rem;
}

.main-configuration-item__row {
  font-family: var(--futuraPT);
  display: grid;
  grid-template-columns: 20.3rem 1fr;
  grid-gap: 1rem;
  align-items: end;
  margin-bottom: 0.8rem;
}

.main-configuration-item__name {
  font-size: 3.2rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
}

.main-configuration-item__price {
  text-align: right;
  font-size: 3.2rem;
  line-height: 69.792%;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.main-configuration-item__desc {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
}

.main-configuration-item__btns {
  display: flex;
  justify-content: center;
}

.main-configuration-item__btn .btn {
  padding: 2rem 2.4rem;
  border-radius: 2.8rem;
  -webkit-border-radius: 2.8rem;
  -moz-border-radius: 2.8rem;
  -ms-border-radius: 2.8rem;
  -o-border-radius: 2.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 100%;
}

.anim-side-ellipses {
  display: none;
}

.make-request.buy-product .m-about-product {
    width: auto;
    background: #fff;
    padding: 1.6rem;
    border-radius: 1.6rem;
    margin: 0 1.6rem 1.6rem;
}

.make-request.popup {
    flex-direction: column;
}

.m-about-product__name {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -.2px;
    color: var(--black);
}

.product_detailed_information {
    margin: 16px 0 0;
    display: none;
    flex-direction: row;
    gap: 8px;
}
.product_detailed_information._active {
    display: flex;
}
.m-about-product__price._active {
    display: block;
    color: var(--black);
}
.product_detailed_information svg,
.product_detailed_information circle,
.product_detailed_information path {
    opacity: 1 !important;
}
.product_detailed_information_info p {
    color: var(--black);
    font-family: var(--openSans);
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -.2px;
    margin: 0;
}

@media screen and (min-width: 1280px) {
  .make-request.buy-product .m-about-product {
    width: 100%;
    max-width: 984px;
    border-radius: 16px;
  }

  .main-configuration {
    margin-bottom: 268px;
    min-height: 968px;
  }

  .main-configuration__container {
    padding-top: 16px;
  }

  .main-configuration__title {
    margin-bottom: 80px;
    margin-top: 0;
    text-align: center;
  }

  .main-configuration__list {
    display: grid;
    grid-template-columns: 470px 470px;
    grid-gap: 30px;
    max-width: 970px;
    margin: 0 auto;
  }

  .main-configuration-item__info {
    margin-bottom: 16px;
  }

  .main-configuration-item__img {
    background: var(--black-2);
    height: 410px;
    margin-bottom: 40px;
  }

  .main-configuration-item__img::after {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
  }

  .main-configuration-item._hover .main-configuration-item__img::after {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  .main-configuration-item.item-1 .main-configuration-item__img img {
    max-width: 418px;
  }

  .main-configuration-item.item-2 .main-configuration-item__img img {
    max-width: 252px;
  }

  .main-configuration-item__row {
    grid-template-columns: 264px 1fr;
    grid-gap: 10px;
    margin-bottom: 16px;
  }

  .main-configuration-item__name {
    font-size: 32px;
    line-height: 100%;
  }

  .main-configuration-item__price {
    font-size: 32px;
    line-height: 100%;
  }

  .main-configuration-item__desc {
    font-size: 18px;
    line-height: 150%;
    max-width: 424px;
  }

  .main-configuration-item__btns {
    justify-content: start;
  }

  .main-configuration-item__btn .btn {
    padding: 20px 32px;
    font-size: 18px;
    line-height: 100%;
    border-radius: 44px;
    -webkit-border-radius: 44px;
    -moz-border-radius: 44px;
    -ms-border-radius: 44px;
    -o-border-radius: 44px;
  }

  .main-configuration-item._hover .main-configuration-item__btn .btn {
    background-color: var(--red);
    color: var(--white);
  }

  .main-configuration-item.no_hover .main-configuration-item__btn .btn {
    background-color: var(--greyA5A);
    color: var(--white);
  }

  .anim-side-ellipses__left {
  }

  .anim-side-ellipses__img {
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  .anim-side-ellipses__img.img-1 {
    width: 105px;
    height: 168px;
  }

  .anim-side-ellipses__left .img-1 {
    left: -175px;
  }

  .anim-side-ellipses__right .img-1 {
    right: -175px;
  }

  .anim-side-ellipses__img.img-2 {
    width: 266px;
    height: 424px;
  }

  .anim-side-ellipses__left .img-2 {
    left: -74px;
  }

  .anim-side-ellipses__right .img-2 {
    right: -74px;
  }

  .anim-side-ellipses__img.img-3 {
    width: 398px;
    height: 700px;
  }

  .anim-side-ellipses__left .img-3 {
    left: -20px;
  }

  .anim-side-ellipses__right .img-3 {
    right: -20px;
  }

  .anim-side-ellipses__img.img-4 {
    width: 525px;
    height: 968px;
  }

  .anim-side-ellipses__left .img-4 {
    left: 36px;
  }

  .anim-side-ellipses__right .img-4 {
    right: 36px;
  }
}

/* ---------------- main-configuration ------------------- */

/* ------------------------------- contacts-page ---------------------------------------- */
.contacts-page {
  margin-bottom: 9.6rem;
}

[class*="ymaps-2"][class*="-ground-pane"] {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}
.contacts-page__content__box.black [class*="ymaps-2"][class*="-ground-pane"] {
  filter: grayscale(1) brightness(0.5) contrast(3);
  -webkit-filter: grayscale(1) brightness(0.5) contrast(3);
}

.contacts-page__title {
  margin-bottom: 2.4rem;
}

.select-city {
  position: relative;
  height: 5.6rem;
  margin-bottom: 2.8rem;
  z-index: 6;
}

.select-city__head {
  background: var(--white);
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  transition: border 150ms ease-out;
  -webkit-transition: border 150ms ease-out;
  -moz-transition: border 150ms ease-out;
  -ms-transition: border 150ms ease-out;
  -o-transition: border 150ms ease-out;
  cursor: pointer;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  border: 2px solid rgba(29, 29, 29, 0.2);
  padding: 0 3rem 0 1.4rem;
}

.select-city._active .select-city__head {
  border: 2px solid rgba(29, 29, 29, 0.2);
  transition: border 150ms ease-out;
  -webkit-transition: border 150ms ease-out;
  -moz-transition: border 150ms ease-out;
  -ms-transition: border 150ms ease-out;
  -o-transition: border 150ms ease-out;
}

.select-city__head::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(0);
  -webkit-transform: translateY(-50%) rotate(0);
  -moz-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  -o-transform: translateY(-50%) rotate(0);
  background-image: url(../img/promo/svg/arrowdown.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 150ms ease-out;
  -webkit-transition: transform 150ms ease-out;
  -moz-transition: transform 150ms ease-out;
  -ms-transition: transform 150ms ease-out;
  -o-transition: transform 150ms ease-out;
}

.select-city._active .select-city__head::after {
  transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
}

.select-city__label {
  font-family: var(--openSans);
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
}

.select-city__body {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  width: 100%;
  height: 0;
  background: #ffffff;
  box-shadow: 0px 0.4rem 1.6rem rgba(0, 0, 0, 0.25);
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  z-index: 5;
  transition: height 300ms ease-out;
  -webkit-transition: height 300ms ease-out;
  -moz-transition: height 300ms ease-out;
  -ms-transition: height 300ms ease-out;
  -o-transition: height 300ms ease-out;
}

.selectbox._active .select-city__body {
  height: 44.8rem;
}

.select-city__body__content {
  padding: 2.4rem 1.4rem 2.4rem;
  height: 100%;
}

.select-city__list {
  overflow-y: auto;
  height: 100%;
}

.select-city__list::-webkit-scrollbar {
  cursor: grab !important;
  width: 0.4rem;
}

.select-city__list::-webkit-scrollbar-thumb {
  cursor: grab !important;
  background-color: rgb(0 0 0 / 30%);
  background: rgba(29, 29, 29, 0.2);
  border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
}

.select-city__list ul {
  list-style: none;
  margin-left: 0;
}

.select-city__list ul li::before {
  display: none;
}

.select-city__item__country:not(:last-child) {
  margin-bottom: 2.4rem;
}

.select-city__item__country-name {
  font-family: var(--openSans);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 200%;
  letter-spacing: -0.02em;
  color: rgba(29, 29, 29, 0.4);
  margin-bottom: 0.4rem;
}

.select-city__item__country__city {
  font-family: var(--openSans);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: var(--black);
  opacity: 0.6;
  cursor: pointer;
}

.select-city__item__country-sities ul {
  margin-left: 0;
}

.select-city__item__country-sities ul li::before {
  display: none;
}

.select-city__item__country__city._selected {
  opacity: 1;
}

.select-city__item__country__city:not(:last-child) {
  margin-bottom: 0.4rem;
}

.contacts-page__map {
  overflow: hidden;
  position: relative;
  z-index: 5;
  margin-bottom: 0.8rem;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
}

.contacts-page__map > ymaps {
  z-index: -5;
}

.contacts-page__map.mobile {
  width: 100%;
  height: 343px;
}

.contacts-page__map.desktop {
  display: none;
}

.contacts-page__map img {
  width: 100%;
}

.contacts-page__partners {
  max-height: 48rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.contacts-page__partners::-webkit-scrollbar {
  cursor: grab !important;
  width: 2px;
  background: #707070;
}

.contacts-page__partners::-webkit-scrollbar-thumb {
  cursor: grab !important;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  background: #c4c4c4;
  height: 100px !important;
}

.contacts-page__partners._active {
  background: var(--white);
  padding: 1.6rem;
  margin-top: 0.8rem;
  border-radius: 0.8rem;
}
.contacts-page__content__box.black .contacts-page__partners._active {
  background: var(--black-2);
}

.contacts-page__partners ul {
  list-style: none;
  width: 100%;
  max-width: 26.4rem;
  margin-left: 0;
}

.contacts-page__partners ul li::before {
  display: none;
}

.contacts-page__partner:not(:last-child) {
  margin-bottom: 3.2rem;
}

.contacts-page__partner__name {
  font-family: var(--openSans);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 0.4rem;
  display: flex;
}
.contacts-page__content__box.black .contacts-page__partner__name {
  color: var(--white);
}

.contacts-page__partner__name svg {
  width: 2.4rem;
  height: 2.4rem;
  flex-basis: 2.4rem;
  margin-right: 0.8rem;
}

.contacts-page__partner .contacts-page__partner__name svg.demo .bg {
  fill: #ff4000;
}

.contacts-page__partner__address {
  font-family: var(--openSans);
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--black);
}

.contacts-page__partner a {
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--black);
  text-decoration: none;
}
.contacts-page__content__box.black .contacts-page__partner a {
  color: var(--white);
}

.contacts-page__partner__fullAddress,
.contacts-page__partnerTel,
.contacts-page__partnerHref {
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--black);
}
.contacts-page__content__box.black .contacts-page__partner__fullAddress,
.contacts-page__content__box.black .contacts-page__partnerTel,
.contacts-page__content__box.black .contacts-page__partnerHref {
  color: var(--white);
}
.info-block__item {
  display: flex;
  background: var(--black);
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
}

.company-numbers__container>.info-block__item{margin-top: 6rem;}
.company-numbers__container>.info-block__item .info-block__text{
  max-width: 100%;
}
.company-numbers__container>.info-block__item .info-block__text h3{
  color:rgba(255, 64, 0, 1);
}
.company-numbers__container>.info-block__item .info-block__icon {
  display: flex;
  align-items: center;
  padding-top: 0;
}
.company-numbers__container>.info-block__item .info-block__column {
  flex-direction: column;
}


.company-numbers__container>.info-block__item .info-block__column .info-block__btn {
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.info-block__icon {
  display: none;
  background: var(--red);
  padding: 3.1rem 1.1rem 0 1.3rem;
  flex-shrink: 0;
}

.info-block__icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.info-block__column {
  width: 100%;
  padding: 1.2rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-block__text {
  font-family: var(--openSans);
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  max-width: 18rem;
}

.info-block__text.ad_style {
    max-width: 100%;
}

.info-block__text.ad_style h3 {
    margin: 0 0 1rem;
    text-align: left;
    color: var(--red);
}

.black .info-block__text {
    color: var(--white);
}

.info-block__text a {
  color: #00b2ff;
  text-decoration: none;
}

.info-block__text p {
  color: #fff;
}

.info-block__btns {
  display: flex;
  grid-column-gap: 0.8rem;
}

.info-block__btn {
  font-family: var(--openSans);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 116.667%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  color: var(--black);
  background: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: 2.8rem;
  -webkit-border-radius: 2.8rem;
  -moz-border-radius: 2.8rem;
  -ms-border-radius: 2.8rem;
  -o-border-radius: 2.8rem;
}

.select-city__body {
  margin-bottom: 8rem;
  overflow: hidden;
}

.contacts-page__content__box {
  margin-bottom: 0.8rem;
}

.contacts-page__content__filters {
  background: var(--white);
  padding: 2.4rem 1.6rem;
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
}
.contacts-page__content__box.black .contacts-page__content__filters {
  background: var(--black-2);
}

.contacts-filters__list {
  margin-bottom: 2.4rem;
}

.contacts-filters__list.demo {
  margin-bottom: 1.6rem;
}

.contacts-filters__list:last-child {
  margin-bottom: 0;
}

.contacts-filters .item-radiobtn label,
.contacts-filters .item-checkbox label {
  color: var(--black);
}
.contacts-page__content__box.black .contacts-filters .item-radiobtn label,
.contacts-page__content__box.black .contacts-filters .item-checkbox label {
  color: var(--white);
}

.contacts-filters .item-radiobtn__icon,
.contacts-filters .item-checkbox__icon {
  border: 1.5px solid var(--black);
}

.contacts-filters .item-radiobtn input:checked + .item-radiobtn__icon,
.contacts-filters .item-checkbox input:checked + .item-checkbox__icon {
  border: 1.5px solid var(--black);
}
.contacts-page__content__box.black .contacts-filters .item-radiobtn__icon,
.contacts-page__content__box.black .contacts-filters .item-checkbox__icon {
  border: 1.5px solid var(--white);
}

.contacts-page__content__box.black
  .contacts-filters
  .item-radiobtn
  input:checked
  + .item-radiobtn__icon,
.contacts-page__content__box.black
  .contacts-filters
  .item-checkbox
  input:checked
  + .item-checkbox__icon {
  border: 1.5px solid var(--white);
}

.item-radiobtn,
.item-checkbox {
  display: flex;
  position: relative;
}

.item-radiobtn:not(:last-child),
.item-checkbox:not(:last-child) {
  margin-bottom: 0.8rem;
}

.item-radiobtn__icon,
.item-checkbox__icon {
  width: 1.6rem;
  height: 1.6rem;
  border: 1.5px solid rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  pointer-events: none;
}

.item-radiobtn__icon {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.item-checkbox__icon {
  border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
}

.item-radiobtn__icon::after,
.item-checkbox__icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background: var(--black-2);
  transition: all 150ms ease-out;
  -webkit-transition: all 150ms ease-out;
  -moz-transition: all 150ms ease-out;
  -ms-transition: all 150ms ease-out;
  -o-transition: all 150ms ease-out;
}

.item-radiobtn__icon::after {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.item-checkbox__icon::after {
  border-radius: 0.2rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
}

.item-radiobtn input,
.item-checkbox input {
  display: none;
}

.item-radiobtn input:checked + .item-radiobtn__icon,
.item-checkbox input:checked + .item-checkbox__icon {
  border: 1.5px solid rgba(0, 0, 0, 1);
}

.item-radiobtn input:checked + .item-radiobtn__icon::after,
.item-checkbox input:checked + .item-checkbox__icon::after {
  width: 0.8rem;
  height: 0.8rem;
}

.item-checkbox__icon.checkmark::after {
  width: 0.8rem;
  height: 0.6rem;
  background-color: transparent;
  background-image: url("../img/promo/checkmark-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
}
.contacts-page__content__box.black .item-checkbox__icon.checkmark::after {
  background-image: url("../img/promo/checkmark-white.svg");
}

.item-checkbox input:checked + .item-checkbox__icon.checkmark::after {
  width: 0.8rem;
  height: 0.6rem;
  opacity: 1;
}

.item-radiobtn label,
.item-checkbox label {
  display: inline-flex;
  font-family: var(--openSans);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--black-2);
  padding-left: 2.4rem;
}

.contacts-filters__item .contacts-filter-item__label {
  align-items: center;
}

.contacts-filters__item .contacts-filter-item__label svg {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  flex-basis: 2.4rem;
  margin-right: 0.4rem;
}

.contacts-filter-item__label {
  font-family: var(--openSans);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--black-2);
}

.contacts-page__partners li {
  margin-bottom: 0;
}

@media screen and (min-width: 1280px) {
  .contacts-page {
    margin-bottom: 216px;
  }

  .contacts-page__container {
    margin-bottom: 120px;
  }

  .contacts-page__container h1 {
    margin-bottom: 40px;
  }

  .contacts-page__title {
    margin-bottom: 24px;
  }

  .contacts-page__title h2 {
    margin-bottom: 24px;
  }

  .contacts-page__content__box {
    display: grid;
    grid-template-columns: 312px 1fr;
    grid-column-gap: 8px;
    margin-bottom: 8px;
  }

  .contacts-page__map {
    grid-row: 1/3;
    grid-column-start: 2;
    margin-bottom: 0;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  .contacts-page__map.mobile {
    display: none;
  }

  .contacts-page__map.desktop {
    display: block;
    width: 100%;
    height: 738px;
  }

  .select-city {
    width: 100%;
    height: 56px;
    margin-bottom: 28px;
  }

  .select-city__head {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 0 30px 0 14px;
    background: var(--white);
    border: 2px solid rgba(29, 29, 29, 0.2);
  }

  .select-city__head:hover {
    border: 2px solid rgba(29, 29, 29, 0.2);
    transition: border 150ms ease-out;
    -webkit-transition: border 150ms ease-out;
    -moz-transition: border 150ms ease-out;
    -ms-transition: border 150ms ease-out;
    -o-transition: border 150ms ease-out;
  }

  .select-city__head::after {
    width: 12px;
    height: 8px;
    right: 20px;
  }

  .select-city__label {
    font-size: 18px;
    line-height: 100%;
  }

  .select-city__body {
    top: calc(100% + 8px);
    box-shadow: 0px 4px 16px rgb(0 0 0 / 25%);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  .selectbox._active .select-city__body {
    height: 448px;
  }

  .select-city__body__content {
    padding: 24px 14px 24px;
  }

  .select-city__list::-webkit-scrollbar {
    cursor: grab !important;
    width: 4px;
  }

  .select-city__list::-webkit-scrollbar-thumb {
    cursor: grab !important;
    background-color: rgb(0 0 0 / 30%);
    background: rgba(29, 29, 29, 0.2);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }

  .select-city__item__country:not(:last-child) {
    margin-bottom: 24px;
  }

  .select-city__item__country-name {
    font-size: 12px;
    line-height: 200%;
    margin-bottom: 4px;
  }

  .select-city__item__country__city:not(:last-child) {
    margin-bottom: 4px;
  }

  .select-city__item__country__city {
    font-size: 18px;
    line-height: 133%;
  }

  .contacts-page__partners {
    width: 100%;
    overflow-y: auto;
    flex-grow: 1;
    padding: 0;
    max-height: unset;
  }

  .contacts-page__partners._active {
    margin-top: 0;
    padding: 0;
    border-radius: 0;
  }

  .contacts-page__partners ul {
    max-width: 264px;
  }

  .contacts-page__partner:not(:last-child) {
    margin-bottom: 32px;
  }

  .contacts-page__partner {
    transition: opacity 150ms ease-out;
    cursor: pointer;
    opacity: 1;
  }
  .find_ajax_city_partner:has(.contacts-page__partner:hover) .contacts-page__partner{
    opacity: 0.5;
  }
  .find_ajax_city_partner:has(.contacts-page__partner:hover) .contacts-page__partner:hover{
    opacity: 1;
  }
  

  .contacts-page__partner__name {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 4px;
  }

  .contacts-page__partner__name svg {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    margin-right: 8px;
  }

  .contacts-page__partner__address {
    font-size: 14px;
    line-height: 150%;
  }

  .contacts-page__partner a {
    font-size: 14px;
    line-height: 150%;
    text-decoration: none;
  }

  .contacts-page__partner a:hover {
    color: #2f80ed;
    text-decoration: underline;
  }

  .contacts-page__partner__fullAddress,
  .contacts-page__partnerTel,
  .contacts-page__partnerHref {
    font-size: 14px;
    line-height: 150%;
  }

  .info-block__item {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-bottom: 26px;
  }

  .info-block__icon {
    padding: 0 11px 0 13px;
    display: flex;
    align-items: center;
  }

  .info-block__icon svg {
    width: 24px;
    height: 24px;
  }

  .info-block__column {
    padding: 16px 30px 16px 16px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .info-block__text {
    font-size: 18px;
    line-height: 150%;
    max-width: 510px;
  }

  .info-block__text.ad_style {
      max-width: 100%;
  }

    .info-block__text.ad_style h3 {
        margin-bottom: 10px;
        color: rgba(255, 64, 0, 1);
    }

    .info-block__text.ad_style p {
        font-size: 18px;
        line-height: 150%;
    }

  .info-block__btns {
    margin-top: 0;
    flex-shrink: 0;
    grid-column-gap: 8px;
  }

  .info-block__btn {
    font-size: 18px;
    line-height: 100%;
    padding: 20px 24px;
    cursor: pointer;
  }

  .info-block__btn:hover {
    background-color: var(--red);
    color: var(--white);
  }
  .contacts-page__content__box.black .contacts-page__content__left-block {
    background-color: var(--black-2);
  }
  .contacts-page__content__left-block {
    border-radius: 8px;
    height: 738px;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    overflow: hidden;
  }

  .contacts-page__content__filters {
    border-radius: 0;
    background-color: transparent;
    border-bottom: 1px solid #d2d2d2;
    padding: 0 0 28px;
  }

  .contacts-filters__list {
    margin-bottom: 24px;
  }

  .contacts-filters__list.demo {
    margin-bottom: 16px;
  }

  .item-radiobtn:not(:last-child),
  .item-checkbox:not(:last-child) {
    margin-bottom: 8px;
  }

  .item-radiobtn label,
  .item-checkbox label {
    font-size: 16px;
    line-height: 150%;
    padding-left: 24px;
  }

  .item-radiobtn__icon,
  .item-checkbox__icon {
    width: 16px;
    height: 16px;
  }

  .contacts-filter-item__label {
    font-size: 16px;
    line-height: 150%;
  }

  .item-checkbox__icon {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }

  .item-checkbox__icon::after {
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
  }

  .item-radiobtn input:checked + .item-radiobtn__icon::after,
  .item-checkbox input:checked + .item-checkbox__icon::after {
    width: 8px;
    height: 8px;
  }

  .item-checkbox__icon.checkmark::after {
    width: 8px;
    height: 6px;
  }

  .item-checkbox input:checked + .item-checkbox__icon.checkmark::after {
    width: 8px;
    height: 6px;
  }

  .contacts-filters {
    margin-bottom: 0;
  }

  .item-checkbox__icon.checkmark::after {
    background-image: url("../img/promo/checkmark-black.svg");
  }
  .contacts-page__content__box.black .item-checkbox__icon.checkmark::after {
    background-image: url("../img/promo/checkmark-white.svg");
  }
  

  .contacts-filters .item-radiobtn label,
  .contacts-filters .item-checkbox label {
    color: var(--black);
  }

  .contacts-filters__item .contacts-filter-item__label svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-basis: 24px;
    margin-right: 4px;
  }

  .item-radiobtn input:checked + .item-radiobtn__icon,
  .item-checkbox input:checked + .item-checkbox__icon {
    border: 1.5px solid rgba(0, 0, 0, 1);
  }

  .contacts-filters .item-radiobtn input:checked + .item-radiobtn__icon,
  .contacts-filters .item-checkbox input:checked + .item-checkbox__icon {
    border: 1.5px solid var(--black);
  }

  .company-numbers__container>.info-block__item .info-block__column {
    flex-direction: row;
  }
}

/* ------------------------------- contacts-page END ---------------------------------------- */

/* ---------------------  products-equipment  -------------------- */

.products-equipment {
  margin-bottom: 20rem;
}

.products-equipment__title h2 {
  text-align: center;
}

.products-equipment__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  text-decoration: none;
}

.products-equipment__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 6.4rem;
}

.make-order__form {
  display: none;
}

.products-equipment-info {
  margin-bottom: 1.6rem;
}

.products-equipment-info__row {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.products-equipment-info__label {
  font-family: var(--futuraPT);
  font-size: 3.2rem;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.products-equipment-info__label.uppercase {
  text-transform: uppercase;
}

.products-equipment-info__icon svg {
  display: block;
  width: 1.1rem;
  height: 2.5rem;
}

.products-equipment-info__benefits {
  font-family: var(--futuraPT);
  font-size: 3.2rem;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: 3.2rem;
}

.products-equipment-info__benefit span {
  color: var(--red);
}

.products-equipment-info__graphic svg {
  display: block;
  width: 34.2rem;
  height: 11rem;
}

.products-equipment-info__graphic svg path {
  opacity: 0.2;
  fill: #a6a6a6;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.products-equipment-info__graphic svg path._active {
  opacity: 1;
  fill: var(--red);
}

.products-equipment__img {
  border: 0;
}

.products-equipment__box {
  margin: 0 2.4rem 2.4rem;
}

.products-equipment p {
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .products-equipment .container {
    margin: 0 auto;
    width: 984px;
  }
}

@media screen and (min-width: 1024px) {
  .products-equipment {
    margin-bottom: 240px;
  }

  .products-equipment__list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
  }

  .make-order__form {
    display: block;
  }

  .make-order .products-equipment__btn {
    display: none;
  }

  .make-order .products-equipment__img {
    pointer-events: none;
  }

  .products-equipment__col {
    display: flex;
    flex-direction: column;
  }

  .products-equipment__item {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .products-equipment-info {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }

  .products-equipment-info__row {
    margin-bottom: 8px;
    gap: 12px;
  }

  .products-equipment-info__label {
    font-size: 32px;
    line-height: 100%;
    gap: 6px;
  }

  .products-equipment-info__icon svg {
    width: 11px;
    height: 25px;
  }

  .products-equipment-info__benefits {
    font-size: 32px;
    line-height: 100%;
    margin-top: 32px;
  }

  .products-equipment-info__graphic svg {
    width: 312px;
    height: 100px;
  }

  .products-equipment__box {
    margin: auto 24px 40px;
  }

  .products-equipment__img {
    height: 320px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
}

/* ---------------------  products-equipment  -------------------- */

/* ----------------------  company-numbers  ------------------- */

.company-numbers {
  margin-bottom: 10rem;
  position: relative;
}

.company-numbers::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -27.4rem;
  left: 0;
  right: 0;
  height: 54.2rem;
}

.company-numbers + section {
  position: relative;
  z-index: 2;
}

.company-numbers__container {
  padding: 7rem 1.6rem 0;
}

.company-numbers__content {
  position: relative;
  z-index: 2;
}

.company-numbers__title {
  margin: 0 0 3rem;
}

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

.company-numbers-item {
  min-height: 17.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.company-numbers-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 10.2rem;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 1.4rem;
  right: 0;
  opacity: 0;
}

.company-numbers-item:nth-child(odd)::after {
  opacity: 1;
}

.company-numbers-item__number {
  font-family: var(--futuraPT);
  font-size: 4.8rem;
  line-height: 88.7%;
  font-weight: 450;
  color: var(--red);
  margin-bottom: 1.2rem;
}

.company-numbers-item__value {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 140%;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 12.4rem;
  min-height: 5rem;
}

.company-numbers__map svg {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1280px) {
  .company-numbers__container {
    padding: 0;
  }

  .company-numbers__title {
    text-align: center;
    margin-bottom: 124px;
  }

  .company-numbers__list {
    grid-template-columns: 1fr 340px 1fr 340px;
    margin-bottom: 40px;
  }

  .company-numbers-item {
    min-height: unset;
    padding: 13px 0;
    justify-content: start;
  }

  .company-numbers-item::after {
    height: unset;
    top: 0;
    bottom: 0;
  }

  .company-numbers-item:nth-child(odd)::after {
    opacity: 0;
  }

  .company-numbers-item:not(:last-child)::after {
    opacity: 1;
  }

  .company-numbers-item__number {
    font-size: 96px;
    line-height: 88.7%;
    margin-bottom: 0;
  }

  .company-numbers-item__value {
    font-size: 20px;
    line-height: 140%;
    min-height: unset;
  }
}

/* ----------------------  company-numbers  ------------------- */

/* -------------------------------  become-partner ----------------------------- */

.become-partner {
  padding: 7.2rem 0 1.6rem;
  background: linear-gradient(
    180deg,
    #030000 0%,
    #3b0600 24.16%,
    #821904 54.17%,
    #7a7476 73.96%,
    #312f31 100%
  );
  margin-bottom: 5.5rem;
}

.become-partner .become-partner__container {
  background: none;
  border-radius: initial;
  position: initial;
  overflow: initial;
}

.become-partner__title {
margin-bottom: 2.4rem;
}

.become-partner__form {
max-width: 31.2rem;
margin: 0 auto;
}

.become-partner-form__item {
margin-bottom: 2.4rem;
background: linear-gradient(0deg, #1d1d1d, #1d1d1d),
  linear-gradient(0deg, rgba(29, 29, 29, 0.2), rgba(29, 29, 29, 0.2));
}

.become-partner-form input,
.become-partner-form textarea {
color: var(--white);
padding: 0 1.6rem;
}

.become-partner-form .form-label {
color: rgba(255, 255, 255, 0.5);
padding-left: 1.6rem;
padding-right: 1.6rem;
}

.become-partner-form .iti + label {
padding-left: 4.2rem;
}

.become-partner-form__btn {
display: flex;
justify-content: center;
}

.become-partner-form__btn .btn {
font-size: 1.8rem;
line-height: 150%;
padding: 1.4rem 2.4rem;
border-radius: 4.8rem;
-webkit-border-radius: 4.8rem;
-moz-border-radius: 4.8rem;
-ms-border-radius: 4.8rem;
-o-border-radius: 4.8rem;
}

.contact-us-form__mail {
font-size: 1.4rem;
line-height: 100%;
color: var(--white);
opacity: 0.5;
display: none;
}

.contact-us-form__mail a {
text-decoration: underline;
}

.contact-us-form__mail a:hover {
text-decoration: none;
}

.become-partner-form .agree {
font-size: 0.65rem;
margin-bottom: 1.5rem;
margin-top: -1rem;
color: rgb(255, 255, 255);
opacity: 0.5;
}
.become-partner-form .agree > a {
font-size:0.65rem;
text-decoration: underline;
}

@media screen and (min-width: 1280px) {
.become-partner {
  background: unset;
  padding: 0;
  margin-bottom: 216px;
}

.become-partner .become-partner__container {
  background-image: url(../img/promo/become-partner-min_thunder.webp);
  background-position: -16px center;
  background-repeat: no-repeat;
  /* background-size: cover; */
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 0 30px 20px;
}

.become-partner__title {
  margin: 0 0 50px;
}

.become-partner__content {
  max-width: 615px;
  margin-left: auto;
}

.become-partner__form {
  max-width: 100%;
}

.become-partner-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
}

.become-partner-form__item {
  margin-bottom: 24px;
}

.become-partner-form .textarea-line {
  height: 173px;
}

.become-partner-form textarea {
  height: 140px;
  bottom: 0;
}

.become-partner-form .form-label {
  padding-left: 16px;
  padding-right: 16px;
}

.become-partner-form .iti + label {
  padding-left: 46px;
}

.become-partner-form input,
.become-partner-form textarea {
  padding: 0 16px;
}

.become-partner-form textarea {
  padding: 0 16px 10px;
}

.become-partner-form__btn {
  justify-content: end;
}

.become-partner-form__btn .btn {
  font-size: 18px;
  line-height: 100%;
  padding: 20px 24px;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  -ms-border-radius: 28px;
  -o-border-radius: 28px;
}

.become-partner-form__last-row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.contact-us-form__mail {
  font-size: 18px;
  line-height: 100%;
  display: block;
}
}

/* -------------------------------  become-partner ----------------------------- */

/* ---------------------------   footer    ----------------- */

.footer {
  background-color: var(--black);
}

.footer__container {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.2rem;
}

.footer__logo svg {
  display: block;
  width: 7.6rem;
  height: 2.4rem;
}

.footer__copy,
.footer__copy a {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.footer__copy a {
  display: inline;
  text-decoration: underline;
}

.footer__icon {
  display: none;
}

@media screen and (min-width: 1280px) {
  .footer__container {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer__logo {
    margin-bottom: 0;
  }

  .footer__logo svg {
    width: 76px;
    height: 24px;
  }

  .footer__copy {
    width: 648px;
  }

  .footer__copy,
  .footer__copy a {
    font-size: 14px;
    line-height: 150%;
  }

  .footer__icon {
    display: block;
  }

  .footer__icon svg {
    display: block;
    width: 24px;
    height: 24px;
  }
}

/* ---------------------------   footer    ----------------- */

/* ------------------- make-request ------------------------ */

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-out;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  overflow-y: auto;
  overflow-x: clip;
  padding: 3rem 0 5rem;
}

.popup._active {
  opacity: 1;
  visibility: visible;
}

.popup__container {
  background-color: #fff;
  border-radius: 1.6rem;
  -webkit-border-radius: 1.6rem;
  -moz-border-radius: 1.6rem;
  -ms-border-radius: 1.6rem;
  -o-border-radius: 1.6rem;
  padding: 3.2rem 1.6rem;
  margin: 0 1.6rem;
  color: var(--black);
}

.make-request__title {
  font-family: var(--futuraPT);
  font-size: 3.2rem;
  line-height: 88.7%;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.2rem;
  text-align: center;
}

.make-request__text {
  margin-bottom: 2.4rem;
  font-family: var(--openSans);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--black);
}

.make-request__timer {
  margin-bottom: 4rem;
}

.make-request__timer__body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.make-request__timer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.make-request__timer__item__numbers {
  display: flex;
  align-items: center;
}

.make-request__timer__item__label {
  color: rgba(29, 29, 29, 0.5);
  position: absolute;
  top: 100%;
  margin-top: 0.5rem;
}

.make-request__timer__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 4.3rem;
  background: #d9d9d9;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  font-family: var(--futuraPT);
  font-size: 3.2rem;
  line-height: 88.7%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
}

.make-request__timer__item span:first-child {
  margin-right: 0.2rem;
}

.make-request__timer__dots {
  margin: 0 0.2rem;
  font-family: var(--futuraPT);
  font-size: 2.4rem;
  line-height: 88.7%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
}

.request-form__row {
  margin-bottom: 1.2rem;
}

.request-form__line {
  margin-bottom: 2.4rem;
}

.make-request__btns {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 2.4rem;
}

.make-request__btn.close {
  color: rgba(29, 29, 29, 0.6);
  margin-right: 2rem;
}

.make-request__btn span {
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 100%;
}

.request-form__btn .btn {
  font-size: 1.8rem;
  line-height: 150%;
  padding: 1.4rem 2.4rem;
}

.list-icons {
  position: fixed;
  z-index: 120;
  bottom: 2rem;
  right: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.list-icons.cookies-active {
  bottom: 10rem;
}

.get_icon_bonus {
  position: relative;
  cursor: pointer;
  width: 6.4rem;
  height: 6.4rem;
  background: #ff4000;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  animation: anim-bonus 2s linear 0s infinite;
  -webkit-animation: anim-bonus 2s linear 0s infinite;
}

.get_icon_bonus._active {
  animation: none;
  -webkit-animation: none;
}

.get_icon_bonus__body {
  width: 100%;
  height: 100%;
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 150ms ease-out;
  -webkit-transition: opacity 150ms ease-out;
  -moz-transition: opacity 150ms ease-out;
  -ms-transition: opacity 150ms ease-out;
  -o-transition: opacity 150ms ease-out;
}

.get_icon_bonus._active .get_icon_bonus__body {
  opacity: 0;
}

.get_icon_bonus__cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 150ms ease-out;
  -webkit-transition: opacity 150ms ease-out;
  -moz-transition: opacity 150ms ease-out;
  -ms-transition: opacity 150ms ease-out;
  -o-transition: opacity 150ms ease-out;
}

.get_icon_bonus._active .get_icon_bonus__cross {
  opacity: 1;
}

.get_icon_bonus__cross svg {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}

.get_icon_bonus__svg-icon {
  margin-bottom: 0.6rem;
}

.get_icon_bonus__svg-icon svg {
  display: block;
  width: 2.1rem;
  height: 2.2rem;
}

.get_icon_bonus__label {
  font-family: var(--futuraPT);
  font-size: 2.2rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

@keyframes anim-bonus {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  3% {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
  }

  6% {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
  }

  9% {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
  }

  12% {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
  }

  15% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }
}

.bonus-form__row {
  margin-bottom: 2.4rem;
}

.make-request .contact-us-form__btn button {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 100%;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--white);
  padding: 1.4rem 2.4rem;
  background: var(--black);
  border-radius: 2.8rem;
  -webkit-border-radius: 2.8rem;
  -moz-border-radius: 2.8rem;
  -ms-border-radius: 2.8rem;
  -o-border-radius: 2.8rem;
}

.m-about-product {
  margin: 3.2rem 0;
  display: none;
}

.m-about-product__row {
  display: grid;
  grid-template-columns: 5.6rem 16.4rem 1fr;
  grid-gap: 0.5rem;
  align-items: center;
}

.m-about-product__img {
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  overflow: hidden;
  height: 5.6rem;
  background-color: var(--black-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-about-product__img img {
  display: block;
  width: 100%;
}

.m-about-product__price,
.m-about-product__name {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 150%;
}

.m-about-product__price {
  text-align: right;
}

.m-about-product__price .icon-ruble:after {
  font-size: 1rem;
}

@media screen and (min-width: 1280px) {
  .popup {
    padding: 50px 0;
    display: flex;
  }

  .popup__container {
    max-height: calc(100vh - 20%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    padding: 40px;
    margin: 0;
  }

  .make-request__container {
    max-width: 984px;
  }

  .make-request__box {
    display: flex;
    justify-content: space-between;
  }

  .make-request__title {
    font-size: 48px;
    line-height: 88.7%;
    margin-bottom: 24px;
    text-align: left;
  }

  .make-request__text {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 32px;
    max-width: 598px;
  }

  .make-request__timer {
    margin-bottom: 0;
  }

  .make-request__timer__item__label {
    margin-top: 10px;
  }

  .make-request__timer__item span {
    width: 43px;
    height: 67px;
    font-size: 48px;
    line-height: 88.7%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  .make-request__timer__item span:first-child {
    margin-right: 2px;
  }

  .make-request__timer__dots {
    font-size: 48px;
    line-height: 88.7%;
    margin: 0 2px;
  }

  .request-form__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    margin-bottom: 24px;
  }

  .request-form__textarea {
    margin-bottom: 24px;
  }

  .list-icons {
    bottom: 8%;
    right: 40px;
  }

  .list-icons.cookies-active {
    bottom: 8%;
  }

  .get_icon_bonus {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  .get_icon_bonus__cross svg {
    width: 22px;
    height: 22px;
  }

  .get_icon_bonus__body {
    padding-top: 12px;
  }

  .get_icon_bonus__svg-icon {
    margin-bottom: 6px;
  }

  .get_icon_bonus__svg-icon svg {
    width: 27px;
    height: 26px;
  }

  .get_icon_bonus__label {
    font-size: 26px;
    line-height: 100%;
  }

  .bonus-form__row {
    margin-bottom: 24px;
  }

  .request-form__line {
    margin-bottom: 0;
  }

  .make-request .contact-us-form__btn button {
    font-size: 18px;
    line-height: 100%;
    padding: 19px 24px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    cursor: pointer;
  }

  .make-request__btn.close {
    margin-right: 20px;
  }

  .request-form__btn .btn {
    font-size: 18px;
    line-height: 150%;
    padding: 14px 24px;
    border-radius: 48px;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    -ms-border-radius: 48px;
    -o-border-radius: 48px;
  }

  .make-request__btn span {
    font-size: 16px;
    line-height: 100%;
  }

  .m-about-product {
    margin: 32px 0;
  }

  .m-about-product__row {
    grid-template-columns: 56px 300px 1fr;
    grid-gap: 24px;
  }

  .m-about-product__img {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    height: 56px;
  }

  .m-about-product__price,
  .m-about-product__name {
    font-size: 18px;
    line-height: 150%;
  }

  .m-about-product__price .icon-ruble:after {
    font-size: 14px;
  }

  .make-request__btns {
    margin-top: 24px;
  }
}

/* --------------------------- make-request END ------------------------- */

/* ------------------------------ popup END ------------------------ */

/* ----------------------- socials-list -------------------- */

.socials-list:not(:last-child) {
  margin-bottom: 2rem;
}

.socials-list__container {
  position: relative;
  height: 5.6rem;
  width: 5.6rem;
}

.socials-list__item {
  width: 5.6rem;
  height: 5.6rem;
  border: 1px solid #f5f5f7;
  background: #a5a5a5;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
  transition: all 150ms ease-out;
  -webkit-transition: all 150ms ease-out;
  -moz-transition: all 150ms ease-out;
  -ms-transition: all 150ms ease-out;
  -o-transition: all 150ms ease-out;
}

.socials-list__item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.socials-list__item svg {
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  cursor: pointer;
}

.socials-list__item.tlrm svg {
  width: 2.8rem;
  height: 2.4rem;
  transform: translate(-1px, 1px);
  -webkit-transform: translate(-1px, 1px);
  -moz-transform: translate(-1px, 1px);
  -ms-transform: translate(-1px, 1px);
  -o-transform: translate(-1px, 1px);
}

.socials-list__item.wspp svg {
  width: 2.9rem;
  height: 2.9rem;
  transform: translate(0.5px, -0.5px);
  -webkit-transform: translate(0.5px, -0.5px);
  -moz-transform: translate(0.5px, -0.5px);
  -ms-transform: translate(0.5px, -0.5px);
  -o-transform: translate(0.5px, -0.5px);
}

.socials-list__item.tel {
  opacity: 1;
  visibility: visible;
}

.socials-list__item.tel svg {
  width: 3.1rem;
  height: 2.5rem;
  transform: translate(1px, 2px);
  -webkit-transform: translate(1px, 2px);
  -moz-transform: translate(1px, 2px);
  -ms-transform: translate(1px, 2px);
  -o-transform: translate(1px, 2px);
}

.socials-list__item.vk svg {
  width: 2.9rem;
  height: 1.6rem;
}

.socials-list__item.message svg {
  width: 3.2rem;
  height: 2.4rem;
}

.socials-list__item.main-icon .messegers {
  width: 2.9rem;
  height: 2.9rem;
  transform: translate(0.5px, -0.5px);
  -webkit-transform: translate(0.5px, -0.5px);
  -moz-transform: translate(0.5px, -0.5px);
  -ms-transform: translate(0.5px, -0.5px);
  -o-transform: translate(0.5px, -0.5px);
}

.socials-list._active .messegers {
  opacity: 0;
}

.socials-list__item svg.close {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.4rem;
  height: 1.4rem;
}

.socials-list__item.main-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials-list__item {
  display: block;
  position: absolute;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-out;
  -webkit-transition: all 150ms ease-out;
  -moz-transition: all 150ms ease-out;
  -ms-transition: all 150ms ease-out;
  -o-transition: all 150ms ease-out;
}

.socials-list._active .socials-list__item {
  opacity: 1;
  visibility: visible;
}

.socials-list__item.main-icon {
  z-index: 4;
  opacity: 1;
  visibility: visible;
}

.socials-list__item.main-icon .small-circle {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  width: 2rem;
  height: 2rem;
  transition: all 150ms ease-out;
  -webkit-transition: all 150ms ease-out;
  -moz-transition: all 150ms ease-out;
  -ms-transition: all 150ms ease-out;
  -o-transition: all 150ms ease-out;
}

.socials-list._active .small-circle {
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .socials-list:not(:last-child) {
    margin-bottom: 20px;
  }

  .socials-list__container {
    position: relative;
    height: 56px;
    width: 65px;
  }

  .socials-list__item {
    width: 56px;
    height: 56px;
  }

  .socials-list__item:hover {
    background: #252525;
  }

  .socials-list__item svg {
    width: 56px;
    height: 56px;
  }

  .socials-list__item.main-icon svg {
    width: 56px;
    height: 56px;
  }

  .socials-list__item.tel {
    display: none;
  }

  .socials-list__item.main-icon .messegers {
    width: 29px;
    height: 29px;
    transform: translate(0, -1px);
    -webkit-transform: translate(0, -1px);
    -moz-transform: translate(0, -1px);
    -ms-transform: translate(0, -1px);
    -o-transform: translate(0, -1px);
  }

  .socials-list__item.main-icon .small-circle {
    width: 20px;
    height: 20px;
    top: -2px;
    right: -2px;
  }

  .socials-list__item svg.close {
    width: 20px;
    height: 20px;
  }

  .socials-list__item.tlrm svg {
    width: 28px;
    height: 24px;
  }

  .socials-list__item.vk svg {
    width: 29px;
    height: 16px;
    transform: translate(-1px, 1px);
    -webkit-transform: translate(-1px, 1px);
    -moz-transform: translate(-1px, 1px);
    -ms-transform: translate(-1px, 1px);
    -o-transform: translate(-1px, 1px);
  }

  .socials-list__item.wspp svg {
    width: 29px;
    height: 29px;
    transform: translate(0, -1px);
    -webkit-transform: translate(0, -1px);
    -moz-transform: translate(0, -1px);
    -ms-transform: translate(0, -1px);
    -o-transform: translate(0, -1px);
  }

  .socials-list__item.message svg {
    width: 32px;
    height: 24px;
  }
}

/* ----------------------- socials-list END -------------------- */

.tax-ad {
  position: absolute;
  right: 0;
  margin-top: 52px;
  letter-spacing: -0.02em;
  opacity: 0.8;
  text-align: end;
  font-size: 1rem;
}
@media screen and (max-width: 1280px) {
  .tax-ad {
    margin-top: 87px;
    font-size: 1rem;
  }

  .first-screen__btns-row {}
}

@media screen and (max-width: 700px) {
  .tax-ad {
    margin-top: 47px;
  }
}

/* basic btn */
.basic-btn {
  padding: 1.6rem 2.4rem;
  border-radius: 4.8rem;
  background-color: rgba(255, 64, 0, 1);
  color: var(--white);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-family: var(--openSans);
  cursor: pointer;
  width: fit-content;
}

@media screen and (min-width: 1024px) {
  .basic-btn {
    padding: 19px 24px;
    font-size: 18px;
    line-height: 1;
  }
}
/* basic btn */

/* event banner */

.event-banner {
  display: flex;
  flex-flow: column;
  align-items: flex-start;

  padding: 2.4rem 1.6rem;

  border-radius: 0.8rem;

  background-image: url("/img/thor-event-bg-mob.png");
  background-size: 34.3rem 86rem;
  background-position: top center;
  background-repeat: no-repeat;

  margin: 0 1.6rem;
  margin-bottom: 20rem;
}

.event-banner--without-bg {
  background-image: none;
  background-color: var(--black);
}
.event-banner--ru {
  height: 58rem;
  position: relative;
  padding: 2.4rem;
  overflow: hidden;
}
.event-banner__title{
  font-size: 3.6rem;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--red, #ff4000);
  font-family: var(--futuraPT);
  font-weight: 450;
  margin-bottom: .8rem;
}
.event-banner__img {
  width: 31.1rem;
  height: 17.4rem;
  pointer-events: none;

  margin-bottom: 1.6rem;
}
.event-banner__img--ru {
  position: absolute;
  width: 34.9rem;
  height: 33.2rem;

  bottom: 0;
  left: 0;
  margin-bottom: 0;
}

.event-banner__text-container {
  display: flex;
  flex-flow: column;
  gap: 1.6rem;

  margin-bottom: 3.2rem;
}
.event-banner__text-container p {
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.event-banner__text-container h3 {
  text-align: left;
}
.event-banner__text-container h4 {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: var(--futuraPT);
  font-weight: 450;
  text-transform: uppercase;
}
.event-banner__text-container h4 strong {
  font-weight: 450;
  color: var(--red);
}
.event-banner__svg-icon{
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 2.4rem;
}
.event-banner__btn {
  line-height: 1;
  padding: 1.9rem 2.4rem;
}
.event-banner__white-btn {
  background-color: var(--white);
  color: var(--black);
}
.event-banner__white-btn a{
  color: var(--black);
}
.event-banner__white-btn:hover{
  background-color: var(--red, #FF4000);
}
.event-banner__white-btn:hover a{
  color: var(--white);
}
@media screen and (min-width: 1280px) {
  .event-banner {
    padding: 64px;
    position: relative;

    align-items: start;
    border-radius: 8px;

    background-image: url("/img/thor-event-bg.png");
    background-size: cover;

    margin: 0 auto;
    width: 1170px;
    margin-bottom: 260px;
  }

  .event-banner__text-container {
    gap: 16px;
    margin-bottom: 24px;
    width: 480px;
  }
  .event-banner__text-container p {
    font-size: 20px;
  }
  .event-banner__text-container h3 {
    font-size: 68px;
  }
  .event-banner__text-container h4 {
    font-size: 40px;
  }
  .event-banner__img {
    width: 413px;
    height: 232px;
    margin-bottom: unset;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 64px;
  }
  .event-banner__btn {
    font-size: 20px;
    padding: 16px 24px;
    line-height: 1.2;
  }

  .event-banner__svg-icon{
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
  .event-banner--without-bg {
    background-image: none;
  }
  .event-banner--ru {
    height: unset;
  }
.event-banner__title{
    font-size: 40px;
    line-height: 0.9;
  }
.event-banner--ru .event-banner__text-container {
    margin-bottom: 36px;
    width: 505px;
  }
.event-banner__img--ru {
    transform: unset;
    width: 686px;
    height: 493px;
    
    top: unset;
    bottom: 0;
    left: unset;
    right: 0;
    
  }
.event-banner__img--ru img {
    object-fit: cover;
    object-position: right;
  }
.event-banner--ru .event-banner__svg-icon {
    margin-bottom: 36px;
  }
}
/* event banner */

/* Карта */
.ad-contacts {
  margin-bottom: 16rem;
}
/* Карта */

@media screen and (max-width: 768px) {
  .become-partner-form .agree {font-size: 0.9rem;}
  .become-partner-form .agree > a {font-size:0.9rem;}
}

.shop-list__item__plus-icon {
  padding: 5px;
}