@charset "UTF-8";
/* 1. Исправление box-sizing для всех элементов и псевдоэлементов */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 2. Убираем внешние отступы у body и типовых элементов */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* 3. Убираем маркеры списков у неупорядоченных и упорядоченных списков (опционально) */
ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

/* 4. Настройки body: минимальная высота, единая высота строки, системный шрифт, сглаживание */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 5. Медиаэлементы: блочные, не выходят за пределы родителя */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Формы наследуют шрифты и убирают стандартные обводки (полезно для кастомизации) */
input,
button,
textarea,
select {
  font: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

/* 7. Кнопки: убираем фон, рамку, ставим курсор pointer */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* 8. Ссылки без класса получают улучшенное подчёркивание (пропуск под дескендерами) */
a {
  color: inherit;
  text-decoration: none;
}

/* 9. Отключаем анимации для пользователей, предпочитающих уменьшение движения */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-transition-duration: 0.01ms !important;
    -o-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/* 10. Плавная прокрутка для всей страницы (можно отключить в проекте, если мешает) */
html {
  scroll-behavior: smooth;
}

/* 11. Поддержка светлой и тёмной темы браузера */
:root {
  color-scheme: light dark;
}

/* 12. Сброс стилей заголовков (размер и жирность будут задаваться отдельно) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1em;
}

/* 13. Таблицы: схлопывание границ и ширина по родителю */
table {
  width: 100%;
  border-collapse: collapse;
}

/* 14. Цитаты без кавычек (браузерные кавычки часто мешают) */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

.page {
  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-sizing: border-box;
  box-sizing: border-box;
  height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  color: #222222;
  background-color: #FFFFFF;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  --swiper-pagination-bullet-border-radius: 0;
}
.page.no-scroll {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page {
    padding-bottom: 78px;
  }
}
.page__inner {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.no-scroll {
  overflow: hidden;
}

.hide {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1682px;
  padding: 0 16px;
  margin: 0 auto;
}

.mt-32 {
  margin-top: 32px;
}

.col-9 {
  grid-column: span 9;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 8px;
}

.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #222222;
  border: 5px solid #FFFFFF;
  -webkit-box-shadow: 0px 0px 20px rgba(19, 56, 77, 0.2);
  box-shadow: 0px 0px 20px rgba(19, 56, 77, 0.2);
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  -webkit-box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: rgba(34, 34, 34, 0.2);
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  -ms-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.grid {
  display: grid;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  grid-template-columns: repeat(12, 1fr);
}
@media screen and (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.header__sticky-placeholder {
  display: none;
  pointer-events: none;
}
.header__main {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}
.header__main.is-sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  padding: 16px 0;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  -webkit-animation: stickyShow 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: stickyShow 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.header__main.is-sticky .logo {
  -ms-flex-item-align: center;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .header__main {
    padding: 20px 0 1px;
  }
}
.header__logo {
  align-self: center;
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .header__logo {
    grid-column: 1;
  }
}
.header__catalog {
  position: relative;
  background: #F5F5F5;
}
.header__catalog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: end;
  gap: 32px;
  grid-column: span 10;
}
@media screen and (max-width: 1500px) {
  .header__contacts {
    gap: 16px;
  }
}
@media screen and (max-width: 1390px) {
  .header__contacts {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .header__contacts {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin: 12px 0 0;
    padding: 10px 16px;
    background-color: #F5F5F5;
    gap: 22px;
    grid-column: span 2;
  }
  .header__contacts .contact-item__phone,
  .header__contacts .contact-item__vb,
  .header__contacts .contact-item__tg {
    display: none;
  }
}
.header__contacts-divider {
  width: 1px;
  background: rgba(54, 55, 56, 0.3);
}
.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 56px;
  padding: 16px 32px;
  color: #222222;
  border: 1px solid #363738;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1500px) {
  .header__btn {
    padding: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header__btn {
    display: none;
  }
}
.header__btn:hover {
  color: #7D8184;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .header__btns {
    display: none;
  }
}
.header__btn-search {
  width: 32px;
  height: 32px;
  padding: 0;
}
.header__btn-search svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__btn-search circle {
  color: #DE4936;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__btn-search path {
  color: #FFFFFF;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__btn-search:hover circle {
  color: #F5F5F5;
}
.header__btn-search:hover path {
  color: #222222;
}
.header__btn-compare span, .header__btn-cart span {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #FAFAFA;
  background: #DE4936;
  border-radius: 8px;
}
.header__btn-compare {
  position: relative;
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-compare.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}
.header__btn-compare:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: -1;
  width: 32px;
  height: 32px;
  background-color: #F5F5F5;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__btn-compare:hover:before {
  opacity: 1;
}
.header__btn-cart {
  position: relative;
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-cart.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}
.header__btn-cart:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: -1;
  width: 32px;
  height: 32px;
  background-color: #F5F5F5;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__btn-cart:hover:before {
  opacity: 1;
}
.header__search-wrap {
  position: relative;
}
.header__search {
  position: absolute;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 16px;
  background-color: #F5F5F5;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  gap: 12px;
  inset: 0;
}
.header__search.open {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .header__search.open {
    height: 56px;
    margin-top: -56px;
  }
}
.header__search-close {
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-header-close.svg);
}

@-webkit-keyframes stickyShow {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes stickyShow {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.nav {
  padding: 12px 0;
  background: #222222;
}
@media screen and (max-width: 767px) {
  .nav {
    position: fixed;
    -webkit-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%);
    opacity: 0;
  }
  .nav.open {
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding-bottom: 70px;
    overflow-y: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
  }
}
.nav__to-catalog {
  display: none;
}
@media screen and (max-width: 767px) {
  .nav__to-catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #FAFAFA;
    gap: 8px;
  }
  .nav__to-catalog:before {
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../img/icon-white-catalog.svg);
  }
  .nav__to-catalog:after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../img/icon-white-arrow.svg);
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    padding-top: 24px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(254, 250, 241, 0.4);
    gap: 24px;
  }
}
.nav__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FAFAFA;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .nav__item {
    font-size: 24px;
    line-height: 32px;
  }
}

.contact-item {
  display: grid;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  grid-template-columns: 1fr 24px 24px;
  gap: 4px 8px;
}
.contact-item--vertical {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-item--vertical .contact-item__city {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #222222;
  justify-self: center;
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .contact-item--vertical .contact-item__city:before {
    display: none;
  }
}
.contact-item--vertical .contact-item__place {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #363738;
  justify-self: center;
  grid-column: span 2;
}
.contact-item--vertical .contact-item__phone {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #222222;
  justify-self: center;
  grid-column: span 2;
}
.contact-item--vertical .contact-item__phone:before {
  display: none;
}
.contact-item--vertical .contact-item__vb,
.contact-item--vertical .contact-item__tg {
  width: 48px;
  height: 48px;
}
.contact-item--vertical .contact-item__vb {
  justify-self: end;
}
.contact-item--vertical .modal__divider {
  width: 100%;
  grid-column: span 2;
}
.contact-item--vertical .header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  grid-column: span 2;
}
.contact-item__city {
  grid-column: span 3;
}
@media screen and (max-width: 767px) {
  .contact-item__city {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
  }
  .contact-item__city:before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../img/icons-phone.svg);
  }
}
.contact-item__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  gap: 8px;
}
.contact-item__phone:before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/icons-phone.svg);
}
.contact-item__vb {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-viber.svg);
  background-size: contain;
}
.contact-item__tg {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-tg.svg);
  background-size: contain;
}
.contact-item__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.button {
  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;
  height: 56px;
  padding: 16px;
  background: #DE4936;
  border-radius: 4px;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.button:hover {
  background: #E57061;
}

.footer {
  padding: 60px 0;
  color: #FFFFFF;
  background: #222222;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 32px 0 90px;
  }
}
@media screen and (max-width: 767px) {
  .footer .grid {
    gap: 60px;
  }
}
.footer__logo {
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    -webkit-box-ordinal-group: -2;
    -ms-flex-order: -3;
    order: -3;
  }
}
.footer__logo .logo {
  margin-bottom: 24px;
}
.footer__col {
  grid-column: span 2;
  justify-items: start;
}
@media screen and (max-width: 767px) {
  .footer__col {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    grid-column: span 1;
  }
}
.footer__col-wide {
  grid-column: span 3;
  justify-items: start;
}
@media screen and (max-width: 767px) {
  .footer__col-wide {
    grid-column: span 2;
  }
}
.footer__col-wide--form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .footer__col-wide--form {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
@media screen and (max-width: 767px) {
  .footer__col-wide--contacts {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
.footer__col-title {
  margin-bottom: 12px;
  padding-bottom: 12px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #FFFFFF;
}
.footer__col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.footer__contact {
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #FFFFFF;
}
.footer__contact .contact-item__phone:before {
  background-image: url(../img/icons-phone-dark.svg);
}
.footer__contact .contact-item__vb {
  display: block;
  background-image: url(../img/icons-viber-dark.svg);
}
.footer__contact .contact-item__tg {
  background-image: url(../img/icons-tg-dark.svg);
}
.footer .form {
  margin-top: 16px;
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  margin-top: 46px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer__socials {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.footer__socials-title {
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0.03em;
}
.footer__socials-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.footer__socials-item {
  width: 32px;
  height: 32px;
}
.footer__socials-item--vb {
  background-image: url(../img/footer-viber.svg);
}
.footer__socials-item--tg {
  background-image: url(../img/footer-tg.svg);
}
.footer__socials-item--inst {
  background-image: url(../img/footer-inst.svg);
}
.footer__socials-item--yt {
  background-image: url(../img/footer-yt.svg);
}
.footer__socials-item--tt {
  background-image: url(../img/footer-tt.svg);
}
.footer__policy {
  display: block;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-top: 46px;
  color: #FFFFFF;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
@media screen and (max-width: 767px) {
  .footer__policy {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
.footer__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #7D8184;
  grid-column: span 12;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer__info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
    padding-top: 24px;
    grid-column: span 2;
  }
}

.input {
  height: 56px;
  padding: 16px;
  color: #7D8184;
  background: #F5F5F5;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 4px;
}
.input::-webkit-input-placeholder {
  color: #7D8184;
}
.input::-moz-placeholder {
  color: #7D8184;
}
.input:-ms-input-placeholder {
  color: #7D8184;
}
.input::-ms-input-placeholder {
  color: #7D8184;
}
.input::placeholder {
  color: #7D8184;
}

select.input {
  padding-right: 30px; /* место под стрелку */
  background-image: url("../img/icon-select.svg");
  background-repeat: no-repeat;
  background-position: right 10px center; /* вот тут регулируется положение */
  background-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea.input {
  min-height: 100px;
  resize: none;
}

.form {
  width: 100%;
}
.form__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .form__col {
    grid-column: span 2;
  }
}
.form__col-fullwith {
  grid-column: span 2;
}
.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .form__label {
    grid-column: span 2;
  }
}
.form__label span {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #222222;
}

.catalog-list {
  position: relative;
}
.catalog-list__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.catalog-list__sublist-wrapper {
  position: absolute;
  top: 75px;
  left: 100%;
  z-index: 10;
  min-width: 350px;
  min-height: calc(100% - 64px);
  padding: 16px 30px;
  background: #F5F5F5;
  border-radius: 4px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.catalog-list__sublist-wrapper.open {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
@media screen and (max-width: 767px) {
  .catalog-list__sublist-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
  }
}
.catalog-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 20px 12px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  gap: 12px;
}
.catalog-list__item:hover {
  background: #F5F5F5;
}
.catalog-list__item--centered {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog-list__item--to-all {
  color: #F5F5F5;
  background: #222222;
  border-radius: 4px;
}
.catalog-list__item--to-all:hover {
  background: #363738;
}
.catalog-list__item--to-all .catalog-list__item-icon {
  margin: 0 6px;
  mix-blend-mode: initial;
}
.catalog-list__item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog-list__item-name:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-catalog-arrow.svg);
}
.catalog-list__item--to-all .catalog-list__item-name:after {
  background-image: url(../img/icons-catalog-arrow-to-all.svg);
}
.catalog-list__item-icon {
  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: 50px;
  height: 50px;
  mix-blend-mode: multiply;
  -o-object-fit: contain;
  object-fit: contain;
}
.catalog-list__sublist-title {
  margin-bottom: 36px;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .catalog-list__sublist-title {
    margin-bottom: 0;
  }
}
.catalog-list__sublist-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.catalog-list__sublist-item {
  position: relative;
  -ms-flex-item-align: start;
  align-self: flex-start;
  text-decoration: underline;
  border-right: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
}
.catalog-list__sublist-item:after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  right: -36px;
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-products-slider-arrow-right.svg);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog-list__sublist-item:hover {
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
}
.catalog-list__sublist-item:hover:after {
  opacity: 1;
}
.catalog-list__sublist-header {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 767px) {
  .catalog-list__sublist-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(54, 55, 56, 0.3);
    grid-template-columns: 72px 1fr;
    gap: 12px;
  }
}
.catalog-list__sublist-close {
  display: none;
}
@media screen and (max-width: 767px) {
  .catalog-list__sublist-close {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../img/icons-products-slider-arrow-right.svg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    grid-column: span 2;
  }
}
.catalog-list__sublist-header-img {
  display: none;
}
@media screen and (max-width: 767px) {
  .catalog-list__sublist-header-img {
    display: block;
    width: 72px;
    height: 72px;
    mix-blend-mode: multiply;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.catalog-list__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  gap: 8px;
}
.catalog-list__item-link:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-products-slider-arrow-right.svg);
}

/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */
:root {
  --swiper-theme-color: #007AFF;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  z-index: 1;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.swiper {
  position: relative;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -o-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  position: relative;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-slides-offset-before);
  margin-inline-start: var(--swiper-slides-offset-before);
  scroll-margin-inline-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:last-child {
  -webkit-margin-end: var(--swiper-slides-offset-after);
  margin-inline-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-slides-offset-before);
  margin-block-start: var(--swiper-slides-offset-before);
  scroll-margin-block-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:last-child {
  -webkit-margin-after: var(--swiper-slides-offset-after);
  margin-block-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  width: var(--swiper-centered-offset-after);
  height: 100%;
  min-height: 1px;
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: transparent;
  border-radius: 50%;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #FFFFFF;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  width: var(--swiper-virtual-size);
  height: 1px;
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 10;
  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: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  pointer-events: none;
  -o-object-fit: contain;
  object-fit: contain;
  fill: currentColor;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  right: auto;
  left: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-button-prev .swiper-navigation-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal .swiper-button-prev,
.swiper-horizontal .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  margin-left: 0;
}
.swiper-horizontal .swiper-button-prev, .swiper-horizontal ~ .swiper-button-prev, .swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next {
  right: auto;
  left: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal .swiper-button-next, .swiper-horizontal ~ .swiper-button-next, .swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.swiper-vertical .swiper-button-prev,
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-prev,
.swiper-vertical ~ .swiper-button-next {
  right: auto;
  left: var(--swiper-navigation-top-offset, 50%);
  margin-top: 0;
  margin-left: calc(0px - var(--swiper-navigation-size) / 2);
}
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  top: var(--swiper-navigation-sides-offset, 4px);
  bottom: auto;
}
.swiper-vertical .swiper-button-prev .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-prev .swiper-navigation-icon {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-next {
  top: auto;
  bottom: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-vertical .swiper-button-next .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-next .swiper-navigation-icon {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: var(--swiper-pagination-top, auto);
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  background: var(--swiper-pagination-bullet-inactive-color, #000000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.swiper-pagination-bulletbutton {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  top: 50%;
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  width: 8px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  position: absolute;
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  position: relative;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  -ms-touch-action: none;
  touch-action: none;
}
.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  top: var(--swiper-scrollbar-top, auto);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  left: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  height: var(--swiper-scrollbar-size, 4px);
}
.swiper-vertical > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  top: var(--swiper-scrollbar-sides-offset, 1%);
  right: var(--swiper-scrollbar-right, 4px);
  left: var(--swiper-scrollbar-left, auto);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  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%;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1000;
  opacity: 0;
  pointer-events: none;
}

.swiper-thumbs .swiper-slide-thumb-active {
  /* Styles for active thumb slide */
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  pointer-events: none;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: hidden;
  pointer-events: none;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  visibility: visible;
  pointer-events: auto;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.swiper-cube .swiper-cube-shadow:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  visibility: visible;
  pointer-events: auto;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  -o-transition-property: transform, opacity, height;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  overflow: hidden;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.main-slider {
  position: relative;
  --swiper-pagination-bullet-width: 50px;
  --swiper-pagination-bullet-height: 2px;
  --swiper-pagination-bullet-inactive-color: #FEFAF1;
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  --swiper-pagination-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .main-slider {
    --swiper-pagination-bullet-width: 28px;
  }
}
.main-slider .swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: 200px;
}
@media screen and (max-width: 767px) {
  .main-slider .swiper-pagination-bullet-active {
    --swiper-pagination-bullet-width: 56px;
  }
}
.main-slider__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-slider__pagination-wrap {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .main-slider__pagination-wrap {
    left: 16px;
  }
}
.main-slider__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #7D8184;
  gap: 6px;
}
.main-slider__count-current {
  color: #FFFFFF;
}
.main-slider__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.main-slider__next, .main-slider__prev {
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-arrow-right.svg);
}
.main-slider__next.swiper-button-disabled, .main-slider__prev.swiper-button-disabled {
  opacity: 0.4;
}
.main-slider__prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main-slider__slide-content {
  position: absolute;
  bottom: 90px;
  left: 32px;
  max-width: 600px;
}
.main-slider__slide-content .button {
  min-width: 185px;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .main-slider__slide-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.main-slider__slide-title {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 64px;
  line-height: 68px;
  color: #FAFAFA;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .main-slider__slide-title {
    font-size: 32px;
    line-height: 36px;
  }
}

.main-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .main-services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.main-services__item-img {
  width: 100%;
  height: 264px;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-services__item {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.main-services__item-bottom {
  padding: 32px;
  background: #222222;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.main-services__item-bottom:hover {
  background: #363738;
}
.main-services__item-name {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #FAFAFA;
  letter-spacing: 0.03em;
}
.main-services__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  color: #FFFFFF;
  gap: 8px;
}
.main-services__item-link:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-arrow-right.svg);
}

.product-slider {
  padding: 80px 0;
  --swiper-pagination-bullet-width: 50px;
  --swiper-pagination-bullet-height: 2px;
  --swiper-pagination-bullet-inactive-color: #222222;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-color: #222222;
}
@media screen and (max-width: 767px) {
  .product-slider {
    padding: 40px 0;
    --swiper-pagination-bullet-width: 28px;
  }
}
.product-slider .swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: 200px;
}
@media screen and (max-width: 767px) {
  .product-slider .swiper-pagination-bullet-active {
    --swiper-pagination-bullet-width: 100px;
  }
}
.product-slider__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  gap: 16px;
}
.product-slider__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .product-slider__title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.03em;
  }
}
.product-slider__count {
  color: rgba(34, 34, 34, 0.2);
}
@media screen and (max-width: 767px) {
  .product-slider__count {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.product-slider__count .swiper-pagination-current, .product-slider__count .product-slider__count-current {
  color: #222222;
}
.product-slider__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.product-slider__prev, .product-slider__next {
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-products-slider-arrow-right.svg);
}
.product-slider__prev.swiper-button-disabled, .product-slider__next.swiper-button-disabled {
  opacity: 0.4;
}
.product-slider__prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.product-slider__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .product-slider__navigation {
    display: none;
  }
}
.product-slider__swiper {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .product-slider__swiper {
    border-bottom: none;
  }
}
.product-slider__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
}
.product-slider__pagination-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .product-slider__pagination-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 36px;
    gap: 16px;
  }
}
.product-slider {
  /* Растягиваем все слайды по высоте самого высокого слайда */
}
.product-slider .swiper-wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.product-slider {
  /* Слайд должен тянуться на всю доступную высоту */
}
.product-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.product-card {
  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;
  height: 100%;
  border-radius: 16px;
}
.product-card:after {
  content: "";
  position: absolute;
  top: 0;
  right: -68px;
  bottom: 0;
  width: 1px;
  background: rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 1660px) {
  .product-card:after {
    right: -16px;
  }
}
@media screen and (max-width: 767px) {
  .product-card:after {
    right: -24px;
  }
}
.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
}
.product-card__badge {
  padding: 4px 12px;
  font-weight: 600;
  font-size: 12px;
  color: #FFFFFF;
  border-radius: 4px;
}
.product-card__badge.discount {
  background: #DE4936;
}
.product-card__badge.new {
  background: #FF8D28;
}
.product-card__badge.hit {
  background: #34C759;
}
.product-card__image-wrapper {
  position: relative;
  height: 250px;
  margin-bottom: 12px;
  text-align: center;
}
.product-card__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-card__compare {
  position: absolute;
  top: 12px;
  right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: #E9E9E9;
  border-radius: 50%;
  cursor: pointer;
}
.product-card__compare path {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  fill: #222222;
}
.product-card__compare .path {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  stroke: #222222;
}
.product-card__compare circle {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  fill: #F5F5F5;
}
.product-card__compare rect {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  fill: #FFFFFF;
}
.product-card__compare:hover path {
  fill: #FFFFFF;
}
.product-card__compare:hover .path {
  stroke: #FFFFFF;
}
.product-card__compare:hover circle {
  fill: #222222;
}
.product-card__compare:hover rect {
  fill: #FFFFFF;
}
.product-card__compare:not(.added) .comparison-remove {
  display: none;
}
.product-card__compare.added .comparison-add {
  display: none;
}
.product-card__compare .comparison-remove path {
  fill: #FFFFFF;
}
.product-card__compare .comparison-remove .path {
  stroke: #FFFFFF;
}
.product-card__compare .comparison-remove circle {
  fill: #222222;
}
.product-card__compare .comparison-remove rect {
  fill: #FFFFFF;
}
.product-card__compare-input {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}
.product-card__compare-input:checked + svg path {
  fill: #FFFFFF;
}
.product-card__compare-input:checked + svg circle {
  fill: #222222;
}
.product-card__compare-input:checked + svg rect {
  fill: #FFFFFF;
}
.product-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 12px;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .product-card__content {
    padding: 0;
  }
}
.product-card__title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-weight: 500;
}
.product-card__meta {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  color: #555555;
  grid-template-columns: repeat(4, auto);
  gap: 12px;
}
@media screen and (max-width: 1500px) {
  .product-card__meta {
    gap: 8px;
  }
}
.product-card__meta-item {
  position: relative;
  padding-right: 12px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.product-card__meta-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 14px;
  background: #CCCCCC;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.product-card__spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 12px;
  color: #7D8184;
  border-top: 1px solid rgba(54, 55, 56, 0.3);
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
}
.product-card__spec-value {
  font-size: 12px;
  color: #222222;
}
.product-card__footer {
  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: 8px;
}
.product-card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 0 8px;
}
.product-card__price-current {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 500;
  color: #DE4936;
}
.product-card__price-old {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 24px;
  text-decoration: line-through;
  opacity: 0.5;
}
.product-card__button {
  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;
  height: 48px;
  padding: 12px 16px;
  font-size: 12px;
  color: #FAFAFA;
  white-space: nowrap;
  background: #222222;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  gap: 8px;
}
.product-card__button:hover {
  background: #58595B;
}
.product-card__button:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-product-cart.svg);
}
@media screen and (min-width: 768px) {
  .product-card.line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    grid-column: span 3;
    gap: 12px;
  }
  .product-card.line:after {
    top: initial;
    right: initial;
    bottom: -32px;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .product-card.line .product-card__content {
    display: grid;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-line-pack: center;
    align-content: center;
    padding: 0 12px;
    gap: 24px;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title price" "meta price";
  }
  .product-card.line .product-card__spec {
    display: none;
  }
  .product-card.line .product-card__title {
    grid-area: title;
  }
  .product-card.line .product-card__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-area: meta;
  }
  .product-card.line .product-card__price {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
  }
  .product-card.line .product-card__footer {
    grid-area: price;
    justify-self: end;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .product-card.line .product-card__footer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 32px;
  }
}
.product-card__compare-del {
  position: absolute;
  top: -18px;
  left: calc(50% - 12px);
  width: 36px;
  height: 36px;
  background-color: #FFFFFF;
  background-image: url(../img/icon-header-close.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px 24px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.main-custom {
  padding: 80px 0;
}
.main-custom__img-wrap {
  grid-column: span 5;
}
@media screen and (max-width: 767px) {
  .main-custom__img-wrap {
    margin-bottom: 24px;
    grid-column: span 2;
  }
}
.main-custom__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-column: span 7;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .main-custom__content {
    grid-column: span 2;
  }
}
.main-custom__title {
  padding-bottom: 32px;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .main-custom__title {
    padding-bottom: 24px;
    font-size: 24px;
    line-height: 28px;
  }
}
.main-custom__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .main-custom__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}
.main-custom__link {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 12px;
  background: #222222;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.main-custom__link:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background-image: url(../img/main-custom-icon-link.svg);
}
.main-custom__link:hover {
  background: #363738;
}
.main-custom__link-img {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
.main-custom__link-text {
  color: #F5F5F5;
}
.main-custom__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  padding-bottom: 4px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  gap: 8px;
}
.main-custom__more:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-products-slider-arrow-right.svg);
}

.main-installation {
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .main-installation {
    gap: 20px;
  }
}
.main-installation__item {
  display: grid;
  overflow: hidden;
  background-color: #222222;
  border-radius: 4px;
  grid-column: span 6;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .main-installation__item {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
}
.main-installation__item-content {
  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;
  padding: 32px;
  background-color: #222222;
}
.main-installation__item-content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/main-installation-bg.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media screen and (max-width: 767px) {
  .main-installation__item-content:after {
    display: none;
  }
}
.main-installation__item-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #FAFAFA;
  letter-spacing: 0.03em;
}
.main-installation__item-img-wrap {
  height: 220px;
  overflow: hidden;
  font-size: 0;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .main-installation__item-img-wrap {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    min-height: 220px;
  }
}
.main-installation__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-installation__item-link {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  font-weight: 500;
  color: #FFFFFF;
  gap: 8px;
}
.main-installation__item-link:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-arrow-right.svg);
}

.section {
  position: relative;
  padding: 80px 0;
  --swiper-pagination-bullet-width: 50px;
  --swiper-pagination-bullet-height: 2px;
  --swiper-pagination-bullet-inactive-color: #222222;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-color: #222222;
}
@media screen and (max-width: 767px) {
  .section {
    --swiper-pagination-bullet-width: 28px;
  }
}
.section .swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: 200px;
}
@media screen and (max-width: 767px) {
  .section .swiper-pagination-bullet-active {
    --swiper-pagination-bullet-width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}
.section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  gap: 16px;
}
.section__header.centered {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .section__header .section__link {
    display: none;
  }
}
.section__main-title {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .section__main-title {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.02em;
  }
}
.section__main-title--product {
  margin-top: 64px;
}
.section__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.03em;
  }
}
.section__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  gap: 8px;
}
.section__link:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-products-slider-arrow-right.svg);
}
.section__link--bottom {
  display: none;
}
@media screen and (max-width: 767px) {
  .section__link--bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-works {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .main-works {
    border-bottom: none;
  }
}
.main-works__item {
  position: relative;
}
.main-works__item:after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  width: 1px;
  background: rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .main-works__item:after {
    right: -25px;
  }
}
.main-works__item:last-child:after {
  display: none;
}
.main-works__pagination-wrap {
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .main-works__pagination-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-works__count {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: rgba(34, 34, 34, 0.2);
  font-style: italic;
}
.main-works__count-current {
  color: #222222;
  font-style: normal;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.news-item__img-wrap {
  height: 400px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .news-item__img-wrap {
    height: 240px;
  }
}
.news-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-item__date {
  margin-bottom: 12px;
  font-weight: 500;
  color: #7D8184;
}
.news-item__title {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.news-item__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto 0 0;
  padding-bottom: 4px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  gap: 8px;
}
.news-item__more:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-products-slider-arrow-right.svg);
}
.news-item__description {
  display: -webkit-box;
  margin-bottom: 24px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.main-video-reviews {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .main-video-reviews {
    border-bottom: none;
  }
}
.main-video-reviews__item {
  position: relative;
}
.main-video-reviews__item:after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  width: 1px;
  background: rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .main-video-reviews__item:after {
    right: -25px;
  }
}
.main-video-reviews__item:last-child:after {
  display: none;
}
.main-video-reviews__pagination-wrap {
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .main-video-reviews__pagination-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-video-reviews__count {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: rgba(34, 34, 34, 0.2);
  font-style: italic;
}
.main-video-reviews__count-current {
  color: #222222;
  font-style: normal;
}

.video-review-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.video-review-item__preview-wrap {
  position: relative;
  height: 280px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .video-review-item__preview-wrap {
    height: 172px;
  }
}
.video-review-item__preview-wrap:after {
  content: "";
  position: absolute;
  top: calc(50% - 46px);
  left: calc(50% - 46px);
  width: 92px;
  height: 92px;
  background-image: url(../img/youtube-btn.svg);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.video-review-item__preview-wrap:hover:after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.video-review-item__preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-review-item__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

.main-news {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .main-news {
    border-bottom: none;
  }
}
.main-news__item {
  position: relative;
}
.main-news__item:after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  width: 1px;
  background: rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .main-news__item:after {
    right: -25px;
  }
}
.main-news__item:last-child:after {
  display: none;
}
.main-news__pagination-wrap {
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .main-news__pagination-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-news__count {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: rgba(34, 34, 34, 0.2);
  font-style: italic;
}
.main-news__count-current {
  color: #222222;
  font-style: normal;
}

.main-seo__title {
  margin-bottom: 32px;
  padding-bottom: 32px;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .main-seo__title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.03em;
  }
}
.main-seo__text p {
  margin-bottom: 1.5em;
}

.breadcrumbs {
  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;
  padding: 20px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: #7D8184;
  gap: 12px;
}
.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.breadcrumbs__item:before {
  content: "/";
  color: currentColor;
}
.breadcrumbs__item:last-child {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #222222;
}

@media screen and (max-width: 767px) {
  .catalog.section.container {
    padding: 40px 16px;
  }
}
.catalog__grid {
  display: grid;
  padding: 36px 30px;
  background-color: #F5F5F5;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .catalog__grid {
    padding: 12px;
    gap: 12px;
    grid-template-columns: 1fr;
  }
}
.catalog__item {
  position: relative;
  display: grid;
  -ms-flex-line-pack: start;
  align-content: start;
  padding: 50px 20px 36px;
  background: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  grid-template-columns: 66px 1fr;
  gap: 8px 16px;
}
@media screen and (max-width: 767px) {
  .catalog__item {
    padding: 12px;
    grid-template-columns: 1fr;
  }
}
.catalog__item:after {
  content: "";
  position: absolute;
  top: 18px;
  right: 20px;
  width: 24px;
  height: 24px;
  background-image: url(../img/icons_arrow-down-right-up.svg);
}
.catalog__item:hover {
  border: 1px solid #7D8184;
}
.catalog__item-img-wrap {
  width: 66px;
  height: 66px;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .catalog__item-img-wrap {
    grid-row: span 1;
  }
}
.catalog__item-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.catalog__item-subitems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.catalog__item-subitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: #7D8184;
  gap: 8px;
}
.catalog__item-subitem:not(:last-child):after {
  content: "•";
}

.product {
  --swiper-pagination-bullet-width: 50px;
  --swiper-pagination-bullet-height: 2px;
  --swiper-pagination-bullet-inactive-color: #222222;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-color: #222222;
}
@media screen and (max-width: 767px) {
  .product {
    --swiper-pagination-bullet-width: 28px;
  }
}
.product .swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: 200px;
}
@media screen and (max-width: 767px) {
  .product .swiper-pagination-bullet-active {
    --swiper-pagination-bullet-width: 100px;
  }
}
.product__sliders {
  position: relative;
  border-right: 1px solid rgba(54, 55, 56, 0.3);
  grid-column: span 5;
}
@media screen and (max-width: 767px) {
  .product__sliders {
    border-right: none;
    grid-column: span 2;
  }
}
.product__sliders:not(.added) .comparison-remove {
  display: none;
}
.product__sliders.added .comparison-add {
  display: none;
}
.product__props {
  padding: 16px 0;
  border-top: 1px solid rgba(54, 55, 56, 0.3);
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  grid-column: span 4;
}
@media screen and (max-width: 767px) {
  .product__props {
    border: none;
    grid-column: span 2;
  }
}
.product__other {
  grid-column: span 3;
}
@media screen and (max-width: 767px) {
  .product__other {
    grid-column: span 2;
  }
}
.product__main-slider {
  margin-bottom: 12px;
}
.product__thumb-slider-slide {
  margin: 1px;
  overflow: hidden;
  background: #F5F5F5;
  border: 1px solid transparent;
  border-radius: 4px;
}
.product__thumb-slider-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__thumb-slider-slide.swiper-slide-thumb-active {
  border: 1px solid #222222;
}
.product__sku {
  margin-bottom: 5px;
  font-size: 12px;
  color: #7D8184;
}
.product__status {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 16px;
  color: #34C759;
}
.product__price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: 0.04em;
  gap: 8px;
}
.product__price-old {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #222222;
  letter-spacing: 0.03em;
  opacity: 0.5;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
}
.product__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .product__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product__btn {
  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;
  height: 56px;
  padding: 16px 48px;
  color: #FAFAFA;
  background: #222222;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  gap: 10px;
}
@media screen and (max-width: 1500px) {
  .product__btn {
    padding: 16px 32px;
  }
}
.product__btn:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-product-cart.svg);
}
.product__btn:hover {
  background: #58595B;
}
.product__btn-outline {
  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;
  height: 56px;
  padding: 16px 48px;
  color: #222222;
  border: 1px solid #363738;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1500px) {
  .product__btn-outline {
    padding: 16px 32px;
  }
}
.product__btn-outline:hover {
  color: #7D8184;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.product__properties-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  gap: 8px;
}
.product__properties-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 20px;
  gap: 8px;
}
.product__properties-item-key {
  color: #7D8184;
}
.product__properties-item-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #222222;
  gap: 8px;
}
.product__properties-item-value:before {
  content: "-";
}
.product__properties-all {
  -ms-flex-item-align: baseline;
  align-self: baseline;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px dashed #7D8184;
  cursor: pointer;
}
.product__properties-name {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #222222;
}
.product__properties-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 24px;
  gap: 12px;
}
.product__properties-radio span {
  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;
  padding: 6px 7px;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 4px;
  cursor: pointer;
}
.product__properties-radio input {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}
.product__properties-radio input:checked + span {
  color: #FFFFFF;
  background: #DE4936;
}
.product__properties-color {
  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;
  gap: 8px;
}
.product__properties-color span {
  font-size: 12px;
  line-height: 18px;
  color: #222222;
}
.product__properties-color img {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 20px;
}
.product__properties-color input {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}
.product__properties-color input:checked + img {
  outline: 3px solid #DE4936;
}
.product__installment {
  margin-bottom: 24px;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 4px;
}
.product__installment-title {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.product__installment-desc {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
}
.product__installment-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  gap: 8px;
}
.product__installment-more:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-products-slider-arrow-right.svg);
}
.product__installment-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}
.product__other-services {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
  padding: 20px 12px;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 4px;
  gap: 8px;
}
.product__other-services:after {
  content: "";
  position: absolute;
  top: 24px;
  right: 12px;
  width: 24px;
  height: 24px;
  background-image: url(../img/icons_arrow-down-right-up.svg);
}
.product__other-promotion {
  display: block;
  margin-top: 24px;
  margin-bottom: 24px;
}
.product__passport {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  gap: 8px;
}
.product__passport:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-pdf.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.product__passport:hover {
  color: #7D8184;
}
.product__compare {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #222222;
  background: #FFFFFF;
  border-radius: 28px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: 10px;
}
.product__compare svg {
  width: 24px;
  height: 24px;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.product__compare .product__compare-text-add {
  display: inline;
}
.product__compare .product__compare-text-remove {
  display: none;
}
.product__compare input {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}
.product__compare input:checked ~ .product__compare-text-add {
  display: none;
}
.product__compare input:checked ~ .product__compare-text-remove {
  display: inline;
}

.tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .tabs__nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: none;
    gap: 12px;
  }
}
.tabs__tab {
  position: relative;
  padding-bottom: 24px;
  color: #7D8184;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tabs__tab {
    padding: 8px 16px;
    color: #7D8184;
    background: #F5F5F5;
    border-radius: 4px;
  }
}
.tabs__tab:hover {
  color: #000000;
}
@media screen and (max-width: 767px) {
  .tabs__tab:hover {
    color: #FFFFFF;
  }
}
.tabs__tab--active {
  color: #222222;
}
@media screen and (max-width: 767px) {
  .tabs__tab--active {
    color: #FFFFFF;
    background: #222222;
  }
}
.tabs__tab--active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
}
@media screen and (max-width: 767px) {
  .tabs__tab--active::after {
    display: none;
  }
}
.tabs__content {
  padding: 60px 0 20px;
}
.tabs__content p {
  margin-bottom: 1.5em;
}
.tabs__panel {
  display: none;
  line-height: 1.6;
  color: #444444;
}
.tabs__panel .table {
  max-width: 1000px;
  margin: 0 auto;
}
.tabs__panel--active {
  display: block;
}

.filter {
  padding: 32px 24px;
  background: #F5F5F5;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .filter {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding-bottom: 102px;
    overflow-y: auto;
    -webkit-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
  }
  .filter.open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.filter__close {
  display: none;
}
@media screen and (max-width: 767px) {
  .filter__close {
    display: block;
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
    background-image: url(../img/icons-products-slider-arrow-right.svg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.filter__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #111820;
  letter-spacing: 0.03em;
}
.filter__category {
  font-weight: 500;
  cursor: pointer;
}
.filter__category-content {
  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: 12px;
  padding: 8px 0;
  gap: 8px;
}
.filter__category-wrap {
  padding: 24px 0;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
}
.filter__category-wrap:last-of-type {
  border-bottom: none;
}
.filter__range-input {
  position: relative;
}
.filter__range-input:before {
  position: absolute;
  top: 9px;
  left: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #7D8184;
}
.filter__range-input--min:before {
  content: "от";
}
.filter__range-input--max:before {
  content: "до";
}
.filter__range-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.filter__range {
  width: 100%;
  max-width: 150px;
  height: 36px;
  margin-bottom: 16px;
  padding: 8px 12px 8px 35px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4%;
  color: #1A141F;
  background: #FFFFFF;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 2px;
  -webkit-box-shadow: inset 0 4px 5px rgba(33, 1, 38, 0.03);
  box-shadow: inset 0 4px 5px rgba(33, 1, 38, 0.03);
}
.filter__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  gap: 18px;
}
.filter__btn {
  height: 56px;
  padding: 16px 24px;
  background: #DE4936;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.filter__btn:hover {
  background-color: #E57061;
}
.filter__btn-outline {
  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;
  height: 56px;
  padding: 16px 24px;
  color: #222222;
  border: 1px solid #363738;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.filter__btn-outline:hover {
  color: #7D8184;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.checkbox__input {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__label {
  font-size: 14px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox__label a:hover {
  text-decoration: underline;
}
.checkbox__icon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border: 1px solid #222222;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.checkbox__input:checked + .checkbox__icon {
  background: #222222;
}
.checkbox__input:checked + .checkbox__icon:after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2211%22%20viewBox%3D%220%200%2012%2011%22%20fill%3D%22none%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1%205.16673L4.75%209.33339L11%201.00006%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.checkbox__input:disabled + .checkbox__icon {
  opacity: 0.5;
}

.category > .grid {
  grid-template-rows: auto 1fr;
}
.category.section {
  padding-right: 16px;
  padding-left: 16px;
}
.category__filter-wrap {
  grid-column: span 3;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .category__filter-wrap {
    grid-column: span 2;
    grid-row: span 1;
  }
}
.category__filter-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .category__filter-btn {
    position: relative;
    display: block;
    width: 100%;
    height: 56px;
    margin-bottom: 24px;
    padding: 16px 52px 16px 16px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    color: #111820;
    letter-spacing: 0.03em;
    background: #F5F5F5;
    border: 1px solid #363738;
    border-radius: 4px;
  }
  .category__filter-btn:after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background-image: url(../img/icon-filter-filter.svg);
  }
}
.category__footer {
  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;
  padding-top: 32px;
  gap: 32px;
  grid-column: 4/span 9;
}
@media screen and (max-width: 767px) {
  .category__footer {
    grid-column: span 2;
  }
}
.category__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 32px;
  grid-column: 4/span 9;
}
@media screen and (max-width: 767px) {
  .category__top {
    padding: 24px 16px;
    grid-column: span 2;
  }
}
.category__grid {
  display: grid;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  grid-column: 4/span 9;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px 135px;
}
.category__grid .product-card:nth-child(3n):after, .category__grid .product-card:only-child:after, .category__grid .product-card:last-child:after {
  display: none;
}
@media screen and (max-width: 1660px) {
  .category__grid {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .category__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-column: span 2;
    gap: 20px;
  }
  .category__grid .product-card {
    width: 100%;
  }
  .category__grid .product-card:after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .category__grid.line .product-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    grid-column: span 3;
    gap: 12px;
  }
  .category__grid.line .product-card:after {
    top: initial;
    right: initial;
    bottom: -32px;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .category__grid.line .product-card__content {
    display: grid;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-line-pack: center;
    align-content: center;
    padding: 0 12px;
    gap: 24px;
    grid-template-columns: auto 1fr;
    grid-template-areas: "title price" "meta price";
  }
  .category__grid.line .product-card__spec {
    display: none;
  }
  .category__grid.line .product-card__title {
    grid-area: title;
  }
  .category__grid.line .product-card__meta {
    grid-area: meta;
  }
  .category__grid.line .product-card__footer {
    grid-area: price;
    justify-self: end;
    gap: 40px;
  }
}
.category__btn-outline {
  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;
  height: 56px;
  padding: 16px 24px;
  color: #222222;
  border: 1px solid #363738;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.category__btn-outline:hover {
  color: #7D8184;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.category__view-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .category__view-toggle {
    display: none;
  }
}
.category__view-square, .category__view-list {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
}
.category__view-square.active, .category__view-list.active {
  opacity: 1;
}
.category__view-square {
  background-image: url(../img/icons-square.svg);
}
.category__view-list {
  background-image: url(../img/icons-list.svg);
}
.category__sorting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.category__sorting-select {
  color: #7D8184;
  background: transparent;
  border: none;
  outline: none;
}
.category__subcategories {
  margin-bottom: 24px;
}

.accordion__item {
  display: grid;
  border-bottom: 1px solid #DDDDDD;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  grid-template-rows: auto 0fr;
}
.accordion__item:last-child {
  border-bottom: none;
}
.accordion__item--active {
  grid-template-rows: auto 1fr;
}
.accordion__content {
  padding: 0 15px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion__icon {
  font-weight: bold;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.collapsible__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 20px;
  cursor: pointer;
  gap: 8px;
}
.collapsible__header:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-filter-arrow.svg);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.collapsible__header.open:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.collapsible__content {
  display: none;
}

.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.radio__input {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}
.radio__label {
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio__icon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #222222;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.radio__input:checked + .radio__icon:after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background: #222222;
  border-radius: 50%;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 32px;
  gap: 12px;
}

.tag {
  height: 28px;
  padding: 4px 12px;
  font-size: 14px;
  line-height: 20px;
  color: #363738;
  background: #F5F5F5;
  border-radius: 1000px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.pagination__item {
  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;
  min-width: 40px;
  height: 40px;
  color: #7D8184;
  background: #FFFFFF;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 4px;
}
.pagination__item.active {
  color: #FFFFFF;
  background: #222222;
}
.pagination__dots {
  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;
  min-width: 40px;
  height: 40px;
  color: #7D8184;
  background: #FFFFFF;
}
.pagination__prev, .pagination__next {
  width: 24px;
  height: 24px;
  background-image: url(../img/icons_pagination-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.pagination__prev.disabled, .pagination__next.disabled {
  cursor: default;
  opacity: 0.5;
}
.pagination__prev {
  margin-right: 12px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pagination__next {
  margin-left: 12px;
}

.cart.container {
  padding-right: 16px;
  padding-left: 16px;
}
.cart__list {
  border-top: 1px solid #E5E5E5;
}
.cart__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 30px;
}
.cart__total {
  margin-right: 170px;
  font-weight: 600;
  font-size: 20px;
}
.cart__total-label {
  margin-right: 16px;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  text-align: right;
}
.cart__total-price {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-align: right;
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .cart__total {
    margin-right: 0;
    margin-left: auto;
  }
}
.cart__bottom {
  margin-top: 74px;
}
.cart__form {
  margin-top: 0 !important;
  padding: 48px;
  background: #F5F5F5;
  border-radius: 4px;
  grid-column: span 9;
}
@media screen and (max-width: 767px) {
  .cart__form {
    margin-bottom: 32px;
    padding: 24px 12px;
    grid-column: span 2;
  }
}
.cart__form .input {
  background-color: #FFFFFF;
  border: 1px solid rgba(34, 34, 34, 0.2);
}
.cart__form .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .cart__form .button {
    width: 100%;
    grid-column: span 2;
  }
}
.cart__form-title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .cart__form-title {
    font-size: 24px;
    line-height: 28px;
  }
}
.cart__form-desc {
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .cart__form-desc {
    font-size: 16px;
    line-height: 20px;
  }
}
.cart__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  grid-column: span 3;
}
@media screen and (max-width: 767px) {
  .cart__other {
    grid-column: span 2;
  }
}
.cart__installment {
  -ms-flex-item-align: baseline;
  align-self: baseline;
  margin-bottom: 24px;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 4px;
}
.cart__installment:last-child {
  margin-bottom: 0;
}
.cart__installment-title {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.cart__installment-desc {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
}
.cart__installment-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  gap: 8px;
}
.cart__installment-more:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-products-slider-arrow-right.svg);
}
.cart__installment-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}
.cart__info-title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
.cart__info-desc {
  font-size: 14px;
  line-height: 20px;
}

.cart-item {
  position: relative;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #E5E5E5;
  grid-template-columns: 3fr 1fr 1fr 1fr 40px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .cart-item {
    gap: 24px 12px;
    grid-template-columns: 108px 1fr 120px;
  }
}
.cart-item__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .cart-item__product {
    grid-column: span 3;
    gap: 12px;
  }
}
.cart-item__image {
  width: 108px;
  height: 98px;
  -o-object-fit: contain;
  object-fit: contain;
}
.cart-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cart-item__sku {
  margin-bottom: 4px;
  font-size: 12px;
  color: #7D8184;
}
.cart-item__name {
  font-weight: 500;
  font-size: 16px;
}
.cart-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .cart-item__price {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    grid-column: 2/span 2;
  }
}
.cart-item__price-current {
  font-weight: 500;
}
.cart-item__price-old {
  font-size: 14px;
  line-height: 20px;
  text-decoration: line-through;
  opacity: 0.5;
}
.cart-item__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid #B3B2B2;
}
@media screen and (max-width: 767px) {
  .cart-item .ms-count {
    grid-column: span 2;
  }
}
.cart-item__btn {
  position: relative;
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.cart-item__btn:after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
}
.cart-item__btn:disabled {
  opacity: 0.3;
}
.cart-item__btn.minus:after {
  background-image: url(../img/icon-minus.svg);
}
.cart-item__btn.plus:after {
  background-image: url(../img/icon-plus.svg);
}
.cart-item__count {
  width: 36px;
  text-align: center;
  color: #222222;
  background: transparent;
  border: none;
}
.cart-item__total {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .cart-item__total {
    text-align: right;
  }
}
.cart-item__remove {
  font-size: 20px;
  color: #999999;
  background: none;
  border: none;
  cursor: pointer;
}
.cart-item__remove:hover {
  color: #000000;
}
@media screen and (max-width: 767px) {
  .cart-item__remove {
    position: absolute;
    top: 12px;
    right: 0;
  }
}
.cart-item__remove .btn {
  font-size: 20px;
  color: #999999;
}

.services.container {
  padding-right: 16px;
  padding-left: 16px;
}
.services__grid {
  display: grid;
  padding: 40px 0;
  border-top: 1px solid rgba(54, 55, 56, 0.3);
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .services__grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }
}
.services__grid .news-item {
  position: relative;
}
.services__grid .news-item:nth-child(2n+1):after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  width: 1px;
  background: rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .services__grid .news-item:nth-child(2n+1):after {
    display: none;
  }
}

.service {
  grid-column: 2/span 10;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 0 16px;
    grid-column: span 2;
  }
}

.article {
  padding: 32px 0;
  border-top: 1px solid rgba(54, 55, 56, 0.3);
}
.article h2 {
  margin-bottom: 24px;
  padding-bottom: 24px;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #222222;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
}
.article p {
  margin-bottom: 1.5em;
  font-size: 16px;
  line-height: 24px;
  color: #222222;
}
.article__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 20px;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .article__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
}

.contact-form {
  position: relative;
  padding: 80px;
  background-color: #F5F5F5;
  background-image: url(../img/contact-form-bg.svg);
  background-repeat: no-repeat;
  background-position: right 80px top 33px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 64px 16px;
  }
}
.contact-form--free {
  padding: 80px;
}
.contact-form .form {
  z-index: 1;
  max-width: 870px;
}
.contact-form .input {
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .contact-form .input {
    grid-column: span 2;
  }
}
@media screen and (max-width: 767px) {
  .contact-form .button {
    grid-column: span 2;
  }
}
.contact-form__title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .contact-form__title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.03em;
  }
}
.contact-form__desc {
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .contact-form__desc {
    font-size: 16px;
    line-height: 20px;
  }
}

.blog-articles.container {
  padding: 80px 16px;
}
@media screen and (max-width: 767px) {
  .blog-articles.container {
    padding: 40px 16px;
  }
}
.blog-articles__grid {
  display: grid;
  padding: 40px 0;
  border-top: 1px solid rgba(54, 55, 56, 0.3);
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .blog-articles__grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }
}
.blog-articles__grid .news-item {
  position: relative;
}
.blog-articles__grid .news-item:not(:nth-child(3n)):not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  width: 1px;
  background: rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .blog-articles__grid .news-item:not(:nth-child(3n)):not(:last-child):after {
    display: none;
  }
}
.blog-articles__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
  gap: 32px;
}

.blog-article {
  grid-column: 2/span 10;
}
@media screen and (max-width: 767px) {
  .blog-article {
    padding: 0 16px;
    grid-column: span 2;
  }
}
.blog-article__date {
  margin-bottom: 24px;
  font-weight: 500;
  color: #7D8184;
}

.menu {
  position: relative;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .menu {
    display: none;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -38px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .menu__list {
    margin: 0 -12px;
    overflow-x: auto;
    scrollbar-gutter: 16px;
  }
}
.menu__item {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 38px;
  list-style: none;
  border-right: 1px solid rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .menu__item {
    padding: 0 12px;
  }
}
.menu__item--to-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.menu__item--to-catalog:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-menu-catalog.svg);
}
.menu__item--to-catalog:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-menu-arrow.svg);
}
.menu__link {
  font-weight: 500;
  color: #363738;
}
.menu__more {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #363738;
}
.menu__item--more {
  position: relative;
  z-index: 10;
  display: none;
  margin-right: 38px;
  margin-left: auto;
  padding-right: 0;
  border-right: none;
}
.menu__dropdown {
  position: absolute;
  top: calc(100% + 24px);
  right: 0;
  z-index: -10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 220px;
  padding: 24px;
  background: #F5F5F5;
  border-radius: 4px;
  -webkit-transform: translateY(-8px) scaleY(0);
  -ms-transform: translateY(-8px) scaleY(0);
  transform: translateY(-8px) scaleY(0);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  gap: 24px;
}
.menu__dropdown .menu__item {
  position: relative;
  display: block;
  -ms-flex-item-align: baseline;
  align-self: baseline;
  text-decoration: underline;
  border-right: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
}
.menu__dropdown .menu__item:after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  right: -4px;
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-products-slider-arrow-right.svg);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.menu__dropdown .menu__item:hover {
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
}
.menu__dropdown .menu__item:hover:after {
  opacity: 1;
}
.menu__dropdown .menu__link {
  white-space: normal;
}
.menu__item--open .menu__dropdown {
  z-index: 10;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.search {
  width: 100%;
}
.search__wrap {
  position: relative;
}
.search__input {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #222222;
  background: #FFFFFF;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 4px;
}
.search__btn {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-search-search.svg);
}
.search__btn-reset {
  position: absolute;
  top: 14px;
  right: 44px;
  width: 12px;
  height: 12px;
  background-image: url(../img/icon-search-reset.svg);
}

.menu-btn {
  display: none;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-burger.svg);
  justify-self: end;
}
@media screen and (max-width: 767px) {
  .menu-btn {
    display: block;
  }
}

.bottom-mobile {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  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;
  padding: 8px 16px;
  background: #F5F5F5;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .bottom-mobile {
    display: none;
  }
}
.bottom-mobile__btn {
  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-weight: 500;
  font-size: 12px;
  color: #222222;
  gap: 2px;
}
.bottom-mobile__search, .bottom-mobile__catalog, .bottom-mobile__compare, .bottom-mobile__cart {
  position: relative;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}
.bottom-mobile__search span, .bottom-mobile__catalog span, .bottom-mobile__compare span, .bottom-mobile__cart span {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #FAFAFA;
  background: #DE4936;
  border-radius: 8px;
}
.bottom-mobile__search {
  background-image: url(../img/bottom-mobile-search.svg);
}
.bottom-mobile__catalog {
  background-image: url(../img/bottom-mobile-catalog.svg);
}
.bottom-mobile__compare {
  background-image: url(../img/bottom-mobile-compare.svg);
}
.bottom-mobile__cart {
  position: relative;
  background-image: url(../img/bottom-mobile-cart.svg);
}

.contacts-menu {
  position: fixed;
  right: 0;
  bottom: 90px;
  z-index: 11;
  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;
  width: 50px;
  height: 140px;
  background-image: url(../img/contacts-menu-bg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .contacts-menu {
    display: none;
  }
}
.contacts-menu.open {
  width: 120px;
  height: 445px;
  padding: 70px 20px;
}
.contacts-menu__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contacts-menu__item {
  position: relative;
  display: grid;
  gap: 4px 8px;
  grid-template-columns: 1fr 1fr;
}
.contacts-menu__item:after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 100%;
  height: 1px;
  background: rgba(54, 55, 56, 0.3);
}
.contacts-menu__item-city {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  grid-column: span 2;
}
.contacts-menu__item-vb {
  width: 40px;
  height: 40px;
  background-image: url(../img/contacts-menu-viber.svg);
}
.contacts-menu__item-tg {
  width: 40px;
  height: 40px;
  background-image: url(../img/contacts-menu-tg.svg);
}
.contacts-menu__fake-wrapper {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 18px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 1;
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
  gap: 4px;
}
.contacts-menu.open .contacts-menu__fake-wrapper {
  opacity: 0;
}
.contacts-menu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
  -webkit-transform-origin: 38% 48%;
  -ms-transform-origin: 38% 48%;
  transform-origin: 38% 48%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
  gap: 24px;
}
.contacts-menu.open .contacts-menu__wrapper {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  pointer-events: initial;
}
.contacts-menu__close {
  position: absolute;
  top: 58px;
  right: 38px;
  display: none;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-header-close.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.contacts-menu.open .contacts-menu__close {
  display: block;
}

.main {
  padding-top: 32px;
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 24px;
    gap: 24px;
  }
}
.main .main-slider {
  grid-column: span 9;
}
@media screen and (max-width: 767px) {
  .main .main-slider {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    margin: 0 -16px;
    grid-column: span 2;
  }
}
.main .main-services {
  grid-column: span 9;
}
@media screen and (max-width: 767px) {
  .main .main-services {
    grid-column: span 2;
  }
}
.main .catalog-list {
  grid-column: span 3;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .main .catalog-list {
    grid-column: span 2;
  }
}

.modal {
  position: fixed;
  z-index: 1000;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  inset: 0;
}
.modal--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal__overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  inset: 0;
}
.modal__body {
  position: relative;
  z-index: 1;
  width: 420px;
  max-width: 90%;
  padding: 40px;
  text-align: center;
  background: #FFFFFF;
  border-radius: 6px;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}
.modal__close:before, .modal__close:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #000000;
}
.modal__close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal__close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal__divider {
  background: rgba(54, 55, 56, 0.3);
  border: none;
  border-top: 1px solid #DDDDDD;
}

.search-result__search {
  padding: 24px;
  background-color: #F5F5F5;
}
.search-result__tabs {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .search-result .tabs__tab {
    width: 100%;
  }
}
.search-result__count {
  margin-left: 12px;
  color: #7D8184;
}
.search-result__grid {
  display: grid;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  grid-template-columns: repeat(4, 1fr);
  gap: 65px 125px;
}
@media screen and (max-width: 767px) {
  .search-result__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-column: span 2;
    gap: 24px;
  }
  .search-result__grid .product-card {
    width: 100%;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(54, 55, 56, 0.3);
    border-radius: 0;
  }
  .search-result__grid .product-card:after {
    display: none;
  }
}
.search-result__grid .product-card:nth-child(4n):after {
  display: none;
}
.search-result__grid-news {
  display: grid;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  grid-template-columns: repeat(3, 1fr);
  gap: 65px 125px;
}
@media screen and (max-width: 767px) {
  .search-result__grid-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-column: span 2;
    gap: 24px;
  }
  .search-result__grid-news .news-item {
    width: 100%;
  }
  .search-result__grid-news .news-item:after {
    display: none;
  }
}
.search-result__grid-news .news-item:nth-child(3n):after {
  display: none;
}
.search-result__news-item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .search-result__news-item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  }
}
.search-result__news-item:after {
  content: "";
  position: absolute;
  top: 0;
  right: -62px;
  bottom: 0;
  width: 1px;
  background: rgba(54, 55, 56, 0.3);
}
@media screen and (max-width: 767px) {
  .search-result__news-item:after {
    right: -25px;
  }
}
.search-result__news-item:last-child:after, .search-result__news-item:nth-child(3n):after {
  display: none;
}

.not-found {
  min-height: 100%;
  background-image: url(../img/not-found-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.not-found__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 220px 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  letter-spacing: 0.03em;
}
.not-found__img {
  margin-bottom: 24px;
}
.not-found__text {
  margin-bottom: 60px;
}

.thanks {
  min-height: 100%;
}
.thanks__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 220px 0;
  text-align: center;
  color: #222222;
  gap: 60px;
}
.thanks__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.04em;
}
.thanks__text {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.thanks__button {
  color: #FFFFFF;
}

.table {
  width: 100%;
}
.table__inner {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 8px;
}
.table__row:not(:last-child) {
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}
.table__cell {
  padding: 12px 16px;
  text-align: left;
}
.table__cell--name {
  width: 40%;
  font-weight: 400;
  color: #7D8184;
}
.table__cell--value {
  width: 60%;
  font-weight: 500;
  text-align: right;
}

@media (max-width: 767px) {
  .table__inner,
  .table tbody,
  .table tr,
  .table th,
  .table td {
    display: block;
    width: 100%;
  }
  .table__row {
    padding: 12px 0;
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  }
  .table__cell {
    padding: 4px 16px;
  }
  .table__cell--name {
    font-size: 12px;
    color: #999999;
  }
  .table__cell--value {
    font-size: 14px;
    text-align: left;
  }
}
.contacts .section__main-title {
  padding-right: 16px;
  padding-left: 16px;
}
.contacts__grid {
  display: grid;
  padding: 32px 16px;
  border-top: 1px solid rgba(54, 55, 56, 0.3);
  border-bottom: 1px solid rgba(54, 55, 56, 0.3);
  grid-column: span 12;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .contacts__grid {
    padding: 24px 16px;
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
}
.contacts__item {
  position: relative;
}
.contacts__item:after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  width: 1px;
  background: rgba(54, 55, 56, 0.3);
}
.contacts__item:last-child:after {
  display: none;
}
.contacts__item .contact-item {
  grid-template-columns: 1fr;
  gap: 10px;
}
.contacts__item .contact-item__city, .contacts__item .contact-item__place {
  grid-column: span 1;
}
.contacts__item .contact-item__city {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
.contacts__item-map {
  height: 340px;
  margin-top: 32px;
  cursor: pointer;
}
.contacts__item-map > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-top: 56px;
  padding-right: 16px;
  padding-left: 16px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .contacts__socials {
    padding: 0 16px;
  }
}
.contacts__socials-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
.contacts__socials-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.contacts__socials-item {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}
.contacts__socials-item--vb {
  background-image: url(../img/contacts-viber.svg);
}
.contacts__socials-item--tg {
  background-image: url(../img/contacts-tg.svg);
}
.contacts__socials-item--inst {
  background-image: url(../img/contacts-insta.svg);
}
.contacts__socials-item--yt {
  background-image: url(../img/contacts-youtube.svg);
}
.contacts__socials-item--tt {
  background-image: url(../img/contacts-tiktok.svg);
}

.up {
  position: fixed;
  right: 44px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background-image: url(../img/icons-up.svg);
  background-repeat: no-repeat;
  background-size: contain;
  visibility: hidden;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .up {
    display: none;
  }
}
.up.show {
  visibility: visible;
  opacity: 1;
}

.main-reviews__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .main-reviews__tabs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }
}
.main-reviews__tab {
  height: 72px;
  padding: 24px 60px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #222222;
  letter-spacing: 0.03em;
  background: #FFFFFF;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .main-reviews__tab {
    height: 48px;
    padding: 12px 32px;
    font-size: 16px;
    line-height: 24px;
  }
}
.main-reviews__tab:after {
  display: none;
}
.main-reviews__tab.tabs__tab--active, .main-reviews__tab:hover {
  color: #FFFFFF;
  background: #222222;
}
.main-reviews__list {
  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;
}
.main-reviews__item {
  position: relative;
  width: 100%;
  max-width: 760px;
  min-height: 530px;
  padding: 40px 24px;
  background: #F5F5F5;
  border-radius: 4px;
}

.subcategories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.subcategories__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  transition: height 0.3s ease;
  will-change: height;
  gap: 16px;
}
.subcategories__list::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 64px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(80%, #FFFFFF));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0), #FFFFFF 80%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFFFFF 80%);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.subcategories__list.expanded::after {
  opacity: 0;
}
@media (min-width: 768px) {
  .subcategories__list {
    height: auto !important;
    overflow: visible;
  }
  .subcategories__list::after {
    display: none;
  }
}
.subcategories__more {
  display: none;
  margin: 12px auto 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #222222;
  gap: 10px;
}
.subcategories__more:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/subcategories-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.subcategories__more.open:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .subcategories__more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.subcategories__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 4px;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .subcategories__item {
    padding: 6px 22px;
  }
}
.subcategories__item-img {
  width: 48px;
  height: 48px;
}

.compare__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #222222 rgba(34, 34, 34, 0.2);
}
.compare__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #FFFFFF;
}
.compare__row:first-child {
  position: relative;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 32px;
  padding-bottom: 32px;
}
.compare__row:first-child .compare__cell {
  padding: 24px 12px;
  border-right: 1px solid rgba(54, 55, 56, 0.3);
}
.compare__row:first-child .compare__cell:last-child, .compare__row:first-child .compare__cell:first-child {
  border-right: none;
}
.compare__row:first-child .compare__cell.compare__cell--sticky {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.compare__row--head {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.compare__row:nth-child(even):not(.compare__row--products):not(.compare__row--head) {
  background: #F5F5F5;
}
.compare__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 300px) / 3);
  flex: 0 0 calc((100% - 300px) / 3);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc((100% - 300px) / 3);
  padding: 24px 12px;
  background: inherit;
}
.compare__cell:last-child {
  padding-right: 0;
}
@media screen and (max-width: 1250px) {
  .compare__cell {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 300px) / 2);
    flex: 0 0 calc((100% - 300px) / 2);
    width: calc((100% - 300px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .compare__cell {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    width: 300px;
  }
}
.compare__cell:first-child {
  position: sticky;
  left: 0;
  z-index: 11;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 300px;
}
@media screen and (max-width: 767px) {
  .compare__cell:first-child {
    position: initial;
  }
}
.compare__cell .product-card:after {
  display: none;
}
.compare__row--products .compare__cell--sticky {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.compare__row--head .compare__cell--sticky {
  z-index: 4;
}
.compare__controls {
  width: 100%;
  padding: 32px 24px;
  background: #F5F5F5;
  border-radius: 4px;
}
.compare__title {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #222222;
}
.compare__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.compare__radios.comparison-corner {
  text-align: left !important;
}
.compare__radios .comparison-link {
  position: relative;
  padding-left: 32px;
}
.compare__radios .comparison-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #222222;
  border-radius: 50%;
}
.compare__radios .comparison-link.active:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #222222;
  border-radius: 50%;
}

.compare-table {
  width: 100%;
}
.compare-table__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table__table {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.compare-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #E5E5E5;
}
.compare-table__row--head {
  font-weight: 600;
  background: #FFFFFF;
}
.compare-table__row:nth-child(even):not(.compare-table__row--head) {
  background: #F5F5F5;
}
.compare-table__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 25%;
  padding: 16px 20px;
  background: inherit;
}
.compare-table__cell--sticky {
  position: sticky;
  left: 0;
  z-index: 2;
}
.compare-table__row--head .compare-table__cell--sticky {
  z-index: 3;
}

.cookie-modal {
  position: fixed;
  z-index: 1000;
  display: none;
  inset: 0;
}
.cookie-modal[data-state=visible] {
  display: block;
}
.cookie-modal__overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  inset: 0;
}
.cookie-modal__dialog {
  position: relative;
  width: 300px;
  margin: 100px auto;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 8px;
}
.cookie-modal__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #222222;
}
.cookie-modal__row {
  margin-bottom: 10px;
}
.cookie-modal__actions {
  -ms-flex-item-align: center;
  align-self: center;
}
.cookie-modal__form {
  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: 24px;
  gap: 24px;
}

.cookie {
  position: fixed;
  right: 0;
  bottom: 20px;
  left: 0;
  z-index: 1000;
  display: none;
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding: 16px;
  color: #222222;
  background: #FFFFFF;
  border: 1px solid rgba(54, 55, 56, 0.3);
  border-radius: 8px;
}
@media screen and (max-width: 1200px) {
  .cookie {
    max-width: 600px;
  }
}
.cookie[data-state=visible] {
  display: block;
}
.cookie__content {
  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: 12px;
}
@media screen and (max-width: 1200px) {
  .cookie__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.cookie__text {
  font-size: 16px;
}
.cookie__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 570px) {
  .cookie__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}
.cookie__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  margin-left: 6px;
  padding-bottom: 4px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  gap: 8px;
}
.cookie__link:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icons-products-slider-arrow-right.svg);
}
.cookie__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  padding: 16px 32px;
  color: #222222;
  border: 1px solid #363738;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.cookie__btn:hover {
  color: #7D8184;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.cookie__btn--accept-all {
  color: #FFFFFF;
  background: #DE4936;
  border: none;
  border-radius: 4px;
}
.cookie__btn--accept-all:hover {
  color: #FFFFFF;
  background: #E57061;
  border: none;
}