@charset "UTF-8";
@font-face {
  font-family: FuturaOrto;
  src: url("../fonts/futuraorto-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: FuturaOrto;
  src: url("../fonts/futuraorto-bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --container-width: 1520px;
  --main-outer-width: 1920px;
  --container-padding: 30px;
  --calculated-padding: calc((100% - var(--container-width)) / 2);
  --theme-color-accent: #CDF246;
  --theme-color-accent-hover: #d3f84d;
  --theme-color-secondary: #41BEFC;
  --theme-color-secondary-hover: #51c5ff;
  --theme-color-dark: #1c2c50;
  --theme-color-grey: #F5F7F9;
  --theme-color-accent-light: rgb(255, 47, 56);
  --theme-color-accent-dark: rgb(234, 1, 11);
  --theme-color-text-common: #5B5B5B;
  --theme-color-text-common-30: rgba(28, 44, 80, 0.3);
  --theme-color-text-common-50: rgba(28, 44, 80, 0.5);
  --theme-color-text-common-60: rgba(28, 44, 80, 0.6);
  --theme-gradient: linear-gradient(45deg, var(--theme-color-accent), var(--theme-color-secondary));
  --theme-gradient-hover: linear-gradient(90deg, var(--theme-color-secondary),var(--theme-color-accent));
  --theme-border-color: #B3B3B3;
  --theme-animation-duration: 200ms;
  --theme-animation-duration-fast: 100ms;
  --theme-animation-duration-slow: 300ms;
  --swiper-pagination-progressbar-size: 2px;
}
@media (max-width: 767px) {
  :root {
    --container-padding: 20px;
  }
}
@media (max-width: 575px) {
  :root {
    --container-padding: 15px;
  }
}

/*
Псевдоэлемент-расширитель для кнопок:
1. Помогает попадать по небольшим кнопкам
2. Помогает отлавливать событие нажатия на кнопку при наличии в ней различных элементов
*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

dl,
dd,
dt {
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

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

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  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;
}

.header {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.container {
  padding-left: max(var(--calculated-padding), var(--container-padding));
  padding-right: max(var(--calculated-padding), var(--container-padding));
}
.container__inner {
  width: 100%;
  position: relative;
}

.container.container_extract-l {
  padding-left: 0;
}

.container.container_extract-lp {
  padding-left: var(--container-padding);
}

.container.container_extract-r {
  padding-right: 0;
}

.container.container_extract-rp {
  padding-right: var(--container-padding);
}

.container.container_extract-lr {
  padding-left: 0;
  padding-right: 0;
}

.container.container_extract-lrp {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.25;
  padding: 6px 20px;
  color: var(--theme-color-text-common);
  border-radius: 50px;
  min-height: 35px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: background-color var(--theme-animation-duration);
  transition: background-color var(--theme-animation-duration);
}
.btn_wide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.btn_secondary {
  background: var(--theme-color-secondary);
  color: #fff;
}
.btn_secondary:hover {
  background: var(--theme-color-secondary-hover);
}
.btn_accent {
  background: var(--theme-color-accent);
  color: #fff;
}
.btn_accent:hover {
  background: var(--theme-color-accent-hover);
}
.btn_gradient {
  background: var(--theme-gradient-hover);
  color: #fff;
  isolation: isolate;
}
.btn_gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-gradient);
  opacity: 1;
  z-index: -1;
  border-radius: inherit;
  -webkit-transition: opacity var(--theme-animation-duration-slow);
  transition: opacity var(--theme-animation-duration-slow);
}
.btn_gradient:hover::before {
  opacity: 0;
}
.btn_outline {
  background: transparent;
  border: 1px solid var(--theme-border-color);
  -webkit-transition: border-color var(--theme-animation-duration-slow);
  transition: border-color var(--theme-animation-duration-slow);
}
.btn_outline.btn_accent {
  border: 1px solid var(--theme-color-accent);
  color: inherit;
}
.btn_outline.btn_accent:hover {
  border: 1px solid var(--theme-color-accent);
  background-color: var(--theme-color-accent);
}
.btn_outline.btn_secondary {
  border: 1px solid var(--theme-color-secondary);
  color: inherit;
}
.btn_outline.btn_secondary:hover {
  border-color: var(--theme-color-secondary);
  background-color: var(--theme-color-secondary);
  color: #fff;
}
.btn_outline:hover {
  border-color: var(--theme-color-accent);
}
.btn_white {
  background-color: #fff;
  border: 2px solid #808080;
  border-radius: 4px;
}
.btn_circle {
  padding: 2px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 35px;
  min-height: auto;
  width: 35px;
}
.btn_border {
  padding: 0;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 0 2px var(--theme-border-color);
          box-shadow: 0 0 0 2px var(--theme-border-color);
  -webkit-transition: all var(--theme-animation-duration);
  transition: all var(--theme-animation-duration);
}
.btn_border:hover {
  -webkit-box-shadow: 0 0 0 2px var(--theme-color-accent);
          box-shadow: 0 0 0 2px var(--theme-color-accent);
}
.btn_dark {
  color: var(--theme-color-text-common);
}
.btn_dropdown {
  position: relative;
  padding-right: 40px;
}
.btn_dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/dropdown-icon-white.svg") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.btn_dropdown.is-active::after {
  -webkit-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}
.btn:disabled {
  cursor: default;
}
.btn__icon, .btn > svg {
  fill: currentcolor;
  max-width: 100%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .btn {
    font-size: 16px;
  }
}

.btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 0;
  color: #C5C6C6;
  -webkit-transition: background-color var(--theme-animation-duration);
  transition: background-color var(--theme-animation-duration);
}
.btn-icon > svg {
  fill: currentcolor;
  max-width: 100%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn-icon:hover {
  color: var(--theme-color-secondary);
}

.btn-inline {
  display: inline-block;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  color: var(--theme-color-secondary);
  font-size: 16px;
  text-align: center;
}
.btn-inline:hover {
  color: var(--theme-color-secondary-hover);
}

.btn-play {
  width: 70px;
  height: 70px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-play svg {
  fill: #fff;
  position: relative;
  z-index: 1;
  margin-left: 3%;
  display: block;
  width: 20%;
}
.btn-play::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: background-color var(--theme-animation-duration);
  transition: background-color var(--theme-animation-duration);
}
.btn-play::after {
  content: "";
  width: 82%;
  height: 82%;
  border-radius: 50%;
  background-color: var(--theme-color-dark);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background-color var(--theme-animation-duration), width var(--theme-animation-duration), height var(--theme-animation-duration);
  transition: background-color var(--theme-animation-duration), width var(--theme-animation-duration), height var(--theme-animation-duration);
}
.btn-play:hover::before {
  background-color: rgba(255, 255, 255, 0.6);
}
.btn-play:hover::after {
  background-color: rgb(29, 29, 29);
  width: 72%;
  height: 72%;
}

.searchbox {
  width: 100%;
  position: relative;
}
.searchbox__input {
  width: 100%;
  height: 54px;
  border-radius: 27px;
  background-color: #fff;
  border: 2px var(--theme-color-accent) solid;
  font-size: 16px;
  color: var(--theme-color-text-common);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 5px 20px 5px 52px;
}
.searchbox__input::-webkit-input-placeholder {
  color: var(--theme-color-text-common-50);
}
.searchbox__input::-moz-placeholder {
  color: var(--theme-color-text-common-50);
}
.searchbox__input:-ms-input-placeholder {
  color: var(--theme-color-text-common-50);
}
.searchbox__input::-ms-input-placeholder {
  color: var(--theme-color-text-common-50);
}
.searchbox__input::placeholder {
  color: var(--theme-color-text-common-50);
}
.searchbox__input:focus-visible::-webkit-input-placeholder {
  color: transparent;
}
.searchbox__input:focus-visible::-moz-placeholder {
  color: transparent;
}
.searchbox__input:focus-visible:-ms-input-placeholder {
  color: transparent;
}
.searchbox__input:focus-visible::-ms-input-placeholder {
  color: transparent;
}
.searchbox__input:focus-visible::placeholder {
  color: transparent;
}
.searchbox__btn-submit {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 0 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;
}
.searchbox__btn-submit svg {
  display: block;
  fill: var(--theme-color-accent);
}
.searchbox__btn-close {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.searchbox__btn-close::after {
  content: "";
  position: absolute;
  inset: -5px -5px -5px -5px;
}
.searchbox__btn-close svg {
  fill: var(--theme-color-text-common-30);
  -webkit-transition: fill var(--theme-animation-duration-fast);
  transition: fill var(--theme-animation-duration-fast);
}
.searchbox__btn-close:hover svg {
  fill: var(--theme-color-text-common-50);
}
.searchbox__btn-close:active svg {
  fill: var(--theme-color-text-common);
}

.searchbox2 {
  width: 100%;
  position: relative;
}
.searchbox2__input {
  width: 100%;
  height: 54px;
  border-radius: 27px;
  background-color: #fff;
  border: 2px var(--theme-color-accent) solid;
  font-size: 16px;
  color: var(--theme-color-text-common);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 5px 54px 5px 20px;
}
.searchbox2__input::-webkit-input-placeholder {
  color: var(--theme-color-text-common-50);
}
.searchbox2__input::-moz-placeholder {
  color: var(--theme-color-text-common-50);
}
.searchbox2__input:-ms-input-placeholder {
  color: var(--theme-color-text-common-50);
}
.searchbox2__input::-ms-input-placeholder {
  color: var(--theme-color-text-common-50);
}
.searchbox2__input::placeholder {
  color: var(--theme-color-text-common-50);
}
.searchbox2__input:focus-visible::-webkit-input-placeholder {
  color: transparent;
}
.searchbox2__input:focus-visible::-moz-placeholder {
  color: transparent;
}
.searchbox2__input:focus-visible:-ms-input-placeholder {
  color: transparent;
}
.searchbox2__input:focus-visible::-ms-input-placeholder {
  color: transparent;
}
.searchbox2__input:focus-visible::placeholder {
  color: transparent;
}
.searchbox2__btn-submit {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  height: 54px;
  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;
}
.searchbox2__btn-submit svg {
  display: block;
  fill: #fff;
}

.form-file {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-file input {
  opacity: 0;
  pointer-events: none;
  left: 0;
  top: 0;
  position: absolute;
}
.form-file__label {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 270px;
}
.form-file__btn {
  cursor: pointer;
  margin-right: 10px;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form__row:not(:last-child) {
  margin-bottom: 20px;
}
.form__row > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 998px) {
  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form__input-wrapper {
  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;
  gap: 6px;
}
.form__input-wrapper_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.form__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
.form__label_required::after {
  margin-left: 3px;
  content: "*";
}
@media (max-width: 768px) {
  .form__label {
    font-size: 16px;
  }
}
.form__field {
  width: 100%;
  padding: 10px 20px;
  font-size: 18px;
  font-family: inherit;
  line-height: 1;
  color: inherit;
  background-color: #fff;
  border: 1px solid #B3B3B3;
  border-radius: 50px;
}
.form__field_btn {
  padding-right: 35px;
}
.form__field::-webkit-input-placeholder {
  color: #5B5B5B;
}
.form__field::-moz-placeholder {
  color: #5B5B5B;
}
.form__field:-ms-input-placeholder {
  color: #5B5B5B;
}
.form__field::-ms-input-placeholder {
  color: #5B5B5B;
}
.form__field::placeholder {
  color: #5B5B5B;
}
.form__field:focus {
  outline-color: var(--color-bg-secondary);
}
.form__field.is-error, .form__field:user-invalid {
  border-color: red;
}
@media (max-width: 768px) {
  .form__field {
    padding: 8px 10px;
    font-size: 15px;
  }
}
.form__field-clear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  right: 10px;
  border: none;
  border-radius: 50%;
  padding: 0;
  width: 24px;
  height: 24px;
  background: #999;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.form__field-clear svg {
  max-width: 100%;
  height: auto;
  fill: #fff;
}
.form__field-clear:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .form__field-clear {
    width: 18px;
    height: 18px;
  }
}
.form__textarea {
  width: 100%;
  height: 200px;
  resize: none;
  padding: 10px;
  font-size: 18px;
  font-family: inherit;
  line-height: 1.2;
  color: inherit;
  background-color: #fff;
  border: 1px solid #B3B3B3;
  border-radius: 7px;
  display: block;
}
.form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.form__actions_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form__notes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  font-size: 14px;
}
.form__notes > *:not(:last-child) {
  margin-bottom: 20px;
}
.form__notes a {
  color: var(--theme-color-secondary);
}
.form__notes a:hover {
  text-decoration: underline;
}
.form__notes + * {
  margin-top: 20px;
}

.form-notification {
  font-size: 16px;
  padding: 10px;
  background-color: #EBECEC;
  border-radius: 5px;
}
.form-notification_dark {
  background-color: #D9DADA;
}
.form-notification a {
  outline: none;
  color: var(--theme-color-secondary);
}
.form-notification a.white {
  color: #fff;
  font-weight: bold;
}
.form-notification a:hover {
  text-decoration: underline;
}

.promocode {
  position: relative;
}
.promocode__input {
  width: 100%;
  padding: 10px 140px 10px 20px;
  font-size: 18px;
  font-family: inherit;
  line-height: 1;
  color: inherit;
  border: 1px solid #B3B3B3;
  border-radius: 50px;
  background-color: #fff;
}
.promocode__input::-webkit-input-placeholder {
  color: #5B5B5B;
}
.promocode__input::-moz-placeholder {
  color: #5B5B5B;
}
.promocode__input:-ms-input-placeholder {
  color: #5B5B5B;
}
.promocode__input::-ms-input-placeholder {
  color: #5B5B5B;
}
.promocode__input::placeholder {
  color: #5B5B5B;
}
.promocode__input.is-error, .promocode__input:user-invalid {
  border-color: red;
}
.promocode__input:focus {
  outline-color: var(--color-bg-secondary);
}
@media (max-width: 768px) {
  .promocode__input {
    font-size: 12px;
    padding-right: 130px;
  }
}
.promocode__btn {
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 5px;
  border: 1px solid #B3B3B3;
  padding: 5px 15px;
  background: #C5C6C6;
  color: #5B5B5B;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
  border-radius: 50px;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.promocode__btn:hover {
  background: #ebecec;
}
@media (max-width: 768px) {
  .promocode__btn {
    font-size: 14px;
  }
}

.counter {
  display: inline-block;
}
.counter__input-wrapper {
  display: grid;
  grid-template-columns: 30px 80px 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50px;
  padding: 5px 5px;
  border: 1px solid #B3B3B3;
}
@media (max-width: 768px) {
  .counter__input-wrapper {
    grid-template-columns: 16px 45px 16px;
  }
}
.counter__input {
  border: none;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 768px) {
  .counter__input {
    font-size: 18px;
  }
}
.counter__button {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 32px;
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: inherit;
}
@media (max-width: 768px) {
  .counter__button {
    font-size: 20px;
  }
}
.counter__input:focus {
  outline-color: var(--theme-color-secondary);
}

.form-range__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.form-range__range {
  height: 2px;
  margin-bottom: 65px;
  border-radius: 0;
  background: #727271;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.form-range__range .noUi-connect {
  background-color: var(--theme-color-secondary);
}
.form-range__range .noUi-handle {
  height: 18px;
  width: 18px;
  top: -8px;
  right: -9px;
  border-radius: 10px;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.form-range__range .noUi-handle::after, .form-range__range .noUi-handle::before {
  display: none;
}
.form-range__range .noUi-handle .noUi-touch-area {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  border: none;
}
.form-range__range .noUi-handle .noUi-touch-area::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 22px;
  background-image: url("../img/arrow-range-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.form-range__range .noUi-handle.noUi-handle-upper .noUi-touch-area::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.form-range__range .noUi-value {
  top: 30px;
  color: #5B5B5B;
}
@media (max-width: 768px) {
  .form-range__range .noUi-value {
    font-size: 10px;
  }
}
.form-range__range .noUi-value-large[data-value]:nth-of-type(2) {
  text-align: left;
  -webkit-transform: translate(-5px, 50%);
          transform: translate(-5px, 50%);
}
.form-range__range .noUi-value-large:last-of-type {
  text-align: right;
  left: auto !important;
  right: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}
.form-range__range .noUi-marker {
  width: 3px;
  margin-left: -2px;
  background-color: #727271;
  height: 10px;
}
.form-range__range .noUi-marker-horizontal.noUi-marker-large {
  height: 20px;
}
.form-range__range .noUi-pips-horizontal {
  height: 45px;
}

.form-checkbox {
  display: block;
  position: relative;
}
.form-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0 none;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
}
.form-checkbox > span {
  display: inline-block;
  padding-left: 25px;
}
.form-checkbox > span a {
  color: var(--theme-color-secondary);
  text-decoration: none;
}
.form-checkbox > span a:hover {
  text-decoration: underline;
}
.form-checkbox > span::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1.2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  border: 1px solid #9D9E9E;
  border-radius: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  content: "";
  text-align: center;
}
.form-checkbox__input:checked + span::before {
  border-color: var(--theme-color-secondary);
  background-color: var(--theme-color-secondary);
  background-image: url("../img/icons/check.svg");
  color: #fff;
}
.form-checkbox__input:focus + span::before {
  outline-color: var(--theme-color-secondary);
}
.form-checkbox__input:focus-visible:not(:disabled) + span::before {
  outline: 2px solid var(--theme-color-secondary);
  outline-offset: 2px;
}
.form-checkbox a {
  color: var(--theme-color-secondary);
  text-decoration: underline;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.form-checkbox a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.form-radio {
  display: inline-block;
  position: relative;
}
.form-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0 none;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
}
.form-radio__input:checked + span::before {
  border-color: #fff;
  border-width: 1px;
  background: var(--theme-gradient);
  color: #fff;
  outline: 2px solid var(--theme-color-text-common);
}
.form-radio > span {
  display: inline-block;
  padding-left: 25px;
}
.form-radio > span a {
  color: var(--theme-color-secondary);
  text-decoration: none;
}
.form-radio > span a:hover {
  text-decoration: underline;
}
.form-radio > span::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1.2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  border: 2px solid #9D9E9E;
  border-radius: 12.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  content: "";
  text-align: center;
}

.tomselected {
  display: none !important;
}

.ts-wrapper {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.ts-wrapper_wide {
  display: block;
  width: 100%;
}
.ts-wrapper_wide .ts-control {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ts-wrapper.dropdown-active {
  z-index: 5;
}

.ts-control {
  width: 100%;
  height: 40px;
  border: 1px #5B5B5B solid;
  border-radius: 20px;
  padding: 0 50px 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  outline: none;
  background-color: #fff;
}
.ts-control svg {
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: var(--theme-color-text-common);
}
.ts-control .item {
  color: var(--theme-color-text-common);
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}

.ts-wrapper.focus .ts-control {
  border-color: #acacac;
}

.ts-wrapper.disabled {
  background-color: #F5F5F5;
}

.ts-wrapper.disabled .ts-control {
  cursor: default;
}

.ts-wrapper.disabled .ts-control svg {
  opacity: 0.5;
}

.ts-wrapper.dropdown-active .ts-control svg {
  -webkit-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}

.ts-dropdown {
  border: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  min-width: 100%;
  padding: 22px 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 26px 4px rgba(30, 30, 30, 0.1);
          box-shadow: 0 6px 26px 4px rgba(30, 30, 30, 0.1);
}
.ts-dropdown .option {
  font-size: 14px;
  line-height: 1.25;
  padding: 10px 0;
  cursor: pointer;
  color: var(--theme-color-text-common);
}
.ts-dropdown .option.selected {
  color: var(--theme-color-secondary);
}
.ts-dropdown .option:not([aria-disabled=true]):hover {
  color: var(--theme-color-secondary);
}
.ts-dropdown .option[aria-disabled=true] {
  opacity: 0.5;
  cursor: default;
}
.ts-dropdown-content {
  margin-top: -10px;
  margin-bottom: -10px;
  max-height: 375px;
  overflow-x: visible;
  overflow-y: auto;
}

.form-auth {
  padding-left: 60px;
  padding-right: 60px;
}
.form-auth .form__label {
  font-weight: 400;
}
.form-auth .form__label_required::after {
  display: none;
  margin-left: 3px;
  content: "*";
}
.form-auth .form__label_required::before {
  margin-right: 3px;
  content: "*";
}
.form-auth .form__input-wrapper_row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .form-auth .form__input-wrapper_row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.form-auth .form__actions {
  margin-top: 30px;
  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;
}
.form-auth .form__submit {
  font-size: 22px;
  width: 100%;
  padding: 5px 20px;
  max-width: 320px;
}
@media (max-width: 768px) {
  .form-auth .form__submit {
    font-size: 16px;
  }
}
.form-auth .form__submit1 {
  font-size: 28px;
  max-width: 1000px;
  padding-top: 13px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .form-auth .form__submit1 {
    font-size: 16px;
  }
}
.form-auth .form-checkbox {
  font-size: 18px;
}
@media (max-width: 768px) {
  .form-auth .form-checkbox {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .form-auth {
    padding-left: 0;
    padding-right: 0;
  }
}

.form-order {
  padding-left: 30px;
  padding-right: 30px;
}
.form-order .form__submit1 {
  font-size: 28px;
  max-width: 1000px;
  padding-top: 13px;
  padding-bottom: 10px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .form-order .form__submit1 {
    font-size: 16px;
  }
}
.form-order__block1 {
  margin-bottom: 20px;
}
.form-order__grid1 {
  margin-bottom: 20px;
}
.form-order__grid1 td {
  padding-left: 20px;
  padding-right: 20px;
}
.form-order__grid1 td:first-child {
  padding-left: 0;
}
.form-order__grid1 td:last-child {
  padding-right: 0;
}
.form-order__grid1 tr:not(:last-child) td {
  padding-bottom: 20px;
}
@media (max-width: 998px) {
  .form-order__grid1 tr:not(:last-child) td {
    padding: 0;
  }
}
@media (max-width: 998px) {
  .form-order__grid1 tr {
    display: grid;
    grid-template-columns: -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content max-content;
    gap: 10px 30px;
    margin-bottom: 20px;
  }
  .form-order__grid1 tr > td {
    padding: 0;
  }
  .form-order__grid1 tr > td:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 475px) {
  .form-order__grid1 tr {
    grid-template-columns: auto auto;
  }
}
.form-order .title3 {
  text-transform: none;
  font-weight: 400;
  margin-bottom: 15px;
}
.form-order .form__label {
  font-weight: 400;
}
.form-order .form__label_required::after {
  display: none;
  margin-left: 3px;
  content: "*";
}
.form-order .form__label_required::before {
  margin-right: 3px;
  content: "*";
}
.form-order .form__input-wrapper_row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .form-order .form__input-wrapper_row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.form-order .form-checkbox {
  font-size: 18px;
}
@media (max-width: 998px) {
  .form-order {
    padding-left: 0;
    padding-right: 0;
  }
}

.form-dp-period {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form-dp-period__separator {
  font-size: 40px;
  font-weight: 700;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: 0 10px;
}
@media (max-width: 768px) {
  .form-dp-period__separator {
    font-size: 20px;
    margin: 0 4px;
  }
}
.form-dp-period__btn {
  width: 38px;
  height: 44px;
  margin-left: 10px;
  position: relative;
}
.form-dp-period__btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.form-dp-period__btn svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .form-dp-period__btn svg {
    width: 18px;
  }
}
.form-dp-period__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.air-datepicker {
  --adp-font-family: "FuturaOrto", sans-serif;
  --adp-font-size: 14px;
  --adp-width: 246px;
  --adp-z-index: 100;
  --adp-padding: 4px;
  --adp-grid-areas: "nav" "body" "timepicker" "buttons";
  --adp-transition-duration: .3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f0f0;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(92, 196, 239, .1);
  --adp-background-color-in-range-focused: rgba(92, 196, 239, .2);
  --adp-background-color-selected-other-month-focused: #8ad5f4;
  --adp-background-color-selected-other-month: #a2ddf6;
  --adp-color: #5B5B5B;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #41BEFC;
  --adp-color-current-date: var(--adp-accent-color);
  --adp-color-other-month: #dedede;
  --adp-color-disabled: #aeaeae;
  --adp-color-disabled-in-range: #939393;
  --adp-color-other-month-hover: #c5c5c5;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #efefef;
  --adp-border-radius: 4px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 32px;
  --adp-nav-arrow-color: var(--adp-color-secondary);
  --adp-nav-action-size: 32px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #CDF246;
  --adp-day-name-color-hover: #d3f84d;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 32px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 4px;
  --adp-cell-background-color-hover: var(--adp-background-color-hover);
  --adp-cell-background-color-selected: #5cc4ef;
  --adp-cell-background-color-selected-hover: #45bced;
  --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 32px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px;
}

.air-datepicker-body--day-name {
  font-weight: 700;
}

.header {
  position: relative;
}
.header__top {
  display: grid;
  grid-template-columns: 150px 1fr auto auto auto;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 1368px) {
  .header__top {
    grid-template-columns: 100px 1fr auto auto auto;
  }
}
@media (max-width: 1100px) {
  .header__top {
    grid-template-columns: 100px 1fr 30px;
  }
}
@media (max-width: 576px) {
  .header__top {
    grid-template-columns: 90px 1fr 30px;
    gap: 20px;
  }
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__contacts-item {
  position: relative;
  white-space: nowrap;
  font-size: 24px;
  -webkit-transition: color var(--theme-animation-duration);
  transition: color var(--theme-animation-duration);
}
.header__contacts-item:not(:first-child) {
  margin-top: 5px;
}
.header__contacts-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 30%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(70%, #fff));
  background: linear-gradient(to right, transparent, #fff 70%);
  opacity: 1;
  -webkit-transition: opacity var(--theme-animation-duration);
  transition: opacity var(--theme-animation-duration);
}
.header__contacts-item:hover {
  color: var(--theme-color-secondary);
}
.header__contacts-item:hover::before {
  opacity: 0;
}
@media (max-width: 1368px) {
  .header__contacts-item {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .header__contacts {
    display: none;
  }
}
.header__tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.header__tools-item {
  margin: auto;
}
@media (max-width: 1100px) {
  .header__tools {
    display: none;
  }
}
.header__cart_not-empty:hover {
  -webkit-box-shadow: 0 0 0 2px var(--theme-color-secondary);
          box-shadow: 0 0 0 2px var(--theme-color-secondary);
}
.header__account-btn {
  min-height: 55px;
}
.header__account-btn .btn__icon,
.header__account-btn svg {
  width: 30px;
  margin-left: 15px;
}
.header__account-btn_authorized svg {
  fill: var(--theme-color-accent);
}
.header__account-btn_authorized:hover {
  border-color: var(--theme-color-secondary);
}
@media (max-width: 1100px) {
  .header__account {
    display: none;
  }
}
.header__bottom {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
  padding-bottom: 20px;
}
@media (max-width: 1100px) {
  .header__bottom {
    display: none;
  }
}
.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.header__buttons > * {
  min-width: 200px;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__hamburger {
  display: none;
}
@media (max-width: 1100px) {
  .header__hamburger {
    display: inline-block;
  }
}
.header__mobile {
  display: none;
  padding-top: 5px;
  padding-bottom: 20px;
}
.header__mobile .header__buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.header__mobile .header__buttons > * {
  max-width: 100%;
  width: 200px;
  min-width: 0;
  padding: 6px 10px 4px;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 375px) {
  .header__mobile .header__buttons {
    gap: 15px;
  }
}
@media (max-width: 1100px) {
  .header__mobile {
    display: block;
  }
}

.search__input-wrapper {
  position: relative;
  max-width: 100%;
}
.search__input {
  width: 100%;
  padding: 15px 180px 15px 30px;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
  border: 1px solid var(--theme-border-color);
  border-radius: 50px;
}
.search__input::-webkit-input-placeholder {
  color: #b3b3b3;
}
.search__input::-moz-placeholder {
  color: #b3b3b3;
}
.search__input:-ms-input-placeholder {
  color: #b3b3b3;
}
.search__input::-ms-input-placeholder {
  color: #b3b3b3;
}
.search__input::placeholder {
  color: #b3b3b3;
}
@media (max-width: 1100px) {
  .search__input {
    text-transform: uppercase;
    padding: 10px 40px 6px 15px;
  }
}
@media (max-width: 576px) {
  .search__input {
    font-size: 14px;
  }
}
.search__tools {
  position: absolute;
  height: 100%;
  top: 0;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-left: 10px;
}
.search__tools::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 20px;
  width: 3px;
  background-color: #5b5b5b;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1100px) {
  .search__tools::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .search__tools {
    padding-left: 0;
    right: 6px;
  }
}
.search__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
}
@media (max-width: 1100px) {
  .search__button {
    width: 26px;
    height: 26px;
  }
  .search__button svg {
    width: 18px;
  }
}
@media (max-width: 1100px) {
  .search__dropdown {
    display: none;
  }
}

.header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-menu__item {
  position: relative;
  font-size: 20px;
}
.header-menu__item.is-marker, .header-menu__item.is-active {
  font-weight: 700;
}
.header-menu__item.dropdown {
  padding-bottom: 0;
}
.header-menu__item:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
}
.header-menu__item:not(:last-child)::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 3px;
  background-color: #5b5b5b;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-menu__item:hover {
  color: var(--theme-color-secondary);
}
.header-menu__item > a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color var(--theme-animation-duration);
  transition: color var(--theme-animation-duration);
}
@media (max-width: 1600px) {
  .header-menu__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header-menu__item {
    position: relative;
    font-size: 16px;
  }
}

.mobile-menu {
  z-index: 10;
  display: none;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  position: absolute;
  top: 80px;
  right: var(--container-padding);
  font-size: 20px;
  color: #9b9b9b;
  padding: 15px 10px;
  background-color: #fff;
  border-radius: 10px 10px 0 10px;
  border: 1px solid #B3B3B3;
  -webkit-box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1490196078);
}
.mobile-menu.is-active {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mobile-menu__item:not(:last-child) {
  margin-bottom: 4px;
}
.mobile-menu a {
  color: inherit;
}

.hamburger {
  position: relative;
  width: 30px;
  height: 25px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.hamburger__center, .hamburger::before, .hamburger::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 4px;
  border-radius: 10px;
  background-color: #5B5B5B;
}
.hamburger__center {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.hamburger::before {
  top: 0;
  -webkit-transition: top 0.3s 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s 0.3s ease;
  transition: transform 0.3s ease, top 0.3s 0.3s ease, -webkit-transform 0.3s ease;
  content: "";
}
.hamburger::after {
  bottom: 0;
  -webkit-transition: bottom 0.3s 0.3s ease, -webkit-transform 0.3s ease;
  transition: bottom 0.3s 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, bottom 0.3s 0.3s ease;
  transition: transform 0.3s ease, bottom 0.3s 0.3s ease, -webkit-transform 0.3s ease;
  content: "";
}
.hamburger:active, .hamburger:focus {
  opacity: 1;
}
.hamburger.is-active {
  z-index: 11;
}
.hamburger.is-active .hamburger__center {
  opacity: 0;
}
.hamburger.is-active::before {
  top: 50%;
  margin-top: -2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s 0.3s ease;
  transition: top 0.3s ease, transform 0.3s 0.3s ease;
  transition: top 0.3s ease, transform 0.3s 0.3s ease, -webkit-transform 0.3s 0.3s ease;
}
.hamburger.is-active::after {
  bottom: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: bottom 0.3s ease, -webkit-transform 0.3s 0.3s ease;
  transition: bottom 0.3s ease, -webkit-transform 0.3s 0.3s ease;
  transition: bottom 0.3s ease, transform 0.3s 0.3s ease;
  transition: bottom 0.3s ease, transform 0.3s 0.3s ease, -webkit-transform 0.3s 0.3s ease;
}

.catalog-menu-wrapper {
  position: relative;
}

.catalog-menu {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #B3B3B3;
  background-color: #fff;
  overflow: hidden;
  z-index: 10;
}
.catalog-menu.is-active {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.catalog-menu__grid {
  display: grid;
  grid-template-columns: 30% 1fr;
}
.catalog-menu__main {
  padding: 30px 15px;
}
.catalog-menu__side {
  position: relative;
  padding: 15px 15px 15px 30px;
}
.catalog-menu__side::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  bottom: 10px;
  background-color: var(--theme-color-secondary);
  width: 2px;
}
.catalog-menu__menu:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px solid #999;
}
.catalog-menu__menu-item:not(:last-child) {
  margin-bottom: 10px;
}
.catalog-menu__menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  line-height: 1.3;
  color: inherit;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.catalog-menu__menu-item:hover {
  color: var(--theme-color-secondary);
}
.catalog-menu__menu-icon {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  width: 18px;
  max-width: 100%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.catalog-menu__sub-item {
  display: none;
}
.catalog-menu__sub-item.is-active {
  display: block;
}
.catalog-menu__banner {
  margin-bottom: 20px;
}
.catalog-menu__submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 22px;
  gap: 10px;
}
.catalog-menu__submenu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  line-height: 1.3;
  color: inherit;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.catalog-menu__submenu a:hover {
  color: var(--theme-color-secondary);
}
@media (max-width: 998px) {
  .catalog-menu {
    display: none !important;
  }
}

.catalog-menu-banner {
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: contain;
  background-color: #000;
  border-radius: 20px;
  padding: 15px 30px 15px 30px;
  color: #fff;
  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: 15px 30px;
  min-height: 85px;
}
.catalog-menu-banner__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog-menu-banner__title {
  text-transform: uppercase;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  width: auto;
  max-width: 170px;
}

body {
  position: relative;
  color: var(--theme-color-text-common);
  font-family: FuturaOrto, sans-serif;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

body.noscroll {
  overflow: hidden;
}

@media (max-width: 576px) {
  body.noscroll-mobile {
    overflow: hidden;
  }
}

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

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

button {
  cursor: pointer;
}

a {
  color: var(--theme-color-text-common);
}

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

.text-hl {
  color: var(--theme-color-accent);
}

.text-grey {
  color: var(--theme-color-grey);
}

.preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

.v-h {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hide-sm {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show-sm {
    display: none;
  }
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.socials li:not(:last-child) {
  margin-right: 14px;
}
.socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--theme-color-text-common);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.socials a svg {
  fill: #fff;
  display: block;
}

.heading-cols1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.heading-cols1 .title1 {
  margin: 0 20px 0 0;
}
@media (max-width: 576px) {
  .heading-cols1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.title1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}
.title1::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--theme-color-accent);
  margin: -0.1em 21px 0.1em 0;
}
.title1_no-decoration::before {
  display: none;
}
@media (max-width: 768px) {
  .title1 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.2;
  }
  .title1::before {
    margin-right: 10px;
  }
}

.title2 {
  font-size: clamp(20px, 3.6vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.title3 {
  font-size: clamp(16px, 3.6vw, 25px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-wrap: balance;
}
@media (max-width: 576px) {
  .title3_2 {
    font-size: 18px;
  }
}

.title4 {
  font-size: clamp(16px, 3.6vw, 20px);
  font-weight: 700;
  line-height: 1;
}

.title5 {
  font-size: clamp(14px, 3.6vw, 16px);
  font-weight: 700;
  line-height: 1;
}

.title6 {
  font-size: clamp(16px, 3.6vw, 24px);
  font-weight: 600;
  line-height: 1.2;
}

.textblock1 .title7,
.title7 {
  font-size: clamp(20px, 3.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 1000px;
}

.spinner {
  display: inline-block;
}
.spinner svg {
  width: 26px;
  height: 22px;
  fill: #1E1E1E;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: fill;
  transition-property: fill;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}

.link-block1 {
  display: inline-block;
  padding: 14px;
  border: 2px solid #e7ecf1;
  border-radius: 30px;
  text-align: center;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: border-color var(--theme-animation-duration-fast);
  transition: border-color var(--theme-animation-duration-fast);
}
.link-block1:hover {
  border-color: var(--theme-color-accent);
}

.link-map1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  -webkit-transition: opacity var(--theme-animation-duration-fast);
  transition: opacity var(--theme-animation-duration-fast);
}
.link-map1 svg {
  max-width: 100%;
  height: auto;
  margin-right: 12px;
  fill: currentcolor;
}
.link-map1_primary {
  color: var(--theme-color-accent);
}
.link-map1:hover {
  opacity: 0.8;
}

.btn-load {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color-accent);
  text-transform: uppercase;
  border-radius: 4px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}
.btn-load span {
  width: 30px;
  height: 30px;
  background-color: var(--theme-color-accent);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-load svg {
  width: 14px;
  fill: #fff;
}
.btn-load:hover {
  color: var(--theme-color-accent);
}
@media (max-width: 768px) {
  .btn-load {
    font-size: 14px;
  }
  .btn-load span {
    width: 22px;
    height: 22px;
  }
  .btn-load svg {
    width: 10px;
  }
}

.nav-top {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .nav-top {
    gap: 10px;
  }
}

.nav-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .nav-bottom {
    gap: 10px;
  }
}

.textblock1 .page-title,
.page-title {
  font-weight: 400;
  font-size: 42px;
}
@media (max-width: 768px) {
  .textblock1 .page-title,
  .page-title {
    font-size: 26px;
  }
}

.textblock1 {
  font-size: 18px;
  line-height: 1.5;
}
.textblock1 h2, .textblock1 h3, .textblock1 h4, .textblock1 h5, .textblock1 h6 {
  margin-bottom: 15px;
}
.textblock1 h2 {
  font-size: 22px;
}
.textblock1 p, .textblock1 ul, .textblock1 ol, .textblock1 img, .textblock1 div {
  margin-bottom: 15px;
}
.textblock1 img {
  max-width: 100%;
}
.textblock1 img.image-wide {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 10/3;
}
.textblock1 a {
  color: var(--theme-color-secondary);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 1px;
}
.textblock1 a:hover {
  text-decoration: none;
}
.textblock1 > *:last-child {
  margin-bottom: 0;
}
.textblock1 ul {
  padding: 0;
  list-style-type: none;
}
.textblock1 ul li {
  padding-left: 12px;
  position: relative;
}
.textblock1 ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--theme-color-secondary);
  left: 0;
  top: 0.6rem;
}
.textblock1 ul li:not(:last-child) {
  margin-bottom: 10px;
}
.textblock1 ul.accent li::before {
  background: var(--theme-gradient);
}
.textblock1 ul.sq li::before {
  border-radius: 0;
}
.textblock1 ol {
  padding-left: 20px;
  list-style: decimal;
}
.textblock1 ol li:not(:last-child) {
  margin-bottom: 10px;
}
.textblock1 table {
  position: relative;
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px;
  margin-left: -10px;
}
.textblock1 table tbody td {
  height: 100%;
  background: #EBECEC;
  padding: 5px 10px;
  border-radius: 10px;
}
.textblock1 table caption {
  background-color: #C5C6C6;
  padding: 5px 10px;
  font-size: 32px;
  text-align: left;
  font-weight: 400;
  border-radius: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .textblock1 table caption {
    font-size: 24px;
    line-height: 1.2;
  }
}
.textblock1 .two-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.textblock1_center {
  text-align: center;
}
.textblock1_link_alt a {
  text-decoration: none;
}
@media (max-width: 575px) {
  .textblock1 {
    font-size: 16px;
  }
  .textblock1 h2 {
    font-size: 18px;
  }
  .textblock1 .two-images {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 1.25em;
  }
  .textblock1 .two-images img {
    margin: 0;
  }
}
.textblock1_custom1 {
  padding: 0 50px;
}
@media (max-width: 998px) {
  .textblock1_custom1 {
    padding: 0 20px;
  }
}
@media (max-width: 998px) {
  .textblock1 {
    font-size: 16px;
  }
}

.text-custom1 {
  font-size: 1.4em;
}
.text-custom1 a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .text-custom1 {
    font-size: 16px;
  }
}

.video {
  position: relative;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video__play.paused {
  display: none;
}
@media (max-width: 768px) {
  .video__play {
    width: 54px;
    height: 54px;
  }
}

.table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 10px;
}
.table-wrapper table {
  width: 100%;
}

.sort-bar {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sort-bar__label {
  margin-right: 5px;
}
.sort-bar__item {
  color: var(--theme-color-secondary);
  position: relative;
}
.sort-bar__item_active {
  color: var(--theme-color-accent);
}
.sort-bar__item:not(:last-child) {
  padding-right: 13px;
  margin-right: 5px;
}
.sort-bar__item:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 50%;
  right: 0;
  margin-left: 5px;
  text-decoration: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--theme-color-text-common);
}
.sort-bar_1 {
  padding-left: 45px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sort-bar_1 {
    padding-left: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .sort-bar {
    font-size: 16px;
  }
}

.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  text-decoration: none;
}
.logo__img {
  max-width: 100%;
  height: auto;
}

.gradient-block {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, #fbffe7));
  background: linear-gradient(to bottom, transparent 0%, #fbffe7 80%);
}

.section {
  position: relative;
  padding-top: 15px;
  padding-bottom: 30px;
}
.section__header {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section__header {
    margin-bottom: 20px;
  }
}
.section__title {
  font-size: 32px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .section {
    padding-top: 30px;
  }
  .section + .section {
    padding-top: 0;
  }
}

.content-block {
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 998px) {
  .content-block {
    padding-bottom: 30px;
  }
}

.content-box {
  background-color: #fff;
  border: 1px solid #D9DADA;
  border-radius: 5px;
  padding: 20px 15px 20px;
}
.content-box__title {
  margin-bottom: 20px;
}
.content-box__title:not(.page-title) {
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .content-box__title:not(.page-title) {
    font-size: 18px;
  }
}
.content-box_grid {
  display: grid;
  grid-template-columns: 1fr 20%;
  padding-bottom: 15px;
}
.content-box_grid .content-box__col {
  padding-top: 10px;
  padding-bottom: 10px;
}
.content-box_grid .content-box__col:not(:last-child) {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 2px solid var(--theme-color-secondary);
}
.content-box_grid .content-box__col_center {
  text-align: center;
}
@media (max-width: 998px) {
  .content-box_grid {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 420px) {
  .content-box_grid {
    grid-template-columns: 1fr;
  }
  .content-box_grid .content-box__col {
    padding-top: 0;
    padding-bottom: 10px;
  }
  .content-box_grid .content-box__col:not(:last-child) {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--theme-color-secondary);
    border-right: none;
  }
  .content-box_grid .content-box__col_center {
    text-align: center;
  }
}
.content-box_grey {
  background-color: #ebecec;
}

.banners-grid1 {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 30px;
}
.banners-grid1__item {
  text-decoration: none;
  grid-column: span 6;
  height: 456px;
}
.banners-grid1__item img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.banners-grid1__item_big {
  grid-column: span 8;
}
.banners-grid1__item_md {
  grid-column: span 5;
}
.banners-grid1__item_sm {
  grid-column: span 5;
}

.banners-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.banners-grid2__item {
  text-decoration: none;
  height: 280px;
}
.banners-grid2__item img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 998px) {
  .banners-grid2 {
    display: none;
  }
}

.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.links__item {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #5B5B5B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: inherit;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.links__item:hover {
  color: inherit;
}
.links__icon {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  fill: #ccc;
}

.breadcrumbs {
  position: relative;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.breadcrumbs__item {
  position: relative;
  color: inherit;
}
.breadcrumbs__item:not(:last-child)::after {
  margin-left: 10px;
  content: "|";
}
.breadcrumbs__item > a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.breadcrumbs__item > a:hover {
  color: var(--theme-color-secondary);
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
  gap: 5px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .pagination__list {
    font-size: 12px;
  }
}
.pagination__item {
  position: relative;
}
.pagination__item > * {
  display: inline-block;
  position: relative;
}
.pagination__item > a {
  color: var(--theme-color-secondary);
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.pagination__item > a:hover {
  text-decoration: none;
}
.pagination__item_text:not(:last-of-type) {
  padding-right: 10px;
}
.pagination__item_text:not(:last-of-type)::after {
  content: "|";
  position: absolute;
  top: 50%;
  right: 0;
  margin-left: 5px;
  text-decoration: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .pagination__item_arrow_right span, .pagination__item_arrow_left span {
    display: none;
  }
  .pagination__item_arrow_right::before {
    content: ">";
  }
  .pagination__item_arrow_left::before {
    content: "<";
  }
}

.pagination-info {
  font-size: 18px;
}
.pagination-info > a {
  color: var(--theme-color-secondary);
}
.pagination-info > a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .pagination-info {
    font-size: 12px;
  }
}

.category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 30px;
}
@media (max-width: 768px) {
  .category-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .category-list__item {
    font-size: 12px;
    line-height: 1;
    padding: 4px 10px;
    min-height: 20px;
  }
}

.article-cards-list > *:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .article-cards-list > *:not(:last-child) {
    margin-bottom: 15px;
  }
}

.category-cards-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 998px) {
  .category-cards-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.search-block__info {
  font-size: 16px;
  margin-bottom: 20px;
}

.error-block {
  background: #fff;
  text-align: center;
  border: 1px solid #D9DADA;
  padding: 15px 30px 30px;
  border-radius: 5px;
}
.error-block__title {
  margin-bottom: 10px;
}
.error-block__descr {
  line-height: 1.5;
}
.error-block__link {
  margin-top: 20px;
  font-size: 24px;
  padding: 8px 50px;
}
@media (max-width: 768px) {
  .error-block__link {
    font-size: 16px;
    padding: 8px 20px;
    width: 300px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .error-block {
    padding: 15px 20px 20px;
  }
}

.sc-info__logo {
  margin-bottom: 20px;
}
.sc-info__logo img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .sc-info__logo img {
    width: 140px;
  }
}

.sc-contacts__block:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sc-contacts__block:not(:last-child) {
    margin-bottom: 20px;
  }
}
.sc-contacts__title {
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .sc-contacts__title {
    font-size: 16px;
  }
}
.sc-contacts__subtitle {
  font-weight: 400;
  margin-bottom: 20px;
}
.sc-contacts__list:not(:last-child) {
  margin-bottom: 30px;
}
.sc-contacts__list > * {
  margin-bottom: 20px;
}
.sc-contacts__list_compact {
  padding-left: 15px;
}
.sc-contacts__list_compact > * {
  margin-bottom: 2px;
}
.sc-contacts__item a {
  white-space: nowrap;
  text-decoration: none;
}
.sc-contacts__item a:not([href^=tel]) {
  color: var(--theme-color-secondary);
}
.sc-contacts__item a:hover {
  text-decoration: underline;
}
.sc-contacts__map {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .sc-contacts__map {
    padding: 0;
  }
}

.map > * {
  max-width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.about-block__nav {
  margin-bottom: 30px;
}
.about-block__content.textblock1 {
  font-weight: 700;
}
@media (max-width: 998px) {
  .about-block__content.textblock1 {
    font-weight: 400;
    font-size: 14px;
  }
}
.about-block__gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.about-block__gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.about-block__gallery-item img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 998px) {
  .about-block__gallery {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    gap: 20px;
  }
}
.about-block .dropdown__btn {
  position: relative;
  padding-right: 20px;
}
.about-block .dropdown__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 15px;
  height: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/dropdown-icon-white.svg") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.about-block .dropdown__block {
  min-width: 0;
  right: auto;
  left: 0;
  padding: 15px;
}
@media (max-width: 768px) {
  .about-block .dropdown__block {
    width: calc(100vw - var(--container-padding) * 2);
  }
}

.about-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-left: 30px;
  margin-right: 30px;
}
.about-nav__item {
  -ms-flex-preferred-size: 170px;
      flex-basis: 170px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.about-nav__item_vacancy .dropdown__block {
  width: 75%;
}
@media (max-width: 768px) {
  .about-nav__item_vacancy .dropdown__block {
    width: calc(100vw - var(--container-padding) * 2);
  }
}
@media (max-width: 998px) {
  .about-nav__item:nth-child(even) .dropdown__block {
    left: auto;
    right: 0;
  }
}
.about-nav__btn {
  display: block;
  padding: 8px 15px;
  background: #C5C6C6;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
}
.about-nav a.about-nav__btn {
  background: var(--theme-gradient);
}
.about-nav .dropdown {
  position: static;
}
@media (max-width: 998px) {
  .about-nav .dropdown {
    position: relative;
  }
}
@media (max-width: 768px) {
  .about-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    gap: 15px;
    margin-bottom: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about-nav__item {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-preferred-size: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
  }
  .about-nav__btn {
    padding: 8px 2px;
    font-size: 13px;
  }
}

.about-contacts__block:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--theme-color-secondary);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-contacts__block:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
.about-contacts .block-highlight {
  margin-left: 10px;
  margin-right: 10px;
}
.about-contacts .block-highlight:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-contacts .block-highlight {
    margin-left: 0;
    margin-right: 0;
  }
}
.about-contacts table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  font-weight: 700;
}
.about-contacts table thead tr {
  border-bottom: 2px solid var(--theme-color-secondary);
}
.about-contacts table thead th {
  padding-bottom: 20px;
  font-weight: 700;
}
.about-contacts table td {
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 1.5;
  vertical-align: top;
}
.about-contacts table td[colspan] {
  text-align: center;
}
.about-contacts table td a {
  color: var(--theme-color-secondary);
}
.about-contacts table td a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .about-contacts table td {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .about-contacts table {
    font-size: 12px;
  }
}

.dropdown {
  position: relative;
  padding-bottom: 5px;
}
.dropdown__btn {
  position: relative;
  padding-right: 20px;
}
.dropdown__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/dropdown-icon.svg") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.dropdown__block {
  opacity: 0;
  position: absolute;
  top: 100%;
  min-width: 160px;
  font-size: 16px;
  right: 0;
  color: var(--theme-color-text-common);
  background-color: #fff;
  border: 1px solid #808080;
  border-radius: 20px;
  padding: 5px;
  z-index: 12;
  pointer-events: none;
}
.dropdown__block a:hover {
  color: var(--theme-color-secondary);
}
.dropdown__block_right {
  left: inherit;
  right: 0;
}
.dropdown__block_wide {
  width: 100%;
}
.dropdown__block .vacancy-contacts {
  width: 550px;
}
@media (max-width: 998px) {
  .dropdown__block .vacancy-contacts {
    width: auto;
  }
}
.dropdown_left .dropdown__btn {
  padding-right: 0;
  padding-left: 20px;
}
.dropdown_left .dropdown__btn::before {
  right: auto;
  left: 0;
}
.dropdown_left .dropdown__block {
  right: auto;
  left: 0;
}
.dropdown:hover .dropdown__btn::before {
  -webkit-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}
.dropdown:hover .dropdown__block {
  opacity: 1;
  pointer-events: initial;
}

.vacancy-contacts__title {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 998px) {
  .vacancy-contacts__title {
    font-size: 18px;
  }
}
.vacancy-contacts__item {
  display: block;
  white-space: nowrap;
  font-size: 48px;
  text-align: center;
}
@media (max-width: 998px) {
  .vacancy-contacts__item {
    font-size: 24px;
  }
}

.requisites__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px;
}
@media (max-width: 768px) {
  .requisites__row {
    grid-template-columns: 50% 50%;
  }
}
.requisites__term {
  position: relative;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 12px;
  text-align: right;
  font-weight: 700;
}
.requisites__term::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--theme-color-secondary);
}
.requisites__descr {
  padding-top: 4px;
  padding-bottom: 4px;
}
.requisites__descr a {
  color: var(--theme-color-secondary);
  text-decoration: none;
}
.requisites__descr a:hover {
  text-decoration: underline;
  color: var(--theme-color-secondary-hover);
}

.block-highlight {
  font-size: 18px;
  background-color: #EBECEC;
  border-radius: 5px;
  padding: 10px 30px;
  line-height: 1.5;
}
.block-highlight_secondary {
  background-color: #C9EDFF;
}
.block-highlight_dark {
  background-color: #C5C6C6;
}
.block-highlight a {
  color: var(--theme-color-secondary);
}
.block-highlight a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .block-highlight {
    font-size: 16px;
    padding: 10px 15px;
  }
}

.reviews-cards-list > *:not(:last-child) {
  margin-bottom: 30px;
}

.reviews-footer {
  margin-top: 40px;
  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;
  text-align: center;
}
.reviews-footer__add-review {
  width: 300px;
  font-size: 24px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .reviews-footer__add-review {
    width: 280px;
    font-size: 22px;
  }
}
.reviews-footer__all {
  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;
  margin-top: 20px;
  gap: 20px;
}
.reviews-footer__all img {
  width: 200px;
  max-width: 100%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .reviews-footer__all img {
    width: 170px;
  }
}
.reviews-footer__all a {
  color: var(--theme-color-secondary);
  font-size: 20px;
  text-decoration: underline;
}
.reviews-footer__all a:hover {
  text-decoration: none;
  color: var(--theme-color-secondary-hover);
}
@media (max-width: 768px) {
  .reviews-footer__all a {
    font-size: 16px;
  }
}

.rating-static {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 16px;
}
.rating-static__star {
  position: relative;
  width: 25px;
  height: 25px;
  background-image: url("../img/star-o.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.rating-static__star_checked {
  background-image: url("../img/star.svg");
}
.rating-static__icon {
  max-width: 100%;
  width: 40px;
  height: auto;
  fill: grey;
}

.accordion__item:not(:last-child) {
  margin-bottom: 20px;
}
.accordion__toggle {
  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: 15px;
  width: 100%;
  border-radius: 5px;
  border: none;
  padding: 10px 30px 10px 10px;
  background: #EBECEC;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 42px;
  text-align: left;
}
.accordion__toggle-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 30px;
  max-width: 100%;
  height: 30px;
  fill: #fff;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.accordion__toggle.is-active .accordion__toggle-icon {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
@media (max-width: 768px) {
  .accordion__toggle {
    font-size: 14px;
  }
  .accordion__toggle-icon {
    width: 20px;
  }
}
.accordion__block {
  display: none;
  margin-top: 20px;
}
.accordion__block .content-box {
  margin-bottom: 20px;
}

.category-block {
  border: 1px solid #D9DADA;
  border-radius: 5px;
  background-color: #fff;
  padding-bottom: 20px;
}
.category-block__header {
  padding: 5px 20px;
  border-radius: 5px;
  background-color: #EBECEC;
}
.category-block__descr {
  padding: 15px 20px;
  font-size: 16px;
}
.category-block__links {
  padding: 5px 20px;
  border-radius: 5px;
  background-color: #EBECEC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
}
.category-block__links-title {
  font-weight: 700;
}
.category-block__links a {
  color: var(--theme-color-secondary);
  text-decoration: underline;
}
.category-block__links a:hover {
  text-decoration: none;
}
.category-block__filter {
  padding: 15px 20px;
}
.category-block__products {
  margin-top: 10px;
  padding: 0 20px;
}
.category-block__products .content-box {
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .category-block__products .content-box {
    padding: 0;
    border: none;
  }
}

.filter__price {
  display: grid;
  grid-template-columns: 150px 1fr;
}
.filter__price > * {
  min-width: 100%;
}
.filter__price .filter__title {
  padding-top: 14px;
}
@media (max-width: 768px) {
  .filter__price {
    grid-template-columns: 1fr;
  }
  .filter__price .filter__title {
    padding-top: 0;
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.filter__title {
  font-weight: 700;
  font-size: 16px;
}
.filter .form__label {
  font-weight: 400;
}
.filter .form-range .form__field {
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  color: inherit;
}
@media (max-width: 768px) {
  .filter .form-range .form__field {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .filter .form-range .form__label {
    font-size: 14px;
  }
}
.filter__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.filter__footer .btn {
  -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
}
.filter__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px 60px;
}
@media (max-width: 768px) {
  .filter__list {
    margin-top: 10px;
    grid-template-columns: 1fr;
  }
  .filter__list .filter__title {
    font-size: 18px;
  }
}

.filter-options__toggler {
  position: relative;
  border: none;
  padding: 0 25px 0 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
}
.filter-options__toggler::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/arrow-filter-icon.svg") no-repeat 0 0/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.filter-options__toggler.is-active::before {
  -webkit-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}
@media (max-width: 768px) {
  .filter-options__toggler {
    text-align: left;
  }
}
.filter-options__list {
  display: none;
  margin-top: 10px;
}
.filter-options__list.is-visible {
  display: block;
}
.filter-options__list > *:not(:last-child) {
  margin-bottom: 10px;
}

.sort {
  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-size: 16px;
}
.sort__title {
  font-weight: 700;
}
.sort__list {
  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: 8px;
}
.sort__btn {
  position: relative;
  border: none;
  padding: 0;
  background: transparent;
  color: var(--theme-color-secondary);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
}
.sort__btn:not(:last-child) {
  padding-right: 8px;
  border-right: 2px solid #5B5B5B;
}
.sort__btn.is-desc, .sort__btn.is-asc {
  padding-right: 18px;
}
.sort__btn.is-desc::after, .sort__btn.is-asc::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 16px;
  height: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/arrow-sort-icon.svg") no-repeat center/contain;
}
.sort__btn.is-asc::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.cart-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}
@media (max-width: 1368px) {
  .cart-block {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 1100px) {
  .cart-block {
    grid-template-columns: 1fr;
  }
}

.cart-main {
  border: 1px solid #D9DADA;
  background-color: #fff;
  border-radius: 5px;
}
.cart-main__header {
  display: grid;
  grid-template-columns: 350px 1fr;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 15px 30px;
  background-color: #EBECEC;
  border-radius: 0 0 5px 5px;
  padding: 20px;
}
@media (max-width: 768px) {
  .cart-main__header {
    grid-template-columns: 1fr auto;
    padding: 10px;
  }
}
.cart-main__cart-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px 30px;
  font-size: 18px;
}
.cart-main__cart-info span {
  font-weight: 700;
}
@media (max-width: 998px) {
  .cart-main__cart-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 14px;
    gap: 10px;
  }
}
.cart-main__tools {
  padding: 20px;
  border-bottom: 2px solid var(--theme-color-secondary);
}
.cart-main__tools .form-checkbox {
  min-height: 25px;
}
.cart-main__tools .form-checkbox > span::before {
  width: 25px;
  height: 25px;
  background-size: 15px;
  line-height: 25px;
}
@media (max-width: 768px) {
  .cart-main__tools {
    padding: 10px;
  }
}
.cart-main__products {
  padding: 30px 20px;
}
.cart-main__products > *:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cart-main__products {
    padding: 10px;
  }
}

.cart-result {
  border: 1px solid #D9DADA;
  background-color: #EBECEC;
  border-radius: 5px;
  padding: 20px 15px;
}
.cart-result__header {
  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: 10px 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--theme-color-secondary);
  margin-bottom: 40px;
}
.cart-result__title {
  font-size: 22px;
  font-weight: 700;
}
.cart-result__price {
  white-space: nowrap;
  color: var(--theme-color-secondary);
  font-weight: 700;
  font-size: 24px;
}
.cart-result__content {
  text-align: center;
}
.cart-result__order-btn {
  font-size: 24px;
  width: 100%;
  max-width: 500px;
  padding: 10px 20px;
}
@media (max-width: 768px) {
  .cart-result__order-btn {
    font-size: 16px;
  }
}
.cart-result__actions {
  margin-top: 40px;
  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;
  font-size: 18px;
}
.cart-result__actions > * {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cart-result__actions > * {
    margin-bottom: 20px;
  }
}
.cart-result__actions .btn:not(.cart-result__order-btn) {
  width: 300px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cart-result__actions .btn:not(.cart-result__order-btn) {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cart-result__actions {
    font-size: 16px;
    margin-top: 20px;
  }
}

.corp-block__header {
  margin-bottom: 40px;
}
.corp-block__header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .corp-block__header-top {
    gap: 10px;
  }
}
.corp-block__header-bottom {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .corp-block__header-bottom {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .corp-block__header {
    margin-bottom: 20px;
  }
}
.corp-block__tel {
  font-size: 42px;
  font-weight: 700;
}
@media (max-width: 998px) {
  .corp-block__tel {
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
.corp-block__btn {
  font-size: 22px;
  padding: 10px 20px;
}
.corp-block__section:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .corp-block__section:not(:last-child) {
    margin-bottom: 20px;
  }
}
.corp-block__section-title {
  margin-bottom: 20px;
}
.corp-block__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .corp-block__list {
    grid-template-columns: 1fr 1fr;
  }
}
.corp-block__footer {
  margin-top: 40px;
}
.corp-block__footer-portal {
  margin-bottom: 10px;
}
.corp-block__footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .corp-block__footer-contacts {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .corp-block__footer {
    margin-top: 20px;
  }
}
.corp-block .textblock1 {
  font-size: 22px;
}
.corp-block .textblock1 ul li {
  padding-left: 25px;
}
.corp-block .textblock1 ul li::before {
  width: 15px;
  height: 15px;
}
@media (max-width: 768px) {
  .corp-block .textblock1 {
    font-size: 16px;
  }
}

.corp-portal {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
}
.corp-portal__img img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .corp-portal__img {
    width: 150px;
  }
}
.corp-portal__descr {
  background-color: #fff;
  padding: 15px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  border-radius: 5px;
  border: 1px solid #E6E6E6;
}
@media (max-width: 768px) {
  .corp-portal__descr {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .corp-portal {
    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: 10px;
  }
}

.catalog-items-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 30px;
}
@media (max-width: 998px) {
  .catalog-items-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .catalog-items-list {
    grid-template-columns: 1fr 1fr;
  }
}

.catalog-item {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #D9DADA;
  padding: 40px 20px;
  min-height: 110px;
}
.catalog-item__title {
  text-align: center;
  color: var(--theme-color-secondary);
  font-size: 22px;
}
.catalog-item__title:hover {
  color: var(--theme-color-secondary-hover);
}
@media (max-width: 768px) {
  .catalog-item__title {
    font-size: 18px;
  }
}
.catalog-item__toggler {
  border: none;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
.catalog-item__list {
  display: none;
  margin: 40px 0 0;
  padding: 0;
  list-style-type: none;
}
.catalog-item__list li:not(:last-child) {
  margin-bottom: 10px;
}
.catalog-item__list a {
  color: inherit;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.catalog-item__list a:hover {
  color: var(--theme-color-secondary);
}
@media (max-width: 768px) {
  .catalog-item {
    padding: 26px 15px;
  }
}

.catalog-sale {
  border-radius: 5px;
  padding: 10px 20px;
  min-height: 110px;
  font-size: 32px;
  text-transform: none;
}
@media (max-width: 768px) {
  .catalog-sale {
    font-size: 24px;
  }
}

.tabs__tab {
  display: none;
}
.tabs__tab.is-active {
  display: block;
}

.product__main {
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #D9DADA;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 25%;
  grid-template-areas: "title title" "images sidebar";
}
.product__main > * {
  min-width: 0;
}
@media (max-width: 768px) {
  .product__main {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "images" "sidebar";
  }
}
.product__tabs {
  margin-top: 20px;
}
.product__tabs .tabs__toggle {
  position: relative;
  border: none;
  padding: 8px 20px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}
.product__tabs .tabs__toggle.is-active {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  border-top: 1px solid #D9DADA;
  border-left: 1px solid #D9DADA;
  border-right: 1px solid #D9DADA;
}
@media (max-width: 768px) {
  .product__tabs .tabs__toggle {
    font-size: 16px;
  }
}
.product__tabs .tabs__body {
  position: relative;
  top: -1px;
  margin-bottom: -1px;
  background-color: #fff;
  padding: 20px;
  border: 1px solid #D9DADA;
}
.product__text {
  margin-top: 20px;
}
.product__title {
  grid-area: title;
}
@media (max-width: 768px) {
  .product__title {
    font-size: 26px;
  }
}
.product__images {
  grid-area: images;
}
.product__images .swiper {
  height: 100%;
}
.product__images .swiper-slide img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}
.product__images .slider-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 8px;
}
.product__sidebar {
  grid-area: sidebar;
}
.product .product-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  grid-area: sidebar;
  background-color: #EBECEC;
  border: 1px solid #898989;
  border-radius: 5px;
  padding: 20px;
}
.product .product-sidebar__price {
  white-space: nowrap;
  font-size: 38px;
  font-weight: 700;
  color: var(--theme-color-secondary);
}
.product .product-sidebar__btns {
  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;
  margin-top: 20px;
}
.product .product-sidebar__btns > *:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .product .product-sidebar__btns > *:not(:last-child) {
    width: 200px;
  }
}
.product .product-sidebar__stock {
  font-size: 14px;
  margin-top: 10px;
  color: #727271;
}
.product .product-sidebar__sku {
  margin-top: 20px;
  font-size: 18px;
}
.product .product-sidebar__sku span {
  font-weight: 700;
}
@media (max-width: 768px) {
  .product .product-sidebar__sku {
    font-size: 14px;
  }
}
.product .product-sidebar__delivery {
  font-weight: bold;
  line-height: 1.5;
  font-size: 18px;
  margin-top: 20px;
  border-radius: 5px;
  padding: 10px;
  background-color: #C5C6C6;
}
@media (max-width: 768px) {
  .product .product-sidebar__delivery {
    font-size: 14px;
  }
}
.product .product-sidebar__footer {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #B2B3B3;
}
.product .product-attr {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #D9DADA;
  border-radius: 5px;
}
.product .product-attr__block:not(:last-child) {
  margin-bottom: 20px;
}
.product .product-attr__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.product .product-attr__row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 20px;
}
.product .product-attr__row:not(:last-child) {
  margin-bottom: 10px;
}

.product-reviews__row:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #C5C6C6;
}
@media (max-width: 768px) {
  .product-reviews__row:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.product-reviews__title {
  margin-bottom: 20px;
}
.product-reviews__add {
  margin-top: 20px;
}
.product-reviews__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-reviews__filter-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .product-reviews__filter-col:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px solid #C5C6C6;
  }
}
@media (max-width: 768px) {
  .product-reviews__filter {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.news-detail {
  padding: 14px 14px 40px 14px;
}
.news-detail__photo-big {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1389/488;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
  margin-bottom: 30px;
}
.news-detail__date {
  font-size: 16px;
  margin-bottom: 15px;
}

.bonus {
  margin-left: 30px;
  margin-right: 30px;
}
.bonus__label {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}
.bonus__row1 {
  margin-bottom: 20px;
}
.bonus__filter {
  font-size: 18px;
}
.bonus__filter a {
  color: var(--theme-color-secondary);
}
.bonus__filter > span {
  font-weight: 700;
}
.bonus__filter > * {
  margin-left: 5px;
  margin-right: 5px;
}
.bonus__filter > *:first-child {
  margin-left: 0;
}
.bonus__filter > *:last-child {
  margin-right: 0;
}
.bonus__grid1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.bonus__block1 {
  border-radius: 7px;
  background-color: #EBECEC;
  margin-bottom: 30px;
  padding: 24px;
}
.bonus__block1 h2,
.bonus__block1 .title2 {
  text-transform: none;
  font-weight: 400;
  margin-bottom: 20px;
}
.bonus__block2 {
  border-radius: 7px;
  background-color: #D9DADA;
  padding: 24px;
  overflow-x: auto;
}
.bonus__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 20px;
}
.bonus__table th {
  color: var(--theme-color-secondary);
  font-weight: 400;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
}
.bonus__table th:first-child {
  padding-left: 0;
}
.bonus__table th:last-child {
  padding-right: 0;
}
.bonus__table td {
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
}
.bonus__table td:first-child {
  padding-left: 0;
}
.bonus__table td:last-child {
  padding-right: 0;
}
.bonus__table th,
.bonus__table td {
  padding-top: 10px;
  padding-bottom: 10px;
}
.bonus__table thead th {
  padding-top: 0;
}
.bonus__table tfoot td {
  padding-top: 20px;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .bonus {
    margin-left: 0;
    margin-right: 0;
  }
  .bonus__label {
    font-size: 14px;
  }
  .bonus__row1 {
    margin-bottom: 10px;
  }
  .bonus__row1_2 {
    text-align: center;
  }
  .bonus__row1_2 .bonus__label {
    font-size: 18px;
  }
  .bonus__filter {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
  .bonus__filter > * {
    margin: 0;
  }
  .bonus__grid1 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .bonus__block1 {
    margin-bottom: 20px;
    padding: 15px;
  }
  .bonus__block1 h2,
  .bonus__block1 .title2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
  }
  .bonus__block2 {
    padding: 15px;
  }
  .bonus__table {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .bonus__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
}

.order-products {
  margin: 0 0 30px 0;
}
.order-products > *:not(last-child) {
  margin-bottom: 10px;
}

.order-types {
  margin: 0 0 30px 0;
}
.order-types > *:not(last-child) {
  margin-bottom: 20px;
}

.navbar-mobile {
  background: #fff;
  height: 60px;
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 100;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.navbar-mobile__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 100%;
}
.navbar-mobile__btn {
  border: none;
  padding: 0;
  background: none;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  font-size: 10px;
  cursor: pointer;
}
.navbar-mobile__btn.is-active {
  color: var(--theme-color-secondary);
}
.navbar-mobile__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: currentcolor;
}
@media (min-width: 768px) {
  .navbar-mobile {
    display: none;
  }
}

.configurator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.configurator__settings-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.configurator__settings-row:not(:last-child) {
  margin-bottom: 10px;
}
.configurator__settings-title {
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 20px;
}
.configurator__label {
  margin-bottom: 5px;
  font-weight: 700;
}
.configurator__label_center {
  text-align: center;
}
@media (max-width: 768px) {
  .configurator {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.product-cards-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.product-cards-list > * {
  min-width: 0;
}
@media (max-width: 998px) {
  .product-cards-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-cards-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background-color: #fff;
}
.product-card__images {
  margin-bottom: 10px;
}
.product-card__images img {
  max-width: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
}
.product-card__images .swiper {
  padding-bottom: 15px;
}
.product-card__images .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-card__images .slider-pagination {
  bottom: 0;
}
.product-card__title {
  font-size: 18px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__title a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color var(--theme-animation-duration);
  transition: color var(--theme-animation-duration);
}
.product-card__title:hover {
  color: var(--theme-color-secondary);
}
@media (max-width: 768px) {
  .product-card__title {
    font-size: 16px;
    text-align: center;
  }
}
.product-card__footer {
  margin-top: auto;
  padding: 10px 5px 0;
}
.product-card__descr {
  margin-top: 10px;
  font-size: 14px;
  padding-left: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-card__descr {
    text-align: center;
    padding: 0;
    font-size: 12px;
  }
}
.product-card__price {
  white-space: nowrap;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 768px) {
  .product-card__price {
    text-align: center;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .product-card {
    padding: 10px;
  }
}

.product-card1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border: 1px solid #D9DADA;
  border-radius: 7px;
  padding: 7px;
}
.product-card1_head {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border: none;
  padding: 0 8px;
}
.product-card1_head > * {
  padding-top: 6px;
  padding-bottom: 0;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 768px) {
  .product-card1_head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 5px;
  }
}
.product-card1__col-photo {
  border: 1px solid #D9DADA;
  border-radius: 7px;
  width: 200px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.product-card1__col-photo img {
  display: block;
  width: 100%;
}
@media (max-width: 998px) {
  .product-card1__col-photo {
    width: 125px;
  }
}
.product-card1__col-data {
  margin-right: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  width: calc(100% - 145px);
}
.product-card1:not(.product-card1_head) .product-card1__col-price, .product-card1:not(.product-card1_head) .product-card1__col-total {
  border-radius: 5px;
  background-color: #ebecec;
  border: 1px #d9dada solid;
  padding: 5px 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-card1__col-price {
  width: 150px;
  text-align: center;
}
@media (max-width: 768px) {
  .product-card1__col-price {
    width: 120px;
  }
}
.product-card1__col-total {
  width: 150px;
  text-align: center;
}
@media (max-width: 768px) {
  .product-card1__col-total {
    width: 120px;
  }
}
.product-card1__col-total .product-card1__text2 {
  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;
  width: 100%;
  height: 100%;
}
.product-card1__col-count {
  width: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.product-card1__col-code {
  width: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.product-card1__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.product-card1__title a {
  color: var(--theme-color-secondary);
}
@media (max-width: 768px) {
  .product-card1__title {
    font-size: 16px;
  }
}
.product-card1__descr {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card1__text1 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .product-card1__text1 {
    font-size: 14px;
  }
}
.product-card1__text2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #e31e24;
}
@media (max-width: 998px) {
  .product-card1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.product-card2 {
  padding: 10px 20px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background-color: #fff;
  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;
}
.product-card2__title {
  font-size: 22px;
  text-align: center;
}
.product-card2__title a {
  color: var(--theme-color-secondary);
}
.product-card2__title a:hover {
  color: var(--theme-color-secondary-hover);
}
@media (max-width: 768px) {
  .product-card2__title {
    font-size: 18px;
  }
}
.product-card2__img {
  max-width: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
}
.product-card2__stock {
  margin-top: 5px;
  font-size: 14px;
  color: #898989;
}
.product-card2__price {
  margin-top: 5px;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.product-card2__add {
  margin-top: 5px;
}
.product-card2__descr {
  margin-top: 20px;
  font-size: 14px;
  color: #898989;
  text-align: center;
}
@media (max-width: 768px) {
  .product-card2 {
    padding: 10px;
  }
}

.partner-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  height: 100px;
}
@media (max-width: 768px) {
  .partner-card {
    padding: 10px;
    height: 75px;
  }
}

.partner-card img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.article-card {
  min-height: 150px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #D9DADA;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.article-card__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 180px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article-card__image img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 10/7;
  border-radius: 5px;
}
.article-card__image_border {
  border-radius: 5px;
  border: 1px solid #D9DADA;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  .article-card__image {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.article-card__header {
  margin-bottom: 4px;
}
.article-card__title {
  font-size: 22px;
  font-weight: 700;
}
.article-card__title a {
  color: var(--theme-color-secondary);
  text-decoration: none;
}
.article-card__title a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .article-card__title {
    font-size: 16px;
  }
}
.article-card__price {
  white-space: nowrap;
}
.article-card__descr {
  font-size: 16px;
  line-height: 1.3;
}
.article-card__tools {
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.article-card__tools .btn {
  font-size: 10px;
  min-height: auto;
  padding: 2px;
  min-width: 100px;
}
@media (max-width: 768px) {
  .article-card__tools {
    margin-top: 5px;
  }
}
.article-card__badge {
  min-height: auto;
  padding: 2px 8px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  border-radius: 50px;
  border: 2px solid #727271;
  font-weight: 700;
}
.article-card__date {
  white-space: nowrap;
  font-weight: 700;
}
.article-card__more {
  white-space: nowrap;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: all;
          text-decoration-skip-ink: all;
  color: var(--theme-color-secondary);
}
.article-card__more::after {
  content: " >";
}
.article-card__more:hover {
  text-decoration: none;
}
.article-card__footer {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .article-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .article-card .article-card__content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .article-card .article-card__descr {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .article-card .article-card__more {
    margin-top: auto;
    font-size: 14px;
  }
}

.category-card {
  min-height: 275px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #D9DADA;
  padding: 20px 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.category-card__image {
  width: 100%;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 160px;
}
.category-card__image img {
  display: block;
  max-width: 100%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .category-card__image {
    height: 100px;
  }
}
.category-card__content {
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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: 768px) {
  .category-card__content {
    padding: 0;
  }
}
.category-card__title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}
.category-card__title a {
  color: inherit;
  text-decoration: none;
}
.category-card__title a:hover {
  color: var(--theme-color-secondary);
  text-decoration: underline;
}
.category-card__actions {
  margin-top: auto;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.category-card__actions > .btn {
  min-width: 140px;
  padding: 5px;
  font-size: 14px;
  line-height: 1;
  min-height: auto;
}
@media (max-width: 768px) {
  .category-card__actions > .btn {
    min-width: 0;
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .category-card__actions {
    gap: 3px;
  }
}
@media (max-width: 768px) {
  .category-card {
    min-height: 240px;
  }
}

.sc-card {
  min-height: 120px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #D9DADA;
  padding: 10px;
  display: grid;
  grid-template-columns: 220px 0.5fr 1.5fr;
}
.sc-card > * {
  min-width: 0;
}
.sc-card__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: 10px;
}
.sc-card__col:not(:last-child) {
  border-right: 2px solid var(--theme-color-secondary);
}
@media (max-width: 768px) {
  .sc-card__col {
    padding-right: 0;
    margin-right: 0;
    border: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sc-card__col:not(:last-child) {
    border-right: none;
  }
  .sc-card__col:first-child {
    grid-row: 1/3;
    padding-right: 20px;
    border-right: 2px solid var(--theme-color-secondary);
    margin-right: 10px;
  }
}
.sc-card__image img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 140px;
}
.sc-card__link {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-color-secondary);
  text-decoration: none;
}
.sc-card__link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .sc-card__link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .sc-card {
    min-height: 80px;
    grid-template-columns: 120px 1fr;
  }
}

.review-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  font-size: 18px;
}
.review-card:nth-child(2n) {
  background-color: #EBECEC;
}
.review-card__header {
  margin-bottom: 20px;
}
.review-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.review-card__date {
  font-weight: 700;
}
.review-card__rate {
  margin-top: 10px;
}
.review-card__section:not(:last-child) {
  margin-bottom: 20px;
}
.review-card__section-title {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .review-card {
    font-size: 16px;
  }
}

.cart-item {
  display: grid;
  grid-template-columns: 150px 1fr auto auto;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-item__img img {
  display: block;
  max-width: 100%;
  height: auto;
}
.cart-item__counter {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cart-item__counter-caption {
  color: #C5C6C6;
  font-size: 14px;
  margin-top: 5px;
  text-align: center;
}
@media (max-width: 768px) {
  .cart-item__counter-caption {
    font-size: 12px;
  }
}
.cart-item__price {
  color: var(--theme-color-secondary);
  white-space: nowrap;
  font-size: 32px;
}
@media (max-width: 768px) {
  .cart-item__price {
    font-size: 20px;
  }
}
.cart-item__info {
  grid-column: 1/-1;
}
.cart-item__sku {
  font-size: 14px;
  color: #C5C6C6;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .cart-item__sku {
    font-size: 12px;
  }
}
.cart-item__title {
  max-width: 50%;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}
.cart-item__title a {
  color: inherit;
}
.cart-item__title a:hover {
  color: var(--theme-color-secondary);
}
.cart-item__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-item__actions > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart-item__actions > *:not(:last-child) {
  border-right: 2px solid #C5C6C6;
  padding-right: 5px;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .cart-item__actions > * svg {
    width: 20px;
  }
}
@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 80px 1fr auto auto;
    gap: 15px;
  }
}
@media (max-width: 470px) {
  .cart-item {
    grid-template-columns: 80px 1fr auto;
  }
}

.features-card {
  position: relative;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
}
.features-card__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 250px;
}
.features-card__img img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .features-card__img {
    height: 120px;
  }
}
.features-card__title {
  font-size: 22px;
  text-align: center;
}
.features-card__title a::before {
  content: "";
  position: absolute;
  inset: 0;
}
@media (max-width: 768px) {
  .features-card__title {
    font-size: 16px;
  }
}
.features-card__descr {
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 768px) {
  .features-card__descr {
    font-size: 12px;
  }
}

.team-card {
  position: relative;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
}
.team-card__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 320px;
}
.team-card__img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 2/3;
}
@media (max-width: 768px) {
  .team-card__img {
    height: 180px;
  }
}
.team-card__title {
  margin-top: 10px;
  font-size: 22px;
  text-align: center;
}
.team-card__title a::before {
  content: "";
  position: absolute;
  inset: 0;
}
@media (max-width: 768px) {
  .team-card__title {
    font-size: 18px;
  }
}

.bonus-card {
  border-radius: 7px;
  border: 1px #D9DADA solid;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  aspect-ratio: 800/500;
}
.bonus-card__title {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.2;
  color: #5B5B5B;
  text-align: center;
  height: 42px;
  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;
  border-bottom: 1px #D9DADA solid;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.bonus-card__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bonus-card__value {
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 40px);
  color: #5B5B5B;
}
.bonus-card_accent1 {
  background-color: #F1FFBD;
}
.bonus-card_accent1 .bonus-card__title {
  background-color: var(--theme-color-accent);
}
.bonus-card_accent2 {
  background-color: #BDE7FC;
}
.bonus-card_accent2 .bonus-card__title {
  background-color: var(--theme-color-secondary);
}
@media (max-width: 768px) {
  .bonus-card {
    aspect-ratio: unset;
  }
  .bonus-card__body {
    min-height: 50px;
  }
}

.slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slider-nav__center {
  position: relative;
  bottom: 15px;
}
.slider-nav .slider-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}
.slider-nav .slider-scrollbar {
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
  width: 80px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.4);
}
.slider-nav .slider-scrollbar .swiper-scrollbar-drag {
  background-color: var(--theme-color-accent);
  height: 100%;
}
.slider-nav .slider-fraction {
  color: #fff;
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
  margin-bottom: 10px;
  font-size: 18px;
}

.slider-button svg {
  width: 12px;
  fill: currentcolor;
  max-width: 100%;
  height: auto;
  position: relative;
  left: 2px;
}
.slider-button::after {
  display: none;
}
.slider-button_prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -2px;
}

.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet {
  margin-left: 2px;
  margin-right: 2px;
}
.slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 6px;
  border-radius: 10px;
  opacity: 1;
  background-color: #ccc;
}
.slider-pagination .swiper-pagination-bullet-active {
  background-color: var(--theme-color-accent);
}

.main-banner {
  position: relative;
}
.main-banner__slide img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 7/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.main-banner__nav {
  position: absolute;
  bottom: 30px;
  right: 20px;
}
@media (max-width: 768px) {
  .main-banner__nav {
    display: none;
  }
}

.slider-cards {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}
.slider-cards > .slider-button {
  position: absolute;
  background-color: #fff;
}
.slider-cards > .slider-button_prev {
  left: 0;
}
.slider-cards > .slider-button_next {
  right: 0;
}
@media (max-width: 768px) {
  .slider-cards {
    padding-left: 0;
    padding-right: 0;
  }
  .slider-cards > .slider-button {
    display: none;
  }
}

.slider-partners {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}
.slider-partners > .slider-button {
  position: absolute;
  background-color: #fff;
}
.slider-partners > .slider-button_prev {
  left: 0;
}
.slider-partners > .slider-button_next {
  right: 0;
}
@media (max-width: 768px) {
  .slider-partners {
    padding-left: 0;
    padding-right: 0;
  }
  .slider-partners > .slider-button {
    display: none;
  }
}

.hystmodal {
  z-index: 60;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  pointer-events: none;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 0 -webkit-min-content 0;
  grid-template-rows: 0 min-content 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  visibility: hidden;
  scrollbar-width: none;
  padding: var(--container-padding);
}
.hystmodal__buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 576px) {
  .hystmodal__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 15px;
  }
  .hystmodal__buttons > * {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.hystmodal__title {
  font-size: 20px;
  margin-bottom: 25px;
  margin-right: 40px;
  padding-top: 5px;
}
.hystmodal::-webkit-scrollbar {
  display: none;
}
.hystmodal::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-color: rgba(29, 29, 29, 0.5);
  opacity: 0;
  pointer-events: none;
}
.hystmodal--animated::before {
  -webkit-transition: opacity var(--theme-animation-duration) ease;
  transition: opacity var(--theme-animation-duration) ease;
}
.hystmodal--active::before {
  opacity: 1;
}
.hystmodal--moved, .hystmodal--active {
  opacity: 1;
  pointer-events: none;
  visibility: visible;
}
.hystmodal--active {
  pointer-events: auto;
}
.hystmodal__wrap {
  display: block;
  min-width: 0;
  grid-row: 2/3;
}
.hystmodal__inner {
  padding: 15px 20px;
}
.hystmodal__window {
  min-width: 0;
  min-height: 100px;
  grid-row: 2/3;
  position: relative;
  z-index: 10;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  background: #fff;
  border-radius: 10px;
  width: 705px;
  max-width: 100%;
  overflow: visible;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  opacity: 0;
  margin: 50px auto;
}
.hystmodal__window--loading {
  min-height: 400px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='105' height='105' viewBox='0 0 105 105' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E%3Ccircle cx='12.5' cy='12.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='0s' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='12.5' cy='52.5' r='12.5' fill-opacity='.5'%3E%3Canimate attributeName='fill-opacity' begin='100ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='52.5' cy='12.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='300ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='52.5' cy='52.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='600ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='92.5' cy='12.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='800ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='92.5' cy='52.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='400ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='12.5' cy='92.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='700ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='52.5' cy='92.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='500ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='92.5' cy='92.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='200ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3C/svg%3E%0A");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 48px;
}
.hystmodal--animated .hystmodal__window {
  -webkit-transition: opacity var(--theme-animation-duration) ease 0s, -webkit-transform var(--theme-animation-duration) ease 0s;
  transition: opacity var(--theme-animation-duration) ease 0s, -webkit-transform var(--theme-animation-duration) ease 0s;
  transition: transform var(--theme-animation-duration) ease 0s, opacity var(--theme-animation-duration) ease 0s;
  transition: transform var(--theme-animation-duration) ease 0s, opacity var(--theme-animation-duration) ease 0s, -webkit-transform var(--theme-animation-duration) ease 0s;
}
.hystmodal--active .hystmodal__window {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}
.hystmodal__close {
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 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;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #9D9E9E;
  cursor: pointer;
  outline: none;
}
.hystmodal__close svg {
  display: block;
  fill: #fff;
}
.hystmodal__close:hover {
  background-color: var(--theme-color-secondary);
}
@media (max-width: 768px) {
  .hystmodal__close {
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
  .hystmodal__close svg {
    width: 13px;
  }
}

.modal-grid1 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px 20px;
}
.modal-grid1__item_wide {
  grid-column: span 2;
}

.modal-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 7px 0;
}

.modal-auth .hystmodal__window {
  width: 600px;
}
.modal-auth .modal-grid1 {
  width: calc(100% - 100px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .modal-auth .modal-grid1 {
    width: calc(100% - 20px);
  }
}
.modal-auth .hystmodal__title {
  margin-left: 50px;
}
@media (max-width: 768px) {
  .modal-auth .hystmodal__title {
    margin-left: 10px;
  }
}

.modal-links {
  font-weight: 700;
  font-size: 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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.modal-links a {
  white-space: nowrap;
}
.modal-links a:not(:last-child) {
  margin-right: 26px;
  position: relative;
}
.modal-links a:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 16px;
  background-color: var(--theme-color-text-common);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -14px;
}

.modal-notification .hystmodal__window {
  width: 600px;
}
.modal-notification .hystmodal__inner {
  min-height: 228px;
  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;
}
.modal-notification .hystmodal__title {
  text-align: center;
}
.modal-notification .textblock1 {
  text-align: center;
  margin-bottom: 20px;
}
.modal-notification .textblock1:empty {
  margin-bottom: 0;
}
.modal-notification .btn {
  min-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.modal-confirm .hystmodal__window {
  width: 600px;
}
.modal-confirm .hystmodal__inner {
  min-height: 228px;
  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;
}
.modal-confirm .hystmodal__title {
  text-align: center;
}
.modal-confirm .textblock1 {
  text-align: center;
  margin-bottom: 20px;
}
.modal-confirm .textblock1:empty {
  margin-bottom: 0;
}
.modal-confirm .btn {
  min-width: 150px;
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .hystmodal__window {
    margin-top: 0;
    margin-bottom: 0;
  }
  .hystmodal__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer {
  color: #5B5B5B;
  background-color: #CCC;
  position: relative;
}
.footer__top {
  padding-top: 15px;
  padding-bottom: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media (max-width: 1100px) {
  .footer__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer__top {
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid #999;
  }
}
.footer__col_end {
  margin-left: auto;
  text-align: right;
}
@media (max-width: 1100px) {
  .footer__col_end {
    text-align: left;
    margin-left: 0;
  }
}
.footer__title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 400;
  border-bottom: 1px solid #5B5B5B;
  padding-bottom: 2px;
}
@media (max-width: 768px) {
  .footer__title {
    padding-bottom: 0;
    border: none;
    font-weight: 700;
    font-size: 18px;
    color: #000;
  }
}
.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;
  font-size: 16px;
  line-height: 1.5;
}
.footer__contacts-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__contacts-block:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer__contacts-block:not(:last-child) {
    margin-bottom: 0;
  }
}
.footer__contacts-item:not(:last-child) {
  margin-bottom: 3px;
}
.footer__contacts-item a {
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
}
.footer__contacts-item a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer__contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__contacts .btn_white {
    text-transform: none;
    font-weight: 400;
    font-size: 14px;
    max-width: 200px;
    margin-left: auto;
  }
}
.footer__links {
  margin-top: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer__links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px 40px;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__menu li {
  font-size: 16px;
  line-height: 1.5;
}
.footer__menu li:not(:last-child) {
  margin-bottom: 5px;
}
.footer__menu a {
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
}
.footer__menu a:hover {
  text-decoration: underline;
}
.footer__bottom {
  position: relative;
  border-top: 1px solid #5B5B5B;
  padding-top: 15px;
  padding-bottom: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 124px;
}
@media (max-width: 768px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.footer__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.5;
}
.footer__to-top {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 20px solid #ccc;
}
.footer__to-top svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.footer__logo {
  width: 150px;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.footer__list img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 35px;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 60px;
  }
}
/*# sourceMappingURL=maps/styles.css.map */
