@charset "UTF-8";
:root {
  --container-width: 1049px;
  --container-padding: 38px;
  --black: #fff;
  --font-family: "QuattrocentoSans", sans-serif;
}

/*
Псевдоэлемент-расширитель для кнопок:
1. Помогает попадать по небольшим кнопкам
2. Помогает отлавливать событие нажатия на кнопку при наличии в ней различных элементов
*/
@font-face {
  font-family: QuattrocentoSans;
  src: url("../fonts/QuattrocentoSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: QuattrocentoSans;
  src: url("../fonts/QuattrocentoSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

input,
button,
textarea {
  padding: 0;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

html,
body {
  height: 100%;
  padding: 0;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

ul,
ol {
  list-style-type: none;
  padding: 0;
}

a {
  text-decoration: none;
}

.main-wrapper-outer {
  width: 100%;
  min-height: 100%;
  max-width: var(--main-outer-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: var(--container-width);
  padding: 0px 19px;
}

.select {
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 15 !important;
}
.select._select-open {
  z-index: 30 !important;
}
.select__body {
  position: relative;
}
.select__title {
  background: #fff;
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border: 1px solid #9aacc9;
  border-radius: 5px;
  padding: 10px 20px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  font-size: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
@media (max-width: 700px) {
  .select__title {
    padding: 10px 15px;
    height: 55px;
    font-size: 16px;
  }
}
._select-open .select__title .select__arrow::after {
  content: "";
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.select__arrow {
  z-index: 13;
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.select__arrow::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMTQuODggMi45MzA0NGUtMDVMMTYuMjkzMyAxLjQxNDdMOC41OTA2NyA5LjEyMDAzQzguNDY3MjQgOS4yNDQyNCA4LjMyMDQ4IDkuMzQyODEgOC4xNTg4MSA5LjQxMDA3QzcuOTk3MTQgOS40NzczMyA3LjgyMzc3IDkuNTExOTYgNy42NDg2NyA5LjUxMTk2QzcuNDczNTcgOS41MTE5NiA3LjMwMDE5IDkuNDc3MzMgNy4xMzg1MyA5LjQxMDA3QzYuOTc2ODYgOS4zNDI4MSA2LjgzMDA5IDkuMjQ0MjQgNi43MDY2NyA5LjEyMDAzTC0wLjk5OTk5OSAxLjQxNDdMMC40MTMzMzUgMC4wMDEzNjE5MUw3LjY0NjY3IDcuMjMzMzZMMTQuODggMi45MzA0NGUtMDVaIiBmaWxsPSJibGFjayIgLz4KPC9zdmc+");
  width: 16px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  min-width: 0;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.select__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select__options {
  margin: 5px 0px 0px 0px;
  position: absolute;
  top: 100%;
  min-width: 100%;
  left: 0;
  border: 1px solid #9aacc9;
  border-radius: 5px;
  background: #fff;
  padding: 10px 0px 5px 0px;
  max-height: 200px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.select__options::-webkit-scrollbar {
  display: none;
}
.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 20px;
  color: inherit;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.select__option:hover {
  opacity: 0.7;
}
@media (max-width: 700px) {
  .select__option {
    font-size: 16px;
    padding: 5px 15px;
  }
}

.form {
  width: 100%;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.form__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  margin: 0px 0px 5px 0px;
}
@media (max-width: 768px) {
  .form__title {
    font-size: 16px;
  }
}
.form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 700px) {
  .form__inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form__input {
  background: #fff;
  border: 1px solid #9aacc9;
  border-radius: 5px;
  padding: 10px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 10px);
          flex: 1 1 calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  gap: 20px;
}
@media (max-width: 700px) {
  .form__input {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    gap: 10px;
    padding: 10px 15px;
    height: 55px;
  }
}
.form__input._form-error {
  border: 1px solid #e21e2b;
}
.form__input.textarea {
  height: 120px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 15px 20px;
}
@media (max-width: 700px) {
  .form__input.textarea {
    padding: 10px 15px;
    height: 100px;
  }
}
.form__input .input {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
}
.form__input .input::-webkit-input-placeholder {
  font-weight: 300;
  color: #b5b5b5;
}
.form__input .input::-moz-placeholder {
  font-weight: 300;
  color: #b5b5b5;
}
.form__input .input:-ms-input-placeholder {
  font-weight: 300;
  color: #b5b5b5;
}
.form__input .input::-ms-input-placeholder {
  font-weight: 300;
  color: #b5b5b5;
}
.form__input .input::placeholder {
  font-weight: 300;
  color: #b5b5b5;
}
@media (max-width: 700px) {
  .form__input .input {
    font-size: 16px;
  }
}
.form__input textarea {
  height: 100%;
  width: 100%;
  resize: none;
}
.form__input img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: auto;
}
@media (max-width: 700px) {
  .form__input img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
  }
}
.form__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 129%;
  text-align: center;
  color: #dde0e4;
  margin: 5px 0px 0px 0px;
}
.form__text a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form__text a:hover {
  color: #000;
}
@media (max-width: 700px) {
  .form__text {
    font-size: 12px;
  }
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__input:checked + .checkbox__label .checkbox__text {
  color: #e21e2b;
}
.checkbox__input:checked + .checkbox__label .checkbox__icon img {
  opacity: 1;
}
.checkbox__input:checked + .checkbox__label .checkbox__icon {
  border: 1px solid transparent;
  background-color: #e21e2b;
}
.checkbox__label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.checkbox__icon {
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  background-color: #fff;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
}
@media (max-width: 768px) {
  .checkbox__icon {
    width: 16px;
    height: 16px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
  }
}
.checkbox__icon img {
  display: block;
  margin-right: -1px;
  width: 14px;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .checkbox__icon img {
    width: 12px;
  }
}
.checkbox__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
}
.checkbox__text span {
  color: #878787;
}
@media (max-width: 768px) {
  .checkbox__text {
    font-size: 14px;
  }
}

.rating {
  --star-gap: 4px;
  --star-width: 20px;
  --star-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: var(--star-height);
}
.rating__items {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--star-gap);
  height: var(--star-height);
}
@media (any-hover: hover) {
  [data-rating=set] .rating__items:hover .rating__item {
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAyMCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMTAgMTUuMjdMMTYuMTggMTlMMTQuNTQgMTEuOTdMMjAgNy4yNEwxMi44MSA2LjYzTDEwIDBMNy4xOSA2LjYzTDAgNy4yNEw1LjQ2IDExLjk3TDMuODIgMTlMMTAgMTUuMjdaIiBmaWxsPSIjRkZCMzAwIiAvPgo8L3N2Zz4=") 0 0/var(--star-width) no-repeat;
  }
}
.rating__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--star-width);
          flex: 0 0 var(--star-width);
  width: var(--star-width);
  height: var(--star-height);
  position: relative;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOSAxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNzY0IDE3LjUwMDZjLS4xMzE2LjAwMDUtLjI2LS4wNDA1LS4zNjY4LS4xMTcybC01LjAyMzktMy42NDIyLTUuMDIzOCAzLjY0MjJhLjc1Ljc1IDAgMCAxLTEuMTcyLS43ODNsMS45NTk0LTUuNzk2NC01LjA3ODEtMy40ODI0YS43NS43NSAwIDAgMSAuNDI0LTEuMzcxaDYuMjY1bDEuODkwNi01LjgyMDNhLjc1Ljc1IDAgMCAxIDEuNDI4IDBsMS44OTA2IDUuODIwM2g2LjI2NWEuNzUuNzUgMCAwIDEgLjQyNCAxLjM3MWwtNS4wNzggMy40ODI0IDEuOTU5MyA1Ljc5NjRhLjc1Ljc1IDAgMCAxLS43MDcuOTg0WiIgZmlsbD0iIzBBMEIwRCIgZmlsbC1vcGFjaXR5PSIwLjMiLz48L3N2Zz4=") 0 0/var(--star-width) no-repeat;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.rating__item--active {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAyMCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMTAgMTUuMjdMMTYuMTggMTlMMTQuNTQgMTEuOTdMMjAgNy4yNEwxMi44MSA2LjYzTDEwIDBMNy4xOSA2LjYzTDAgNy4yNEw1LjQ2IDExLjk3TDMuODIgMTlMMTAgMTUuMjdaIiBmaWxsPSIjRkZCMzAwIiAvPgo8L3N2Zz4=") 0 0/var(--star-width) no-repeat;
}
.rating__item span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: var(--star-height);
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAyMCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMTAgMTUuMjdMMTYuMTggMTlMMTQuNTQgMTEuOTdMMjAgNy4yNEwxMi44MSA2LjYzTDEwIDBMNy4xOSA2LjYzTDAgNy4yNEw1LjQ2IDExLjk3TDMuODIgMTlMMTAgMTUuMjdaIiBmaWxsPSIjRkZCMzAwIiAvPgo8L3N2Zz4=") 0 0/var(--star-width) no-repeat;
}
.rating__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: var(--star-gap);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
[data-rating=set] .rating__item:not(:last-child)::after {
  cursor: pointer;
}
@media (any-hover: hover) {
  [data-rating=set] .rating__item:hover ~ .rating__item {
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOSAxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNzY0IDE3LjUwMDZjLS4xMzE2LjAwMDUtLjI2LS4wNDA1LS4zNjY4LS4xMTcybC01LjAyMzktMy42NDIyLTUuMDIzOCAzLjY0MjJhLjc1Ljc1IDAgMCAxLTEuMTcyLS43ODNsMS45NTk0LTUuNzk2NC01LjA3ODEtMy40ODI0YS43NS43NSAwIDAgMSAuNDI0LTEuMzcxaDYuMjY1bDEuODkwNi01LjgyMDNhLjc1Ljc1IDAgMCAxIDEuNDI4IDBsMS44OTA2IDUuODIwM2g2LjI2NWEuNzUuNzUgMCAwIDEgLjQyNCAxLjM3MWwtNS4wNzggMy40ODI0IDEuOTU5MyA1Ljc5NjRhLjc1Ljc1IDAgMCAxLS43MDcuOTg0WiIgZmlsbD0iIzBBMEIwRCIgZmlsbC1vcGFjaXR5PSIwLjMiLz48L3N2Zz4=") 0 0/var(--star-width) no-repeat;
  }
  [data-rating=set] .rating__item:hover ~ .rating__item span {
    display: none;
  }
}
.rating__input {
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
}
[data-rating=set] .rating__input {
  cursor: pointer;
}
.rating__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 144%;
}
@media (max-width: 650px) {
  .rating__value {
    font-size: 16px;
    line-height: 175%;
  }
}
.rating__value span {
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  color: var(--black-50);
}

body {
  color: var(--black);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  padding: 0px 0px 0px 0px !important;
}
body.hide-scrollbar {
  margin: 0px 0px 0px 0px !important;
}
.lock body {
  overflow: hidden;
}
.popup-show body {
  overflow: hidden;
}

body.noscroll {
  overflow: hidden;
}

input,
button,
textarea {
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
}

fieldset,
fieldset legend {
  margin: 0;
  border: none;
  padding: 0;
}

button {
  cursor: pointer;
}

a {
  outline: none;
  color: currentcolor;
}

.title1 {
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
}
@media (max-width: 992px) {
  .title1 {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 768px) {
  .title1 {
    font-size: 20px;
    line-height: 112%;
  }
}

.arrow-prev {
  position: absolute;
  top: 50%;
  left: -35px;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  border-radius: 100%;
  background: #d7dee5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: 0 4px 23px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 23px 0 rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.arrow-prev img {
  width: 21px;
  height: auto;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.arrow-prev.arrow-white {
  background-color: #fff;
}
.arrow-prev.arrow-white:hover {
  background-color: #d7dee5;
}
.arrow-prev:hover {
  background-color: #fff;
}
@media (max-width: 1470px) {
  .arrow-prev {
    display: none;
  }
}

.arrow-next {
  position: absolute;
  top: 50%;
  right: -35px;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  border-radius: 100%;
  background: #d7dee5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: 0 4px 23px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 23px 0 rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.arrow-next img {
  width: 21px;
  height: auto;
}
.arrow-next:hover {
  background-color: #fff;
}
.arrow-next.arrow-white {
  background-color: #fff;
}
.arrow-next.arrow-white:hover {
  background-color: #d7dee5;
}
@media (max-width: 1470px) {
  .arrow-next {
    display: none;
  }
}

.pagination {
  position: absolute;
  top: auto !important;
  bottom: 12px !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  height: 21px;
  padding: 5px 12px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 40px;
}
.pagination::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: rgba(42, 42, 42, 0.1);
  backdrop-filter: blur(4px);
}
.pagination .swiper-pagination-bullet {
  position: relative;
  z-index: 10;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7px;
          flex: 0 0 7px;
  border-radius: 50%;
  height: 7px;
  background-color: rgba(210, 209, 204, 0.3);
  margin: 0px !important;
  opacity: 1 !important;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6px;
            flex: 0 0 6px;
  }
}
.pagination .swiper-pagination-bullet-active {
  background-color: var(--white);
}

.swiper-pagination-lock {
  display: none;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.block-banner {
  min-height: 100vh;
  position: relative;
  padding: 68px 0px 50px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 992px) {
  .block-banner {
    min-height: 100%;
    padding: 31px 0px 95px 0px;
  }
}
.block-banner .container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.block-banner__bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .block-banner__bg1 {
    display: none;
  }
}
.block-banner__bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
@media (max-width: 480px) {
  .block-banner__bg2 {
    display: block;
  }
}
.block-banner__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  gap: 273px;
  z-index: 10;
}
@media (max-width: 992px) {
  .block-banner__content {
    gap: 100px;
  }
}
@media (max-width: 768px) {
  .block-banner__content {
    gap: 63px;
  }
}
.block-banner__logo {
  height: 28px;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 24px;
}
@media (max-width: 768px) {
  .block-banner__logo {
    height: 18px;
    margin-right: 2px;
  }
}
.block-banner__logo img {
  height: 100%;
  width: auto;
}
.block-banner__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  width: 100%;
}
@media (max-width: 768px) {
  .block-banner__body {
    gap: 109px;
  }
}
.block-banner__top {
  max-width: 470px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 7px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 992px) {
  .block-banner__top {
    margin-right: 18px;
  }
}
@media (max-width: 550px) {
  .block-banner__top {
    max-width: 292px;
    gap: 0px;
  }
}
.block-banner__top p {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-align: right;
}
@media (max-width: 768px) {
  .block-banner__top p {
    margin-top: -2px;
    margin-right: 2px;
    font-size: 12px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  }
}
.block-banner__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .block-banner__bottom {
    gap: 25px;
  }
}
.block-banner__items {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .block-banner__items {
    gap: 6px;
  }
}
.block-banner__text {
  max-width: 353px;
  width: 100%;
  font-weight: 700;
  line-height: 108%;
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
  margin-right: 22px;
}
@media (max-width: 992px) {
  .block-banner__text {
    margin-right: 0px;
  }
}
@media (max-width: 480px) {
  .block-banner__text {
    max-width: 100%;
  }
}

.block-banner-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  max-width: 353px;
  width: 100%;
  margin-right: 22px;
}
@media (max-width: 992px) {
  .block-banner-left {
    margin-right: 0px;
  }
}
@media (max-width: 480px) {
  .block-banner-left {
    max-width: 100%;
    gap: 6px;
  }
}
.block-banner-left__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  backdrop-filter: blur(10px);
  background: rgba(29, 29, 29, 0.35);
  border-radius: 10px;
  padding: 11px 18px 13px 19px;
}
@media (max-width: 480px) {
  .block-banner-left__column {
    padding: 11px 18px 11px 19px;
  }
}
.block-banner-left__column.column2 {
  padding: 6px 20px 12px 20px;
}
.block-banner-left__column.column2 .block-banner-left__items {
  gap: 23px;
}
.block-banner-left__image {
  height: 89px;
  width: 100%;
}
.block-banner-left__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-banner-left__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
.block-banner-left__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 7px;
}
.block-banner-left__titles {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.block-banner-left__titles span {
  display: block;
  font-weight: 400;
  font-size: 10px;
  line-height: 110%;
  text-transform: uppercase;
  margin-top: -1.5px;
}
.block-banner-left__title {
  font-weight: 700;
  font-size: 15px;
  line-height: 115%;
  text-transform: uppercase;
}
.block-banner-left__data {
  margin-right: 5px;
  font-weight: 700;
  font-size: 15px;
  line-height: 110%;
  text-transform: uppercase;
}
.block-banner-left__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 400;
  font-size: 12px;
  line-height: 108%;
  text-transform: uppercase;
}
.block-banner-left__arrow {
  width: 27px;
  height: 26px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 27px;
          flex: 0 0 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f6f6f5;
  border-radius: 50%;
  margin-right: 7px;
  margin-top: 1px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.block-banner-left__arrow:hover {
  opacity: 0.7;
}
@media (max-width: 480px) {
  .block-banner-left__arrow {
    margin-right: 3px;
    margin-top: 4px;
  }
}
.block-banner-left__arrow img {
  width: 7px;
  height: auto;
  margin-right: -2px;
}

.block-banner-right {
  position: absolute;
  right: 0;
  top: -1px;
  width: 255px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
@media (max-width: 992px) {
  .block-banner-right {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 353px;
  }
}
@media (max-width: 480px) {
  .block-banner-right {
    max-width: 100%;
    padding-left: 21px;
  }
}
@media (max-width: 370px) {
  .block-banner-right {
    padding-left: 10px;
  }
}
.block-banner-right__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
  text-transform: uppercase;
}
.block-banner-right__copy img {
  width: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: auto;
}
.block-banner-right__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 5px;
}
@media (max-width: 480px) {
  .block-banner-right__item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 12px;
  }
}
.block-banner-right__item a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.block-banner-right__item a:hover {
  opacity: 0.7;
}
.block-banner-right__item img {
  height: 49px;
  width: auto;
  display: block;
  margin-top: -3px;
  margin-right: 13px;
}
@media (max-width: 768px) {
  .block-banner-right__item img {
    margin-top: -1px;
  }
}
.block-banner-right__text {
  font-weight: 700;
  font-size: 10px;
  line-height: 130%;
  text-transform: uppercase;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .block-banner-right__text {
    margin-top: 12px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.header._header-scroll {
  -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
}
.header._header-scroll .header__top {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 1200px) {
  .header._header-scroll .header-menu {
    height: calc(100vh - 89px);
  }
}
@media (max-width: 992px) {
  .header._header-scroll .header-menu {
    height: calc(100vh - 75px);
  }
}
@media (max-width: 768px) {
  .header._header-scroll .header-menu {
    height: calc(100vh - 61px);
  }
}
.header__top {
  -webkit-transition: padding-top 0.3s, padding-bottom 0.3s;
  transition: padding-top 0.3s, padding-bottom 0.3s;
  padding-top: 40px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .header__top {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .header__top {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 1300px) {
  .header__left {
    gap: 30px;
  }
}
.header__left span {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  color: #878787;
}
@media (max-width: 1200px) {
  .header__left span {
    display: none;
  }
}
.header__logo {
  max-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .header__logo {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 150px;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 992px) {
  .header__right {
    gap: 20px;
  }
}
.header__right .btn {
  width: 220px;
  min-height: 50px;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 768px) {
  .header__right .btn {
    min-height: 40px;
    font-size: 14px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .header__contacts {
    padding: 0px 20px;
  }
}
.header__phone {
  white-space: nowrap;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__phone:hover {
  color: #727272;
}
.header__social {
  width: 32px;
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__social img {
  width: 100%;
  height: auto;
}
.header__social:hover {
  opacity: 0.7;
}
.header__burger {
  display: none;
}
@media (max-width: 1200px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
  }
}

.header-menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background: #f4f6fa;
}
@media (max-width: 1200px) {
  .header-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 30px;
    position: absolute;
    z-index: 50;
    padding: 0px 0px 20px 0px;
    top: 100%;
    right: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: calc(100vh - 109px);
    background: #fff;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .header-menu::-webkit-scrollbar {
    display: none;
  }
  .menu-open .header-menu {
    right: 0;
  }
}
@media (max-width: 992px) {
  .header-menu {
    height: calc(100vh - 95px);
  }
}
@media (max-width: 768px) {
  .header-menu {
    height: calc(100vh - 61px);
  }
}
@media (max-width: 500px) {
  .header-menu {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .header-menu .btn {
    width: calc(100% - 40px);
    margin: 0px 0px 0px 20px;
  }
}
@media (max-width: 1200px) {
  .header-menu .container {
    max-width: 100%;
    padding: 0px 0px 0px 0px;
  }
}
.header-menu__body {
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1200px) {
  .header-menu__body {
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .header-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 0px 20px;
  }
}
.header-menu__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 40px;
}
@media (max-width: 1200px) {
  .header-menu__list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 10px;
    width: 100%;
  }
}
.header-menu__list ul li {
  position: relative;
}
@media (min-width: 1201px) {
  .header-menu__list ul li:hover .header-menu__arrow img {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .header-menu__list ul li:hover .header-menu__dropdown {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 1200px) {
  .header-menu__list ul li {
    width: 100%;
  }
}
.header-menu__list ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header-menu__list ul li a:hover {
  opacity: 0.7;
}
.header-menu__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-menu__arrow img {
  width: 10px;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .header-menu__link {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-menu__link._spoller-active .header-menu__arrow img {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@media (min-width: 1201px) {
  .header-menu__dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    padding: 5px 0px 0px 0px;
    width: 100px;
    left: -10px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media (max-width: 1200px) {
  .header-menu__dropdown {
    padding: 10px 0px 0px 0px;
  }
}
.header-menu__dropdown ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (max-width: 1200px) {
  .header-menu__dropdown ul {
    padding: 0px 0px 0px 10px;
  }
}
@media (min-width: 1201px) {
  .header-menu__dropdown ul {
    background: #fff;
    -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-height: 200px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .header-menu__dropdown ul::-webkit-scrollbar {
    display: none;
  }
}

.header-menu-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 520px;
          flex: 0 1 520px;
}
@media (max-width: 1200px) {
  .header-menu-catalog {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1201px) {
  .header-menu-catalog__column:hover .header-menu-catalog__dropdown {
    opacity: 1;
    pointer-events: auto;
  }
}
.header-menu-catalog__button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background: #e21e2b;
  height: 100%;
  padding: 10px 45px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header-menu-catalog__button.button-black {
  background-color: var(--black);
}
.header-menu-catalog__button.button-black:hover {
  background-color: #727272;
}
.header-menu-catalog__button span {
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 480px) {
  .header-menu-catalog__button span {
    font-size: 14px;
  }
}
.header-menu-catalog__button img {
  width: 30px;
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
}
@media (max-width: 480px) {
  .header-menu-catalog__button img {
    width: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
  }
}
.header-menu-catalog__button:hover {
  background-color: #ff5560;
}
@media (max-width: 1200px) {
  .header-menu-catalog__button {
    padding: 15px 20px;
    height: auto;
  }
  .header-menu-catalog__button._spoller-active {
    background-color: #ff5560;
  }
}
@media (max-width: 480px) {
  .header-menu-catalog__button {
    gap: 15px;
  }
}
@media (min-width: 1201px) {
  .header-menu-catalog__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
    border-bottom: 1px solid #dbdbdb;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media (min-width: 1201px) {
  .header-menu-catalog__body {
    max-width: 1470px;
    padding: 0px 15px;
    margin: 0 auto;
  }
}
@media (min-width: 1201px) {
  .header-menu-catalog__menu1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 30px 0px;
    width: 365px;
    background: #fff;
    position: relative;
  }
}
@media (max-width: 1200px) {
  .header-menu-catalog__menu1 {
    width: 100%;
    background: #f4f6fa;
    padding: 0px 0px 0px 0px;
    gap: 10px;
  }
}
.header-menu-catalog__item1 {
  min-height: 50px;
}
@media (min-width: 1201px) {
  .header-menu-catalog__item1:hover .header-menu-catalog__button1 {
    background-color: #f4f6fa;
    border-left: 2px solid #e21e2b;
  }
  .header-menu-catalog__item1:hover .header-menu-catalog__menu2 {
    opacity: 1;
    pointer-events: auto;
  }
  .header-menu-catalog__item1:hover .header-menu-catalog__arrow {
    opacity: 1;
  }
}
.header-menu-catalog__button1 {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-left: 2px solid transparent;
  gap: 20px;
  padding: 10px 20px 10px 18px;
  -webkit-transition: border-left 0.3s, background-color 0.3s;
  transition: border-left 0.3s, background-color 0.3s;
}
@media (max-width: 1200px) {
  .header-menu-catalog__button1 {
    padding: 10px 20px;
    border-left: none;
  }
  .header-menu-catalog__button1._spoller-active {
    border-bottom: 1px solid #dbdbdb;
  }
  .header-menu-catalog__button1._spoller-active .header-menu-catalog__arrow img {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
.header-menu-catalog__link1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
}
.header-menu-catalog__logo1 {
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-menu-catalog__logo1 img {
  max-width: 90px;
  width: 100%;
  height: auto;
}
.header-menu-catalog__arrow {
  width: 12px;
  height: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header-menu-catalog__arrow img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 11px;
  height: auto;
}
@media (max-width: 1200px) {
  .header-menu-catalog__arrow img {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media (max-width: 1200px) {
  .header-menu-catalog__arrow {
    opacity: 1;
  }
}
.header-menu-catalog__arrow2 {
  width: 12px;
  height: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header-menu-catalog__arrow2 img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 11px;
  height: auto;
}
@media (max-width: 1200px) {
  .header-menu-catalog__arrow2 img {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media (max-width: 1200px) {
  .header-menu-catalog__arrow2 {
    opacity: 1;
  }
}
@media (min-width: 1201px) {
  .header-menu-catalog__menu2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    position: absolute;
    left: 365px;
    width: 365px;
    top: 0;
    height: 100%;
    padding: 30px 0px;
    opacity: 0;
    background: #f4f6fa;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media (min-width: 1201px) {
  .header-menu-catalog__item2:hover .header-menu-catalog__button2 {
    background-color: #d8dee9;
  }
  .header-menu-catalog__item2:hover .header-menu-catalog__menu3 {
    opacity: 1;
    pointer-events: auto;
  }
  .header-menu-catalog__item2:hover .header-menu-catalog__arrow2 {
    opacity: 1;
  }
}
.header-menu-catalog__button2 {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 10px 30px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  min-height: 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .header-menu-catalog__button2 {
    padding: 10px 20px;
  }
  .header-menu-catalog__button2._spoller-active {
    border-bottom: 1px solid #dbdbdb;
  }
  .header-menu-catalog__button2._spoller-active .header-menu-catalog__arrow2 img {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@media (min-width: 1201px) {
  .header-menu-catalog__menu3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 30px;
    top: 0;
    width: 365px;
    position: absolute;
    left: 365px;
    height: 100%;
    background: #d8dee9;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media (max-width: 1200px) {
  .header-menu-catalog__menu3 {
    padding: 20px;
  }
}
@media (max-width: 1200px) {
  .header-menu-catalog__menu3 li {
    margin: 0px 0px 10px 0px;
  }
  .header-menu-catalog__menu3 li:last-child {
    margin: 0px 0px 0px 0px;
  }
}
.header-menu-catalog__menu3 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
}
.header-menu-catalog__menu3 li a:hover {
  color: #e21e2b;
}
@media (max-width: 1200px) {
  .header-menu-catalog__menu3 li a {
    min-height: 100%;
  }
}

.icon-menu {
  position: relative;
  width: 20px;
  height: 14px;
  cursor: pointer;
  z-index: 5;
}
.icon-menu span, .icon-menu::before, .icon-menu::after {
  content: "";
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
  right: 0;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--black);
}
.icon-menu::before {
  top: 0;
}
.icon-menu::after {
  bottom: 0;
}
.icon-menu span {
  top: calc(50% - 1px);
}
.menu-open .icon-menu::before {
  top: calc(50% - 1px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menu-open .icon-menu span {
  width: 0;
}
.menu-open .icon-menu::after {
  content: "";
  bottom: calc(50% - 1px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

body::after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.popup::-webkit-scrollbar {
  display: none;
}
@media (max-width: 390px) {
  .popup {
    padding: 20px 10px;
  }
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  position: relative;
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  width: 100%;
  background: #fff;
  overflow: hidden;
  max-width: 640px;
  padding: 30px;
}
.lock .popup__content {
  visibility: visible;
}
@media (max-width: 550px) {
  .popup__content {
    padding: 30px 20px;
  }
}
@media (max-width: 390px) {
  .popup__content {
    padding: 30px 15px;
  }
}

.popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.popup__close img {
  width: 15px;
  height: auto;
}

.popup-forms__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .popup-forms__body {
    gap: 20px;
  }
}
.popup-forms__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.popup-forms__top p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 120%;
}
@media (max-width: 768px) {
  .popup-forms__top p {
    font-size: 14px;
  }
}
.popup-forms__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
}
@media (max-width: 768px) {
  .popup-forms__title {
    font-size: 26px;
  }
}

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
          transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 5px;
}

.noUi-horizontal .noUi-handle {
  width: 25px;
  height: 25px;
  right: -24px;
  top: -10px;
  border-radius: 50%;
  background-color: #e21e2b;
}

.noUi-base {
  width: calc(100% - 24px);
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #b2b8c3;
  border-radius: 10px;
}

.noUi-connect {
  position: relative;
  height: 5px;
  background: #000;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  cursor: pointer;
}

/* Handle stripes;
 */
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #686868;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0px 0px 0px;
  height: 20px;
  top: 100%;
  left: 5px;
  width: calc(100% - 20px);
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  display: none;
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  display: none;
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
          transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.footer {
  background: #505762;
  padding: 50px 0px;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0px;
  }
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1470px) {
  .footer__content {
    gap: 30px;
  }
}
.footer__content .form {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 610px;
          flex: 0 1 610px;
}
@media (max-width: 1200px) {
  .footer__content .form {
    display: none;
  }
}
.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  color: #fff;
}
@media (max-width: 1470px) {
  .footer__body {
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .footer__body {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.footer__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 240px;
          flex: 0 1 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 1200px) {
  .footer__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 400px;
            flex: 0 1 400px;
  }
}
@media (max-width: 768px) {
  .footer__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    gap: 20px;
  }
}
.footer__top {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__top {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer__top .socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.footer__logo a {
  max-width: 240px;
}
.footer__logo a img {
  width: 100%;
  height: auto;
}
.footer__logo span {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  color: #8c939e;
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.footer__phone {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__phone:hover {
  opacity: 0.7;
}
@media (max-width: 78px) {
  .footer__phone {
    font-size: 20px;
  }
}
.footer__mail {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__mail:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer__mail {
    font-size: 18px;
  }
}
@media (max-width: 550px) {
  .footer__mail {
    font-size: 16px;
  }
}
.footer__location {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  color: #fff;
}
.footer__copy {
  font-weight: 400;
  font-size: 16px;
  line-height: 113%;
  color: #8c939e;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: 14px;
    text-align: center;
    margin-top: -10px;
  }
}
.footer__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 445px;
          flex: 0 1 445px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.footer__right .footer__top {
  gap: 60px;
}
@media (max-width: 768px) {
  .footer__right .footer__top {
    gap: 40px;
  }
}
.footer__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}
@media (max-width: 768px) {
  .footer__menu {
    gap: 30px;
  }
}
@media (max-width: 400px) {
  .footer__menu {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__menu ul {
    gap: 20px;
  }
}
@media (max-width: 550px) {
  .footer__menu ul {
    gap: 15px;
  }
}
.footer__menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer__menu ul li a:hover {
  color: #b2b8c3;
}
@media (max-width: 550px) {
  .footer__menu ul li a {
    font-size: 14px;
  }
}
.footer__policy {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #8c939e;
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
.footer__policy:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer__policy {
    font-size: 14px;
    text-align: center;
  }
}
/*# sourceMappingURL=maps/styles.css.map */
