* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
:active {
  outline: none;
}

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

input,
textarea,
button {
  font-family: inherit;
  color: inherit;
}

input::-ms-clear {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

a:active {
  color: black;
}

ul,
li {
  list-style: none;
  padding: 0px 0px 0px 0px;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

@font-face {
  font-family: "ArialRegular";
  src: url("../fonts/ArialRegular.woff") format("woff");
}

@font-face {
  font-family: "ArialBold";
  src: url("../fonts/ArialBold.woff") format("woff");
}

@font-face {
  font-family: "FuturaBookC";
  src: url("../fonts/FuturaBookCRegular.woff") format("woff");
}

@font-face {
  font-family: "FuturaDemiC";
  src: url("../fonts/FuturaDemiCRegular.woff") format("woff");
}

@font-face {
  font-family: "FuturaLT";
  src: url("../fonts/futuralt_bold.ttf") format("truetype");
}

body {
  background: #0b0b0b;
  color: #fff;
  font-family: "FuturaBookC";
  font-weight: 400;
  overflow-x: hidden;
  font-size: 18px;
}

._container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0px 20px;
}

.text-red {
  color: #ed1c24;
}

.semi-bold {
  font-weight: 600;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  overflow-x: clip;
}

.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  position: relative;
  z-index: 1000;
}

.header__btn {
  display: inline-flex;
  padding: 16px 20px;
  justify-content: center;
  align-items: center;
  background: #ed1c24;
  font-family: "ArialRegular";
  font-size: 18px;
  transition: background 0.3s ease 0s;
}

.header__btn:hover {
  background: #be181e;
}

.header__btn:target {
  color: #fff;
}

.header__btn-mobile {
  display: none;
  padding: 16px 20px;
  justify-content: center;
  align-items: center;
  background: #ed1c24;
  font-family: "ArialRegular";
  font-size: 18px;
}

.header__burger {
  display: none;
  position: relative;
  z-index: 1000;
}

.menu {
  padding-right: 75px;
}

.menu__list {
  display: flex;
  gap: 30px;
}

.menu__link {
  font-size: 18px;
  font-family: "ArialRegular";
}

@media (max-width: 1000px) {
  .menu {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .menu {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0px;
    background: #0b0b0b;
    transform: translateX(100%);
    transition: all 0.3s linear 0s;
  }
  .menu.active {
    transform: translateX(0%);
    opacity: 1;
  }
  .menu__list {
    flex-direction: column;
    text-align: center;
  }
  .header {
    background: #0b0b0b;
  }
  .header__logo img {
    width: calc(83px + 37 * ((100vw - 360px) / (1560)));
  }
  .header__logo svg {
    width: calc(83px + 37 * ((100vw - 360px) / (1560)));
  }
  .header__btn {
    padding: 8px 15px;
  }
  .header__btn-mobile {
    display: inline-flex;
  }
  .header__burger {
    display: flex;
    width: 20px;
    height: 20px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
  }
  .header__burger.active span:nth-child(2) {
    opacity: 0;
    display: none;
  }
  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
  }
  .header__burger span {
    width: 100%;
    height: 1px;
    background: #fff;
    border-radius: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease 0s;
  }
}

.home {
  width: 100%;
  height: 100%;
  margin: 93px 0 0 0;
  padding-bottom: 225px;
  position: relative;
}

.home__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  height: 755px;
  overflow: hidden;
}

.home__bg-mobile {
  display: none;
}

.home__body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
}

.home__item {
  position: absolute;
  left: -344px;
  top: 100px;
}

.home__empty {
  width: 45%;
  height: 100%;
  flex-shrink: 0;
}

.home__content {
  width: 600px;
  margin-top: 165px;
}

.home__subtitle {
  margin-bottom: 20px;
  font-family: "FuturaLT";
  font-size: calc(18px + 6 * ((100vw - 360px) / (1560)));
  font-weight: 700;
  text-transform: uppercase;
}

.home__title {
  font-family: "FuturaLT";
  font-size: calc(32px + 16 * ((100vw - 360px) / (1560)));
  text-transform: uppercase;
}

.home__content-item {
  display: flex;
  gap: calc(24px + 8 * ((100vw - 360px) / (1560)));
  margin: 32px 0;
  align-items: center;
}

.home__btn {
  display: flex;
  width: fit-content;
  height: 88px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  background: #ed1c24;
  color: #fff;
  font-family: "FuturaLT";
  font-size: calc(32px + 16 * ((100vw - 360px) / (1560)));
  font-weight: 700;
  letter-spacing: -2.88px;
  flex-shrink: 0;
}

.home__content-item__text {
  font-family: "FuturaBookC";
  font-size: calc(18px + 18 * ((100vw - 360px) / (1560)));
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.home__content-item__text span {
  font-family: "FuturaDemiC";
  font-size: inherit;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.home__text {
  font-family: "FuturaBookC";
  font-size: calc(14px + 4 * ((100vw - 360px) / (1560)));
}

.home__body-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .home__item {
    left: -245px;
  }
  .home__item img {
    height: 666px;
  }
}

@media (max-width: 768px) {
  .home {
    margin-top: 63px;
    padding-top: 60px;
    padding-bottom: 150px;
  }
  .home__body {
    display: none;
  }
  .home__body-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .home__content-mobile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .home__empty-mobile {
    height: 290px;
  }
  .home__img-mobile {
    position: absolute;
    top: 140px;
    left: -110px;
    left: calc(-150px + 40 * (100vw - 600px) / 168);
    z-index: -1;
  }
  .home__title {
    text-align: left;
  }
  .home__btn {
    padding: 16px 20px;
    height: auto;
  }
  .home__content-item__text {
    margin: 24px 0 18px 0;
    text-transform: uppercase;
  }
}

@media (max-width: 600px) {
  .home__img-mobile {
    left: calc(-280px + 130 * (100vw - 360px) / 240);
  }
  .home__subtitle {
    width: 100%;
    text-align: left;
  }
  .home__title {
    width: 100%;
  }
  .home__title span {
    font-size: 24px;
  }
}

@media (max-width: 427px) {
  .home {
    padding-bottom: 70px;
  }
  .home__empty-mobile {
    height: 300px;
  }
  .home__bg-svg {
    display: none;
  }
  .home__bg-mobile {
    display: block;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .home__empty-mobile {
    height: 270px;
  }
  .home__img-mobile {
    left: -26px;
    top: 109px;
  }
}

.clean {
  width: 100%;
  height: 100%;
  padding-top: 150px;
  overflow-x: clip;
}

.clean__body {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: space-between;
  gap: 30px;
}

.clean__body-mobile {
  display: none;
}

.clean__item {
  position: absolute;
  left: 0;
  top: 0;
}

.clean__empty {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
}

.clean__content {
  max-width: 580px;
  width: 100%;
}

.clean__title {
  font-size: calc(32px + 16 * ((100vw - 360px) / (1560)));
  text-transform: uppercase;
  font-weight: 700;
  font-family: "FuturaLT";
  line-height: normal;
}

.clean__text {
  width: 99.9%;
  font-family: "FuturaBookC";
  font-size: calc(18px + 6 * ((100vw - 360px) / (1560)));
  line-height: 145.883%;
  margin-top: calc(30px + 6 * ((100vw - 360px) / (1560)));
}

.clean__text.first {
  margin-top: calc(20px + 16 * ((100vw - 360px) / (1560)));
}

.clean__text span {
  font-family: "FuturaDemiC";
  font-size: calc(18px + 6 * ((100vw - 360px) / (1560)));
  line-height: 145.883%;
}

.clean__text span:nth-child(2) {
  line-height: 104%;
  border: 2px solid #d3b73c;
  background: linear-gradient(180deg, #ffe664 0%, #b4852c 100%);
  display: inline-flex;
  padding: 6px 10px 4px 10px;
  justify-content: center;
  align-items: center;
  margin-left: calc(5px + 20 * ((100vw - 360px) / (1560)));
}

.clean__links {
  display: flex;
  gap: calc(20px + 10 * ((100vw - 360px) / (1560)));
  width: 100%;
  padding-left: calc(15px + 85 * ((100vw - 360px) / (1560)));
  margin-top: calc(18px + 12 * ((100vw - 360px) / (1560)));
}

.clean__links.first {
  margin-top: calc(30px + 26 * ((100vw - 360px) / (1560)));
  padding-left: 0;
}

.clean__link {
  display: inline-flex;
  padding: 6px 10px 4px 10px;
  justify-content: center;
  align-items: center;
  border: 2px solid #ed1c24;
  font-family: "FuturaDemiC";
  font-size: calc(16px + 8 * ((100vw - 360px) / (1560)));
  font-weight: 600;
  line-height: 104.167%;
}

@media (max-width: 1100px) {
  .clean__item img {
    width: calc(500px + -300 * (100vw - 768px) / 1152);
  }
}

@media (max-width: 900px) {
  .clean__item img {
    width: 400px;
  }
}

@media (max-width: 768px) {
  .clean {
    padding-top: calc(60px + 90 * ((100vw - 360px) / (1560)));
  }
  .clean__body {
    display: none;
  }
  .clean__body-mobile {
    display: flex;
    justify-content: center;
  }
  .clean__img-mobile {
    margin-top: 30px;
  }
  .clean__img-mobile img {
    width: 100%;
  }
  .clean__link {
    flex-shrink: 0;
  }
  .clean__text span:nth-child(2) {
    vertical-align: text-top;
  }
}

.formula {
  margin-top: 240px;
}

.formula__container {
  max-width: 915px;
}

.formula__title {
  width: fit-content;
  margin: 0 auto;
  font-family: "FuturaLT";
  font-size: calc(32px + 4 * ((100vw - 360px) / (1560)));
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.formula__content {
  width: 100%;
  margin-top: calc(30px + 20 * ((100vw - 360px) / (1560)));
  display: flex;
  flex-direction: column;
  gap: calc(30px + 10 * ((100vw - 360px) / (1560)));
}

.formula__item {
  display: flex;
  align-items: center;
  gap: calc(5px + 25 * ((100vw - 360px) / (1560)));
  white-space: nowrap;
}

.formula__item p {
  color: #fff;
  font-size: calc(18px + 6 * ((100vw - 360px) / (1560)));
  font-style: normal;
  line-height: 145.833%;
}

.formula__item p span {
  font-family: "FuturaDemiC";
  font-size: calc(18px + 6 * ((100vw - 360px) / (1560)));
  font-style: normal;
  font-weight: 600;
  line-height: 145.833%;
}

.formula-svg-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .formula {
    margin-top: calc(60px + 180 * ((100vw - 360px) / (1560)));
  }
}

@media (max-width: 900px) {
  .formula__item {
    flex-direction: column;
  }
  .formula__item svg {
    transform: rotate(90deg);
  }
}

@media (max-width: 650px) {
  .formula__item img {
    object-fit: cover;
  }
  .formula__item svg {
    transform: rotate(0deg);
  }
  .formula-svg {
    display: none;
  }
  .formula-svg-mobile {
    display: block;
  }
}

.car {
  margin-top: calc(60px + 100 * ((100vw - 360px) / (1560)));
}

.car__body {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: flex-end;
}

.car__content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.car__content p {
  font-size: calc(18px + 6 * ((100vw - 360px) / (1560)));
  font-style: normal;
  line-height: 35px;
}

.car__content span {
  font-family: "FuturaDemiC";
  font-size: calc(24px + 12 * ((100vw - 360px) / (1560)));
  font-style: normal;
  font-weight: 600;
  margin: 8px 0;
  line-height: 35px;
}

.car__text {
  font-size: calc(18px + 6 * ((100vw - 360px) / (1560)));
  font-family: "FuturaDemiC";
  font-style: normal;
  font-weight: 600;
  margin-top: calc(26px + 20 * ((100vw - 360px) / (1560)));
  display: inline-flex;
  padding: 6px 10px 4px 10px;
  justify-content: center;
  align-items: center;
  border: 2px solid #ed1c24;
  line-height: 25px !important;
}

.car__item {
  background: url("../images/car.png") transparent 0.32px -11.33px/99.929% 102.208%
    no-repeat;
  mix-blend-mode: luminosity;
  max-width: 867px;
  width: 100%;
  height: 506px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .car__body {
    flex-direction: column-reverse;
    gap: calc(20px + 30 * ((100vw - 360px) / (1560)));
  }
  .car__content {
    position: relative;
    text-align: center;
    transform: translate(0, 0);
  }
  .car__item {
    height: calc(150px + 200 * (100vw - 360px) / 408);
    background-size: contain;
  }
}

@media (max-width: 450px) {
  .car__item {
    position: relative;
    background: none;
    height: 270px;
  }
  .car__item-mobile {
    top: 0;
    right: 0;
    position: absolute;
    width: 105%;
    background: url("../images/car-mobile.png") transparent 0.32px -11.33px/99.929%
      102.208%;
    height: 270px;
  }
  .car__content span {
    display: inline-block;
    max-width: 255px;
    width: 100%;
  }
}

.address {
  margin-top: calc(60px + 80 * ((100vw - 360px) / (1560)));
  padding-bottom: calc(89px + 48 * ((100vw - 360px) / (1560)));
}

.address__title {
  font-family: "FuturaLT";
  font-size: calc(32px + 4 * ((100vw - 360px) / (1560)));
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.address__content {
  margin-top: calc(30px + 30 * ((100vw - 360px) / (1560)));
  display: flex;
  gap: calc(30px + 10 * ((100vw - 360px) / (1560)));
  justify-content: space-between;
}

.address__item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: calc(30px + 10 * ((100vw - 360px) / (1560)));
  width: 100%;
  max-width: 405px;
}

.address__search {
  width: 100%;
  max-width: calc(100% - 28px);
  margin-left: 28px;
  border-bottom: max(0.1rem, 1px) solid #bebebe;
}

.address__search label {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 12px;
}

.address__search label input {
  text-transform: uppercase;
  width: 100%;
  padding: 12px 0 12px 12px;
  background: none;
  color: #fff;
  font-size: calc(16px + 2 * ((100vw - 360px) / (1560)));
}

.address__search label input::placeholder {
  color: #fff;
  font-size: calc(16px + 2 * ((100vw - 360px) / (1560)));
}

.address__search label span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.address__search label span svg {
  fill: #fff;
  width: 100%;
}

.address__search-mobile {
  display: none;
}

.address__addresses {
  display: flex;
  flex-direction: column;
  gap: calc(30px + 4 * ((100vw - 360px) / (1560)));
  max-width: 405px;
  padding-left: 40px;
  width: 100%;
  height: 398px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
}

.address__addresses::-webkit-scrollbar {
  width: 5px;
  background: #383838;
}

.address__addresses::-webkit-scrollbar-thumb {
  background: red;
}

.address__address {
  direction: ltr;
}

.address__address:hover {
  cursor: pointer;
}

.address__address:hover span {
  transition: all 0.3s ease 0s;
  color: #ed1c24;
}

.address__address:hover span svg path {
  stroke: #ed1c24;
  transition: all 0.3s ease 0s;
}

.address__address:hover span svg circle {
  stroke: #ed1c24;
  transition: all 0.3s ease 0s;
}

.address__address.active span {
  color: #ed1c24;
}

.address__address.active span svg path {
  stroke: #ed1c24;
}

.address__address.active span svg circle {
  stroke: #ed1c24;
}

.address__address span {
  font-family: "FuturaDemiC";
  font-size: calc(18px + 2 * ((100vw - 360px) / (1560)));
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.address__address span svg {
  width: 17px;
  height: 17px;
}

.address__address span svg path {
  stroke: #fff;
}

.address__address span svg circle {
  stroke: #fff;
}

.address__address p {
  font-size: calc(18px + 2 * ((100vw - 360px) / (1560)));
  font-style: normal;
  line-height: normal;
  margin-top: 8px;
}

.address__address p:nth-child(2) {
  margin-top: 10px;
}

.address__map {
  width: 738px;
  height: 484px;
  padding: 0;
}

.ymaps-2-1-79-search {
  display: none !important;
}

.ymaps-2-1-79-b-cluster-tabs__section::-webkit-scrollbar-thumb {
  background: red !important;
  border-left: 5px solid #fff !important;
  border-right: 5px solid #fff !important;
}

.ballonList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ballonList br {
  display: none;
}

.ballonLink {
  display: flex;
  gap: 8px;
}

.ballonLink img {
  width: 22px;
  height: 22px;
}

@media (max-width: 900px) {
  .address__content {
    flex-direction: column-reverse;
  }
  .address__search {
    display: none;
  }
  .address__search-mobile {
    display: flex;
    margin-left: 0;
    max-width: 100%;
  }
  .address__search-mobile label {
    width: 100%;
  }
  .address__map {
    width: 100%;
    height: calc(274px + 124 * (100vw - 360px) / 540);
  }
  .address__addresses {
    max-width: 100%;
  }
  .address__item {
    gap: 15px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .address__search {
    margin-left: 0;
  }
  .address__title {
    text-align: center;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .address__addresses {
    padding-left: 10px;
  }
  .address__addresses::-webkit-scrollbar {
    width: 2px;
    background: #383838;
  }
  .address__search label {
    gap: 15px;
  }
}

.footer__list {
  border-top: max(0.1rem, 1px) solid hsla(0, 0%, 75%, 0.24);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0 36px 0;
}

.footer__link {
  padding: 7px 28px;
  color: #58585a;
  transition: all 0.3s ease-out;
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 4 * ((100vw - 360px) / (1560)));
}

.footer__link:nth-child(1) {
  border-right: max(0.1rem, 1px) solid hsla(0, 0%, 75%, 0.24);
  pointer-events: none;
}

.footer__link:nth-child(3) {
  border-left: max(0.1rem, 1px) solid hsla(0, 0%, 75%, 0.24);
}

.footer__link span {
  background: linear-gradient(0deg, red, red) no-repeat 100% 100%/0
    max(0.1rem, 1px);
  background-position-y: 106%;
  transition: background-size 0.6s ease-out;
  line-height: 1.5;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 4 * ((100vw - 360px) / (1560)));
}

@media (max-width: 768px) {
  .footer__list {
    flex-direction: column;
    align-items: start;
    padding: 24px;
  }
  .footer__link {
    padding: 5px 0;
  }
  .footer__link:nth-child(1) {
    border-right: none;
  }
  .footer__link:nth-child(3) {
    border-left: none;
  }
}

@media (hover: hover) {
  .footer__link:hover {
    color: red;
  }
  .footer__link:hover span {
    background-position-x: left;
    background-position-y: 106%;
    background-size: 100% max(0.1rem, 1px);
  }
}
