@charset "UTF-8";

:root {
  --indexSize: 1vh + 1vw;
}

html {
  font-size: 10px;
  scroll-behavior: auto;
}

body,
html {
  height: 100%;
  min-width: 320px;
}

body {
  color: #1f2229;
  font-size: 1.8rem;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea {
  font-family:
    Roboto Condensed,
    sans-serif;
}

button,
input,
textarea {
  font-size: inherit;
  line-height: inherit;
}

body.is-lock,
body.lock {
  overflow: hidden;
  padding-right: 17px;
}

.touch body.lock {
  padding-right: 0;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main,
main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

main.main--inner {
  padding-top: 14.5rem;
}

::-moz-selection {
  background-color: #ab3b66;
  color: #fff;
}

::selection {
  background-color: #ab3b66;
  color: #fff;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: #d31543;
}

input:required:valid,
textarea:required:valid {
  border-color: #bc9e7b;
}

input,
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
}

button:focus,
input,
textarea {
  outline: none;
}

[data-fullscreen] {
  min-height: 100vh;
}

.touch [data-fullscreen] {
  min-height: calc(var(--vh, 1vh) * 100);
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes clip {
  0% {
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clip {
  0% {
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.input,
.textarea {
  background: transparent;
  border: 1px solid rgba(31, 34, 41, 0.7);
  border-radius: 0.4rem;
  color: #1f2229;
  font-family:
    Roboto Condensed,
    sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 2rem;
  text-align: left;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #1f2229;
  opacity: 0.3;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #1f2229;
  opacity: 0.3;
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #1f2229;
  opacity: 0.3;
  -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #1f2229;
  opacity: 0.3;
  -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::placeholder,
.textarea::placeholder {
  color: #1f2229;
  opacity: 0.3;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
  opacity: 0;
}

.textarea {
  padding: 1.6rem 2.3rem;
  resize: none;
}

.select-box {
  display: block;
  font-size: 1.8rem;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.select-box__current {
  background: transparent;
  border: 1px solid #bababa;
  border-radius: 0.6rem;
  color: #fff;
  color: #1f2229;
  cursor: pointer;
  font-family:
    Roboto Condensed,
    sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  text-align: left;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.select-box__current:focus + .select-box__list {
  -webkit-animation-name: none;
  animation-name: none;
  opacity: 1;
}

.select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}

.select-box__input:checked + .select-box__input-text {
  display: block;
}

.select-box__input-text {
  display: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.select-box__list {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: HideList;
  animation-name: HideList;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  list-style: none;
  opacity: 0;
  padding: 0.8rem 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.select-box__option {
  background: #fff;
  color: #1f2229;
  display: block;
  margin-bottom: 0;
  padding: 0.5rem 1.4rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.select-box__option:focus,
.select-box__option:hover {
  background-color: #fbfbfb;
}

@-webkit-keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

@keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

.control {
  color: #1f2229;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 2.9rem;
  padding-top: 0.9rem;
  position: relative;
}

.control,
.control a {
  display: inline-block;
  line-height: 1;
}

.control a {
  color: #cd1e40;
  text-decoration: none;
}

.control a:after {
  background-color: #cd1e40;
  content: "";
  display: block;
  height: 1px;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
  width: 100%;
}

.control a:hover {
  color: #cd1e40;
}

.control a:hover:after {
  width: 0;
}

.control input {
  left: 0.6rem;
  opacity: 0;
  position: absolute;
  top: 0.2rem;
  z-index: -1;
}

.control_indicator {
  background: #fff;
  border: 0.07rem solid #1f2229;
  border-radius: 0.4rem;
  height: 2.1rem;
  left: 0;
  position: absolute;
  top: 0.4rem;
  width: 2.1rem;
}

.control_indicator:after {
  -webkit-box-sizing: unset;
  box-sizing: unset;
  content: "";
  display: none;
  position: absolute;
}

.control-checkbox .control_indicator:after {
  background: url(../img/checkbox.svg) 50% / contain no-repeat;
  height: 0.8rem;
  left: 51%;
  top: 52%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1rem;
}

.control input:checked ~ .control_indicator:after {
  display: block;
}

.h1 {
  font-size: 4rem;
}

.h1,
.h2 {
  font-weight: 400;
}

.h2 {
  font-size: 2.8rem;
}

.home .h2 {
  text-transform: uppercase;
}

.h3 {
  font-size: 2.1rem;
  font-weight: 400;
}

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

a {
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

a,
a:hover {
  color: #1f2229;
  text-decoration: none;
}

.container {
  max-width: 148rem;
}

.container,
.container-1500 {
  margin: 0 auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

.container-1500 {
  max-width: 158rem;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    Roboto Condensed,
    sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  text-shadow: none;
  text-transform: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #ab3b66;
  border: 1px solid transparent;
  border-radius: 0.4rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  justify-content: center;
  letter-spacing: 0;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.btn:hover {
  background: #c24d7a;
  color: #fff;
}

.btn--stroke {
  border-color: #fff;
}

.btn--stroke,
.btn--stroke:hover {
  background: transparent;
}

.btn--green {
  background: #28b19a;
}

.btn--green,
.btn--green:hover {
  border-color: transparent;
  color: #fff;
}

.btn--green:hover {
  background: #3ad2b9;
}

.btn--black {
  background: #1f2229;
  border-color: transparent;
}

.btn--black:hover {
  background: #393f4c;
  border-color: transparent;
  color: #fff;
}

.btn--purple {
  background: #ab3b66;
  border-color: transparent;
}

.btn--purple:hover {
  background: #c75c85;
  border-color: transparent;
  color: #fff;
}

.svg-hidden {
  display: none;
}

.fancybox-custom .fancybox-button,
.fancybox-custom-video .fancybox-button {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 50%;
  color: #1f2229;
  height: 5.6rem;
  margin: 4rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-button:hover,
.fancybox-custom-video .fancybox-button:hover {
  color: #1f2229;
}

.fancybox-custom .fancybox-infobar,
.fancybox-custom-video .fancybox-infobar {
  display: none;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 50%;
  color: #1f2229;
  height: 5.6rem;
  padding: 0.5rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
  right: calc(env(safe-area-inset-right) + 10rem);
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left {
  left: calc(env(safe-area-inset-right) + 10rem);
}

.fancybox-custom .fancybox-caption .fancybox-completed-work-info,
.fancybox-custom .fancybox-completed-work-info,
.fancybox-custom-video .fancybox-caption .fancybox-completed-work-info,
.fancybox-custom-video .fancybox-completed-work-info {
  background: #2a2d34;
  border-radius: 0;
  margin-top: 1.5rem;
  padding: 2rem;
  text-align: center;
}

.fancybox-custom .fancybox-completed-work-title,
.fancybox-custom-video .fancybox-completed-work-title {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.fancybox-custom .fancybox-completed-work-price,
.fancybox-custom-video .fancybox-completed-work-price {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
}

.fancybox-custom .fancybox-completed-work-price span,
.fancybox-custom-video .fancybox-completed-work-price span {
  font-size: 28px;
  font-weight: 500;
}

.fancybox-completed-works .fancybox-caption {
  background: none;
  padding: 0;
}

.fancybox-completed-works .fancybox-slide--image {
  padding: 0;
}

.fancybox-completed-works .fancybox-content {
  height: calc(100% - 115px) !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.fancybox-completed-works .fancybox-image {
  -o-object-fit: cover;
  object-fit: cover;
}

.fancybox-custom-video.fancybox-is-open .fancybox-bg,
.fancybox-custom.fancybox-is-open .fancybox-bg {
  background: #fff;
  opacity: 1;
}

.fancybox-custom.fancybox-show-thumbs .fancybox-inner {
  left: 212px;
  right: 0;
}

.fancybox-custom.fancybox-show-thumbs .fancybox-thumbs {
  background: #fff;
  left: 0;
  right: auto;
}

.fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list {
  display: block;
}

.fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list a:before {
  border: 1px solid #ab3b66;
  border-radius: 0.4rem;
  margin: -0.5rem;
}

.fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list a {
  background-color: #fff;
  background-size: contain;
  display: block;
  height: 82px;
  margin: 1rem;
  overflow: visible;
  width: 84px;
}

.swiper-wrapper {
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  to {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  to {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  vertical-align: middle;
}

.hvr-buzz-out:active,
.hvr-buzz-out:focus,
.hvr-buzz-out:hover {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDownMini {
  -webkit-animation-name: fadeInDownMini;
  animation-name: fadeInDownMini;
}

[class*="-ibg"] {
  position: relative;
}

[class*="-ibg"] img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

[class*="-ibg_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}

.slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.9rem;
}

.nav-prev {
  color: #fff;
  cursor: pointer;
  height: 4.1rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 4.1rem;
}

.nav-prev:hover {
  color: #28b19a;
}

.nav-prev .icon {
  height: 100%;
  width: 100%;
}

.nav-next {
  color: #fff;
  cursor: pointer;
  height: 4.1rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 4.1rem;
}

.nav-next:hover {
  color: #28b19a;
}

.nav-next .icon {
  height: 100%;
  width: 100%;
}

.fixed-calling {
  position: fixed;
  right: 0;
  top: 50rem;
  z-index: 100;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.fixed-calling,
.fixed-calling-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fixed-calling-item {
  height: 5.1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #fff;
  border-bottom-left-radius: 0.4rem;
  border-top-left-radius: 0.4rem;
  -webkit-box-shadow: -5px 5px 14px 0 rgba(31, 34, 41, 0.2);
  box-shadow: -5px 5px 14px 0 rgba(31, 34, 41, 0.2);
  cursor: pointer;
  gap: 0;
  justify-content: center;
  position: relative;
  width: 5.1rem;
}

.fixed-calling-item,
.fixed-calling-item span {
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.fixed-calling-item span {
  color: #1f2229;
  font-size: 1.5rem;
  height: 0;
  max-width: 12.4rem;
  opacity: 0;
  overflow: hidden;
  text-align: right;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  width: 0;
}

.fixed-calling-item:hover {
  background: #ab3b66;
  color: #fff;
  gap: 0.6rem;
  width: 17.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 1rem;
}

.fixed-calling-item:hover span {
  color: #fff;
  height: auto;
  opacity: 1;
  width: auto;
}

.fixed-calling-item .icon {
  -webkit-transition: none;
  transition: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.fixed-calling-item:first-of-type .icon {
  height: 2.5rem;
  width: 2.5rem;
}

.fixed-calling-item:nth-of-type(2) .icon {
  height: 3rem;
  width: 3rem;
}

.fixed-calling-item:nth-of-type(3) .icon {
  height: 2.5rem;
  width: 2.5rem;
}

.parametrs-btn {
  color: #1f2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  text-transform: uppercase;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-color: #ab3b66;
  font-weight: 500;
  gap: 1.2rem;
  height: 4.8rem;
  max-width: 26.4rem;
  width: 100%;
}

.parametrs-btn:hover {
  background: #ab3b66;
  border-color: transparent;
  color: #fff;
}

.parametrs-btn .icon {
  height: 1.5rem;
  width: 1.8rem;
}

.catalog__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}

.catalog-item {
  border: 1px solid rgba(31, 34, 41, 0.08);
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.4rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.catalog-item:hover {
  border-color: transparent;
  -webkit-box-shadow: 0 0 22px 0 rgba(31, 34, 41, 0.15);
  box-shadow: 0 0 22px 0 rgba(31, 34, 41, 0.15);
}

.catalog-item__link-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog-item__article {
  color: #1f2229;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.catalog-item__article:before {
  color: #1f2229;
  content: "#";
  font-size: 1.6rem;
  opacity: 0.3;
  padding-right: 0.2rem;
}

.catalog-item__to-fav {
  cursor: pointer;
  position: absolute;
  right: 1.2rem;
  top: 1.1rem;
}

.catalog-item__to-fav .icon {
  height: 1.9rem;
  width: 2.2rem;
}

.catalog-item__image {
  height: 31.4rem;
  position: relative;
}

.catalog-item__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.catalog-item__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.3rem;
}

.catalog-item__image-furn {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.catalog-item__title {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  padding-right: 2.9rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 2;
  min-height: 3.8rem;
  overflow: hidden;
}

.catalog-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.8rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0.9rem;
  line-height: 1;
}

.catalog-item__price b {
  font-weight: 400;
}

.catalog-item__price-main {
  font-size: 1.5rem;
}

.catalog-item__price-main span {
  font-size: 2.9rem;
}

.catalog-item__price-sale {
  font-size: 1.4rem;
  opacity: 0.3;
  padding-bottom: 0.1rem;
  text-decoration: line-through;
}

.catalog-item__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.2rem;
}

.catalog-item__buttons .btn {
  font-size: 1.4rem;
  height: 5.2rem;
  line-height: 1;
  text-transform: uppercase;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.catalog-item__buttons .catalog-item__to-form {
  max-width: 13.5rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.catalog-item__buttons .catalog-item__to-cart {
  border-radius: 0.4rem;
  height: 5.2rem;
  max-width: 6.1rem;
  width: 100%;
}

.catalog-item__buttons .catalog-item__to-cart .icon {
  height: 2.1rem;
  width: 2.1rem;
}

.catalog-teasers {
  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: justify;
  -ms-flex-pack: justify;
  gap: 2.2rem;
  justify-content: space-between;
}

.catalog-teaser {
  border-radius: 0.6rem;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.catalog-teaser:after {
  background: #fff;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.catalog-teaser:hover:after {
  opacity: 0.1;
}

.catalog-teaser:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.catalog-teaser img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  will-change: transform;
}

.catalog__footer {
  gap: 4.3rem;
  padding: 5.8rem 0;
}

.catalog__loadmore {
  background: transparent;
  border-color: #1f2229;
  color: #1f2229;
  font-size: 1.7rem;
  height: 5rem;
  max-width: 22.6rem;
  text-transform: uppercase;
  width: 100%;
}

.catalog__loadmore:hover {
  background: #1f2229;
  border-color: transparent;
  color: #fff;
}

.catalog__pagination,
.catalog__pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.catalog__pagination ul a {
  padding: 0 1rem;
}

.catalog__pagination ul a:hover {
  color: #28b19a;
}

.catalog__pagination ul li.active {
  background: #1f2229;
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5rem;
  width: 5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog__pagination ul li.active a,
.catalog__pagination ul li.active span {
  color: #fff;
}

.catalog__pagination a,
.catalog__pagination li {
  font-size: 1.6rem;
}

.catalog__pagination-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  width: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog__pagination-first:hover {
  color: #28b19a;
}

.catalog__pagination-first .icon {
  height: 1.3rem;
  width: 1.1rem;
}

.catalog__pagination-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  width: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog__pagination-prev:hover {
  color: #28b19a;
}

.catalog__pagination-prev .icon {
  height: 1.3rem;
  width: 7rem;
}

.catalog__pagination-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  width: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog__pagination-next:hover {
  color: #28b19a;
}

.catalog__pagination-next .icon {
  height: 1.3rem;
  width: 7rem;
}

.catalog__pagination-last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  width: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog__pagination-last:hover {
  color: #28b19a;
}

.catalog__pagination-last .icon {
  height: 1.3rem;
  width: 1.1rem;
}

.callback-modal {
  background: #fff;
  border-radius: 0.4rem 0 0 0.4rem;
  -webkit-box-shadow: 0 7px 37px 0 rgba(31, 34, 41, 0.2);
  box-shadow: 0 7px 37px 0 rgba(31, 34, 41, 0.2);
  max-width: 57.5rem;
  padding: 12.7rem 8rem 14.3rem;
  position: fixed;
  right: -57.5rem;
  text-align: center;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  z-index: 100;
}

.callback-modal .h2 {
  margin-bottom: 8.7rem;
}

.callback-modal__form {
  margin: 0 auto;
  max-width: 37.9rem;
  width: 100%;
}

.callback-modal__form .input {
  font-size: 1.7rem;
  height: 4.6rem;
  margin-bottom: 1.4rem;
  width: 100%;
}

.callback-modal__form .input:last-of-type {
  margin-bottom: 0;
}

.callback-modal__submit {
  font-size: 1.5rem;
  height: 5.8rem;
  margin-top: 2.3rem;
  text-transform: uppercase;
  width: 100%;
}

.callback-modal__text {
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 3.2rem;
  opacity: 0.5;
}

.callback-modal__text a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.callback-modal__text a:hover {
  text-decoration: none;
}

.subscribe {
  background: #f2f2f2;
  margin: 22rem 0 0;
}

.subscribe__area {
  padding: 6.3rem 0 6.1rem;
  position: relative;
}

.subscribe__area:after {
  background: url(../img/subscribe-bg-phones.png) 50% / contain no-repeat;
  bottom: -5.6rem;
  content: "";
  height: 59rem;
  position: absolute;
  right: -3.4rem;
  width: 78.4rem;
}

.subscribe__area .h2 {
  font-size: 4.8rem;
  font-weight: 400;
  text-transform: uppercase;
}

.subscribe__links {
  gap: 8.2rem;
  margin-top: 3.9rem;
}

.subscribe__link,
.subscribe__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subscribe__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.7rem;
}

.subscribe__link span {
  font-size: 4rem;
}

.subscribe__link img {
  border-radius: 1.5rem;
  height: 5.4rem;
  width: 5.4rem;
}

.subscribe__text {
  margin-top: 4.4rem;
  max-width: 70.1rem;
}

.subscribe__text p {
  font-size: 2.2rem;
  opacity: 0.7;
}

.subscribe__text p:last-of-type {
  margin-bottom: 0;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7rem;
}

.rating .star {
  display: inline-block;
  height: 1.9rem;
  width: 2rem;
}

.rating .star--filled {
  background: url(../img/icons/rating-fill.svg) 50% / contain no-repeat;
}

.rating .star--empty {
  background: url(../img/icons/rating-stroke.svg) 50% / contain no-repeat;
}

.catalog-slider {
  margin-bottom: 7rem;
}

.catalog-slider .swiper-slide {
  height: auto;
}

.catalog-slider .swiper-slide .catalog-item {
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.catalog-slider .swiper-slide-visible .catalog-item {
  opacity: 1;
  pointer-events: auto;
}

.catalog-slider__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.7rem;
  margin-bottom: 3.7rem;
}

.catalog-slider__header .h2 {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: none;
}

.nav-slider {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.9rem;
}

.header {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
}

.header.fixed {
  background: #4c4e54;
  position: fixed;
}

.header.fixed .header__logo {
  height: 10.6rem;
}

.header.header--inner {
  border-bottom: 1px solid #ccc;
  padding: 4.6rem 6.5rem;
}

.header.header--inner .header__logo {
  height: 5.2rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 26rem;
}

.header.header--inner .header__logo--white {
  display: none;
}

.header.header--inner .header__wrap {
  max-width: 100%;
  padding: 0;
}

.header.header--inner .header__geo {
  margin: 0;
}

.header.header--inner:not(.fixed) .header__burger,
.header.header--inner:not(.fixed) .header__burger span,
.header.header--inner:not(.fixed) .header__configurator,
.header.header--inner:not(.fixed) .header__geo,
.header.header--inner:not(.fixed) .header__geo a,
.header.header--inner:not(.fixed) .header__menu a,
.header.header--inner:not(.fixed) .header__menu li {
  color: #1f2229;
}

.header.header--inner:not(.fixed) .header-mark {
  background: #ab3b66;
  color: #fff;
}

.header.header--inner:not(.fixed) .btn--stroke {
  border-color: #1f2229;
}

.header.header--inner:not(.fixed) .header__geo:after,
.header.header--inner:not(.fixed) .header__menu .has-sub:after {
  background: url(../img/icons/arrow-black.svg) 50% / contain no-repeat;
}

.header.header--inner.fixed {
  border-color: transparent;
  padding: 2.7rem 6.5rem;
}

.header.header--inner.fixed .header__logo {
  background: transparent;
  height: 5.2rem;
}

.header.header--inner.fixed .header__logo--white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header.header--inner.fixed .header__logo--dark {
  display: none;
}

.header__wrap {
  max-width: 176.8rem;
  position: relative;
}

.header__logo,
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.header__logo {
  background: #fff;
  height: 20rem;
  max-width: 22.8rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: none;
  transition: none;
}

.header__logo img {
  width: 15.2rem;
}

.header__geo {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.7rem;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  cursor: pointer;
  gap: 0.4rem;
  margin-left: 9.3rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__geo:hover,
.header__geo:hover a {
  color: #28b19a;
}

.header__geo span {
  display: block;
  line-height: 1;
}

.header__geo:after {
  background: url(../img/icons/arrow.svg) 50% / contain no-repeat;
  content: "";
  height: 0.6rem;
  left: -1.4rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.9rem;
}

.header__geo a {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  padding-left: 1rem;
  text-transform: uppercase;
}

.header__configurator {
  border-radius: 0.2rem;
  font-size: 1.5rem;
  gap: 0.7rem;
  height: 3.6rem;
  margin: 0 auto;
  max-width: 16.2rem;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  z-index: 2;
}

.header__configurator:hover {
  border-color: #28b19a;
  color: #28b19a;
}

.header__configurator .icon {
  height: 1.2rem;
  width: 1.3rem;
}

.header__menu {
  position: relative;
}

.header__menu,
.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu a,
.header__menu li {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}

.header__menu a,
.header__menu span {
  cursor: pointer;
  padding: 0 0.7rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.header__menu a:hover,
.header__menu span:hover {
  color: #28b19a;
}

.header__menu .has-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}

.header__menu .has-sub:after {
  background: url(../img/icons/arrow.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 0.6rem;
  margin-bottom: 0.2rem;
  width: 0.9rem;
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  color: #fff;
  cursor: pointer;
  gap: 0.7rem;
  justify-content: center;
  margin-left: 2rem;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.header__burger:hover {
  color: #28b19a;
}

.header__burger span {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.6;
  padding: 0;
  text-transform: uppercase;
}

.header__burger .icon {
  height: 1.2rem;
  width: 1.8rem;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
  margin: 0 1.9rem 0 3.5rem;
}

.header__fav {
  position: relative;
}

.header__fav .icon {
  height: 1.9rem;
  width: 2.2rem;
}

.header__cart {
  position: relative;
}

.header__cart .icon {
  height: 1.7rem;
  width: 2.1rem;
}

.header-mark {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  font-weight: 600;
  height: 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  color: #1f2229;
  justify-content: center;
  position: absolute;
  right: -0.4rem;
  top: -1rem;
  width: 2rem;
}

.header-mobile {
  display: none;
}

.header-mobile .header__menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header-mobile .header__menu a,
.header-mobile .header__menu li {
  color: #1f2229;
}

.header-mobile .header__menu ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
}

.header-mobile .header__menu a,
.header-mobile .header__menu span {
  padding: 0;
}

.header-mobile .header__actions {
  display: none;
}

.header-mobile .header__menu a,
.header-mobile .header__menu li {
  font-size: 18px;
}

.header-mobile .header__burger {
  display: none;
}

.header-mobile__area {
  background: #fff;
  height: 50px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-shadow: 0 1px 5px 0 rgba(31, 34, 41, 0.07);
  box-shadow: 0 1px 5px 0 rgba(31, 34, 41, 0.07);
  justify-content: space-between;
  padding: 0 15px;
}

.header-mobile__area,
.header-mobile__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-mobile__logo {
  max-width: 90px;
  width: 100%;
}

.header-mobile__social .social-block {
  gap: 1.4rem;
}

.header-mobile__social .social-block,
.header-mobile__social .social-block a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-mobile__social .social-block a {
  height: 3rem;
  width: 3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.header-mobile__social .social-block a:hover {
  opacity: 0.8;
  -webkit-transform: rotate(1turn);
  -ms-transform: rotate(1turn);
  transform: rotate(1turn);
}

.header-mobile__social .social-block a img {
  width: 1.7rem;
}

.header-mobile__social .social-block {
  gap: 18px;
}

.header-mobile__social .social-block a {
  width: 25px;
}

.header-mobile__social .social-block a img {
  width: 100%;
}

.header-mobile__phone {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-left: 25px;
}

.header-mobile__burger {
  background: transparent;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  margin-left: 13px;
  width: 30px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#burger-icon {
  cursor: pointer;
  height: 15px;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  width: 18px;
}

#burger-icon,
#burger-icon span {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

#burger-icon span {
  background: #1f2229;
  border-radius: 1px;
  display: block;
  height: 3px;
  left: 0;
  opacity: 1;
  position: absolute;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  width: 100%;
}

#burger-icon span:first-child {
  top: 0;
}

#burger-icon span:nth-child(2),
#burger-icon span:nth-child(3) {
  top: 5px;
}

#burger-icon span:nth-child(4) {
  top: 10px;
}

#burger-icon.open span:first-child {
  left: 50%;
  top: 5px;
  width: 0;
}

#burger-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#burger-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#burger-icon.open span:nth-child(4) {
  left: 50%;
  top: 5px;
  width: 0;
}

.header-mobile__menu {
  background: #fff;
  height: calc(100% - 50px);
  left: 0;
  left: -100%;
  overflow-y: auto;
  padding: 41px 34px;
  pointer-events: none;
  position: fixed;
  top: 50px;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  visibility: hidden;
  width: 100%;
  z-index: 1000;
}

.header-mobile__menu.is-active {
  left: 0;
  pointer-events: auto;
  visibility: visible;
}

.header-mobile__menu-nav {
  margin-bottom: 52px;
}

.header-mobile__menu-nav ul {
  font-size: 17px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-mobile__menu-nav ul a {
  display: block;
  padding: 5px 0;
}

.header-mobile__menu-social {
  margin-bottom: 23px;
}

.header-mobile__menu-social span {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.header-mobile__menu-social .social-block {
  gap: 14px;
}

.header-mobile__menu-social .header-mobile__social .social-block a img {
  width: 20px;
}

.header-mobile__menu-phone-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
  -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;
}

.header-mobile__menu-phone {
  margin-bottom: 20px;
}

.header-mobile__menu-phone span {
  font-size: 1.5rem;
}

.header-mobile__menu-phone a {
  color: #292d32;
  display: block;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  margin-top: 10px;
}

.header-mobile__menu-phone a:nth-of-type(2) {
  margin-top: 0;
}

.header-mobile__menu-links {
  margin-bottom: 20px;
}

.header-mobile__menu-links a {
  color: #828486;
  display: block;
  font-size: 1.4rem;
  opacity: 0.9;
  padding: 7px 0;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.header-mobile__menu-links a:last-of-type {
  margin-bottom: 0;
}

.header-mobile__menu-copy {
  max-width: 265px;
}

.header-mobile__menu-copy p {
  color: #828486;
  font-size: 1.4rem;
  opacity: 0.5;
}

.header-mobile__menu-copy a {
  color: #828486;
  display: block;
  font-size: 1.4rem;
}

.bottom-nav-mobile {
  bottom: 0;
  display: none;
  position: fixed;
  width: 100%;
  z-index: 500;
}

.bottom-nav-mobile.hidden,
.bottom-nav-mobile.is-hidden {
  display: none;
}

.bottom-nav-mobile__wrap {
  background: #fff;
  height: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-filter: drop-shadow(0 0 14px rgba(54, 57, 63, 0.18));
  filter: drop-shadow(0 0 14px rgba(54, 57, 63, 0.18));
  padding: 0 calc(var(--indexSize) * 0.8);
}

.bottom-nav-mobile__item,
.bottom-nav-mobile__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-nav-mobile__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  border-radius: 6px;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: -1px;
  padding: 1px;
  position: relative;
  width: 20%;
}

.bottom-nav-mobile__item:active {
  background: #f5f5f5;
}

.bottom-nav-mobile__item span {
  color: #1f2229;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.4;
}

.bottom-nav-mobile__item-count {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ab3b66;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  font-weight: 500;
  height: 2.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  padding-top: 1px;
  pointer-events: none;
  position: absolute;
  right: -10px;
  top: -4px;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  visibility: hidden;
  width: 2.3rem;
  z-index: -1;
}

.bottom-nav-mobile__item--home .icon {
  color: #ab3b66;
  height: 26px;
  opacity: 0.4;
  width: 25px;
}

.bottom-nav-mobile__item--favorites .icon {
  color: #ab3b66;
  height: 26px;
  opacity: 0.4;
  width: 30px;
}

.bottom-nav-mobile__item--sales .icon {
  color: #ab3b66;
  height: 26px;
  opacity: 0.4;
  width: 26px;
}

.bottom-nav-mobile__item.is-counted .bottom-nav-mobile__item-count {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.bottom-nav-mobile__item--catalog {
  background: #ab3b66;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 14px 0 rgba(54, 57, 63, 0.15);
  box-shadow: 0 0 14px 0 rgba(54, 57, 63, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(var(--indexSize) * 8.6);
  margin: calc(var(--indexSize) * 1.8) calc(var(--indexSize) * 3);
  margin-top: 0;
  width: calc(var(--indexSize) * 8.5);
  -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;
  left: -1px;
  position: relative;
}

.bottom-nav-mobile__item--catalog .icon,
.bottom-nav-mobile__item--catalog span {
  color: #fff;
}

.bottom-nav-mobile__item--catalog span {
  opacity: 0.7;
}

.bottom-nav-mobile__item--catalog .icon {
  color: #fff;
  height: 20px;
  width: 21px;
}

.bottom-nav-mobile__item--cart .icon {
  color: #ab3b66;
  height: 24px;
  opacity: 0.4;
  width: 24px;
}

.bottom-nav-mobile__item--lk .icon {
  color: #ab3b66;
  height: 25px;
  opacity: 0.4;
  width: 27px;
}

.bottom-nav-mobile__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 26px;
  width: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.breadcrumbs {
  padding: 2.3rem 0 5rem;
}

.breadcrumbs__area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  font-weight: 300;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbs__area li:not(:last-of-type):after {
  content: "|";
  display: inline-block;
  margin: 0 0.9rem;
}

.breadcrumbs__area a,
.breadcrumbs__area span {
  color: rgba(35, 31, 32, 0.7);
  display: inline-block;
}

.breadcrumbs__area a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.breadcrumbs__area a:hover {
  text-decoration: none;
}

.catalog-mobile {
  background: #fff;
  height: 100%;
  left: 100%;
  overflow-y: auto;
  padding: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  visibility: hidden;
  width: 100%;
  z-index: 1001;
}

.catalog-mobile.is-active {
  left: 0;
  pointer-events: auto;
  visibility: visible;
}

.catalog-mobile__area {
  padding: 0 7px;
}

.catalog-mobile__header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 13px 0;
}

.catalog-mobile__back,
.catalog-mobile__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog-mobile__back {
  height: 30px;
  width: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: -5px;
  position: relative;
}

.catalog-mobile__back .icon {
  height: 16px;
  width: 9px;
}

.catalog-mobile__title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.05;
}

.catalog-mobile__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  width: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 5px;
  position: relative;
}

.catalog-mobile__close .icon {
  height: 16px;
  width: 16px;
}

.catalog-mobile__body {
  padding: 14px 14px 42px;
}

.catalog-mobile__body a,
.catalog-mobile__body li {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55556;
}

.catalog-mobile__lvl1 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog-mobile__lvl1 .icon {
  max-height: 30px;
  max-width: 20px;
}

.catalog-mobile__lvl1 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
}

.catalog-mobile__lvl2 {
  list-style: none;
  margin: -5px 0 0;
  padding: 0;
}

.catalog-mobile__lvl2 li a {
  display: block;
  padding: 2px 0 1px 40px;
}

.footer {
  background: rgba(31, 34, 41, 0.85);
  padding: 8rem 0 0;
}

.footer__wrap {
  padding: 0 10.7rem;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-top__col:first-of-type {
  max-width: 15rem;
  width: 100%;
}

.footer-top__col:nth-of-type(2) {
  left: -1.5rem;
  max-width: 15rem;
  position: relative;
  width: 100%;
}

.footer-top__col:nth-of-type(3) {
  left: 0.8rem;
  max-width: 20rem;
  position: relative;
  width: 100%;
}

.footer-top__col:nth-of-type(4) {
  max-width: 30.8rem;
  width: 100%;
}

.footer-top__col:nth-of-type(4) .footer__title {
  margin-bottom: 2.4rem;
  text-decoration: none;
}

.footer__title {
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 1.7rem;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
}

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

.footer__menu a,
.footer__menu li {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
}

.footer__menu a {
  display: inline-block;
  padding: 0.7rem 0;
}

.footer__menu a:hover {
  color: #28b19a;
}

.footer__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.3rem;
}

.footer__phone {
  color: #fff;
  font-size: 2rem;
}

.footer__phone:hover {
  color: #28b19a;
}

.footer__mail {
  margin-bottom: 2.1rem;
}

.footer__mail a {
  color: #fff;
  font-size: 2rem;
}

.footer__mail a:hover {
  color: #28b19a;
}

.footer-top__social {
  margin-bottom: 2.1rem;
}

.footer-top__social,
.footer-top__social .social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-top__social .social-block {
  gap: 1.6rem;
}

.footer-top__social .social-block a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
}

.footer-top__social .social-block a img {
  width: 3rem;
}

.footer-top__social .social-block a span {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
}

.footer__callback {
  background: #933993;
  font-size: 1.4rem;
  height: 5.2rem;
  max-width: 20.3rem;
  text-transform: uppercase;
  width: 100%;
}

.footer__callback:hover {
  background: #b847b8;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6.6rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 15.5rem;
}

.footer-bottom__col:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  max-width: 65rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-bottom__col:nth-of-type(2) {
  max-width: 15.4rem;
  padding-top: 3.9rem;
  width: 100%;
}

.footer__logo {
  height: 17.5rem;
  max-width: 17.5rem;
  width: 100%;
}

.footer__logo img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.footer__copyright {
  padding-top: 1rem;
}

.footer__copyright p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 0;
  opacity: 0.85;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.9rem;
}

.footer__links a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.85;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.footer__links a:hover {
  color: #28b19a;
  opacity: 1;
}

.footer-bottom__social span {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1.3rem;
  opacity: 0.7;
}

.footer-bottom__social .social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-bottom__social .social-block a:first-of-type img {
  width: 4rem;
}

.footer-bottom__social .social-block a:nth-of-type(2) img {
  width: 3.9rem;
}

.footer-bottom__social .social-block a:nth-of-type(3) img {
  width: 3.9rem;
}

.about__hero {
  height: 44.2rem;
  margin: 3.8rem 0 4.3rem;
}

.about__hero img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.about__main {
  max-width: 130rem;
}

.about__main .h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 7rem;
  font-weight: 900;
  margin-bottom: 3.7rem;
  text-transform: none;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.7rem;
}

.about__main .h2 span {
  font-size: 4.5rem;
}

.about__main p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.3rem;
}

.about__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.9rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 5.1rem 0 10.6rem;
}

.about__info-image {
  height: 36.6rem;
  max-width: 56.9rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.about__info-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.about__info-text {
  padding-right: 1rem;
}

.about__info-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.about__info-text p:last-of-type {
  margin-bottom: 0;
}

.about__nums {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 11.2rem;
  padding: 0 7.8rem;
}

.about__num,
.about__nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__num {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.about__num:first-of-type {
  max-width: 10.8rem;
}

.about__num:nth-of-type(2) {
  max-width: 17.5rem;
}

.about__num:nth-of-type(3) {
  max-width: 20.5rem;
}

.about__num:nth-of-type(4) {
  max-width: 19.9rem;
}

.about__num:nth-of-type(5) {
  max-width: 19.3rem;
}

.about__num span:first-of-type {
  color: #ab3b66;
  font-size: 6rem;
  font-weight: 900;
  line-height: 0.83333;
  margin-bottom: 1.6rem;
}

.about__num span:nth-of-type(2) {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.about__text-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.2rem;
  margin: 4.4rem 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about__text-images-text {
  padding-bottom: 3.5rem;
}

.about__text-images-text .big-margin {
  margin-bottom: 3.6rem;
}

.about__text-images-text h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.16667;
  margin: 1.5rem 0;
}

.about__text-images-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
}

.about__text-images-text p:last-of-type {
  margin-bottom: 0;
}

.about__text-images-images {
  max-width: 74.8rem;
  width: 100%;
  -webkit-box-flex: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  gap: 3.3rem;
  height: 38rem;
}

.about__text-images-images img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.about__text-images-images img:first-of-type {
  max-width: 24.4rem;
}

.about__text-images-images img:nth-of-type(2) {
  max-width: 47.1rem;
}

.about__text-images.reverse .about__text-images-images {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  gap: 2.7rem;
  max-width: 60rem;
  order: -1;
}

.about__text-images.reverse .about__text-images-images img:first-of-type {
  max-width: 19.6rem;
}

.about__text-images.reverse .about__text-images-images img:nth-of-type(2) {
  max-width: 37.8rem;
}

.about__text-images.reverse-images .about__text-images-text {
  padding-bottom: 0;
  padding-top: 1rem;
}

.about__text-images.reverse-images .big-margin {
  margin-bottom: 4.4rem;
}

.about__text-images.reverse-images
  .about__text-images-images
  img:first-of-type {
  max-width: 47.1rem;
}

.about__text-images.reverse-images
  .about__text-images-images
  img:nth-of-type(2) {
  max-width: 24.4rem;
}

.about__qlty {
  background: #f2f2f2;
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3.3rem 10rem 3.3rem 15.1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4.2rem;
}

.about__qlty-logo {
  max-width: 7.7rem;
  width: 100%;
}

.about__qlty-text p {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.23077;
  margin-bottom: 0;
}

.about__inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin: 2.2rem 0;
  opacity: 0.5;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.architects .h1 {
  margin-bottom: 4.5rem;
}

.architects .h2 {
  font-size: 2.2rem;
  font-weight: 500;
}

.architects .h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.38889;
  margin-top: 1.1rem;
}

.architects li,
.architects p {
  color: rgba(31, 34, 41, 0.8);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.38889;
}

.architects__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.4rem;
}

.architects__top p {
  max-width: 62rem;
}

.architects__top ul {
  list-style: none;
  margin: 1.7rem 0;
  max-width: 63.9rem;
  padding: 0 0 0 3rem;
}

.architects__top ul li {
  margin-bottom: 1rem;
  position: relative;
}

.architects__top ul li:after {
  background: url(../img/icons/architects-ul-1.svg) 50% / contain no-repeat;
  content: "";
  height: 0.8rem;
  left: -3rem;
  position: absolute;
  top: 0.9rem;
  width: 1.1rem;
}

.architects__top-image {
  height: 49.3rem;
  max-width: 65.8rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.architects__top-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.architects__middle {
  margin-top: 2.5rem;
}

.architects__middle .h3 {
  margin-top: 1.3rem;
}

.architects__middle ul {
  list-style: none;
  margin: 0.6rem 0;
  max-width: 63.9rem;
  padding: 0 0 0 2.4rem;
}

.architects__middle ul li {
  margin-bottom: 1rem;
  position: relative;
}

.architects__middle ul li:after {
  background: url(../img/icons/architects-ul-2.svg) 50% / contain no-repeat;
  content: "";
  height: 1.3rem;
  left: -2.1rem;
  position: absolute;
  top: 0.6rem;
  width: 0.8rem;
}

.architects__middle-header {
  margin-bottom: 1rem;
}

.architects__middle-header .h2 {
  margin-bottom: 0;
}

.architects__middle-header .h3 {
  margin-top: 0;
}

.architects__middle-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.6rem;
}

.architects__middle-left {
  max-width: 63.5rem;
  width: 100%;
}

.architects__middle-right {
  max-width: 62.1rem;
  width: 100%;
}

.architects__middle-item-last {
  margin-top: 2.5rem;
}

.architects__middle-bottom {
  margin-top: 6.6rem;
}

.architects__middle-bottom .h3 {
  color: #ab3b66;
  margin-bottom: 1rem;
}

.architects__middle-bottom .h2 {
  margin-bottom: 0;
}

.architects__middle-bottom a {
  font-size: 2.2rem;
  font-weight: 500;
}

.articles__area .h1 {
  font-size: 4rem;
  margin-bottom: 0;
}

.articles__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 7.6rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.articles__menu {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 31.1rem;
  width: 100%;
}

.articles__menu ul {
  margin: 0;
  padding: 0 2rem;
}

.articles__menu ul a,
.articles__menu ul li {
  font-size: 1.8rem;
  font-weight: 600;
}

.articles__menu ul a {
  display: block;
  padding: 1.15rem 0;
}

.articles__menu ul a:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.articles__menu ul li.is-active a,
.articles__menu ul li.is-active span {
  color: #ab3b66;
}

.articles__menu ul li::marker {
  color: #ab3b66;
  font-size: 2rem;
  font-weight: 600;
}

.articles__menu-sticky {
  position: sticky;
  top: 14rem;
}

.articles__menu-title {
  border-bottom: 1px solid rgba(31, 34, 41, 0.1);
  display: block;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  text-transform: uppercase;
}

.articles__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 13.5rem;
  width: 100%;
}

.articles__content-section {
  margin-bottom: 4.7rem;
}

.articles__content-section:last-of-type {
  margin-bottom: 1.2rem;
}

.articles__content-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.articles__content-section ul a,
.articles__content-section ul li {
  font-size: 1.8rem;
  font-weight: 300;
}

.articles__content-section ul a {
  display: inline-block;
  padding: 1rem 0;
  position: relative;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.articles__content-section ul a:after {
  background: url(../img/icons/article-mark.svg) 50% / contain no-repeat;
  content: "";
  height: 1.5rem;
  left: -4.3rem;
  position: absolute;
  top: 1.2rem;
  width: 1.7rem;
}

.articles__content-section ul a:hover {
  text-decoration: none;
}

.articles__content-section-title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 2.2rem;
  position: relative;
}

.articles__content-section-title:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.articles__content-section-title:after {
  background: url(../img/icons/note.svg) 50% / contain no-repeat;
  content: "";
  height: 1.9rem;
  left: -4.5rem;
  position: absolute;
  top: 0.2rem;
  width: 2rem;
}

.articles__content-section-more {
  color: #ab3b66;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1rem;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.articles__content-section-more:hover {
  text-decoration: none;
}

.articles__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -1.2rem;
  padding-top: 1.5rem;
}

.articles__pagination .catalog__pagination-first,
.articles__pagination .catalog__pagination-last,
.metaldlg {
  display: none;
}

.metaldlg {
  height: 100%;
  max-width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.metaldlg.is--opened {
  display: block;
}

.metaldlg-layout {
  background: hsla(0, 0%, 100%, 0.9);
  left: 0;
  z-index: 999;
}

.metaldlg-layout,
.metaldlg-wnd {
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
}

.metaldlg-wnd {
  background: #fff;
  -webkit-box-shadow: -5px 1px 65px 0 rgba(31, 34, 41, 0.25);
  box-shadow: -5px 1px 65px 0 rgba(31, 34, 41, 0.25);
  max-width: 124.3rem;
  overflow-y: auto;
  padding: 2.5rem 4rem;
  right: 0;
  z-index: 1000;
}

.panels-filter__sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9rem;
  margin-bottom: 3.2rem;
}

.panels-filter__section {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  background: #f8f8f8;
  border-radius: 0.4rem;
  cursor: pointer;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 10rem;
  max-width: 18.6rem;
}

.panels-filter__section,
.panels-filter__section-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.panels-filter__section-icon {
  height: 5.7rem;
  max-width: 5.7rem;
}

.panels-filter__section.section--types .icon {
  max-height: 5.7rem;
  max-width: 2.7rem;
}

.panels-filter__section.section--color .icon {
  max-height: 5.6rem;
  max-width: 5.6rem;
}

.panels-filter__section.section--material .icon {
  max-height: 5.6rem;
  max-width: 5.1rem;
}

.panels-filter__section.section--doors .icon {
  max-height: 5.7rem;
  max-width: 3.3rem;
}

.panels-filter__section.section--options .icon {
  max-height: 4.1rem;
  max-width: 4.3rem;
}

.panels-filter__section.section--fav .icon {
  max-width: 4.7rem;
}

.panels-filter__section.is--active {
  background: #28b19a;
  color: #fff;
}

.panels-filter__section.is--active span {
  color: #fff;
}

.panels-filter__section .icon {
  max-height: 5.7rem;
  max-width: 5.7rem;
}

.panels-filter__section span {
  color: #30343b;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 0.7rem;
}

.metaldlg-panel__title,
.metaldlg-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.metaldlg-panel__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.2rem;
}

.metaldlg-panel__head,
.panels-filter__values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.panels-filter__values {
  gap: 1.2rem;
}

.panels-filter__value {
  border: 1px solid rgba(31, 34, 41, 0.1);
  border-radius: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.2rem 3rem 1.2rem 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.panels-filter__value.is--active {
  background: #f8f8f8;
  border: 1px solid rgba(31, 34, 41, 0.4);
}

.panels-filter__value.is--active .panels-filter__value-check i {
  opacity: 1;
}

.panels-filter__value.is--active .panels-filter__value-check {
  background: #b5191e;
}

.panels-filter__value-image {
  height: 3.6rem;
  max-width: 2rem;
  width: 100%;
}

.panels-filter__value-image img {
  height: auto;
  max-height: 3.6rem;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.panels-filter__value-label {
  color: #30343b;
  font-size: 1.6rem;
}

.panels-filter__value-count {
  color: #ab3b66;
}

.panels-filter__value-text {
  font-size: 1.6rem;
  line-height: 1.1;
  text-align: center;
}

.panels-filter__value-check {
  border: 1px solid rgba(31, 34, 41, 0.25);
  border-radius: 0.4rem;
  height: 2rem;
  width: 2rem;
  -webkit-box-flex: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}

.panels-filter__value-check i {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxMSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMi4yIiBkPSJNMTQgMiA1Ljk5NSA5IDIgNS41Ii8+PC9zdmc+);
  height: 1.1rem;
  opacity: 0;
  width: 1.6rem;
}

.panels-list_items {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(7, 1fr);
}

.panels-list__item {
  cursor: pointer;
  max-width: 12.1rem;
  position: relative;
  width: 100%;
}

.panels-list__2fav {
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
}

.panels-list__2fav .icon {
  height: 1.8rem;
  width: 2.2rem;
  fill: #fff;
  stroke-width: 1px;
  stroke: #191c1f;
}

.panels-list {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  position: relative;
}

.panels-list:after {
  background: #f8f8f8;
  content: "";
  height: 0.5rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.panels-list__item-name {
  background: #fff;
  border-radius: 1.2rem;
  bottom: 6.3rem;
  -webkit-box-shadow: 0 0 20px 0 rgba(49, 54, 61, 0.15);
  box-shadow: 0 0 20px 0 rgba(49, 54, 61, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: 500;
  left: 50%;
  max-width: calc(100% - 0.7rem);
  padding: 1.1rem 1.5rem;
  position: absolute;
  text-align: center;
  -webkit-transform: translateX(-50%) translateY(0.5rem);
  -ms-transform: translateX(-50%) translateY(0.5rem);
  transform: translateX(-50%) translateY(0.5rem);
  width: calc(100% + 7rem);
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  text-wrap: pretty;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  z-index: 2;
}

.panels-list__item-name:after {
  background: url(../img/icons/angle.svg) 50% / cover no-repeat;
  bottom: -3.2rem;
  content: "";
  height: 5.3rem;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 5.7rem;
}

.panels-list__item:hover .panels-list__item-name {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}

.panels-list__item:hover .panels-list__item-btns .btn--select {
  background: #1f2229;
  color: #fff;
}

.panels-list__item-btns {
  margin-top: 2rem;
}

.panels-list__item-btns .btn--select {
  background: #fff;
  border: 1px solid rgba(49, 54, 61, 0.6);
  border-radius: 0.4rem;
  color: #31363d;
  font-size: 1.6rem;
  font-weight: 400;
  height: 3rem;
  max-width: 100%;
  padding-bottom: 0.1rem;
  text-transform: lowercase;
  width: 100%;
}

.panels-list__item.is--selected:after {
  border: 2px solid #ab3b66;
  border-radius: 0.9rem;
  content: "";
  height: 90%;
  left: 50%;
  position: absolute;
  top: -3%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  width: 14.2rem;
  z-index: -1;
}

.panels-list__item.is--selected .btn--select {
  background: #28b19a;
  border-color: transparent;
  color: #fff;
}

.panels-filter__value {
  cursor: pointer;
}

.panels-filter__values.values--types .panels-filter__value-text {
  white-space: nowrap;
}

.panels-filter__values.values--color .panels-filter__value {
  border: none;
  gap: 0.7rem;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 9rem;
  width: 100%;
}

.panels-filter__values.values--color .panels-filter__value-check {
  border: none;
  border-radius: 0.4rem;
  height: 6.1rem;
  margin: 0;
  max-width: 9rem;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 1.4rem;
}

.panels-filter__values.values--color .panels-filter__value-count,
.panels-filter__values.values--color .panels-filter__value-label {
  font-size: 1.4rem;
}

.panels-filter__values.values--color {
  gap: 1.2rem;
}

.panels-filter__values.values--color .panels-filter__value-check i {
  background: #fff;
  border-radius: 0.2rem;
  height: 2rem;
  opacity: 1;
  position: relative;
  width: 2rem;
}

.panels-filter__values.values--color .panels-filter__value-check i:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxMSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMi4yIiBkPSJNMTQgMiA1Ljk5NSA5IDIgNS41Ii8+PC9zdmc+);
  content: "";
  height: 1.1rem;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1.6rem;
}

.panels-filter__values.values--color .panels-filter__value.is--active {
  background: transparent;
}

.panels-filter__values.values--color
  .panels-filter__value.is--active
  .panels-filter__value-check
  i {
  background: #b5191e;
}

.panels-filter__values.values--color
  .panels-filter__value.is--active
  .panels-filter__value-check
  i:after {
  opacity: 1;
}

.panels-filter__values.values--color .panels-filter__value-text {
  margin: 0 -1rem;
}

.panels-filter__values.values--material {
  gap: 1.4rem;
}

.panels-filter__values.values--material .panels-filter__value-text {
  margin: 0 -1rem;
}

.panels-filter__values.values--material .panels-filter__value {
  border: none;
  gap: 0.7rem;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 9rem;
  width: 100%;
}

.panels-filter__values.values--material .panels-filter__value-check {
  border: none;
  border-radius: 0.4rem;
  height: 6.1rem;
  margin: 0;
  max-width: 9rem;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 1.4rem;
}

.panels-filter__values.values--material .panels-filter__value-count,
.panels-filter__values.values--material .panels-filter__value-label {
  font-size: 1.4rem;
}

.panels-filter__values.values--material .panels-filter__value-check i {
  background: #fff;
  border-radius: 0.2rem;
  height: 2rem;
  opacity: 1;
  position: relative;
  width: 2rem;
}

.panels-filter__values.values--material .panels-filter__value-check i:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxMSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMi4yIiBkPSJNMTQgMiA1Ljk5NSA5IDIgNS41Ii8+PC9zdmc+);
  content: "";
  height: 1.1rem;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1.6rem;
}

.panels-filter__values.values--material .panels-filter__value.is--active {
  background: transparent;
}

.panels-filter__values.values--material
  .panels-filter__value.is--active
  .panels-filter__value-check
  i {
  background: #b5191e;
}

.panels-filter__values.values--material
  .panels-filter__value.is--active
  .panels-filter__value-check
  i:after {
  opacity: 1;
}

.panels-filter__values.values--doors {
  display: grid;
  gap: 1.4rem 1.1rem;
  grid-template-columns: repeat(8, 1fr);
  padding-right: 6.9rem;
}

.panels-filter__values.values--doors .panels-filter__value-text {
  margin: 0 -1rem;
}

.panels-filter__values.values--doors .panels-filter__value {
  border: none;
  gap: 0.7rem;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}

.panels-filter__values.values--doors .panels-filter__value-check {
  border: none;
  border-radius: 0.4rem;
  height: 12.5rem;
  margin: 0;
  max-width: 100%;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0.7rem;
}

.panels-filter__values.values--doors .panels-filter__value-count,
.panels-filter__values.values--doors .panels-filter__value-label {
  font-size: 1.4rem;
}

.panels-filter__values.values--doors .panels-filter__value-check i {
  background: #fff;
  border-radius: 0.2rem;
  height: 2rem;
  opacity: 1;
  position: relative;
  width: 2rem;
}

.panels-filter__values.values--doors .panels-filter__value-check i:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxMSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMi4yIiBkPSJNMTQgMiA1Ljk5NSA5IDIgNS41Ii8+PC9zdmc+);
  content: "";
  height: 1.1rem;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1.6rem;
}

.panels-filter__values.values--doors .panels-filter__value.is--active {
  background: transparent;
}

.panels-filter__values.values--doors
  .panels-filter__value.is--active
  .panels-filter__value-check
  i {
  background: #b5191e;
}

.panels-filter__values.values--doors
  .panels-filter__value.is--active
  .panels-filter__value-check
  i:after {
  opacity: 1;
}

.panels-filter__values.values--options .panels-filter__value {
  padding: 2rem 1.4rem;
}

.panels-filter__values.values--options .panels-filter__value-check {
  margin-right: 0;
}

.metaldlg-close {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjMUYyMjI5IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTEyIDEgMSAxMm0xMSAwTDEgMSIvPjwvc3ZnPg==);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1.3rem;
  cursor: pointer;
  height: 3rem;
  position: absolute;
  right: 3.2rem;
  top: 2rem;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  width: 3rem;
  z-index: 2;
}

.metaldlg-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.metaldlg-list.type--frame .metaldlg-title {
  border-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  position: relative;
}

.metaldlg-list.type--frame .metaldlg-title:after {
  background: #f8f8f8;
  bottom: 0;
  content: "";
  height: 0.5rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.metaldlg-items {
  list-style: none;
  margin: 3.3rem 0 0;
  padding: 0;
}

.metaldlg-list.type--frame .metaldlg-items {
  display: grid;
  gap: 1.9rem;
  grid-template-columns: repeat(2, 1fr);
}

.metaldlg-list.type--frame .metaldlg-list__item {
  border: 1px solid rgba(31, 34, 41, 0.4);
  border-radius: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.7rem;
  padding: 1.4rem;
}

.metaldlg-list.type--frame .metaldlg-list__item.is--selected {
  background: #f8f8f8;
}

.metaldlg-list.type--frame
  .metaldlg-list__item.is--selected
  .metaldlg-list__item-btns
  .btn {
  background: #b5191e;
}

.metaldlg-list.type--frame .metaldlg-list__item-image {
  border-radius: 0.9rem;
  height: 21.9rem;
  overflow: hidden;
  width: 20.4rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.metaldlg-list.type--frame .metaldlg-list__item-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.metaldlg-list.type--frame .metaldlg-list__item-name {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.metaldlg-list.type--frame .metaldlg-list__item-price {
  font-size: 1.8rem;
}

.metaldlg-list.type--frame .metaldlg-list__item-price span {
  font-size: 2.5rem;
  font-weight: 500;
}

.metaldlg-list.type--frame .metaldlg-list__item-desc {
  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%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0.6rem 0 1.8rem;
}

.metaldlg-list.type--frame .metaldlg-list__item-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  max-width: 29.1rem;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.metaldlg-list.type--frame .metaldlg-list__item-btns .btn {
  background: #14aa23;
  border-radius: 6.6rem;
  height: 3.9rem;
  max-width: 15.9rem;
  padding-bottom: 0.1rem;
  width: 100%;
}

.metaldlg-list.type--frame .metaldlg-list__item-btns .btn:hover {
  background: #1f2229;
  color: #fff;
}

.metaldlg-list.type--frame .metaldlg-list__item-btns .link:after {
  bottom: 0;
  height: 1px;
}

.metaldlg-list.type--furn .metaldlg-items {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(6, 1fr);
}

.metaldlg-list.type--furn .metaldlg-list__item {
  border: 1px solid rgba(31, 34, 41, 0.4);
  border-radius: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 2.2rem 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.metaldlg-list.type--furn
  .metaldlg-list__item.is--selected
  .metaldlg-list__item-btns
  .btn {
  background: #b5191e;
}

.metaldlg-list.type--furn .metaldlg-list__item.is--selected {
  background: #f8f8f8;
}

.metaldlg-list.type--furn .metaldlg-list__item-image {
  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: 15.1rem;
}

.metaldlg-list.type--furn .metaldlg-list__item-image img {
  height: 100%;
  mix-blend-mode: darken;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  width: 100%;
}

.metaldlg-list.type--furn .metaldlg-list__item-name {
  font-size: 2.1rem;
  font-weight: 600;
  margin-top: 0.3rem;
  text-align: center;
}

.metaldlg-list.type--furn .metaldlg-list__item-price {
  font-size: 1.8rem;
}

.metaldlg-list.type--furn .metaldlg-list__item-price span {
  font-size: 2.5rem;
  font-weight: 500;
}

.metaldlg-list.type--furn .metaldlg-list__item-desc {
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.metaldlg-list.type--furn .metaldlg-list__item-btns,
.metaldlg-list.type--furn .metaldlg-list__item-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  width: 100%;
}

.metaldlg-list.type--furn .metaldlg-list__item-btns {
  max-width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 0.5rem;
}

.metaldlg-list.type--furn .metaldlg-list__item-btns .btn {
  background: #14aa23;
  border-radius: 6.6rem;
  font-size: 1.3rem;
  height: 3.3rem;
  max-width: 100%;
  padding-bottom: 0.1rem;
  width: 100%;
}

.metaldlg-list.type--furn .metaldlg-list__item-btns .btn:hover {
  background: #1f2229;
  color: #fff;
}

.metaldlg-list.type--furn .metaldlg-list__item-btns .link {
  font-size: 1.3rem;
}

.metaldlg-list.type--furn .metaldlg-list__item-btns .link:after {
  bottom: 0;
  height: 1px;
}

.no--photo {
  background: url(../img/no-photo.jpg) 50% / cover no-repeat;
  display: block;
  height: 100%;
  width: 100%;
}

.metalinfo-furn {
  max-width: 64.9rem;
  width: 100%;
}

.metalinfo-frame {
  max-width: 57.2rem;
  padding: 0 2rem;
  width: 100%;
}

.metalinfo-frame__name {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2.1rem;
}

.metalinfo__window {
  border-radius: 1.3rem;
  -webkit-filter: drop-shadow(0 0 80.476px rgba(48, 53, 60, 0.1));
  filter: drop-shadow(0 0 80.476px rgba(48, 53, 60, 0.1));
  padding: 3.5rem 2.5rem;
}

.metalinfo-furn__name {
  font-size: 3.4rem;
  font-weight: 600;
  margin-bottom: 3.1rem;
}

.metalinfo-furn__data-item {
  border: 1.13px solid rgba(31, 34, 41, 0.2);
  border-radius: 0.7rem;
  margin-bottom: 1.7rem;
  padding: 2rem 0;
}

.metalinfo-furn__data-image,
.metalinfo-furn__data-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.metalinfo-furn__data-image {
  max-width: 14.5rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0.8rem 1.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.metalinfo-furn__data-image img {
  max-height: 10.8rem;
}

.metalinfo-furn__data-text {
  color: rgba(31, 34, 41, 0.7);
  font-size: 1.4rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0 3.6rem;
  width: 100%;
}

.metalinfo-furn__data-title {
  color: #1f2229;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.metalinfo-furn__data-name {
  color: rgba(31, 34, 41, 0.7);
  font-size: 1.6rem;
}

.metalinfo-frame__text li,
.metalinfo-frame__text p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.completed-work .h1 {
  margin-bottom: 4.5rem;
}

.completed-work__grid {
  display: grid;
  gap: 0.7rem 1.1rem;
  grid-template-columns: repeat(4, 1fr);
}

.completed-work__item {
  height: 45.6rem;
  position: relative;
}

.completed-work__item:hover .completed-work__item-hover {
  opacity: 1;
}

.completed-work__item-image {
  border-radius: 0.8rem;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.completed-work__item-image img {
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
}

.completed-work__item-hover,
.completed-work__item-image img {
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.completed-work__item-hover {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(31, 34, 41, 0.8)),
    to(rgba(31, 34, 41, 0.8))
  );
  background: linear-gradient(
    0deg,
    rgba(31, 34, 41, 0.8),
    rgba(31, 34, 41, 0.8)
  );
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 2.8rem 2.6rem;
}

.completed-work__item-title {
  color: #fff;
  font-size: 1.5rem;
}

.completed-work__item-price {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 0.6rem;
}

.completed-work__item-price b {
  font-size: 2.1rem;
  font-weight: 400;
}

.cooperate__grid {
  display: grid;
  gap: 1.9rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5.4rem;
}

.cooperate__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cooperate__item:hover img {
  -webkit-filter: brightness(0.85);
  filter: brightness(0.85);
}

.cooperate__item img {
  border-radius: 0.9rem;
  height: 43.2rem;
  margin-bottom: 2rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.cooperate__item span {
  font-size: 2rem;
}

.dealers .h1 {
  margin-bottom: 4.5rem;
}

.dealers .h2 {
  font-size: 2.2rem;
  font-weight: 500;
}

.dealers .h3 {
  font-weight: 600;
  margin-top: 2.3rem;
}

.dealers .h3,
.dealers li,
.dealers p {
  font-size: 1.8rem;
  line-height: 1.38889;
}

.dealers li,
.dealers p {
  color: rgba(31, 34, 41, 0.8);
  font-weight: 400;
}

.dealers__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.4rem;
}

.dealers__top .h2:nth-of-type(2) {
  margin-bottom: 1.5rem;
}

.dealers__top-image {
  height: 49.3rem;
  max-width: 65.8rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.dealers__top-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.dealers__top-text {
  padding-top: 2.3rem;
}

.dealers__middle {
  margin-top: 5rem;
}

.dealers__middle-grid {
  display: grid;
  gap: 0 0.3rem;
  grid-template-columns: repeat(2, 1fr);
}

.dealers__middle-grid-item .h3 {
  margin-top: 1.8rem;
}

.dealers__bottom {
  border: 1px solid #ab3b66;
  border-radius: 0.9rem;
  margin-top: 3.5rem;
  max-width: 87.7rem;
  padding: 3.4rem 5.7rem 3.4rem 4.3rem;
  width: 100%;
}

.dealers__bottom .h2 {
  margin-bottom: 1.7rem;
}

.dealers__bottom ul {
  margin: 0;
  padding: 0 0 0 2rem;
}

.dealers__bottom li {
  margin-bottom: 1rem;
}

.dealers__bottom li:last-of-type {
  margin-bottom: 0;
}

.communication-form {
  margin-top: 4.6rem;
  max-width: 87.7rem;
  width: 100%;
}

.communication-form .h2 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 3.3rem;
}

.communication-form__inputs .input,
.communication-form__inputs .textarea {
  border: 1px solid rgba(31, 34, 41, 0.2);
  border-radius: 0.4rem;
  color: #1f2229;
  font-size: 1.8rem;
  font-weight: 400;
  height: 7rem;
  padding: 0 2.5rem;
}

.communication-form__inputs .input::-webkit-input-placeholder,
.communication-form__inputs .textarea::-webkit-input-placeholder {
  color: #1f2229;
  font-weight: 300;
  opacity: 0.8;
}

.communication-form__inputs .input::-moz-placeholder,
.communication-form__inputs .textarea::-moz-placeholder {
  color: #1f2229;
  font-weight: 300;
  opacity: 0.8;
}

.communication-form__inputs .input:-ms-input-placeholder,
.communication-form__inputs .textarea:-ms-input-placeholder {
  color: #1f2229;
  font-weight: 300;
  opacity: 0.8;
}

.communication-form__inputs .input::-ms-input-placeholder,
.communication-form__inputs .textarea::-ms-input-placeholder {
  color: #1f2229;
  font-weight: 300;
  opacity: 0.8;
}

.communication-form__inputs .input::placeholder,
.communication-form__inputs .textarea::placeholder {
  color: #1f2229;
  font-weight: 300;
  opacity: 0.8;
}

.communication-form__inputs .textarea {
  height: 16.8rem;
  padding: 2.5rem;
}

.communication-form__inputs .input {
  margin-bottom: 1.6rem;
}

.communication-form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.2rem;
  margin-top: 2.8rem;
}

.communication-form__footer .custom-checkbox {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.communication-form__footer .custom-checkbox span {
  color: rgba(31, 34, 41, 0.5);
  font-size: 1.4rem;
  font-weight: 300;
}

.communication-form__footer .custom-checkbox a {
  color: rgba(31, 34, 41, 0.5);
  display: block;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.communication-form__footer .custom-checkbox a:hover {
  text-decoration: none;
}

.communication-form-btn {
  border-radius: 0.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  height: 5rem;
  max-width: 30.3rem;
  width: 100%;
}

.discount {
  padding-bottom: 5rem;
}

.discount__head {
  margin-top: 5rem;
}

.discount__head p {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.discount__head p a {
  font-weight: 600;
}

.discount__head span {
  font-size: 1.8rem;
}

.discount__item {
  border-bottom: 1px solid rgba(31, 34, 41, 0.3);
  padding: 4rem 0;
}

.discount__item-title {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.discount__item-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 4.8rem;
}

.discount__item-images {
  max-width: 29rem;
  width: 100%;
}

.discount__item-image-item {
  display: block;
  margin-bottom: 1.6rem;
}

.discount__item-image-item:last-of-type {
  margin-bottom: 0;
}

.discount__item-image-item span {
  font-size: 1.8rem;
}

.discount__item-image {
  height: 38.6rem;
  margin-bottom: 0.6rem;
  position: relative;
  width: 100%;
}

.discount__item-image:after {
  background: url(../img/discount-plus.svg) 50% / contain no-repeat;
  bottom: 1.7rem;
  content: "";
  height: 1.8rem;
  position: absolute;
  right: 1.7rem;
  width: 1.8rem;
}

.discount__item-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.discount__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.3rem;
  max-width: 95.9rem;
  padding-top: 0.8rem;
  width: 100%;
}

.discount__item-content ul {
  margin: 0 0 0 2.8rem;
  padding: 0;
}

.discount__item-content li,
.discount__item-content p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.discount__item-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 44.2rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.discount__item-content-title {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3.1rem;
}

.discount__item-price {
  background: #28b19a;
  border-radius: 0.4rem;
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  height: 5rem;
  margin-bottom: 1.3rem;
  margin-top: auto;
  max-width: 46.4rem;
  padding: 1.2rem 0;
  text-align: center;
  width: calc(100% + 2rem);
}

.discount__item-price b {
  font-size: 1.6rem;
  font-weight: 400;
}

.discount__item-warn {
  color: rgba(31, 34, 41, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: 300;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.4rem;
  padding-left: 0.2rem;
  width: calc(100% + 2rem);
}

.discount__item-warn:before {
  background: url(../img/icons/discount-warn.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 2.7rem;
  width: 2.7rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.faq__area {
  max-width: 110.7rem;
  width: 100%;
}

.faq__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq__header .h1 {
  margin-bottom: 0;
}

.faq__add {
  font-size: 1.4rem;
  height: 4.4rem;
  max-width: 17.3rem;
  text-transform: uppercase;
  width: 100%;
}

.faq__body {
  margin-top: 5.7rem;
}

.faq__item {
  border: 1px solid rgba(31, 34, 41, 0.3);
  border-radius: 0.9rem;
  margin-bottom: 1.2rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.faq__item:hover {
  border-color: rgba(31, 34, 41, 0.6);
}

.faq__item:last-of-type {
  margin-bottom: 0;
}

.faq__item.is-active .faq__item-answer {
  display: block;
}

.faq__item.is-active .faq__item-question:after {
  background: url(../img/icons/faq-minus.svg) 50% / contain no-repeat;
}

.faq__item-question {
  cursor: pointer;
  padding: 3.2rem 4.6rem;
  position: relative;
}

.faq__item-question:after {
  background: url(../img/icons/faq-plus.svg) 50% / contain no-repeat;
  content: "";
  height: 2.7rem;
  position: absolute;
  right: 5.2rem;
  top: 3rem;
  width: 2.7rem;
}

.faq__item-question-header {
  border-bottom: 1px solid rgba(31, 34, 41, 0.2);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 2.1rem;
  max-width: 40rem;
  padding-bottom: 0.9rem;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}

.faq__item-question-header span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.faq__item-question-header span:before {
  background: url(../img/icons/faq-question.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.9rem;
  width: 1.9rem;
}

.faq__item-question-body {
  font-size: 1.8rem;
  max-width: 92.8rem;
}

.faq__item-question-body li:last-of-type,
.faq__item-question-body p:last-of-type {
  margin-bottom: 0;
}

.faq__item-answer {
  display: none;
  padding: 0 4.6rem 3.2rem;
}

.faq__item-answer-header {
  border-bottom: 1px solid rgba(31, 34, 41, 0.2);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.8rem;
  max-width: 40rem;
  padding-bottom: 0.9rem;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}

.faq__item-answer-header span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.faq__item-answer-header span:before {
  background: url(../img/icons/faq-answer.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.9rem;
  width: 1.9rem;
}

.faq__item-answer-body {
  font-size: 1.8rem;
  font-weight: 300;
}

.faq__item-answer-body li:last-of-type,
.faq__item-answer-body p:last-of-type {
  margin-bottom: 0;
}

.faq__item-answer-body a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.faq__item-answer-body ol,
.faq__item-answer-body ul {
  margin: 1rem;
  padding-left: 1rem;
}

.faq__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 4rem;
}

.hero {
  position: relative;
}

.hero:after {
  background: url(../img/hero-after.svg) 50% / contain no-repeat;
  content: "";
  height: 7.6rem;
  position: absolute;
  right: 6.4rem;
  top: 6.4rem;
  width: 7.6rem;
  z-index: 2;
}

.hero:before {
  background: url(../img/hero-before.svg) 50% / contain no-repeat;
  bottom: 6.4rem;
  content: "";
  height: 7.6rem;
  position: absolute;
  right: 6.4rem;
  width: 7.6rem;
  z-index: 2;
}

.hero__aside {
  background: #fff;
  bottom: 0;
  height: 100%;
  left: 0;
  max-width: 13.3rem;
  position: absolute;
  width: 100%;
  z-index: 10;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 10.2rem;
}

.hero__aside,
.hero__aside .social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero__aside .social-block {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 0.2rem;
  justify-content: center;
  position: relative;
}

.hero__aside .social-block:first-of-type {
  margin-bottom: 3.3rem;
}

.hero__aside .social-block:first-of-type:after {
  background: #1f2229;
  content: "";
  height: 7.6rem;
  left: 50%;
  opacity: 0.2;
  position: absolute;
  top: -9.7rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0.2rem;
}

.hero__aside .social-block a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  width: 3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero__aside .social-block a img {
  width: 1.8rem;
}

.hero__slider-area {
  position: relative;
}

.hero__slider-content {
  height: 100%;
  left: 0;
  padding-top: 31.8rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.hero__slider-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-left: auto;
  margin-right: 27rem;
  max-width: 70.6rem;
  text-align: right;
  width: 100%;
}

.hero__slider-content-area p {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.16;
  opacity: 0.8;
}

.hero__slider-title {
  color: #fff;
  font-size: 5.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 2.4rem;
  text-transform: uppercase;
}

.hero__slider-btn {
  font-size: 1.7rem;
  height: 5rem;
  margin-top: 3.3rem;
  max-width: 17.7rem;
  text-transform: uppercase;
  width: 100%;
}

.hero__slider-btn:hover {
  border-color: #28b19a;
  color: #28b19a;
}

.hero__slider-bg {
  position: relative;
}

.hero__slider-bg img {
  height: 90rem;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  top: 0;
  width: 100%;
}

.hero__slider-navigation-area {
  bottom: 0;
  bottom: 6.4rem;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.hero__slider-navigation-area .hero__slider-navigation-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: unset !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.hero__slider-navigation-area .swiper-pagination-bullet {
  background: hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  height: 0.6rem;
  margin: 0 !important;
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 0.6rem;
}

.hero__slider-navigation-area .swiper-pagination-bullet-active {
  background: hsla(0, 0%, 100%, 0.5);
  opacity: 1;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.hero__slider-navigation {
  gap: 0.7rem;
  padding-left: 14rem;
}

.sales-slider {
  margin: 4.5rem 0 1.3rem;
}

.sales-slider .sales__item {
  aspect-ratio: 1;
  height: auto;
}

.sales-slider .swiper-slide .sales__item {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.sales-slider .swiper-slide-visible .sales__item {
  opacity: 1;
  pointer-events: auto;
}

.sales-slider__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.3rem;
  margin-bottom: 2.3rem;
}

.sales-slider__header .h2 {
  margin-bottom: 0;
}

.catalog-category {
  padding: 5.9rem 0;
}

.catalog-category__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin-bottom: 4.3rem;
}

.catalog-category__header .h2 {
  margin-bottom: 0;
}

.catalog-category__header-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.3rem;
}

.catalog-category__header-flex,
.nav-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-block {
  gap: 1.9rem;
}

.nav-slider-prev {
  background: url(../img/icons/slider-nav-prev.svg) 50% / cover no-repeat;
}

.nav-slider-next,
.nav-slider-prev {
  cursor: pointer;
  height: 4.8rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 4.8rem;
}

.nav-slider-next {
  background: url(../img/icons/slider-nav-next.svg) 50% / cover no-repeat;
}

.nav-slider-next.swiper-button-disabled,
.nav-slider-prev.swiper-button-disabled {
  opacity: 0.4;
}

.catalog-category__grid {
  gap: 1.9rem;
}

.catalog-category__grid .swiper-slide .catalog-category__item {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.catalog-category__grid .swiper-slide-visible .catalog-category__item {
  opacity: 1;
  pointer-events: auto;
}

.catalog-category__item {
  border-radius: 0.6rem;
  display: block;
  height: 41.8rem;
  overflow: hidden;
  position: relative;
}

.catalog-category__item:after {
  background: #1f2229;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.catalog-category__item:hover:after {
  opacity: 0.4;
}

.catalog-category__item:hover img {
  -webkit-filter: blur(2px);
  filter: blur(2px);
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.catalog-category__item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  will-change: transform;
}

.catalog-category__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  color: #fff;
  font-size: 2.2rem;
  justify-content: flex-end;
  padding: 2.5rem 3rem;
  text-transform: uppercase;
  z-index: 2;
}

.home-catalog .catalog__footer {
  margin-top: 0;
}

.catalog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 2.3rem;
  justify-content: space-between;
}

.catalog__header .parametrs-btn {
  background: #ab3b66;
  border-color: transparent;
  color: #fff;
  height: 5.8rem;
}

.catalog__header .parametrs-btn:hover {
  background: transparent;
  border-color: #ab3b66;
  color: #1f2229;
}

.catalog__header-search {
  position: relative;
  width: 100%;
}

.catalog__header-search .input {
  height: 5.8rem;
  padding-right: 5.5rem;
}

.catalog__header-search-form-btn {
  background: transparent;
  color: rgba(31, 34, 41, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog__header-search-form-btn:hover {
  color: #fff;
}

.catalog__header-search-form-btn .icon {
  height: 1.8rem;
  width: 1.8rem;
}

.catalog__category {
  padding: 2.9rem 0 4.4rem;
}

.catalog__category-grid {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.catalog__category-grid,
.catalog__category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog__category-item {
  height: 5.8rem;
  padding: 0 4.3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #fff;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0 0 12px 0 rgba(31, 34, 41, 0.15);
  box-shadow: 0 0 12px 0 rgba(31, 34, 41, 0.15);
  cursor: pointer;
  font-size: 1.6rem;
  justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.catalog__category-item:hover {
  background: #ab3b66;
  color: #fff;
}

.catalog__category-item span:before {
  color: #b0b0b0;
  content: "#";
  font-size: 1.6rem;
  padding-right: 0.2rem;
}

.vantages-doors {
  padding-bottom: 13.6rem;
  padding-top: 3rem;
}

.vantages-doors__wrap .h2 {
  margin-bottom: 3.5rem;
  text-align: center;
}

.vantages-doors__area {
  background: url(../img/vantages-doors-after.svg) 50% / cover no-repeat;
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5.3rem 1.5rem;
  position: relative;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: -6rem;
}

.vantages-doors__image {
  left: -6rem;
  position: absolute;
  top: -9.9rem;
}

.vantages-doors__image img {
  height: 74.6rem;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
  width: 55.1rem;
  z-index: -1;
}

.vantages-doors__grid {
  display: grid;
  gap: 1.9rem 7.9rem;
  grid-template-columns: repeat(2, 1fr);
  left: -5.6rem;
  max-width: 88.4rem;
  position: relative;
}

.vantages-doors__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.8rem;
}

.vantages-doors__item:first-of-type img {
  width: 6.9rem;
}

.vantages-doors__item:nth-of-type(2) img {
  width: 6rem;
}

.vantages-doors__item:nth-of-type(3) img {
  width: 6.4rem;
}

.vantages-doors__item:nth-of-type(5) img {
  width: 5.7rem;
}

.vantages-doors__item:nth-of-type(6) img {
  width: 6rem;
}

.vantages-doors__item:nth-of-type(6) img {
  width: 5.9rem;
}

.vantages-doors__item:nth-of-type(7) img {
  width: 5.5rem;
}

.vantages-doors__item:nth-of-type(8) img {
  width: 5.8rem;
}

.vantages-doors__item-icon {
  max-width: 6.9rem;
  width: 100%;
  -webkit-box-flex: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.vantages-doors__item-text p {
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 0;
}

.gallery {
  padding-bottom: 5.9rem;
}

.gallery .completed-work__item {
  height: auto;
}

.gallery__area .h2 {
  margin-bottom: 0;
}

.gallery__area-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 3.3rem;
}

.gallery__area-header a {
  color: #ab3b66;
  font-size: 2.2rem;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.gallery__area-header a:hover {
  text-decoration: none;
}

.gallery__grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 16.8% auto 16.8% 16.8% 16.8%;
  grid-template-rows: repeat(2, 37rem);
}

.gallery__item {
  border-radius: 1rem;
  overflow: hidden;
}

.gallery__item:first-of-type {
  grid-area: 1/1/2/2;
}

.gallery__item:nth-of-type(2) {
  grid-area: 2/1/3/2;
}

.gallery__item:nth-of-type(3) {
  grid-area: 1/2/3/3;
}

.gallery__item:nth-of-type(4) {
  grid-area: 1/3/2/4;
}

.gallery__item:nth-of-type(5) {
  grid-area: 2/3/3/4;
}

.gallery__item:nth-of-type(6) {
  grid-area: 1/4/2/5;
}

.gallery__item:nth-of-type(7) {
  grid-area: 2/4/3/5;
}

.gallery__item:nth-of-type(8) {
  grid-area: 1/5/2/6;
}

.gallery__item:nth-of-type(9) {
  grid-area: 2/5/3/6;
}

.gallery__item img {
  border-radius: 1rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  will-change: transform;
}

.how-buy {
  padding: 5.8rem 0;
}

.how-buy__wrap .h2 {
  margin-bottom: 3.8rem;
}

.how-buy__grid,
.how-buy__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.how-buy__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 53.8rem;
  padding: 8.5rem 6.9rem 13.3rem 3.5rem;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-box-flex: 1;
  cursor: pointer;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}

.how-buy__item .h3 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 6.5rem;
  min-height: 9.9rem;
  text-transform: uppercase;
}

.how-buy__item p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.4rem;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  z-index: 2;
}

.how-buy__item p:last-of-type {
  margin-bottom: 0;
}

.how-buy__item-image {
  position: absolute;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.how-buy__item-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
  width: 100%;
}

.how-buy__item--1 {
  background: #ab3b66;
  border-radius: 1rem 0 0 1rem;
}

.how-buy__item--1 p {
  max-width: 20.4rem;
}

.how-buy__item--1 .how-buy__item-image {
  height: 47.6rem;
  -webkit-transform: scale(0.82) translate(6rem, 5.6rem);
  -ms-transform: scale(0.82) translate(6rem, 5.6rem);
  transform: scale(0.82) translate(6rem, 5.6rem);
  width: 28.5rem;
}

.how-buy__item--2 {
  background: #28b19a;
}

.how-buy__item--2 p {
  max-width: 20.4rem;
}

.how-buy__item--2 .how-buy__item-image {
  height: 47.4rem;
  -webkit-transform: scale(1.2) translate(-1rem, 5.2rem);
  -ms-transform: scale(1.2) translate(-1rem, 5.2rem);
  transform: scale(1.2) translate(-1rem, 5.2rem);
  width: 32.3rem;
}

.how-buy__item--3 {
  background: #1f2229;
}

.how-buy__item--3 .h3 {
  max-width: 21.7rem;
}

.how-buy__item--3 p {
  max-width: 20.4rem;
}

.how-buy__item--3 .how-buy__item-image {
  height: 54.6rem;
  -webkit-transform: scale(1) translate(-14.3rem, 4.4rem);
  -ms-transform: scale(1) translate(-14.3rem, 4.4rem);
  transform: scale(1) translate(-14.3rem, 4.4rem);
  width: 50.1rem;
}

.how-buy__item--4 {
  background: #7987c4;
  border-radius: 0 1rem 1rem 0;
}

.how-buy__item--4 .h3 {
  max-width: 21.7rem;
}

.how-buy__item--4 p {
  max-width: 20.4rem;
}

.how-buy__item--4 .how-buy__item-image {
  height: 52.8rem;
  -webkit-transform: scale(0.5) translate(-22rem, 4.4rem);
  -ms-transform: scale(0.5) translate(-22rem, 4.4rem);
  transform: scale(0.5) translate(-22rem, 4.4rem);
  width: 51.2rem;
}

.how-buy__item--4.active .h3 {
  max-width: 21.7rem;
}

.history__wrap {
  background: url(../img/history-bg.jpg) 50% / cover no-repeat;
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.9rem;
  padding: 4.8rem 5.9rem 4.8rem 9rem;
}

.history__content {
  max-width: 57.2rem;
  padding-top: 6rem;
  text-align: right;
  width: 100%;
}

.history__content .h3 {
  color: #ab3b66;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.history__content .h2 {
  margin-bottom: 5.8rem;
}

.history__content p {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.3rem;
}

.history__content p:last-of-type {
  margin-bottom: 0;
}

.history__video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2.5rem;
  gap: 3.8rem;
  max-width: 72rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.history__video img {
  width: 100%;
}

.history__video:hover .history__video-play {
  -webkit-transform: translate(-50%, -45%);
  -ms-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
}

.history__video-play {
  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;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.history__video-play img {
  width: 12.3rem;
}

.history__video-play span {
  font-size: 1.8rem;
  opacity: 0.5;
  padding-top: 0.2rem;
}

.h2.history__video-title {
  margin-bottom: 0;
  padding-bottom: 2rem;
}

.callback-modal__overlay {
  background: rgba(31, 34, 41, 0.3);
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 90;
}

.callback-modal__overlay.active {
  backdrop-filter: blur(6px);
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 99;
}

.callback-modal.active {
  right: 0;
}

#catalogMenu {
  background: #fff;
  display: grid;
  grid-template-columns: 32rem 1fr;
  height: 76.6rem;
  left: 0;
  margin: auto;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 6rem;
  visibility: hidden;
  width: 150rem;
  z-index: -1;
}

#catalogMenu.fixed {
  top: 1rem;
}

#catalogMenu.active {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}

#catalogMenu ul {
  list-style: none;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}

#catalogMenu .left,
#catalogMenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#catalogMenu .left {
  background: rgba(31, 34, 41, 0.05);
  padding: 12rem 5rem 0;
}

#catalogMenu .left ul {
  color: #1f2229;
  font-size: 1.7rem;
  font-weight: 400;
  gap: 1rem;
  text-transform: uppercase;
  width: 100%;
}

#catalogMenu .left ul li {
  border-bottom: 1px solid rgba(31, 34, 41, 0);
  border-top: 1px solid rgba(31, 34, 41, 0);
  cursor: pointer;
  padding: 1rem 0;
  -webkit-transition:
    all 0.3s,
    font-weight 0s;
  transition:
    all 0.3s,
    font-weight 0s;
}

#catalogMenu .left ul li:not(.active):hover {
  color: #009a9a;
}

#catalogMenu .left ul .active {
  border-bottom: 1px solid rgba(31, 34, 41, 0.1);
  border-top: 1px solid rgba(31, 34, 41, 0.1);
  font-weight: 700;
}

#catalogMenu .right .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.2rem;
  margin-bottom: 6.5rem;
  padding-top: 2.5rem;
}

#catalogMenu .right .top .header__catalog {
  border-color: rgba(31, 34, 41, 0.3);
  color: #1f2229;
  height: 4.4rem;
  left: unset;
  width: 100%;
}

#catalogMenu .right .top .header__catalog:hover {
  border-color: #ea1919;
  color: #ea1919;
}

#catalogMenu .right .top .header__catalog:hover svg {
  stroke: #ea1919;
}

#catalogMenu .right .top .header__catalog svg {
  stroke: #1f2229;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#catalogMenu .right .top .searchBl {
  max-width: 76rem;
  position: relative;
  width: 100%;
}

#catalogMenu .right .top .searchBl .searchBtn {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 1.5rem;
  top: 1.1rem;
}

#catalogMenu .right .top .searchBl .searchBtn:hover svg {
  stroke: #009a9a;
}

#catalogMenu .right .top .searchBl .searchBtn svg {
  height: 2rem;
  width: 2rem;
  stroke: #1f2229;
  fill: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#catalogMenu .right .top .searchBl input {
  border: 1px solid rgba(31, 34, 41, 0.3);
  color: #1f2229;
  font-size: 1.7rem;
  font-weight: 400;
  padding: 1.1rem 1.6rem;
  width: 100%;
}

#catalogMenu .right .top .searchBl input:focus {
  border: 1px solid rgba(31, 34, 41, 0.6);
}

.menu-tab-body {
  height: 63rem;
  overflow-y: auto;
}

.menu-tab-body .menu-tab {
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}

.menu-tab-body .menu-tab.active {
  height: 63rem;
  opacity: 1;
  overflow: auto;
  visibility: visible;
}

.menu-tab-body .menu-tab-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 0 5rem 3rem;
}

.menu-tab-body .menu-tab-inner .menu-tab-item {
  border-left: 1px solid rgba(31, 34, 41, 0.1);
  padding-left: 2rem;
  width: 100%;
}

.menu-tab-body .menu-tab-inner .menu-tab-item .i-color {
  border: 1px solid rgba(31, 34, 41, 0.1);
  border-radius: 0.2rem;
  display: inline-block;
  height: 1.2rem;
  margin-right: 0.5rem;
  width: 1.2rem;
}

.menu-tab-body .menu-tab-inner .menu-tab-item .title {
  color: #1f2229;
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 2rem auto;
  text-transform: uppercase;
}

.menu-tab-body .menu-tab-inner .menu-tab-item .title:first-child {
  margin-top: 0;
}

.menu-tab-body .menu-tab-inner .menu-tab-item ul {
  gap: 1rem;
}

.menu-tab-body .menu-tab-inner .menu-tab-item ul li {
  color: #1f2229;
  font-size: 1.7rem;
  font-weight: 400;
}

.menu-tab-body .menu-tab-inner .menu-tab-item ul li a:hover {
  color: #28b19a;
}

.menu-tab-body .menu-tab-inner .menu-tab-item ul li span {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
}

.menu-tab-body .menu-tab-inner .menu-tab-item:first-child {
  border: 0;
  padding: 0;
}

.modalStyled {
  background: #fff;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 50rem;
  opacity: 0;
  padding: 4rem 6.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
}

.modalStyled,
.modalStyled .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modalStyled .top {
  gap: 7rem;
}

.modalStyled .title {
  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;
}

.modalStyled h2 {
  display: block;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 0;
  text-transform: uppercase;
}

.modalStyled ul {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  list-style: none;
  padding: 0;
}

.modalStyled ul b {
  font-weight: 500;
}

.modalStyled.active {
  opacity: 1;
  visibility: visible;
}

.right-menu__social {
  gap: 4.1rem;
}

.right-menu__social,
.right-menu__social .social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.right-menu__social .social-block {
  gap: 1rem;
}

.right-menu__social .social-block img {
  width: 1.8rem;
}

.right-menu__social .social-block:nth-of-type(2) a:nth-of-type(2) {
  width: 1.9rem;
}

.right-menu__btn {
  font-size: 1.7rem;
  height: 5rem;
  margin: auto 0;
  max-width: 17.7rem;
  text-transform: uppercase;
  width: 100%;
}

#regionMenu {
  left: -50rem;
  padding-right: 3rem;
}

#regionMenu.active {
  left: 0;
}

#regionMenu .top {
  height: 100%;
}

#regionMenu .info .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
}

#regionMenu .info .contacts b {
  font-size: 2rem;
  font-weight: 400;
}

#regionMenu .info .contacts .phone {
  color: #ab3b66;
}

#regionMenu .info .contacts .mail {
  color: #009a9a;
  font-size: 1.7rem;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

#regionMenu .info .contacts .mail:hover {
  text-decoration: none;
}

#regionMenu .info__contacts,
#regionMenu .info__list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

#regionMenu .cityList {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
}

#regionMenu .cityList li {
  color: rgba(31, 34, 41, 0.5);
  cursor: pointer;
  display: block;
  margin-bottom: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#regionMenu .cityList li a {
  color: rgba(31, 34, 41, 0.5);
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

#regionMenu .cityList li:hover {
  color: #009a9a;
}

#regionMenu .cityList li:hover a {
  color: #009a9a;
  text-decoration: none;
}

.regoin-menu-btn {
  font-size: 1.7rem;
  height: 5rem;
  margin-bottom: 6rem;
  margin-top: auto;
  max-width: 38.4rem;
  text-transform: uppercase;
  width: 100%;
}

.modal__close {
  height: 2rem;
  width: 2rem;
}

.modal__close svg {
  cursor: pointer;
  height: 100%;
  width: 100%;
  stroke: #191c1f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal__close:hover svg {
  stroke: #ea1919;
}

#callbackModal .modal__close,
#socialModal .modal__close,
#zamerModal .modal__close {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

#socialModal {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 10rem 6.2rem;
}

#socialModal .socialRow {
  gap: 5.5rem;
}

#socialModal .socialRow,
#socialModal .socialRow .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#socialModal .socialRow .item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#socialModal .socialRow .item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

#callbackModal .h2 {
  margin-bottom: 1rem;
}

#callbackModal .grey {
  color: #1f2229;
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 3.7rem;
  opacity: 0.5;
}

#callbackModal .callback-modal__form .input:last-of-type {
  margin-bottom: 1.4rem;
}

.callback-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 64.1rem;
  padding: 8rem 6.2rem;
  -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;
}

#paramFilter {
  left: -50rem;
  padding: 4rem 2.4rem 0;
}

#paramFilter .grey {
  font-size: 17px;
  opacity: 0.3;
}

#paramFilter .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

#paramFilter .refresh svg {
  cursor: pointer;
  height: 2rem;
  width: 2.1rem;
}

#paramFilter.active {
  left: 0;
}

#paramFilter .catalog-item__buttons {
  background: #f5f5f5;
  gap: 1.3rem;
  margin: auto -2.4rem 0;
  padding: 2.4rem;
}

.btn--red.outlined {
  background: #fff;
  border: 1px solid #ea1919;
  color: #ea1919;
  gap: 1rem;
}

.btn--red.outlined svg {
  height: 100%;
  width: 2rem;
  stroke: #ea1919;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn--red.outlined:hover {
  background-color: #ea1919;
  color: #fff;
}

.btn--red.outlined:hover svg {
  stroke: #fff;
}

.filter-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  margin-right: -1.5rem;
  max-height: 56.6rem;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.filter-row .filter-row-item {
  border: 1px solid rgba(31, 34, 41, 0.1);
  border-radius: 0.4rem;
  padding: 1.2rem;
}

.filter-row .filter-row-item b {
  font-size: 1.7rem;
  font-weight: 400;
  margin-right: 0.4rem;
}

.filter-row .filter-row-item > label {
  cursor: pointer;
  margin: 0;
  padding-right: 1rem;
  position: relative;
  width: 100%;
}

.filter-row .filter-row-item > label:after {
  background: url(../img/icons/i-arrow-top.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 0.9rem;
  position: absolute;
  right: 0;
  top: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 0.9rem;
}

.filter-row .filter-row-item.visible > label:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filter-row .filter-row-item .filter-item-inner {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}

.filter-row .filter-row-item.visible .filter-item-inner {
  opacity: 1;
  padding-top: 1rem;
  visibility: visible;
}

.filter-row .filter-row-item .result {
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 0.3;
}

.filter-row .filter-row-item .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.filter-row .filter-row-item .options label {
  color: rgba(31, 34, 41, 0.7);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.filter-row .filter-row-item .options label:hover {
  color: #009a9a;
}

.scroll-area {
  scrollbar-color: #d6d6d7 transparent;
  scrollbar-width: thin;
}

.scroll-area::-webkit-scrollbar {
  width: 7px;
}

.scroll-area::-webkit-scrollbar-track {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.scroll-area::-webkit-scrollbar-thumb {
  background-color: #d6d6d7;
  outline: none;
}

.catalog-modals {
  background: #fff;
  border-radius: 0.4rem;
  height: 71.4rem;
  left: 0;
  margin: auto;
  max-width: 144rem;
  opacity: 0;
  padding: 2.4rem 14.8rem 8.1rem 20rem;
  position: fixed;
  right: 0;
  top: 6rem;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}

.catalog-modals.fixed {
  top: 1rem;
}

.catalog-modals.active {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}

.catalog-modals__header {
  margin-bottom: 4rem;
}

.catalog-modals-title {
  font-size: 2.8rem;
  text-transform: uppercase;
}

.catalog-modals__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  max-height: 57rem;
  overflow-y: auto;
  padding: 0 0 3rem;
}

.catalog-modals__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog-modals__col a,
.catalog-modals__col li {
  font-size: 1.7rem;
}

.catalog-modals__col a:hover,
.catalog-modals__col li:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.catalog-modals__col a {
  display: block;
  padding: 0.5rem 0;
}

.catalog-modals__col a span {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
}

.catalog-modals__col-title {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.i-color {
  border-radius: 0.2rem;
  display: inline-block;
  height: 1.2rem;
  margin-right: 1.1rem;
  width: 1.2rem;
}

.i-color--white {
  border: 1px solid rgba(31, 34, 41, 0.1);
}

.catalog-modals--entrance-doors .catalog-modals__col {
  border-right: 1px solid rgba(31, 34, 41, 0.1);
  max-width: 21.7rem;
  padding: 0 2rem;
  width: 100%;
}

.catalog-modals--entrance-doors .catalog-modals__col:first-of-type {
  padding-left: 0;
}

.catalog-modals--entrance-doors .catalog-modals__col:last-of-type {
  border-color: transparent;
}

.catalog-modals--interior-doors {
  height: 80.5rem;
  padding: 2.4rem 6.8rem 4.1rem 15.3rem;
}

.catalog-modals--interior-doors .catalog-modals__body {
  max-height: 65rem;
}

.catalog-modals--interior-doors .catalog-modals__col a {
  padding: 0.25rem;
}

.catalog-modals--interior-doors .catalog-modals__col-title {
  margin-bottom: 1.3rem;
}

.catalog-modals--interior-doors .catalog-modals__col {
  border-right: 1px solid rgba(31, 34, 41, 0.1);
  padding: 0 1.5rem;
  width: 100%;
}

.catalog-modals--interior-doors .catalog-modals__col:first-of-type {
  max-width: 20.5rem;
  padding-left: 0;
}

.catalog-modals--interior-doors .catalog-modals__col:nth-of-type(2) {
  max-width: 22.7rem;
}

.catalog-modals--interior-doors .catalog-modals__col:nth-of-type(3) {
  max-width: 23.2rem;
}

.catalog-modals--interior-doors .catalog-modals__col:nth-of-type(4) {
  max-width: 26.6rem;
}

.catalog-modals--interior-doors .catalog-modals__col:nth-of-type(5) {
  max-width: 19.8rem;
}

.catalog-modals--interior-doors .catalog-modals__col:last-of-type {
  border-color: transparent;
}

.catalog-modals__item {
  margin-bottom: 1.7rem;
}

.catalog-modals__item:last-of-type {
  margin-bottom: 0;
}

.catalog-modals__close {
  background: url(../img/icons/modal-close.svg) 50%/2.4rem no-repeat;
  cursor: pointer;
  height: 4rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 4rem;
  will-change: transform;
}

.catalog-modals__close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.catalog-modals__show-more {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  padding-left: 0.2rem;
}

.catalog-modals__show-more:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.catalog-modals__show-more:after {
  background: url(../img/icons/gipermenu-arrow.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 0.6rem;
  margin-top: 0.2rem;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  width: 0.9rem;
}

.catalog-modals__item.is-expanded .catalog-modals__show-more:after {
  content: "";
  margin-top: 0;
  -webkit-transform: rotate(180deg) translateY(0.1rem);
  -ms-transform: rotate(180deg) translateY(0.1rem);
  transform: rotate(180deg) translateY(0.1rem);
}

.partners .h1 {
  margin-bottom: 4.5rem;
}

.partners .h2 {
  font-size: 3rem;
  font-weight: 500;
}

.partners .h3 {
  font-weight: 600;
  margin-top: 1.1rem;
}

.partners .h3,
.partners li,
.partners p {
  font-size: 1.8rem;
  line-height: 1.38889;
}

.partners li,
.partners p {
  color: rgba(31, 34, 41, 0.8);
  font-weight: 400;
}

.partners__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.2rem;
  padding-right: 2.4rem;
}

.partners__hero-image {
  max-width: 70rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 62.5rem;
}

.partners__hero-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.partners__hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.partners__hero-text .h2 {
  margin-bottom: 2rem;
  max-width: 55rem;
}

.partners__hero-text .h3 {
  font-size: 2.2rem;
  margin-bottom: 0.1rem;
  margin-top: 0.6rem;
}

.partners__hero-btn {
  font-size: 1.6rem;
  font-weight: 600;
  height: 5rem;
  margin-top: auto;
  max-width: 30.3rem;
  width: 100%;
}

.partners__vantages {
  margin-top: 5.3rem;
}

.partners__vantages .h2 {
  margin-bottom: 4.2rem;
}

.partners__vantages-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.partners__vantages-row:first-of-type .partners__vantages-item:first-of-type p {
  max-width: 37.5rem;
}

.partners__vantages-row:nth-of-type(2)
  .partners__vantages-item:nth-of-type(3)
  span {
  margin-bottom: 3.6rem;
}

.partners__vantages-item {
  width: 100%;
}

.partners__vantages-item:first-of-type {
  max-width: 41rem;
}

.partners__vantages-item:nth-of-type(2) {
  max-width: 42.4rem;
  position: relative;
}

.partners__vantages-item:nth-of-type(3) {
  max-width: 39.8rem;
}

.partners__vantages-item span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.partners__vantages-item-icon {
  height: 6.2rem;
  max-width: 7.6rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.partners__vantages-btn-area,
.partners__vantages-item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.partners__vantages-btn-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.partners__vantages-btn {
  font-size: 1.6rem;
  font-weight: 600;
  height: 5rem;
  max-width: 30.3rem;
  width: 100%;
}

.partners-work {
  padding: 9.8rem 0 7.7rem;
}

.partners-work .h2 {
  margin-bottom: 4.6rem;
}

.partners-work__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 1.8rem;
  justify-content: space-between;
}

.partners-work__content {
  max-width: 34.9rem;
  padding-top: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.partners-work__author,
.partners-work__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.partners-work__author {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 1.6rem;
  margin-top: auto;
}

.partners-work__author-avatar {
  height: 9.6rem;
  margin-bottom: 1.1rem;
  width: 9.6rem;
}

.partners-work__author-avatar img {
  border-radius: 1.6rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.partners-work__author-name {
  font-size: 1.8rem;
  padding-bottom: 1.5rem;
}

.partners-work__author-name span {
  display: block;
  opacity: 0.5;
}

.partners-work__description .h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.partners-work__description p:last-of-type {
  margin-bottom: 0;
}

.partners-work__description-text {
  -webkit-line-clamp: 7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 7;
  overflow: hidden;
}

.partners-work__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.partners-work__images {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 55.9rem 22.2rem 22.2rem;
  grid-template-rows: 21rem 21rem;
  max-width: 103.3rem;
  width: 100%;
}

.partners-work__images img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.partners-work__images img:first-of-type {
  grid-area: 1/1/3/2;
}

.partners-work__images img:nth-of-type(2) {
  grid-area: 1/2/2/3;
}

.partners-work__images img:nth-of-type(3) {
  grid-area: 1/3/2/4;
}

.partners-work__images img:nth-of-type(4) {
  grid-area: 2/2/3/3;
}

.partners-work__images img:nth-of-type(5) {
  grid-area: 2/3/3/4;
}

.partners-work__slider-actions {
  margin-top: 2.4rem;
}

.partners-work__btn {
  font-size: 1.4rem;
  font-weight: 400;
  height: 5rem;
  max-width: 33.9rem;
  text-transform: uppercase;
  width: 100%;
}

.partners-work__slider-nav {
  gap: 1.6rem;
}

.partners-work__slider-nav,
.partners-work__slider-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partners-work__slider-prev {
  background: #b52025;
  border-radius: 50%;
  height: 5rem;
  width: 5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  color: #fff;
  cursor: pointer;
  justify-content: center;
}

.partners-work__slider-prev .icon {
  height: 1.4rem;
  width: 0.9rem;
}

.partners-work__slider-next {
  background: #b52025;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5rem;
  width: 5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  color: #fff;
  cursor: pointer;
  justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.partners-work__slider-next .icon {
  height: 1.4rem;
  -webkit-transition: none;
  transition: none;
  width: 0.9rem;
}

.partners-work__slider-next.swiper-button-disabled,
.partners-work__slider-prev.swiper-button-disabled {
  background: #e2e2e2;
  color: #31363d;
}

.partners-work__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 1.4rem;
  justify-content: center;
  margin-top: 2.6rem;
}

.partners-work__pagination .swiper-pagination-bullet {
  background: #d9d9d9;
  height: 1.4rem;
  margin: 0 !important;
  opacity: 1 !important;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 1.4rem;
}

.partners-work__pagination .swiper-pagination-bullet-active {
  background: #1f2229;
}

.politics .h1 {
  margin-bottom: 5rem;
}

.politics__area {
  max-width: 108.1rem;
  width: 100%;
}

.politics__area li,
.politics__area p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.38889;
}

.politics__area a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.politics__area a:hover {
  text-decoration: none;
}

.politics__area .mt-20 {
  display: block;
  margin-top: 2rem;
}

.portfolio .h2 {
  font-size: 2.8rem;
  margin-bottom: 2.8rem;
  text-transform: none;
}

.portfolio__photos {
  gap: 2.3rem;
  margin-top: 4.8rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.portfolio__photos,
.portfolio__photos-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.portfolio__photos-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.portfolio__photos-item:hover img {
  -webkit-filter: brightness(0.85);
  filter: brightness(0.85);
}

.portfolio__photos-item:last-of-type {
  margin-left: auto;
}

.portfolio__photos-item img {
  border-radius: 0.9rem;
  height: 36.5rem;
  margin-bottom: 1.1rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.portfolio__photos-item span {
  font-size: 2rem;
}

.portfolio__videos {
  margin-top: 8.5rem;
}

.portfolio__videos-grid {
  gap: 2.3rem;
}

.portfolio__videos-grid,
.portfolio__videos-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.portfolio__videos-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.portfolio__videos-item:hover img {
  -webkit-filter: brightness(0.85);
  filter: brightness(0.85);
}

.portfolio__videos-item img {
  border-radius: 0.9rem;
  height: 36.5rem;
  margin-bottom: 1.1rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.portfolio__videos-item span {
  font-size: 2rem;
}

.portfolio__videos-item-image {
  position: relative;
}

.portfolio__videos-item-image:after {
  background: url(../img/icons/play.svg) 50% / contain no-repeat;
  content: "";
  height: 9.2rem;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 9.2rem;
}

.portfolio-photos__grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5.4rem;
}

.portfolio-photos__item {
  height: 33.9rem;
  position: relative;
}

.portfolio-photos__item:hover img {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}

.portfolio-photos__item:after {
  background: url(../img/icons/loupe.svg) 50% / contain no-repeat;
  bottom: 2.2rem;
  content: "";
  height: 1.8rem;
  position: absolute;
  right: 2.6rem;
  width: 1.8rem;
}

.portfolio-photos__item img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.portfolio-videos__grid {
  display: grid;
  gap: 0.9rem 1.3rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5.4rem;
}

.portfolio-videos__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 34rem;
}

.portfolio-videos__item span {
  font-size: 1.8rem;
  margin-top: 1.2rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 3;
  overflow: hidden;
  padding-right: 2rem;
}

.portfolio-videos__item:hover img {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}

.portfolio-videos__item-image {
  height: 26.5rem;
  position: relative;
  width: 100%;
}

.portfolio-videos__item-image:after {
  background: url(../img/icons/play2.svg) 50% / contain no-repeat;
  content: "";
  height: 7.8rem;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 7.8rem;
}

.portfolio-videos__item-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.portfolio__pagination {
  margin-top: 8.3rem;
}

.portfolio__pagination,
.preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.preloader {
  height: 100%;
  padding: 10rem;
  position: fixed;
  width: 100%;
  z-index: 2000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  left: 0;
  top: 0;
}

.preloader svg {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 842px;
    stroke-dasharray: 842px;
  }

  to {
    stroke-dashoffset: 1684px;
    stroke-dasharray: 842px;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 842px;
    stroke-dasharray: 842px;
  }

  to {
    stroke-dashoffset: 1684px;
    stroke-dasharray: 842px;
  }
}

.preloader .svg-elem-1 {
  -webkit-animation:
    animate-svg-stroke-1 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0s both,
    animate-svg-fill-1 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.8s both;
  animation:
    animate-svg-stroke-1 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0s both,
    animate-svg-fill-1 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.8s both;
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 33.6000137329px;
    stroke-dasharray: 33.6000137329px;
  }

  to {
    stroke-dashoffset: 67.2000274658px;
    stroke-dasharray: 33.6000137329px;
  }
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 33.6000137329px;
    stroke-dasharray: 33.6000137329px;
  }

  to {
    stroke-dashoffset: 67.2000274658px;
    stroke-dasharray: 33.6000137329px;
  }
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-2 {
  -webkit-animation:
    animate-svg-stroke-2 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.1s both,
    animate-svg-fill-2 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.9s both;
  animation:
    animate-svg-stroke-2 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.1s both,
    animate-svg-fill-2 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.9s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 45.9054145813px;
    stroke-dasharray: 45.9054145813px;
  }

  to {
    stroke-dashoffset: 91.8108291626px;
    stroke-dasharray: 45.9054145813px;
  }
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 45.9054145813px;
    stroke-dasharray: 45.9054145813px;
  }

  to {
    stroke-dashoffset: 91.8108291626px;
    stroke-dasharray: 45.9054145813px;
  }
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-3 {
  -webkit-animation:
    animate-svg-stroke-3 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.2s both,
    animate-svg-fill-3 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1s both;
  animation:
    animate-svg-stroke-3 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.2s both,
    animate-svg-fill-3 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1s both;
}

@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 29.1532459259px;
    stroke-dasharray: 29.1532459259px;
  }

  to {
    stroke-dashoffset: 58.3064918518px;
    stroke-dasharray: 29.1532459259px;
  }
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 29.1532459259px;
    stroke-dasharray: 29.1532459259px;
  }

  to {
    stroke-dashoffset: 58.3064918518px;
    stroke-dasharray: 29.1532459259px;
  }
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-4 {
  -webkit-animation:
    animate-svg-stroke-4 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.3s both,
    animate-svg-fill-4 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.1s both;
  animation:
    animate-svg-stroke-4 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.3s both,
    animate-svg-fill-4 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.1s both;
}

@-webkit-keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 33.5442771912px;
    stroke-dasharray: 33.5442771912px;
  }

  to {
    stroke-dashoffset: 67.0885543823px;
    stroke-dasharray: 33.5442771912px;
  }
}

@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 33.5442771912px;
    stroke-dasharray: 33.5442771912px;
  }

  to {
    stroke-dashoffset: 67.0885543823px;
    stroke-dasharray: 33.5442771912px;
  }
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-5 {
  -webkit-animation:
    animate-svg-stroke-5 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.4s both,
    animate-svg-fill-5 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.2s both;
  animation:
    animate-svg-stroke-5 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.4s both,
    animate-svg-fill-5 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.2s both;
}

@-webkit-keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 32.8454608917px;
    stroke-dasharray: 32.8454608917px;
  }

  to {
    stroke-dashoffset: 65.6909217834px;
    stroke-dasharray: 32.8454608917px;
  }
}

@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 32.8454608917px;
    stroke-dasharray: 32.8454608917px;
  }

  to {
    stroke-dashoffset: 65.6909217834px;
    stroke-dasharray: 32.8454608917px;
  }
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-6 {
  -webkit-animation:
    animate-svg-stroke-6 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.5s both,
    animate-svg-fill-6 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.3s both;
  animation:
    animate-svg-stroke-6 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.5s both,
    animate-svg-fill-6 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.3s both;
}

@-webkit-keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 43.568145752px;
    stroke-dasharray: 43.568145752px;
  }

  to {
    stroke-dashoffset: 87.1362915039px;
    stroke-dasharray: 43.568145752px;
  }
}

@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 43.568145752px;
    stroke-dasharray: 43.568145752px;
  }

  to {
    stroke-dashoffset: 87.1362915039px;
    stroke-dasharray: 43.568145752px;
  }
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-7 {
  -webkit-animation:
    animate-svg-stroke-7 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.6s both,
    animate-svg-fill-7 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.4s both;
  animation:
    animate-svg-stroke-7 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.6s both,
    animate-svg-fill-7 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.4s both;
}

@-webkit-keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 29.14960289px;
    stroke-dasharray: 29.14960289px;
  }

  to {
    stroke-dashoffset: 58.29920578px;
    stroke-dasharray: 29.14960289px;
  }
}

@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 29.14960289px;
    stroke-dasharray: 29.14960289px;
  }

  to {
    stroke-dashoffset: 58.29920578px;
    stroke-dasharray: 29.14960289px;
  }
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-8 {
  -webkit-animation:
    animate-svg-stroke-8 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.7s both,
    animate-svg-fill-8 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.5s both;
  animation:
    animate-svg-stroke-8 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.7s both,
    animate-svg-fill-8 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.5s both;
}

@-webkit-keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 50.3297996521px;
    stroke-dasharray: 50.3297996521px;
  }

  to {
    stroke-dashoffset: 100.6595993042px;
    stroke-dasharray: 50.3297996521px;
  }
}

@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 50.3297996521px;
    stroke-dasharray: 50.3297996521px;
  }

  to {
    stroke-dashoffset: 100.6595993042px;
    stroke-dasharray: 50.3297996521px;
  }
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-9 {
  -webkit-animation:
    animate-svg-stroke-9 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.8s both,
    animate-svg-fill-9 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.6s both;
  animation:
    animate-svg-stroke-9 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.8s both,
    animate-svg-fill-9 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.6s both;
}

@-webkit-keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 33.5442771912px;
    stroke-dasharray: 33.5442771912px;
  }

  to {
    stroke-dashoffset: 67.0885543823px;
    stroke-dasharray: 33.5442771912px;
  }
}

@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 33.5442771912px;
    stroke-dasharray: 33.5442771912px;
  }

  to {
    stroke-dashoffset: 67.0885543823px;
    stroke-dasharray: 33.5442771912px;
  }
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-10 {
  -webkit-animation:
    animate-svg-stroke-10 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.9s both,
    animate-svg-fill-10 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.7s both;
  animation:
    animate-svg-stroke-10 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.9s both,
    animate-svg-fill-10 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.7s both;
}

@-webkit-keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 50.8810043335px;
    stroke-dasharray: 50.8810043335px;
  }

  to {
    stroke-dashoffset: 101.762008667px;
    stroke-dasharray: 50.8810043335px;
  }
}

@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 50.8810043335px;
    stroke-dasharray: 50.8810043335px;
  }

  to {
    stroke-dashoffset: 101.762008667px;
    stroke-dasharray: 50.8810043335px;
  }
}

@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-11 {
  -webkit-animation:
    animate-svg-stroke-11 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1s both,
    animate-svg-fill-11 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.8s both;
  animation:
    animate-svg-stroke-11 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1s both,
    animate-svg-fill-11 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.8s both;
}

@-webkit-keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 26.7773609161px;
    stroke-dasharray: 26.7773609161px;
  }

  to {
    stroke-dashoffset: 53.5547218323px;
    stroke-dasharray: 26.7773609161px;
  }
}

@keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 26.7773609161px;
    stroke-dasharray: 26.7773609161px;
  }

  to {
    stroke-dashoffset: 53.5547218323px;
    stroke-dasharray: 26.7773609161px;
  }
}

@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-12 {
  -webkit-animation:
    animate-svg-stroke-12 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.1s both,
    animate-svg-fill-12 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.9s both;
  animation:
    animate-svg-stroke-12 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.1s both,
    animate-svg-fill-12 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 1.9s both;
}

@-webkit-keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 22.0544223785px;
    stroke-dasharray: 22.0544223785px;
  }

  to {
    stroke-dashoffset: 44.1088447571px;
    stroke-dasharray: 22.0544223785px;
  }
}

@keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 22.0544223785px;
    stroke-dasharray: 22.0544223785px;
  }

  to {
    stroke-dashoffset: 44.1088447571px;
    stroke-dasharray: 22.0544223785px;
  }
}

@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-13 {
  -webkit-animation:
    animate-svg-stroke-13 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.2s both,
    animate-svg-fill-13 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2s both;
  animation:
    animate-svg-stroke-13 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.2s both,
    animate-svg-fill-13 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2s both;
}

@-webkit-keyframes animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 38.6500701904px;
    stroke-dasharray: 38.6500701904px;
  }

  to {
    stroke-dashoffset: 77.3001403809px;
    stroke-dasharray: 38.6500701904px;
  }
}

@keyframes animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 38.6500701904px;
    stroke-dasharray: 38.6500701904px;
  }

  to {
    stroke-dashoffset: 77.3001403809px;
    stroke-dasharray: 38.6500701904px;
  }
}

@-webkit-keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-14 {
  -webkit-animation:
    animate-svg-stroke-14 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.3s both,
    animate-svg-fill-14 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.1s both;
  animation:
    animate-svg-stroke-14 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.3s both,
    animate-svg-fill-14 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.1s both;
}

@-webkit-keyframes animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 42.24061203px;
    stroke-dasharray: 42.24061203px;
  }

  to {
    stroke-dashoffset: 84.4812240601px;
    stroke-dasharray: 42.24061203px;
  }
}

@keyframes animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 42.24061203px;
    stroke-dasharray: 42.24061203px;
  }

  to {
    stroke-dashoffset: 84.4812240601px;
    stroke-dasharray: 42.24061203px;
  }
}

@-webkit-keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-15 {
  -webkit-animation:
    animate-svg-stroke-15 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.4s both,
    animate-svg-fill-15 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.2s both;
  animation:
    animate-svg-stroke-15 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.4s both,
    animate-svg-fill-15 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.2s both;
}

@-webkit-keyframes animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 38.6578445435px;
    stroke-dasharray: 38.6578445435px;
  }

  to {
    stroke-dashoffset: 77.3156890869px;
    stroke-dasharray: 38.6578445435px;
  }
}

@keyframes animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 38.6578445435px;
    stroke-dasharray: 38.6578445435px;
  }

  to {
    stroke-dashoffset: 77.3156890869px;
    stroke-dasharray: 38.6578445435px;
  }
}

@-webkit-keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-16 {
  -webkit-animation:
    animate-svg-stroke-16 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.5s both,
    animate-svg-fill-16 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.3s both;
  animation:
    animate-svg-stroke-16 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.5s both,
    animate-svg-fill-16 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.3s both;
}

@-webkit-keyframes animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 161.0305023193px;
    stroke-dasharray: 161.0305023193px;
  }

  to {
    stroke-dashoffset: 322.0610046387px;
    stroke-dasharray: 161.0305023193px;
  }
}

@keyframes animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 161.0305023193px;
    stroke-dasharray: 161.0305023193px;
  }

  to {
    stroke-dashoffset: 322.0610046387px;
    stroke-dasharray: 161.0305023193px;
  }
}

@-webkit-keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-17 {
  -webkit-animation:
    animate-svg-stroke-17 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.6s both,
    animate-svg-fill-17 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.4s both;
  animation:
    animate-svg-stroke-17 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.6s both,
    animate-svg-fill-17 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.4s both;
}

@-webkit-keyframes animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 144.6243896484px;
    stroke-dasharray: 144.6243896484px;
  }

  to {
    stroke-dashoffset: 289.2487792969px;
    stroke-dasharray: 144.6243896484px;
  }
}

@keyframes animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 144.6243896484px;
    stroke-dasharray: 144.6243896484px;
  }

  to {
    stroke-dashoffset: 289.2487792969px;
    stroke-dasharray: 144.6243896484px;
  }
}

@-webkit-keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-18 {
  -webkit-animation:
    animate-svg-stroke-18 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.7s both,
    animate-svg-fill-18 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.5s both;
  animation:
    animate-svg-stroke-18 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.7s both,
    animate-svg-fill-18 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.5s both;
}

@-webkit-keyframes animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 107.0000152588px;
    stroke-dasharray: 107.0000152588px;
  }

  to {
    stroke-dashoffset: 214.0000305176px;
    stroke-dasharray: 107.0000152588px;
  }
}

@keyframes animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 107.0000152588px;
    stroke-dasharray: 107.0000152588px;
  }

  to {
    stroke-dashoffset: 214.0000305176px;
    stroke-dasharray: 107.0000152588px;
  }
}

@-webkit-keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-19 {
  -webkit-animation:
    animate-svg-stroke-19 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.8s both,
    animate-svg-fill-19 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.6s both;
  animation:
    animate-svg-stroke-19 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.8s both,
    animate-svg-fill-19 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.6s both;
}

@-webkit-keyframes animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 129.7453918457px;
    stroke-dasharray: 129.7453918457px;
  }

  to {
    stroke-dashoffset: 259.4907836914px;
    stroke-dasharray: 129.7453918457px;
  }
}

@keyframes animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 129.7453918457px;
    stroke-dasharray: 129.7453918457px;
  }

  to {
    stroke-dashoffset: 259.4907836914px;
    stroke-dasharray: 129.7453918457px;
  }
}

@-webkit-keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-20 {
  -webkit-animation:
    animate-svg-stroke-20 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.9s both,
    animate-svg-fill-20 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.7s both;
  animation:
    animate-svg-stroke-20 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1.9s both,
    animate-svg-fill-20 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.7s both;
}

@-webkit-keyframes animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 168.4605712891px;
    stroke-dasharray: 168.4605712891px;
  }

  to {
    stroke-dashoffset: 336.9211425781px;
    stroke-dasharray: 168.4605712891px;
  }
}

@keyframes animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 168.4605712891px;
    stroke-dasharray: 168.4605712891px;
  }

  to {
    stroke-dashoffset: 336.9211425781px;
    stroke-dasharray: 168.4605712891px;
  }
}

@-webkit-keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-21 {
  -webkit-animation:
    animate-svg-stroke-21 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2s both,
    animate-svg-fill-21 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.8s both;
  animation:
    animate-svg-stroke-21 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2s both,
    animate-svg-fill-21 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.8s both;
}

@-webkit-keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 154.2017364502px;
    stroke-dasharray: 154.2017364502px;
  }

  to {
    stroke-dashoffset: 308.4034729004px;
    stroke-dasharray: 154.2017364502px;
  }
}

@keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 154.2017364502px;
    stroke-dasharray: 154.2017364502px;
  }

  to {
    stroke-dashoffset: 308.4034729004px;
    stroke-dasharray: 154.2017364502px;
  }
}

@-webkit-keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-22 {
  -webkit-animation:
    animate-svg-stroke-22 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2.1s both,
    animate-svg-fill-22 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.9s both;
  animation:
    animate-svg-stroke-22 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2.1s both,
    animate-svg-fill-22 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.9s both;
}

@-webkit-keyframes animate-svg-stroke-23 {
  0% {
    stroke-dashoffset: 92.5999908447px;
    stroke-dasharray: 92.5999908447px;
  }

  to {
    stroke-dashoffset: 185.1999816895px;
    stroke-dasharray: 92.5999908447px;
  }
}

@keyframes animate-svg-stroke-23 {
  0% {
    stroke-dashoffset: 92.5999908447px;
    stroke-dasharray: 92.5999908447px;
  }

  to {
    stroke-dashoffset: 185.1999816895px;
    stroke-dasharray: 92.5999908447px;
  }
}

@-webkit-keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-23 {
  -webkit-animation:
    animate-svg-stroke-23 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2.2s both,
    animate-svg-fill-23 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 3s both;
  animation:
    animate-svg-stroke-23 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2.2s both,
    animate-svg-fill-23 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 3s both;
}

@-webkit-keyframes animate-svg-stroke-24 {
  0% {
    stroke-dashoffset: 151.7748718262px;
    stroke-dasharray: 151.7748718262px;
  }

  to {
    stroke-dashoffset: 303.5497436523px;
    stroke-dasharray: 151.7748718262px;
  }
}

@keyframes animate-svg-stroke-24 {
  0% {
    stroke-dashoffset: 151.7748718262px;
    stroke-dasharray: 151.7748718262px;
  }

  to {
    stroke-dashoffset: 303.5497436523px;
    stroke-dasharray: 151.7748718262px;
  }
}

@-webkit-keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-24 {
  -webkit-animation:
    animate-svg-stroke-24 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2.3s both,
    animate-svg-fill-24 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 3.1s both;
  animation:
    animate-svg-stroke-24 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2.3s both,
    animate-svg-fill-24 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 3.1s both;
}

@-webkit-keyframes animate-svg-stroke-25 {
  0% {
    stroke-dashoffset: 155.6920471191px;
    stroke-dasharray: 155.6920471191px;
  }

  to {
    stroke-dashoffset: 311.3840942383px;
    stroke-dasharray: 155.6920471191px;
  }
}

@keyframes animate-svg-stroke-25 {
  0% {
    stroke-dashoffset: 155.6920471191px;
    stroke-dasharray: 155.6920471191px;
  }

  to {
    stroke-dashoffset: 311.3840942383px;
    stroke-dasharray: 155.6920471191px;
  }
}

@-webkit-keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-25 {
  -webkit-animation:
    animate-svg-stroke-25 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2.4s both,
    animate-svg-fill-25 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 3.2s both;
  animation:
    animate-svg-stroke-25 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2.4s both,
    animate-svg-fill-25 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 3.2s both;
}

@-webkit-keyframes animate-svg-stroke-26 {
  0% {
    stroke-dashoffset: 129.9453887939px;
    stroke-dasharray: 129.9453887939px;
  }

  to {
    stroke-dashoffset: 259.8907775879px;
    stroke-dasharray: 129.9453887939px;
  }
}

@keyframes animate-svg-stroke-26 {
  0% {
    stroke-dashoffset: 129.9453887939px;
    stroke-dasharray: 129.9453887939px;
  }

  to {
    stroke-dashoffset: 259.8907775879px;
    stroke-dasharray: 129.9453887939px;
  }
}

@-webkit-keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

@keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }

  to {
    fill: #1f2229;
  }
}

.preloader .svg-elem-26 {
  -webkit-animation:
    animate-svg-stroke-26 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2.5s both,
    animate-svg-fill-26 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 3.3s both;
  animation:
    animate-svg-stroke-26 1s cubic-bezier(0.95, 0.05, 0.795, 0.035) 2.5s both,
    animate-svg-fill-26 0.7s cubic-bezier(0.6, -0.28, 0.735, 0.045) 3.3s both;
}

.reviews__area {
  max-width: 101.6rem;
}

.reviews__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.6rem;
}

.reviews__header .h1 {
  margin-bottom: 0;
}

.reviews__add-btn {
  font-size: 1.4rem;
  height: 4.4rem;
  max-width: 17.3rem;
  text-transform: uppercase;
  width: 100%;
}

.reviews__item {
  background: #f2f2f2;
  border-radius: 0.9rem;
  margin-bottom: 1.9rem;
  padding: 3.7rem 3.9rem 3.7rem 4.7rem;
}

.reviews__item:last-of-type {
  margin-bottom: 0;
}

.reviews__item-top {
  border-bottom: 1px solid rgba(31, 34, 41, 0.2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-bottom: 1rem;
}

.reviews__item-name,
.reviews__item-top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reviews__item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 600;
  gap: 2.4rem;
  line-height: 1.15;
  position: relative;
  text-transform: uppercase;
}

.reviews__item-name:before {
  background: url(../img/icons/note.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.9rem;
  width: 2rem;
}

.reviews__item-date {
  font-size: 1.8rem;
  font-weight: 300;
  margin: 0 2.4rem;
}

.reviews__item-rating {
  position: relative;
  top: -0.3rem;
}

.reviews__item-company,
.reviews__item-content {
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 2.8rem;
}

.reviews__item-company b,
.reviews__item-content b {
  font-weight: 400;
}

.reviews__item-company p:last-of-type,
.reviews__item-content p:last-of-type {
  margin-bottom: 0;
}

.reviews__item-company {
  margin-top: 2rem;
}

.reviews__item-company b {
  padding-right: 0.8rem;
}

.reviews__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 3.8rem;
}

.sales__grid {
  display: grid;
  gap: 7.1rem 3rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 7.9rem;
}

.sales__item {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sales__item:hover img {
  -webkit-filter: brightness(0.85);
  filter: brightness(0.85);
}

.sales__item img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.sales-detail .fadeInDown {
  display: block;
}

.sales-detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.6rem;
  margin-top: 5.4rem;
}

.sales-detail__image {
  max-width: 65.1rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.sales-detail__image img {
  border-radius: 0.9rem;
}

.sales-detail__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sales-detail__text .h1,
.sales-detail__text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2.6rem;
}

.sales-detail__text li,
.sales-detail__text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
}

.sales-detail__text b {
  font-weight: 500;
}

.sales-detail__text .mark {
  color: #ab3b66;
}

.sales-detail__text .mb-20 {
  margin-bottom: 2rem;
}

.sales-detail__btn {
  font-size: 1.4rem;
  height: 5.5rem;
  margin-top: auto;
  max-width: 21.7rem;
  text-transform: uppercase;
  width: 100%;
}

.sliding-doors .h1 {
  margin-bottom: 5.4rem;
}

.sliding-doors .sliding-doors__types-grid {
  display: grid;
  gap: 3.8rem 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}

.sliding-doors__hero {
  background: url(../img/sliding-doors-hero-bg.jpg) 50% / cover no-repeat;
  border-radius: 0.9rem;
  cursor: pointer;
  padding: 15.7rem 6.5rem;
  position: relative;
  width: 100%;
}

.sliding-doors__hero:hover .sliding-doors__hero-play-icon {
  -webkit-transform: scale(0.96);
  -ms-transform: scale(0.96);
  transform: scale(0.96);
}

.sliding-doors__hero li,
.sliding-doors__hero p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.195;
  margin-bottom: 1.5rem;
}

.sliding-doors__hero li {
  margin-bottom: 0;
}

.sliding-doors__hero ul {
  margin: 0;
  max-width: 62rem;
  padding: 0 0 0 2.7rem;
}

.sliding-doors__hero-content {
  max-width: 75.6rem;
  width: 100%;
}

.sliding-doors__hero-play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1rem;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  right: 6.1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sliding-doors__hero-play span {
  color: #fff;
  display: block;
  font-size: 2rem;
  max-width: 11.4rem;
}

.sliding-doors__hero-play-icon {
  background: url(../img/icons/play-big.svg) 50% / contain no-repeat;
  height: 9.8rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 9.8rem;
}

.sliding-doors__types {
  margin: 7.1rem 0 0;
}

.sliding-doors__types-item span {
  font-size: 2rem;
  line-height: 1.1;
}

.sliding-doors__types-item-image {
  margin-bottom: 1.7rem;
}

.sliding-doors__types-item-image img {
  border-radius: 0.9rem;
  height: 33.9rem;
  max-width: 33.9rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.where-buy {
  background: #f2f2f2;
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 4rem 0;
  padding: 2.2rem 10.1rem 2.2rem 1.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.where-buy .h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.where-buy-image {
  max-width: 61.6rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.where-buy-image img {
  border-radius: 0.9rem;
  height: 38.1rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.where-buy-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 5.6rem;
  width: 100%;
}

.where-buy-text p {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.where-buy-text p:last-of-type {
  margin-bottom: 0;
}

.where-buy-text p a {
  color: #28b19a;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.where-buy-text p a:hover {
  text-decoration: none;
}

:root {
  --red: #ab3b66;
}

.static-products-nav {
  margin-bottom: 4rem;
}

.static-products-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  -ms-flex-align: center;
  gap: 0.6rem;
}

.static-products-nav li,
.static-products-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.static-products-nav li {
  -webkit-box-flex: 1;
  background: rgba(31, 34, 41, 0.1);
  border-radius: 0.5rem;
  -ms-flex: 1;
  flex: 1;
  height: 5.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.static-products-nav li:hover {
  background: #fafafa;
}

.static-products-nav li.is-active {
  background: #1f2229;
}

.static-products-nav li.is-active a,
.static-products-nav li.is-active span {
  color: #fff;
}

.static-products-nav a,
.static-products-nav 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;
  font-size: 1.6rem;
  height: 100%;
  width: 100%;
}

.custom-ul {
  list-style: none;
  margin: 0 0 3.3rem;
  padding: 0;
}

.custom-ul li {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1rem;
  padding-left: 3.6rem;
  position: relative;
}

.custom-ul li:last-of-type {
  margin-bottom: 0;
}

.custom-ul li:after {
  background: url(../img/icons/custom-ul-icon.svg) 50% / contain no-repeat;
  content: "";
  height: 1.5rem;
  left: 0;
  position: absolute;
  top: 0.6rem;
  width: 1.7rem;
}

.italic {
  font-style: italic;
}

.video-item:hover .video-item__play {
  -webkit-transform: translate(-50%, -55%) scale(1.1);
  -ms-transform: translate(-50%, -55%) scale(1.1);
  transform: translate(-50%, -55%) scale(1.1);
}

.video-item__preview {
  position: relative;
}

.video-item__preview img {
  border-radius: 0.9rem;
  height: 24.2rem;
  width: 100%;
}

.video-item__play {
  background: url(../img/icons/video-play.svg) 50% / contain no-repeat;
  height: 4.1rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 5.4rem;
  z-index: 2;
}

.video-item__title {
  bottom: 2.1rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  left: 0;
  position: absolute;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.static-products .h1,
.static-products .h2,
.static-products h1,
.static-products h2,
.static-products__content .h1,
.static-products__content .h2,
.static-products__content h1,
.static-products__content h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.15;
}

.static-products .h3,
.static-products h3,
.static-products__content .h3,
.static-products__content h3 {
  font-size: 2.2rem;
  line-height: 1.36364;
}

.static-products .custom-ul,
.static-products__content .custom-ul {
  margin: 2.8rem 0;
}

.static-products__videos {
  display: grid;
  gap: 3.2rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 5rem 0 6.7rem;
}

.static-products__video {
  display: block;
  height: 25rem;
  position: relative;
}

.static-products__video:hover .static-products__video-preview img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.static-products__video:hover .static-products__video-play {
  -webkit-transform: translate(-50%, -50%) scale(1.02);
  -ms-transform: translate(-50%, -50%) scale(1.02);
  transform: translate(-50%, -50%) scale(1.02);
}

.static-products__video-preview {
  border-radius: 1.3rem;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.static-products__video-preview img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  width: 100%;
  will-change: transform;
}

.static-products__video-play,
.static-products__video-preview img {
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.static-products__video-play {
  background: url(../img/icons/youtube-icon.svg) 50% / contain no-repeat;
  height: 3.7rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  width: 4.9rem;
}

.catalog-filter__values {
  display: inline-grid;
}

.custom-color {
  cursor: pointer;
  display: block;
  margin: 0;
}

.custom-color input {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}

.custom-color .color-icon {
  border: 1px solid transparent;
  border-radius: 0.4rem;
  cursor: pointer;
  height: 2.6rem;
  width: 2.6rem;
}

.custom-color .color-icon.is--white {
  border-color: rgba(31, 34, 41, 0.15);
}

.catalog-filter__item.has--colors .catalog-filter__values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.4rem 1.3rem;
  max-width: 26rem;
}

.catalog-filter__item.has--colors .catalog-filter__show-more {
  display: none !important;
}

.custom-checkbox.is--disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.custom-checkbox.is--disabled:hover span {
  color: rgba(0, 0, 0, 0.6);
}

.custom-color.is--disabled {
  display: none;
}

.custom-checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 0.8rem;
  line-height: 1;
  margin-bottom: 0;
}

.custom-checkbox span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.6rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.custom-checkbox input {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}

.custom-checkbox input:checked ~ .checkbox-icon {
  background: #28b19a;
  border-color: transparent;
}

.custom-checkbox input:checked ~ .checkbox-icon:after {
  opacity: 1;
}

.custom-checkbox input:checked ~ span {
  opacity: 1;
}

.custom-checkbox.is-showed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.custom-checkbox.is-hidden {
  display: none;
}

.checkbox-icon {
  background: transparent;
  border-radius: 2px;
  height: 1.6rem;
  width: 1.6rem;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  border: 1px solid #bcbdbf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  order: -1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 0.1rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.checkbox-icon:after {
  background: url(../img/icons/check.svg) 50% / contain no-repeat;
  content: "";
  display: block;
  height: 0.8rem;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 1rem;
}

.custom-checkbox__found {
  background: #fff;
  border-radius: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-filter: drop-shadow(0 0 20px rgba(49, 54, 61, 0.15));
  filter: drop-shadow(0 0 20px rgba(49, 54, 61, 0.15));
  left: calc(100% + 2rem);
  padding: 2rem 1.6rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -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;
  z-index: var(--zIndexFoundBtn);
}

.custom-checkbox__found:after {
  background: url(../img/icons/arrow-found.svg) 50% / contain no-repeat;
  content: "";
  height: 5.8rem;
  left: -3.3rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5.4rem;
}

.custom-checkbox__found span {
  color: var(--black);
  font-size: 1.4rem;
  white-space: nowrap;
}

.custom-checkbox__found-btn {
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  height: 3.6rem;
  margin-top: 1.9rem;
  max-width: 14.8rem;
  width: 100%;
}

.custom-checkbox__found-btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.active-filter {
  background: #ab3b66;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: 500;
  gap: 0.2rem;
  padding: 0.2rem 1rem 0.2rem 1.9rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.4rem;
  cursor: pointer;
}

.active-filter:hover .active-filter__remove {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.active-filter__remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  width: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: url(../img/icons/remove-filter.svg) 50%/1.6rem no-repeat;
  cursor: pointer;
  justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.active-filter__remove:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.active-filter[data-ctrl="clear"] {
  background: #1f2229;
}

.active-filter[data-ctrl="clear"] span {
  font-size: 1.6rem;
  font-weight: 400;
}

.active-filter[data-ctrl="clear"] .active-filter__remove {
  background: url(../img/icons/remove-filter.svg) 50%/1.6rem no-repeat;
}

.catalog-item {
  min-width: 0;
}

.ws-waiting {
  position: relative;
}

.ws-waiter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  z-index: 1001;
}

.ws-waiting .ws-waiter {
  height: 32px;
  margin-left: -25px;
  margin-top: -16px;
  width: 50px;
}

.ws-waiter i {
  -webkit-animation: ws-wave-delay 1.2s ease-in-out infinite;
  animation: ws-wave-delay 1.2s ease-in-out infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  display: block;
  margin: 0 1px;
}

.ws-waiting .ws-waiter i {
  background-color: #ab3b66 !important;
  height: 32px;
  width: 4px;
}

.ws-waiter i:first-child {
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.ws-waiter i:nth-child(2) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.ws-waiter i:nth-child(3) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.ws-waiter i:nth-child(4) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.ws-waiter i:nth-child(5) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes ws-wave-delay {
  0%,
  40%,
  to {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }

  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes ws-wave-delay {
  0%,
  40%,
  to {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }

  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

.ws-waiting:before {
  background-color: hsla(0, 0%, 100%, 0.8);
  content: " ";
  cursor: wait;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.ws-sys__massage {
  display: block;
  margin-bottom: 40px;
  text-align: center;
  -webkit-transition: top 0.5s ease-out;
  transition: top 0.5s ease-out;
  width: 100%;
}

.ws-sys__massage.is--flashing {
  left: 20px;
  position: fixed;
  top: -500px;
  width: auto;
  z-index: 1047;
}

.ws-sys__massage.is--flashing.is--opened {
  top: 20px;
}

.ws-sys__massage-text {
  border-radius: 20px;
  color: #000;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  padding: 25px 25px 25px 72px;
}

.msg--error {
  background-color: #ffe5e5;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAPKSURBVHgBxZnNTttAEMdn1i4SgkO4gJCQmjxBUwiCG4EnaN+gFXAOnFEFOXBu4Aqo4YK4VX0ARBAXRAJyn4D0gARcmh5AFXG8nXE+IODsroMb/gfb8Xrtn2d3Z8YThC5VTaXS0vOSthAzIGVSAsQAMeY3SllBxDIdlWsAP2lfeFMqFaALYZiLZTIZ82w7QwBLLRjjzrJM28J9rZbtd5yyaTcjwAbYKh0uQRSSMm8KqgWsTU5mwPPWQltMJ7KolDJrn5/nVZcpAWup1FeIymqdlbNKpeVOjYGAPKTStr/TxE9DD0QQDrruLDpO5WmbCOpAcIe9gvOfB5BkgwS1PQPkYeUO0GOxQRpTqk1tQ+yOj39CIb7B62qZ5mSu+aMFSPMuLi3rUCLG4XVVEa6baM7H1hB7lrWqhRseBlxfB7G1BZBIgKlwagrE3h5gLuffQ6Omz6335Q1bj05egAZOEFzrAbe34K2sAFyou+HcHGAm83Di5qbej/YqkRWH2Iq+Bdl6oBEuLLS//cBAHVhhyWdwLB6F+XnQybVt3//6gGjiUq6vn59TQAbCNXV3BzoRmN9Z+FmJwcKQ+/sgg4YzAFIJR/eQ29tgoBizsQXTJlfznJM0d3SQOjh//tG9TMT+GL1UikPaBzAVwfBKxqC5xw+m9ijgGoA/BG3iEEYaS0YFx0Ip3/EQxyGsVJARwfmiFI8Bu8vzGpBKf/YSuLpiAl4gjhDKyMBt+sihFANWoAspV2tTBs5co4qgiRga0AiuqRdAUgApC5qITqhOOids6MxN5AH8Ei7AkWkHEyds4sxNRS7QEfw9YHIxLwijCGEYcQxV8NMtSrV/g8rd8I05BwxyxJ1ciSbieIuLavdDlQmrWEzU0y2ADdApDFwDInTEaVeBNz6g7bo55aX8xhsb5nAaSLm5qXXe95aV5b3Fm+zV1d8vo6NDVPCZ7tiDVyhFDRwZAbi8BC+bNYsQ1SrA8THA2BhgXx/InR2QBwfqPoj5vtPTXf+wea5Rf+FXjbbEEVY098h6s/0nJ2X+2Qp1ja+oLLyyyLVkm3CstljM36OelPoF879Ez7aLxfzjU4G1GUpie1r68EEoooli8f3T84HZDBVyPpo68ChExjjCgYHZoDZl+a06MZETiIZZQZeiYbXOzjqW+JT54BvqSF98nxv15qjFi3JZBcfSJqw8aZGWPYHuQlQiq4nBwcTjIlEnhSuiT0/Ha7XaGr3VDJVv4xBObDEGy2GhYJyDhgJ8LP6opl0a+duVYRHfwoOTr5CV/pDVHa+ekTjd/g3xD+Fqy6aVrd5xAAAAAElFTkSuQmCC);
}

.msg--error,
.msg--success {
  background-position: 16px 50%;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.msg--success {
  background-color: #d9fedf;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAO1SURBVHgBxZnPTxNBFMe/M6UNKQfLAQP4g+JFbixqI4mHliu3Soke9aZegH9AqBcx0VgvehM4GtHGv8D2YMKvyHohemLRCwkmlgsqJDu+t22RH7tLt12230N3Z2em/eTNzNv3XgXqlPb2WgoSmpQyqagJqBggYuVeVaJ7QwCGaeILTLOgj64UUIeEl8FaXotJRMYU1Ph/mJpFwKpgYi+rp3Wj1kk1AZbBwpMKYhw+iEBnawU9EfDqh8QYLdNUHRY7SYYyVVYfWZ51G+QKeCWfeO6X1ZwBVO5zennCud9GvKQC4Tx1pxCMdIXdIVry0tEOaTdaIPIxQDiWVjbIcR0D5GWF5TaClkhVfvvw04MN7V3ijpBiBk2UMsWEPrKYq7b3AWnfxctLiziaqxLtx97qftxfYvZzaD4cK1ZhsWRZsGK9dQSkjmgHkheSKP4oYmtny3YMWbGdrWhZ8CBxEHAPb0wi0zeK6dQT9JzpsR9oRsbLbGDaYFxKFY6vrLZwm9W2gxQSY3wNafnBlLBe/sHCVRUJRRCRYaxsrhyd0tqZ6SpKCoVSbl+c6cvg9fAMkheT8BuOxXtw/tu8/UQZ0lqkRL+CM1zm8qh1f3/ggXUtfi/CT7hHn7KOBwVCpaRycC3Dl4b34apiSC+WbAiO+QT66ZCouF1nNBK1nVQrZKNwFcVCXbfPT9v1rP1coy8/i/iZ+LG+RFcCW7+3sLG9gVOEY7US4Lkpp96VzWXPkD7CWSLAbs4vWuEDpN9wpBIv8T26cQ3na4Hc2dvxG46kvrYIK5o9OUh4tfrSutodED44DBgNR32EIzwlNqQJs2bHxpBOftBvuDIhdHIzLbqXOW6QvsKxKOG3wq2BfOKX17TSzR/6Akdp6Wp6qbcazbyARzlZkvfis6WnjcIxU4GvlYh6N4c6dBSS4dhyxraBxiWy/Bnij803m386b3W3CyEG4VHsgjiui7XGML3w2Bc4st6snl6cszCrDyvJ+voplDi8ylCQlMQvGNzYT5o4/qeOLJosqpxlq3CsQ4k7mTWnlPJ8YPwS/7aePlxMsq3NDOSvU36sUghWOrmVgaMPbWszCn/TPAFBSaGoEB2y63Itv2nvEzk62WM4RVnLenPZMWmTbpN5Im3au3RrwHcpOpRUh3GBY7kCsnjT8rFXCnPwSWw1hbZePpQnjfVYRB+MU/lpipIZfgnH4UmWxchDRHN6ulCqdZYnwIPihJ9zaoLlWmKcUsSeQ39DKLENjjWFWeCIiXxbAXXoH94mzZIYgvQfAAAAAElFTkSuQmCC);
}

body .ws-waiting:before {
  background-color: hsla(0, 0%, 100%, 0.95);
  z-index: 999;
}

body .ws-waiting .ws-waiter i:first-child {
  display: none;
}

body .ws-waiting .ws-waiter i:nth-child(2) {
  display: none;
}

body .ws-waiting .ws-waiter i:nth-child(3) {
  display: none;
}

body .ws-waiting .ws-waiter i:nth-child(4) {
  display: none;
}

body .ws-waiting .ws-waiter i {
  -webkit-animation: rotate 1s linear infinite;
  animation: rotate 1s linear infinite;
  background-color: transparent !important;
  border-radius: 50%;
  height: 48px;
  position: relative;
  width: 48px;
}

body .ws-waiting .ws-waiter i:before {
  -webkit-animation: prixClipFix 2s linear infinite;
  animation: prixClipFix 2s linear infinite;
  border: 5px solid #b52025;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  inset: 0;
  position: absolute;
}

body .btn.ws-waiting:before {
  background-color: #b52025;
  border-radius: 3.5rem;
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
}

body .btn.ws-waiting .ws-waiter i {
  height: 20px;
  width: 20px;
}

body .btn.ws-waiting .ws-waiter i:before {
  border: 2px solid #fff;
}

body .btn.catalog-item__to-cart.ws-waiting:before {
  border-radius: 5rem;
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
}

@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotate {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }

  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }

  to {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }

  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }

  to {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

.video-slide__play {
  background: url(../img/icons/video-play-vk.svg) 50% / contain no-repeat;
}

.card-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  max-width: 46.3rem;
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.card-actions--mobile {
  display: none;
}

.card-action {
  border: 1px solid rgba(31, 34, 41, 0.25);
  border-radius: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.5rem;
  max-width: 14.5rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  cursor: pointer;
  font-size: 1.4rem;
  justify-content: center;
}

.card-action--share {
  gap: 0.5rem;
  padding-left: 1rem;
}

.card-action--share .icon {
  height: 1.4rem;
  width: 1.4rem;
}

.card-action--download {
  gap: 0.7rem;
  padding-left: 0.8rem;
}

.card-action--download .icon {
  height: 1.4rem;
  width: 1.4rem;
}

.card-action--to-favorites {
  gap: 0.5rem;
  padding-left: 1rem;
  fill: #fff;
  stroke: #000;
}

.card-action--to-favorites .icon {
  height: 1.4rem;
  width: 1.6rem;
}

.card-action--to-favorites.is-fill {
  fill: #b5191e;
}

.favorites-page {
  padding-bottom: 6rem;
}

.favorites__groups .h2,
.favorites__main .h1 {
  margin-bottom: 3.5rem;
}

.favorites__group {
  margin-bottom: 7rem;
}

.favorites__group-head,
.favorites__main-head {
  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;
  margin-bottom: 3.5rem;
}

.favorites__group-head .h2,
.favorites__main-head .h1 {
  margin-bottom: 0;
}

.favorites__group-head .active-filter i,
.favorites__main-head .active-filter i {
  font-style: normal;
  text-transform: lowercase;
}

.favorites__group-head .active-filter {
  background: rgba(31, 34, 41, 0.1);
  color: #30343b;
}

.favorites__group-head .active-filter .active-filter__remove {
  background: url(../img/icons/remove-filter-black.svg) 50%/1.6rem no-repeat;
}

[class*="jivoMobileButton"] {
  bottom: 50px !important;
}

[class*="jivoMobileButton"] [class*="button"] {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.catalog-slider .ed-catalog-item {
  height: 100%;
}

.header__mail {
  margin-right: auto;
}

.header__phone {
  margin-left: 2.8rem;
  margin-right: 2.8rem;
}

.header-top-actions {
  max-width: 83.3rem;
}

.header.is-fixed .header__callback {
  margin-right: 2.5rem;
}

.cart__item-actions {
  position: relative;
}

.catalog-category__content {
  margin-top: 2rem;
}

.catalog-category__content img {
  display: block;
  height: auto;
  max-width: 100%;
}

.catalog-category__content b {
  font-weight: 500;
}

.content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 3rem 0;
  padding: 2rem 3rem;
  width: 100%;
}

.content-row.row--gray {
  background: #f6f6f6;
  border-radius: 0.9rem;
}

.content-row:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.content-row__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 5%;
  min-width: 25%;
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.content-row__image > img:first-child:nth-last-child(2),
.content-row__image > img:first-child:nth-last-child(2) ~ img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 48%;
}

.content-row:nth-child(odd) .content-row__image {
  margin-left: 5%;
  margin-right: 0;
}

.content-row__text {
  max-width: 70%;
  min-width: 50%;
}

.content-row__text ol,
.content-row__text ul {
  margin-bottom: 3rem;
}

.promotional-item__bg {
  z-index: 1;
}

.promotional-item__content {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.promotional-item {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.fancybox-custom,
.fancybox-custom-video,
.fancybox-custom-video-iframe {
  z-index: 9999999999;
}

.portfolio-video__item-image:after {
  background: url(/local/templates/ws-ad/assets/img/icons/vk-play.svg) 50% /
    contain no-repeat;
  height: 6.4rem;
  width: 6.4rem;
}

.metaldlg-panel__head {
  margin-bottom: 2.5rem;
}

.catalog-item__to-favorites.ws-waiting {
  position: absolute;
}

.catalog-item__to-favorites.ws-waiting:before {
  display: none;
}

.catalog-item__to-favorites.ws-waiting .ws-waiter {
  display: none;
}

.panels-list_empty {
  font-size: 1.8rem;
  font-weight: 600;
}

.panels-filter__section {
  position: relative;
}

.panels-filter__section sup {
  background: url(../img/icons/calc-check-white.svg) 50% / contain no-repeat;
  background: url(../img/icons/calc-check.svg) 50% / contain no-repeat;
  height: 1.1rem;
  position: absolute;
  right: 1.2rem;
  top: 0;
  top: 1.2rem;
  width: 1.6rem;
}

.panels-filter__section sup span {
  display: none;
  font-size: unset;
  line-height: 1.2;
  margin: 0;
  vertical-align: unset;
}

.panels-filter__section.is--active sup {
  background: url(../img/icons/calc-check-white.svg) 50% / contain no-repeat;
}

.panels-filter__section.section--fav sup {
  background: #b5191e;
  border: 2px solid #b5191e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2.5rem;
  right: 5.7rem;
  top: 1.1rem;
  width: 2.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.panels-filter__section.section--fav sup span {
  color: #fff;
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}

.panels-filter__section.section--fav.is--active sup {
  background: #b5191e;
  border-color: #fff;
}

.panels-filter__section.section--fav.is--active sup span {
  color: #fff;
}

.entrance-doors {
  padding-bottom: 7.5rem;
}

.entrance-doors .catalog__footer {
  margin-top: 5.9rem;
}

.entrance-doors__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.entrance-doors__head .h1 {
  margin-bottom: 0;
}

.entrance-doors__head-logo {
  max-width: 15.2rem;
  width: 100%;
}

.entrance-doors__head-logo img {
  width: 100%;
}

.entrance-doors__hero .collection-category__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}

.entrance-doors__hero .collection-category__item {
  border-radius: 0.9rem;
  display: block;
  grid-area: unset !important;
  height: 33.5rem;
  width: 100%;
}

.entrance-doors__hero
  .collection-category__item:hover
  .collection-category__item-bg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.entrance-doors__hero .collection-category__item-title {
  bottom: 3rem;
  font-size: 1.9rem;
  padding: 0 3rem;
  text-align: right;
  text-transform: uppercase;
}

.entrance-doors__hero .collection-category__item-hover {
  background: rgba(31, 34, 41, 0.94);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 7.9rem 6rem 6.5rem;
}

.entrance-doors__hero
  .collection-category__item-hover
  .collection-category__item-title {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: left;
}

.entrance-doors__hero .collection-category__item-hover p {
  font-size: 1.4rem;
  line-height: 1.375;
}

.entrance-doors__catalog {
  padding-bottom: 8.6rem;
}

.entrance-doors__catalog-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 3.4rem;
}

.entrance-doors__search {
  max-width: 108.4rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.entrance-doors-search {
  width: 100%;
}

.entrance-doors-search__form {
  position: relative;
  width: 100%;
}

.entrance-doors-search__form .input {
  border: 7px solid rgba(49, 54, 61, 0.15);
  border-radius: 0.4rem;
  height: 6.2rem;
  padding: 0 4.5rem 0 2.8rem;
  width: 100%;
}

.entrance-doors-search__form .input::-webkit-input-placeholder {
  color: #1f2229;
  opacity: 0.3;
}

.entrance-doors-search__form .input::-moz-placeholder {
  color: #1f2229;
  opacity: 0.3;
}

.entrance-doors-search__form .input:-ms-input-placeholder {
  color: #1f2229;
  opacity: 0.3;
}

.entrance-doors-search__form .input::-ms-input-placeholder {
  color: #1f2229;
  opacity: 0.3;
}

.entrance-doors-search__form .input::placeholder {
  color: #1f2229;
  opacity: 0.3;
}

.entrance-doors-search__form .input:focus:required:invalid {
  border-color: rgba(49, 54, 61, 0.15);
}

.entrance-doors-search__form .input:required:valid {
  border-color: rgba(49, 54, 61, 0.15);
}

.entrance-doors-search__btn {
  background: transparent;
  border-radius: 0;
  color: #1f2229;
  height: 4.8rem;
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  width: 5.2rem;
}

.entrance-doors-search__btn:hover {
  background: rgba(49, 54, 61, 0.05);
  color: #1f2229;
}

.entrance-doors-search__btn .icon {
  height: 2rem;
  width: 2rem;
}

.entrance-doors__sort {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
}

.entrance-doors__catalog-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.entrance-doors__catalog-aside {
  max-width: 31.3rem;
  padding-top: 1.3rem;
  width: 100%;
}

.catalog-aside-title {
  border-bottom: 1px solid rgba(31, 34, 41, 0.1);
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.7rem;
  padding-bottom: 2.5rem;
  text-transform: uppercase;
}

.entrance-doors__catalog-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 2.4rem;
  width: 100%;
}

.entrance-doors-catalog__active-filters {
  margin-bottom: 1.7rem;
  min-height: 4rem;
}

.entrance-doors-catalog__grid {
  display: grid;
  gap: 2.3rem 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.ed-catalog-item {
  border: 1px solid rgba(31, 34, 41, 0.15);
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 33.4rem;
  padding: 1.4rem 1.4rem 1.7rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.ed-catalog-item:hover {
  border-color: transparent;
  -webkit-box-shadow: 0 4px 22px 0 rgba(49, 54, 61, 0.12);
  box-shadow: 0 4px 22px 0 rgba(49, 54, 61, 0.12);
}

.ed-catalog-item__article {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.ed-catalog-item__article:before {
  color: rgba(31, 34, 41, 0.3);
  content: "#";
  font-size: 1.6rem;
  padding-right: 0.2rem;
}

.ed-catalog-item__image {
  height: 30.6rem;
  position: relative;
}

.ed-catalog-item__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.ed-catalog-item__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 1.8rem;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.ed-catalog-item__image-furn {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.ed-catalog-item__image-furn img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.ed-catalog-item__description {
  font-size: 1.6rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 2;
  margin-bottom: 1.5rem;
  min-height: 3.8rem;
  overflow: hidden;
}

.ed-catalog-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 1.8rem;
  margin-bottom: 2.1rem;
}

.ed-catalog-item__price-main {
  font-size: 1.5rem;
}

.ed-catalog-item__price-main span {
  font-size: 2.9rem;
}

.ed-catalog-item__price-old {
  color: rgba(31, 34, 41, 0.3);
  font-size: 1.3rem;
  text-decoration: line-through;
}

.ed-catalog-item__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
}

.ed-catalog-item__buttons .btn {
  font-size: 1.4rem;
  font-weight: 500;
  height: 3.5rem;
  width: 100%;
}

.ed-catalog-item__pickup:hover {
  background: var(--black);
}

.ed-catalog-promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ed-catalog-promo__item {
  height: 100%;
}

.ed-catalog-promo__item:hover {
  -webkit-box-shadow: 0 4px 22px 0 rgba(49, 54, 61, 0.12);
  box-shadow: 0 4px 22px 0 rgba(49, 54, 61, 0.12);
}

.ed-catalog-promo__item img {
  border-radius: 0.6rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.entrance-doors__description {
  margin-bottom: 3rem;
}

.entrance-doors-desc__bl1 {
  background: #fafafa;
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8rem 13.6rem 0.3rem 7.1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.entrance-doors-desc__bl1-image {
  height: 38.9rem;
  max-width: 30.8rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  mix-blend-mode: darken;
}

.entrance-doors-desc__bl1-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.entrance-doors-desc__bl1-text {
  max-width: 80.8rem;
  width: 100%;
}

.entrance-doors-desc__bl1-text .h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.195;
  margin-bottom: 2.5rem;
}

.entrance-doors-desc__bl1-text li,
.entrance-doors-desc__bl1-text p {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.1;
}

.entrance-doors-desc__bl1-text ol {
  counter-reset: my-counter;
  list-style: none;
  margin: 0;
  padding: 0;
}

.entrance-doors-desc__bl1-text li {
  counter-increment: my-counter;
  margin-bottom: 1.4rem;
  padding-left: 4.8rem;
  position: relative;
}

.entrance-doors-desc__bl1-text li:last-of-type {
  margin-bottom: 0;
}

.entrance-doors-desc__bl1-text li:before {
  background: #ab3b66;
  border-radius: 50%;
  content: counter(my-counter);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2.3rem;
  width: 2.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  left: 0;
  position: absolute;
  top: 0;
}

.entrance-doors-desc__bl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2.5rem 0 1.7rem;
  justify-concatalog-itemtent: space-between;
  gap: 4rem;
}

.entrance-doors-desc__bl2-text {
  max-width: 68.9rem;
  width: 100%;
}

.entrance-doors-desc__bl2-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.35;
}

.entrance-doors-desc__bl2-image {
  max-width: 67.1rem;
  width: 100%;
}

.entrance-doors-desc__bl2-image .h2 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.195;
  margin-bottom: 0.9rem;
}

.entrance-doors-desc__bl2-image span {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.35;
  margin-top: 1.1rem;
}

.entrance-doors-desc__bl3 {
  background: #28b19a;
  border-radius: 0.8rem;
  padding: 1.7rem 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.entrance-doors-desc__bl3,
.entrance-doors-desc__bl3 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.entrance-doors-desc__bl3 span {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  gap: 1.7rem;
  line-height: 1.3;
}

.entrance-doors-desc__bl3 span:before {
  background: url(../img/icons/guard.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 2.8rem;
  width: 2.6rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.catalog {
  padding-bottom: 7rem;
}

.catalog .catalog-slider {
  padding-bottom: 0;
  padding-top: 9.7rem;
}

.catalog__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 3.4rem;
}

.catalog__aside {
  max-width: 25rem;
  width: 100%;
}

.catalog-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 4.2rem;
}

.catalog-content .catalog__grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.8rem;
}

.catalog__header {
  margin-bottom: 2.7rem;
  padding-right: 4.1rem;
}

.catalog__header .h1 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.catalog__header p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
}

.catalog__header p:last-of-type {
  margin-bottom: 0;
}

.catalog__active-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.catalog__active-filters:empty {
  display: none;
}

.catalog-filter {
  margin-bottom: 2rem;
}

.catalog-filter .custom-checkbox {
  padding: 0.45rem 0;
}

.catalog-filter-links {
  margin-bottom: 2rem;
}

.catalog-filter-links:last-of-type {
  margin-bottom: 0;
}

.catalog-filter-links a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.6rem;
  padding: 0.25rem 0;
  position: relative;
}

.catalog-filter-links a:hover {
  color: #000;
}

.catalog-filter-links a.is-hidden {
  display: none;
}

.catalog-filter__header {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.catalog-filter__body,
.catalog-filter__content {
  display: inline-grid;
}

.catalog-filter__body {
  position: relative;
}

.catalog-filter.is-expanded .catalog-filter__show-more span:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.catalog-filter__show-more {
  color: #ab3b66;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 0;
}

.catalog-filter__show-more span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9rem;
}

.catalog-filter__show-more span:after {
  background: url(../img/icons/filter-arrow.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 0.6rem;
  width: 0.9rem;
}

.catalog__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.7rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 6.9rem;
}

.catalog__show-more {
  height: 5rem;
  max-width: 22.6rem;
  width: 100%;
}

.mobile-filters {
  display: none;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mobile-filters__item {
  border: 0.62px solid rgba(31, 34, 41, 0.3);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 34px;
  max-width: 109px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.mobile-filters__item span {
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
  top: 1px;
}

.catalog-mobile-filter {
  gap: 16px;
  padding: 0 14px;
}

.catalog-mobile-filter .icon {
  height: 18px;
  width: 18px;
}

.filters-mobile__btn {
  width: 100%;
}

.penta-itec__header {
  margin-bottom: 4.4rem;
}

.penta-itec__header .h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.penta-itec__header p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.195;
}

.penta-itec__header p:last-of-type {
  margin-bottom: 0;
}

.penta-itec__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.penta-itec__bl1-text {
  max-width: 63rem;
  padding-top: 1.2rem;
  width: 100%;
}

.penta-itec__bl1-text p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 56.9rem;
}

.penta-itec__bl1-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 71.9rem;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 3rem;
  justify-content: space-between;
}

.penta-itec__bl1-images img {
  border-radius: 0.9rem;
  height: 46.9rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.penta-itec__bl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.8rem;
  margin-top: 4.9rem;
  padding-right: 0.7rem;
}

.penta-itec__bl2-left {
  max-width: 48rem;
  width: 100%;
}

.penta-itec__bl2-left .h2 {
  margin-bottom: 1.6rem;
}

.penta-itec__bl2-left p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 3rem;
}

.penta-itec__bl2-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.9rem;
  max-width: 87.5rem;
  width: 100%;
}

.penta-itec__bl2-image {
  height: 36.2rem;
  max-width: 27.8rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.penta-itec__bl2-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.penta-itec__bl2-text .custom-ul {
  margin: 2.7rem 0;
}

.penta-itec__bl2-text .custom-ul li {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.33333;
  margin-bottom: 1.2rem;
  padding-left: 3.3rem;
}

.penta-itec__bl3 {
  border: 1px solid rgba(31, 34, 41, 0.15);
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 9rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2.8rem;
  padding: 0 9.1rem;
}

.penta-itec__bl3 p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.44444;
  margin-bottom: 0;
  max-width: 108.1rem;
  position: relative;
  width: 100%;
}

.penta-itec__bl3 p:before {
  background: url(../img/icons/warn.svg) 50% / contain no-repeat;
  content: "";
  height: 3.8rem;
  left: -6.1rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3.8rem;
}

.penta-itec__bl4 {
  background: #fafafa;
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.8rem;
  padding: 3.7rem 13.1rem 4.5rem 6.8rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.penta-itec__bl4-text {
  max-width: 61.9rem;
  width: 100%;
}

.penta-itec__bl4-text .h2 {
  margin-bottom: 5.2rem;
}

.penta-itec__bl4-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 3rem;
}

.penta-itec__bl4-text p:last-of-type {
  margin-bottom: 0;
}

.penta-itec__bl4-image {
  max-width: 50rem;
  width: 100%;
  -webkit-box-flex: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -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: 1rem;
}

.penta-itec__bl4-image span {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 3.4rem;
}

.penta-itec__bl4-image img {
  border-radius: 0.9rem;
  height: 33.2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.penta-itec-touch {
  padding-bottom: 14rem;
}

.penta-itec-touch__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 1rem;
}

.penta-itec-touch__bl1-text {
  max-width: 63.2rem;
  width: 100%;
}

.penta-itec-touch__bl1-text p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.195;
  max-width: 55.6rem;
}

.penta-itec-touch__bl1-text .h1 {
  font-size: 4rem;
  margin-bottom: 1.8rem;
  max-width: 53.2rem;
}

.penta-itec-touch__bl1-text .custom-ul {
  margin: 4.3rem 0 0;
  max-width: 62.8rem;
}

.penta-itec-touch__bl1-text .custom-ul li:after {
  top: 0.7rem;
}

.penta-itec-touch__bl1-image {
  max-width: 71.9rem;
  width: 100%;
}

.penta-itec-touch__bl1-image img {
  border-radius: 0.9rem;
  height: 52.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.penta-itec-touch__bl2 {
  background: #fafafa;
  border-radius: 0.9rem;
  margin-top: 5.3rem;
  padding: 3.5rem 4.6rem 4.4rem 3.1rem;
}

.penta-itec-touch__bl2-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.penta-itec-touch__bl2-top-image {
  max-width: 38rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.penta-itec-touch__bl2-top-image img {
  border-radius: 0.9rem;
  height: 37.2rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.penta-itec-touch__bl2-top-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 5.2rem;
  width: 100%;
}

.penta-itec-touch__bl2-top-text .h2 {
  margin-bottom: 1.6rem;
}

.penta-itec-touch__bl2-top-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.penta-itec-touch__bl2-top-text p:last-of-type {
  margin-bottom: 0;
}

.penta-itec-touch__bl2-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.penta-itec-touch__bl2-bottom-text {
  margin-top: -1rem;
  max-width: 62.7rem;
  width: 100%;
}

.penta-itec-touch__bl2-bottom-text .custom-ul {
  margin: 3.1rem 0 0;
  max-width: 62rem;
}

.penta-itec-touch__bl2-bottom-text .custom-ul li {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.penta-itec-touch__bl2-bottom-text .custom-ul li:after {
  background: #ab3b66;
  border-radius: 50%;
  height: 1.4rem;
  top: 0.7rem;
  width: 1.4rem;
}

.penta-itec-touch__bl2-bottom-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.4rem;
  max-width: 65.4rem;
  width: 100%;
}

.penta-itec-touch__bl2-bottom-images img {
  border-radius: 0.9rem;
  height: 40.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.penta-itec-touch__bl3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6.9rem;
  padding: 0 6rem 0 7.4rem;
}

.penta-itec-touch__bl3-image {
  max-width: 30.9rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.penta-itec-touch__bl3-image img {
  border-radius: 0.9rem;
  height: 82.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.penta-itec-touch__bl3-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 9.4rem;
  width: 100%;
}

.penta-itec-touch__bl3-text .h2 {
  margin-bottom: 0.7rem;
}

.penta-itec-touch__bl3-text .h3 {
  margin: 3rem 0;
}

.penta-itec-touch__bl3-text p {
  font-size: 2.2rem;
  line-height: 1.36364;
  max-width: 72.4rem;
}

.penta-itec-touch__bl3-text .custom-ul {
  margin: 2.4rem 2.2rem;
}

.penta-itec-touch__bl3-text .custom-ul li {
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  padding-left: 3.4rem;
}

.penta-itec-touch__bl3-text .custom-ul li:after {
  background: #ab3b66;
  border-radius: 50%;
  height: 1.4rem;
  top: 0.5rem;
  width: 1.4rem;
}

.penta-itec-touch__bl4 {
  background: #f8f8f8;
  border-radius: 0.9rem;
  margin-top: 5.9rem;
  padding: 4.3rem 3.1rem;
}

.penta-itec-touch__bl4 .h2 {
  margin-bottom: 2.9rem;
}

.penta-itec-touch__bl4-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.penta-itec-touch__bl4-image img {
  height: 60.8rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 93.6rem;
}

.penta-itec-touch__hidden-block {
  margin-top: 5.8rem;
}

.penta-itec-touch__hidden-block-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.penta-itec-touch__hidden-block-open span {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.3rem;
}

.penta-itec-touch__hidden-block-open-btn {
  border-radius: 5rem;
  height: 5.6rem;
  max-width: 28.4rem;
  width: 100%;
}

.penta-itec-touch__hidden-block-open-btn span {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}

.penta-itec-touch__hidden-block-open-btn span:after {
  background: url(../img/icons/nav-down.svg) 50% / contain no-repeat;
  content: "";
  display: block;
  height: 0.8rem;
  margin-top: 0.2rem;
  width: 1.5rem;
}

.penta-itec-touch__hidden-block-open-btn.is-active span:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.penta-itec-touch__hidden-block-content {
  display: none;
}

.penta-itec-touch__hidden-block-content.is-active {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  display: block;
}

.penta-itec-touch__bl5 {
  margin-top: 4.5rem;
}

.penta-itec-touch__bl5 .h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.penta-itec-touch__bl5 .h3,
.penta-itec-touch__bl5 h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 3rem 0 2rem;
}

.penta-itec-touch__bl5 li,
.penta-itec-touch__bl5 p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.penta-itec-touch__bl5-text {
  max-width: 111.6rem;
}

.penta-itec-touch__bl5-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.penta-itec-touch__bl5-left,
.penta-itec-touch__bl5-right {
  max-width: 67rem;
  width: 100%;
}

.penta-itec-touch__bl6 {
  margin: 4.5rem 0;
}

.penta-itec-touch__bl6 img {
  height: 35rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.penta-itec-touch__bl7 .h2,
.penta-itec-touch__bl7 h2 {
  margin-bottom: 4rem;
  text-align: center;
}

.penta-itec-touch__bl7 .h3,
.penta-itec-touch__bl7 h3 {
  font-size: 2rem;
  margin: 3.5rem 0 1.4rem;
}

.penta-itec-touch__bl7 li,
.penta-itec-touch__bl7 p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.38889;
  margin-bottom: 1.2rem;
}

.penta-itec-touch__bl7 b {
  font-weight: 600;
}

.penta-itec-touch__bl7-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 11.7rem;
  padding-right: 8.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.penta-itec-touch__bl7-left {
  max-width: 55.9rem;
  width: 100%;
}

.penta-itec-touch__bl7-left img {
  border-radius: 0.9rem;
  height: 54.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 49.5rem;
}

.penta-itec-touch__bl7-left-text {
  padding-left: 5.4rem;
}

.penta-itec-touch__bl7-right {
  max-width: 59.5rem;
  width: 100%;
}

.penta-bio {
  padding-bottom: 5rem;
}

.penta-bio__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.penta-bio__bl1-text {
  max-width: 65.2rem;
  width: 100%;
}

.penta-bio__bl1-header {
  margin-bottom: 2.7rem;
}

.penta-bio__bl1-header .h1 {
  font-size: 4rem;
  margin-bottom: 0.3rem;
}

.penta-bio__bl1-header p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.195;
}

.penta-bio__bl1-header p:last-of-type {
  margin-bottom: 0;
}

.penta-bio__bl1-content p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.penta-bio__bl1-content p:last-of-type {
  margin-bottom: 0;
}

.penta-bio__bl1-content p:first-of-type {
  max-width: 62.6rem;
}

.penta-bio__bl1-image {
  max-width: 71.9rem;
  width: 100%;
}

.penta-bio__bl1-image img {
  border-radius: 0.9rem;
  height: 49.2rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.penta-bio__bl2 {
  background: #fafafa;
  border-radius: 0.9rem;
  margin-top: 4.4rem;
  padding: 3.5rem 4.6rem 5.2rem 3.1rem;
}

.penta-bio__bl2-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.9rem;
}

.penta-bio__bl2-video {
  max-width: 47.7rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.penta-bio__bl2 .video-slide__preview {
  height: 36.3rem;
}

.penta-bio__bl2-top-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 0.3rem;
  padding-top: 0.4rem;
  width: 100%;
}

.penta-bio__bl2-top-text .h3 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.penta-bio__bl2-top-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
}

.penta-bio__bl2-middle {
  margin-top: 3.9rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 1.8rem;
  justify-content: space-between;
}

.penta-bio__bl2-middle,
.penta-bio__bl2-middle-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.penta-bio__bl2-middle-text {
  max-width: 57.7rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.penta-bio__bl2-middle-text .h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.penta-bio__bl2-middle-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.66667;
  margin-bottom: 0;
}

.penta-bio__bl2-middle-text-warn {
  margin-top: auto;
}

.penta-bio__bl2-middle-text-warn span {
  color: #28b19a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.6rem;
}

.penta-bio__bl2-middle-text-warn span:before {
  background: url(../img/icons/warn-icon.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 3.8rem;
  width: 3.8rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.penta-bio__bl2-middle-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 70.9rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 0.8rem;
  justify-content: space-between;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.penta-bio__bl2-middle-images img {
  border-radius: 0.9rem;
  height: 32rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.penta-bio__bl2-bottom {
  margin-top: 6.2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4.1rem;
  justify-content: space-between;
}

.penta-bio__bl2-bottom,
.penta-bio__bl2-bottom-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.penta-bio__bl2-bottom-images {
  max-width: 54.8rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  gap: 3.2rem;
}

.penta-bio__bl2-bottom-images img {
  border-radius: 0.9rem;
  height: 37.4rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.penta-bio__bl2-bottom-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.penta-bio__bl2-bottom-text .h3 {
  font-size: 3rem;
  margin-bottom: 2.3rem;
}

.penta-bio__bl2-bottom-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.penta-bio__bl2-bottom-text p:last-of-type {
  margin-bottom: 0;
}

.penta-bio__bl2-bottom-text b {
  font-weight: 600;
}

.penta-bio__bl3 {
  background: url(../img/penta-bio-bl3.jpg) 50% / cover no-repeat;
  border-radius: 0.9rem;
  margin-top: 5.7rem;
  padding: 8.8rem 14.7rem;
}

.penta-bio__bl3 .h2 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 2.4rem;
}

.penta-bio__bl3 p {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0;
}

.penta-bio__bl4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin-top: 7.5rem;
}

.penta-bio__bl4-text {
  max-width: 81.2rem;
  padding-top: 1rem;
  width: 100%;
}

.penta-bio__bl4-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.penta-bio__bl4-text p:last-of-type {
  margin-bottom: 0;
}

.penta-bio__bl4-image {
  max-width: 51.9rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.penta-bio__bl4-image img {
  border-radius: 0.9rem;
  height: 43.9rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.penta-bio__bl5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 9.2rem;
  padding-right: 2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 7rem;
}

.penta-bio__bl5-image {
  max-width: 47.6rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.penta-bio__bl5-image img {
  border-radius: 0.9rem;
  height: 53.8rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.penta-bio__bl5-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 6.4rem;
  padding-top: 0.9rem;
  width: 100%;
}

.penta-bio__bl5-text .h2 {
  font-size: 4rem;
  margin-bottom: 3.8rem;
}

.penta-bio__bl5-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.secret-new {
  padding-bottom: 6.5rem;
}

.secret-new__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.secret-new__bl1-text {
  max-width: 58.4rem;
  width: 100%;
}

.secret-new__bl1-text-header .h1 {
  font-size: 4rem;
  margin-bottom: 0.3rem;
}

.secret-new__bl1-text-header p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.195;
  margin-bottom: 0;
}

.secret-new__bl1-text-content {
  margin-top: 6.2rem;
}

.secret-new__bl1-text-content p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
}

.secret-new__bl1-text-content p b {
  display: block;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.7rem;
}

.secret-new__bl1-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  max-width: 77.4rem;
  padding-top: 1rem;
  width: 100%;
}

.secret-new__bl1-images img {
  border-radius: 0.9rem;
  height: 46.9rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.secret-new__bl1-images img:first-of-type {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.secret-new__bl2 {
  background: #fafafa;
  border-radius: 0.9rem;
  gap: 3.4rem;
  margin-top: 5.3rem;
  padding: 3.5rem 3.1rem 2rem;
}

.secret-new__bl2,
.secret-new__bl2-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.secret-new__bl2-left {
  max-width: 56.2rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.secret-new__bl2-image {
  margin-bottom: 2.8rem;
}

.secret-new__bl2-image img {
  border-radius: 0.9rem;
  height: 36.7rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.secret-new__bl2-warn {
  border: 1px solid rgba(31, 34, 41, 0.1);
  border-radius: 0.9rem;
  margin-top: auto;
  padding: 2.4rem 4rem 3rem 5rem;
}

.secret-new__bl2-warn span {
  color: #28b19a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.6rem;
}

.secret-new__bl2-right {
  max-width: 65.8rem;
  width: 100%;
}

.secret-new__bl2-right li,
.secret-new__bl2-right p {
  font-size: 2rem;
  font-weight: 300;
}

.secret-new__bl2-right p:last-of-type {
  margin-bottom: 0;
  margin-right: -5rem;
}

.secret-new__bl2-right p b {
  display: block;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  max-width: 83%;
}

.secret-new__bl2-right .custom-ul {
  margin: 2.3rem 0 6.7rem;
}

.secret-new__bl2-right .custom-ul li {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  margin-left: 1.4rem;
  padding-left: 3.4rem;
}

.secret-new__bl2-right .custom-ul li:after {
  background: #ab3b66;
  border-radius: 50%;
  content: "";
  height: 1.4rem;
  top: 0.4rem;
  width: 1.4rem;
}

.secret-new__bl3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12.5rem;
  margin-top: 7.3rem;
  padding-left: 15.6rem;
}

.secret-new__bl3-image {
  max-width: 42rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
}

.secret-new__bl3-image:after {
  background: #fafafa;
  border-radius: 0.9rem;
  content: "";
  height: 38.3rem;
  position: absolute;
  right: -7.2rem;
  top: 11.4rem;
  width: 64.5rem;
  z-index: -1;
}

.secret-new__bl3-image img {
  height: 55rem;
  mix-blend-mode: darken;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.secret-new__bl3-text {
  max-width: 66.3rem;
  padding-top: 3.2rem;
  width: 100%;
}

.secret-new__bl3-text .h2 {
  font-size: 4rem;
  margin-bottom: 4.6rem;
}

.secret-new__bl3-text ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.secret-new__bl3-text ol li {
  counter-increment: counter;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 2.7rem;
  padding-left: 6rem;
  position: relative;
}

.secret-new__bl3-text ol li:before {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ab3b66;
  border-radius: 50%;
  color: #fff;
  content: counter(counter);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  height: 3.1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: absolute;
  top: -0.3rem;
  width: 3.1rem;
}

.secret-new__bl4 {
  background: #fafafa;
  border-radius: 0.9rem;
  margin-top: 6.3rem;
  padding: 7.4rem 4.1rem 5.7rem 3.1rem;
}

.secret-new__bl4-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.secret-new__bl4-top-left {
  max-width: 61.4rem;
  width: 100%;
}

.secret-new__bl4-top-left .h2 {
  margin-bottom: 2.3rem;
}

.secret-new__bl4-top-left p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
}

.secret-new__bl4-top-right {
  margin-top: -2rem;
  max-width: 66.7rem;
  width: 100%;
}

.secret-new__bl4-top-right img {
  border-radius: 0.9rem;
  height: 22.3rem;
  width: 100%;
}

.secret-new__bl4-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 3.8rem;
}

.secret-new__bl4-bottom img {
  border-radius: 0.9rem;
  height: 27.9rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 23.3rem;
}

.secret-new__bl5 {
  margin-top: 6.3rem;
}

.secret-new__bl5 .static-products__video,
.secret-new__bl5 .video-slide__preview {
  height: 65.2rem;
  max-width: 100% !important;
}

.secret-new__bl5-video {
  display: block;
  height: 100%;
  position: relative;
}

.secret-new__bl5-video:hover .secret-new__bl5-video-play {
  -webkit-transform: translate(-50%, -50%) scale(0.94);
  -ms-transform: translate(-50%, -50%) scale(0.94);
  transform: translate(-50%, -50%) scale(0.94);
}

.secret-new__bl5-video-preview {
  width: 100%;
}

.secret-new__bl5-video-preview img {
  border-radius: 0.9rem;
  height: 65.2rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.secret-new__bl5-video-play {
  background: url(../img/icons/youtube-play.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 6.1rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 8.1rem;
}

.smart-lock {
  padding-bottom: 5rem;
}

.smart-lock__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.smart-lock__bl1-text {
  max-width: 55.5rem;
  padding-top: 10.2rem;
  width: 100%;
}

.smart-lock__bl1-text .h1 {
  font-size: 4rem;
  margin-bottom: 4.4rem;
  max-width: 46.8rem;
}

.smart-lock__bl1-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
}

.smart-lock__bl1-image {
  max-width: 77.4rem;
  width: 100%;
}

.smart-lock__bl1-image img {
  border-radius: 0.9rem;
  height: 46.9rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.smart-lock__bl2 {
  background: #fafafa;
  border-radius: 0.9rem;
  margin-top: 5.3rem;
  padding: 5.6rem 3.2rem 3.9rem;
}

.smart-lock__bl2-text-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 8rem;
  justify-content: space-between;
  padding: 0 3.3rem 0 1.5rem;
}

.smart-lock__bl2-text-flex p {
  font-size: 2rem;
  font-weight: 300;
}

.smart-lock__bl2-text-flex p b {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.smart-lock__bl2-text-left {
  max-width: 61.7rem;
  width: 100%;
}

.smart-lock__bl2-text-left p:first-of-type b {
  margin-top: 0;
}

.smart-lock__bl2-text-left p b {
  margin-top: 4.4rem;
}

.smart-lock__bl2-text-right {
  max-width: 59.2rem;
  width: 100%;
}

.smart-lock__bl2-text-right p:first-of-type b {
  margin-top: 0;
}

.smart-lock__bl2-text-right p b {
  margin-top: 2.4rem;
}

.smart-lock__bl2-text-items {
  background: #f4f4f4;
  border-radius: 0.9rem;
  margin-top: 4.7rem;
  padding: 4.9rem 6.1rem 5.5rem 7.2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.smart-lock__bl2-text-item,
.smart-lock__bl2-text-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.smart-lock__bl2-text-item {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.smart-lock__bl2-text-item span {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
}

.smart-lock__bl2-text-item:first-of-type {
  gap: 1.2rem;
  max-width: 22.6rem;
}

.smart-lock__bl2-text-item:first-of-type .smart-lock__bl2-text-item-icon {
  height: 6.2rem;
  width: 6.2rem;
}

.smart-lock__bl2-text-item:nth-of-type(2) {
  gap: 3rem;
  left: 0.5rem;
  max-width: 19.7rem;
  position: relative;
}

.smart-lock__bl2-text-item:nth-of-type(2) .smart-lock__bl2-text-item-icon {
  height: 6rem;
  width: 6rem;
}

.smart-lock__bl2-text-item:nth-of-type(3) {
  gap: 1.9rem;
  left: -0.5rem;
  max-width: 19rem;
  position: relative;
}

.smart-lock__bl2-text-item:nth-of-type(3) .smart-lock__bl2-text-item-icon {
  height: 6.1rem;
  width: 6.6rem;
}

.smart-lock__bl2-text-item:nth-of-type(4) {
  gap: 1.1rem;
  left: 0.5rem;
  max-width: 22.7rem;
  position: relative;
}

.smart-lock__bl2-text-item:nth-of-type(4) .smart-lock__bl2-text-item-icon {
  height: 5.8rem;
  width: 6rem;
}

.smart-lock__bl2-text-item:nth-of-type(5) {
  gap: 1.6rem;
  max-width: 17.2rem;
}

.smart-lock__bl2-text-item:nth-of-type(5) .smart-lock__bl2-text-item-icon {
  height: 6.1rem;
  width: 4.7rem;
}

.smart-lock__bl2-text-item-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.smart-lock__bl2-text-item-icon img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.smart-lock__section {
  background: #fafafa;
  border-radius: 0.9rem;
  margin: 3.9rem 0;
  padding: 3.6rem 1.8rem 2.8rem;
}

.smart-lock__section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8rem;
}

.smart-lock__section-slider {
  max-width: 69.4rem;
  width: 100%;
}

.smart-lock__section-slider .slider .smart-lock-slider-main,
.smart-lock__section-slider .slider .smart-lock-slider-thumbs {
  height: 100%;
  width: 100%;
}

.smart-lock__section-slider .slider__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.smart-lock__section-slider .slider__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 1.4rem;
  width: 15.7rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.smart-lock__section-slider .slider__next,
.smart-lock__section-slider .slider__prev {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  border-radius: 0.4rem;
  height: 0.8rem;
  justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.smart-lock__section-slider .slider__next.swiper-button-disabled,
.smart-lock__section-slider .slider__prev.swiper-button-disabled {
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.5;
}

.smart-lock__section-slider .slider__prev {
  background: url(../img/icons/smart-lock-prev.svg) 50%/1.7rem no-repeat;
  margin-bottom: 0.5rem;
}

.smart-lock__section-slider .slider__next {
  background: url(../img/icons/smart-lock-next.svg) 50%/1.7rem no-repeat;
  margin-top: 0.5rem;
}

.smart-lock__section-slider .slider__next:focus,
.smart-lock__section-slider .slider__prev:focus {
  outline: none;
}

.smart-lock__section-slider .slider__thumbs {
  height: 47.1rem;
  width: 100%;
}

.smart-lock__section-slider .slider__thumbs .slider__image {
  border: 1px solid transparent;
  opacity: 0.7;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.smart-lock__section-slider .slider__thumbs .slider__image:hover {
  opacity: 1;
}

.smart-lock__section-slider
  .slider__thumbs
  .swiper-slide-thumb-active
  .slider__image {
  border: 1px solid rgba(31, 34, 41, 0.15);
  opacity: 1;
}

.smart-lock__section-slider .slider__images {
  height: auto;
  max-width: 52.3rem;
  position: relative;
  width: 100%;
}

.smart-lock__section-slider .slider__images img {
  padding: 3.5rem;
}

.smart-lock__section-slider .slider__image {
  background: #fff;
  border-radius: 0.9rem;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.smart-lock__section-slider .slider__thumbs .slider__image {
  background: #fff;
  border-radius: 0.9rem;
  cursor: pointer;
  height: 14.7rem;
  overflow: hidden;
  padding: 0.8rem;
}

.smart-lock__section-slider .slider__thumbs .slider__image img {
  border-radius: 0.4rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 100%;
  position: relative;
}

.smart-lock__section-slider .slider__image img {
  display: block;
  height: 51.3rem;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.smart-lock-slider-main .smart-lock-slider-main-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 8px;
}

.smart-lock-slider-main .swiper-pagination-bullet {
  background: #d9d9d9;
  border-radius: 0;
  height: 3px;
  opacity: 1;
  width: 17px;
}

.smart-lock-slider-main .swiper-pagination-bullet-active {
  background: #ab3b66;
}

.smart-lock-slider-main
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.smart-lock-slider-main
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 3px;
}

.smart-lock__section-description {
  padding-top: 0.5rem;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.smart-lock__section-description .h2 {
  font-size: 4rem;
  margin-bottom: 2.8rem;
}

.smart-lock__section-description-area {
  -ms-flex-pack: justify;
}

.smart-lock__section-description-area,
.smart-lock__section-description-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.smart-lock__section-description-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
}

.smart-lock__section-description-col:nth-of-type(2)
  .smart-lock__section-description-item:first-of-type
  p {
  margin-bottom: 0.4rem;
}

.smart-lock__section-description-item {
  margin-bottom: 1rem;
}

.smart-lock__section-description-item:last-of-type {
  margin-bottom: 0;
}

.smart-lock__section-description-item li,
.smart-lock__section-description-item p {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.smart-lock__section-description-item li:last-of-type,
.smart-lock__section-description-item p:last-of-type {
  margin-bottom: 0;
}

.smart-lock__section-description-item .h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.smart-lock__section-bottom {
  margin: 4.3rem 0;
  padding-left: 17.2rem;
  padding-right: 11.8rem;
}

.smart-lock__section-bottom-icon {
  font-size: 1.8rem;
  margin-bottom: 0;
  position: relative;
}

.smart-lock__section-bottom-icon:after {
  background: url(../img/icons/smart-lock-lamp.svg) 50% / contain no-repeat;
  content: "";
  height: 2.4rem;
  left: -4.1rem;
  position: absolute;
  top: 0.4rem;
  width: 1.9rem;
}

.smart-lock__gallery-grid {
  display: grid;
  gap: 1.9rem;
  grid-template-columns: repeat(3, 1fr);
}

.smart-lock__gallery-item img {
  border-radius: 0.9rem;
  height: 29.8rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.smart-lock__section-description-p {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2.8rem;
  max-width: 62.7rem;
}

.smart-lock__section-bottom .h3 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.7rem;
  margin-top: 4.7rem;
}

.smart-lock__section-bottom-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.4rem;
}

.smart-lock__section-bottom-features-col {
  width: 100%;
}

.smart-lock__section-bottom-features-col:first-of-type {
  max-width: 50.9rem;
}

.smart-lock__section-bottom-features-col:nth-of-type(2) {
  max-width: 47.8rem;
}

.smart-lock__section-bottom-features-item {
  margin-bottom: 1.7rem;
}

.smart-lock__section-bottom-features-item:last-of-type {
  margin-bottom: 0;
}

.smart-lock__section-bottom-features-item p {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.smart-lock__section-bottom-features-item p b {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.smart-lock__section-bottom-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.7rem;
  margin-bottom: 4.5rem;
}

.smart-lock__section-bottom-ul ul {
  margin: 0;
  padding: 0 1.8rem;
}

.smart-lock__section-bottom-ul li {
  font-size: 1.8rem;
  line-height: 1.5625;
}

.smart-lock__section--1 .smart-lock__section-description-col {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.smart-lock__section--1 .smart-lock__section-description-col:first-of-type {
  max-width: 27.4rem;
  width: 100%;
}

.smart-lock__section--1 .smart-lock__section-description-col:nth-of-type(2) {
  max-width: 31.6rem;
  width: 100%;
}

.smart-lock__section--1 .smart-lock__section-description {
  padding-right: 1.8rem;
}

.smart-lock__section--1 .smart-lock__section-bottom {
  margin: 4.3rem 0 1rem;
}

.smart-lock__section--2 .smart-lock__section-description-col {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.smart-lock__section--2 .smart-lock__section-description-col:first-of-type {
  max-width: 26rem;
  width: 100%;
}

.smart-lock__section--2 .smart-lock__section-description-col:nth-of-type(2) {
  max-width: 31.1rem;
  width: 100%;
}

.smart-lock__section--2 .smart-lock__section-description {
  padding-right: 3rem;
}

.smart-lock__section--2 .smart-lock__section-description .h2 {
  margin-bottom: 2.8rem;
}

.smart-lock__section--2 .smart-lock__section-bottom {
  margin: 3.7rem 0 1rem;
  padding-right: 5.8rem;
}

.smart-lock__section--3 .smart-lock__section-description .h2 {
  margin-bottom: 1.4rem;
}

.smart-lock__section--3 .smart-lock__section-description-col:first-of-type {
  max-width: 28.6rem;
  width: 100%;
}

.smart-lock__section--3
  .smart-lock__section-description-col:first-of-type
  .smart-lock__section-description-item:last-of-type
  p:last-of-type {
  margin-bottom: 0;
}

.smart-lock__section--3
  .smart-lock__section-description-col:first-of-type
  .smart-lock__section-description-item
  p {
  margin-bottom: 0.4rem;
}

.smart-lock__section--3 .smart-lock__section-description-col:nth-of-type(2) {
  max-width: 32.4rem;
  width: 100%;
}

.smart-lock__section--3 .smart-lock__section-description {
  padding-right: 2rem;
}

.smart-lock__section--3 .smart-lock__section-bottom {
  margin-bottom: 2rem;
}

.smart-lock__section--4 .smart-lock__section-description .h2 {
  margin-bottom: 1.4rem;
}

.smart-lock__section--4 .smart-lock__section-description-p {
  margin-bottom: 4.9rem;
}

.smart-lock__section--4 .smart-lock__section-description-col:first-of-type {
  max-width: 28.6rem;
  width: 100%;
}

.smart-lock__section--4
  .smart-lock__section-description-col:first-of-type
  .smart-lock__section-description-item:last-of-type
  p:last-of-type {
  margin-bottom: 0;
}

.smart-lock__section--4
  .smart-lock__section-description-col:first-of-type
  .smart-lock__section-description-item
  p {
  margin-bottom: 0.4rem;
}

.smart-lock__section--4 .smart-lock__section-description-col:nth-of-type(2) {
  max-width: 32.4rem;
  width: 100%;
}

.smart-lock__section--4 .smart-lock__section-description {
  padding-right: 2rem;
}

.smart-lock__section--4 .smart-lock__section-bottom {
  margin-bottom: 2rem;
}

.smart-lock__section--5 .smart-lock__section-description .h2 {
  margin-bottom: 0.9rem;
}

.smart-lock__section--5 .smart-lock__section-description-col:first-of-type {
  max-width: 28.6rem;
  width: 100%;
}

.smart-lock__section--5
  .smart-lock__section-description-col:first-of-type
  .smart-lock__section-description-item:last-of-type
  p:last-of-type {
  margin-bottom: 0;
}

.smart-lock__section--5
  .smart-lock__section-description-col:first-of-type
  .smart-lock__section-description-item
  p {
  margin-bottom: 0.4rem;
}

.smart-lock__section--5 .smart-lock__section-description-col:nth-of-type(2) {
  max-width: 32.4rem;
  width: 100%;
}

.smart-lock__section--5 .smart-lock__section-description {
  padding-right: 2rem;
}

.smart-lock__section--5 .smart-lock__section-bottom {
  margin-bottom: 2rem;
}

.smart-lock__section--6 .smart-lock__section-description .h2 {
  margin-bottom: 1.9rem;
}

.smart-lock__section--6 .smart-lock__section-description-col:first-of-type {
  max-width: 28.6rem;
  width: 100%;
}

.smart-lock__section--6 .smart-lock__section-description-col:nth-of-type(2) {
  max-width: 32.4rem;
  width: 100%;
}

.smart-lock__section--6 .smart-lock__section-description {
  padding-right: 2rem;
  padding-top: 0;
}

.smart-lock__section--6 .smart-lock__section-bottom {
  margin-bottom: 2rem;
}

.smart-lock__section--7 .smart-lock__section-description .h2 {
  margin-bottom: 1.2rem;
}

.smart-lock__section--7 .smart-lock__section-description {
  padding-right: 2rem;
  padding-top: 0;
}

.smart-lock__section--7 .smart-lock__section-description-item {
  margin-bottom: 0;
}

.smart-lock__section--7 .smart-lock__section-bottom {
  margin-bottom: 2rem;
  padding-right: 10rem;
}

.smart-lock__section--7 .smart-lock__section-description-p {
  margin-bottom: 2rem;
}

.smart-lock__section--8 .smart-lock__section-description .h2 {
  margin-bottom: 1.2rem;
}

.smart-lock__section--8 .smart-lock__section-description {
  padding-right: 2rem;
  padding-top: 0;
}

.smart-lock__section--8 .smart-lock__section-description-item {
  margin-bottom: 0;
}

.smart-lock__section--8 .smart-lock__section-bottom {
  margin-bottom: 2rem;
  padding-right: 9rem;
}

.smart-lock__section--8 .smart-lock__section-description-p {
  margin-bottom: 2rem;
}

.smart-lock__section--9 .smart-lock__section-description .h2 {
  margin-bottom: 1.2rem;
}

.smart-lock__section--9 .smart-lock__section-description {
  padding-right: 2rem;
  padding-top: 0;
}

.smart-lock__section--9 .smart-lock__section-bottom {
  margin-bottom: 2rem;
  padding-right: 9rem;
}

.smart-lock__section--9 .smart-lock__section-description-p {
  margin-bottom: 2rem;
}

.smart-lock__section--9 .smart-lock__section-description-col {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.smart-lock__section-description-chars {
  width: 100%;
}

.smart-lock__section-description-chars-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 1.8rem;
  margin-bottom: 0.4rem;
}

.smart-lock__section-description-chars-item:last-of-type {
  margin-bottom: 0;
}

.smart-lock__section-description-chars-item span {
  font-size: 1.6rem;
}

.smart-lock__section-description-chars-item span:first-of-type {
  font-weight: 300;
  max-width: 30rem;
  width: 100%;
}

.smart-lock__section-description-chars-item span:nth-of-type(2) {
  font-weight: 500;
  max-width: 100%;
  width: 100%;
}

.smart-lock__section-bottom-gray {
  background: rgba(31, 34, 41, 0.05);
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.2rem;
  margin: 2rem 5rem 0;
  padding: 3rem 2rem 4rem 12.1rem;
}

.smart-lock__section-bottom-gray .h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.smart-lock__section-bottom-gray-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.smart-lock__section-bottom-gray-col p {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.smart-lock__section-bottom-gray-col p:last-of-type {
  margin-bottom: 0;
}

.smart-lock__section-description-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  padding: 1.1rem 0 0 17.1rem;
}

.smart-lock__section-description-items .smart-lock__section-description-item {
  width: 100%;
}

.smart-lock__section-description-items
  .smart-lock__section-description-item:first-of-type {
  max-width: 23.9rem;
}

.smart-lock__section-description-items
  .smart-lock__section-description-item:nth-of-type(2) {
  max-width: 26.9rem;
}

.smart-lock__section-description-items
  .smart-lock__section-description-item:nth-of-type(3) {
  left: -0.6rem;
  max-width: 20.7rem;
  position: relative;
}

.smart-lock__section-description-items
  .smart-lock__section-description-item:nth-of-type(4) {
  left: 7.5rem;
  max-width: 26.9rem;
  position: relative;
}

.metalcard {
  padding-bottom: 7.6rem;
}

.truncate-content {
  position: relative;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}

.truncate-text {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.card-tovar__description-text-bg {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(hsla(0, 0%, 100%, 0)),
    to(#fff)
  );
  background: linear-gradient(hsla(0, 0%, 100%, 0), #fff);
  bottom: 0;
  height: 90px;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  z-index: 1;
}

.truncate-ellipsis {
  font-weight: 700;
  margin-left: 0.3rem;
}

.truncate-description-toggle {
  background: transparent;
  border: none;
  color: #28b19a;
  cursor: pointer;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
}

.metalcard__design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5.1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: -2.3rem;
}

.metalcard__design-title {
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.metalcard__design-items {
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  gap: 0.9rem;
}

.metalcard__design-item,
.metalcard__design-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
}

.metalcard__design-item {
  background: #f8f8f8;
  border-radius: 0.9rem;
  height: 8.3rem;
  max-width: 16.1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.metalcard__design-item:hover {
  background: #f0f0f0;
}

.metalcard__design-item:first-of-type .icon {
  height: 4.6rem;
  width: 2.1rem;
}

.metalcard__design-item:nth-of-type(2) .icon {
  height: 5.4rem;
  width: 2.1rem;
}

.metalcard__design-item:nth-of-type(3) .icon {
  height: 4.6rem;
  width: 3.3rem;
}

.metalcard__design-item:nth-of-type(4) .icon {
  height: 5.4rem;
  width: 3.7rem;
}

.metalcard__design-item:nth-of-type(5) .icon {
  height: 5.4rem;
  width: 4.3rem;
}

.metalcard__design-item:nth-of-type(6) .icon {
  height: 4.6rem;
  width: 4.4rem;
}

.metalcard__design-item:nth-of-type(7) .icon {
  height: 5.4rem;
  width: 4.5rem;
}

.metalcard__design-item .icon {
  max-height: 6.6rem;
  max-width: 5.6rem;
}

.metalcard__design-item.is-active {
  background: #28b19a;
}

.metalcard__design-item.is-active .icon {
  color: #fff;
}

.metalcard__images,
.metalcard__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.metalcard__images {
  max-width: 60.8rem;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 5.6rem;
  justify-content: space-between;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.metalcard__image-item {
  max-width: 100%;
  width: 100%;
}

.metalcard__image {
  height: 58.2rem;
  position: relative;
  width: 100%;
}

.metalcard__image img {
  -o-object-fit: contain;
  object-fit: contain;
}

.metalcard__image img,
.metalcard__image-furn {
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.metalcard__image-furn {
  left: 0;
  position: absolute;
  top: 0;
}

.metalcard__image-download {
  background: url(../img/icons/download2.svg) 50% / contain no-repeat;
  bottom: 1.4rem;
  cursor: pointer;
  height: 3.8rem;
  position: absolute;
  right: 1.3rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 3.8rem;
  z-index: 2;
}

.metalcard__image-download:hover {
  -webkit-transform: translateY(0.5rem);
  -ms-transform: translateY(0.5rem);
  transform: translateY(0.5rem);
}

.metalcard__image-title {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.195;
  margin-bottom: 0.5rem;
  margin-top: 2.2rem;
  text-align: center;
  text-transform: uppercase;
}

.metalcard-change {
  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-bottom: 1rem;
  text-align: center;
}

.metalcard-change__btn {
  height: 5rem;
  width: 100%;
}

.metalcard-change__title {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.195;
  margin-top: 0.3rem;
  opacity: 0.5;
}

.metalcard__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.3;
  padding-left: 7.4rem;
  padding-right: 1.6rem;
  width: 100%;
}

.metalcard__content h2 {
  font-size: 2.1rem;
}

.metalcard__content h2,
.metalcard__content h3 {
  font-weight: 500;
  line-height: 1.195;
  margin: 1.5rem 0;
}

.metalcard__content h3 {
  color: #1f2229;
  font-size: 2rem;
}

.metalcard__content li,
.metalcard__content p {
  color: #626469;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
}

.metalcard__content .card-actions {
  margin-bottom: 2.1rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: auto;
}

.metalcard__description {
  border-radius: 4px;
  -webkit-box-shadow: 0 0 2rem 0 rgba(31, 34, 41, 0.07);
  box-shadow: 0 0 2rem 0 rgba(31, 34, 41, 0.07);
  padding: 3.1rem 2.3rem 3rem 2.5rem;
}

.metalcard__title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
}

.metalcard__details {
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 2rem 0 rgba(31, 34, 41, 0.07);
  box-shadow: 0 0 2rem 0 rgba(31, 34, 41, 0.07);
  padding: 2rem 1.4rem 2rem 2.5rem;
}

.metalcard__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.metalcard__price > span {
  font-size: 2rem;
  font-weight: 500;
}

.metalcard__price > span:nth-of-type(2) {
  font-size: 2rem;
}

.metalcard__price > span:nth-of-type(2) > span:first-child {
  font-size: 3.5rem;
  font-weight: 900;
}

.metalcard__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.4rem;
  gap: 3.6rem;
  margin-top: 1.1rem;
}

.metalcard__btn {
  background: #ab3b66;
  border-radius: 0.4rem;
  height: 5rem;
  max-width: 30.3rem;
  width: 100%;
}

.metalcard__content-flex {
  gap: 3.5rem;
}

.metalcard__content-flex,
.metalcard__dates span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.metalcard__dates span {
  font-size: 1.6rem;
  font-weight: 300;
  gap: 0.9rem;
  line-height: 1.2;
}

.metalcard__dates span:before {
  background: url(../img/icons/date2.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 2.4rem;
  width: 2.4rem;
}

.metalcard__guarantee span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.1rem;
}

.metalcard__guarantee span:before {
  background: url(../img/icons/guarantee2.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 2.3rem;
  width: 2.2rem;
}

.metalcard__copy {
  margin-top: 1.6rem;
}

.metalcard__copy p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
}

.metalcard__copy p:last-of-type {
  margin-bottom: 0;
}

.metalcard__tabs {
  margin-bottom: 8.9rem;
  margin-top: 6.1rem;
}

.metalcard__tabs-header {
  gap: 1rem;
  margin-bottom: 4.6rem;
}

.metalcard__tabs-header,
.metalcard__tabs-header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.metalcard__tabs-header-item {
  background: #f2f2f2;
  border-radius: 0.4rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  justify-content: center;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.metalcard__tabs-header-item:hover {
  background: #eaeaea;
}

.metalcard__tabs-header-item.btn-active {
  background: #e2e2e2;
  border: 1px solid rgba(31, 34, 41, 0.2);
  color: #1f2229;
}

.metalcard__tabs-body .tabs-content {
  display: none;
}

.metalcard__tabs-body .tabs-content.tab-active {
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
  display: block;
}

.metalcard-tab-description {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  margin-left: 3.4rem;
  max-width: 77.7rem;
}

.metalcard-tab-description li,
.metalcard-tab-description p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.metalcard-tab-description h2,
.metalcard-tab-description h3,
.metalcard-tab-description h4 {
  font-weight: 500;
  margin: 4rem 0 1rem;
}

.metalcard-tab-description h2 {
  font-size: 1.8rem;
}

.metalcard-tab-description h3 {
  font-size: 1.7rem;
}

.metalcard-tab-description h4 {
  font-size: 1.6rem;
}

.metalcard-tab-description ol,
.metalcard-tab-description ul {
  margin: 0 0 3.3rem;
  padding: 0 2.3rem;
}

.metalcard-tab-lock {
  display: block;
  gap: 0;
}

.metalcard-tab-lock__item {
  gap: 4.2rem;
  -ms-flex-align: center;
  margin-bottom: 1.6rem;
  padding-right: 7rem;
}

.metalcard-tab-lock__image,
.metalcard-tab-lock__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.metalcard-tab-lock__image {
  border: 1px solid rgba(31, 34, 41, 0.2);
  border-radius: 0.9rem;
  height: 25.5rem;
  max-width: 34.7rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 2.8rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
}

.metalcard-tab-lock__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.metalcard-tab-lock__text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
}

.metalcard-tab-lock__text .h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.33333;
  margin-bottom: 2.2rem;
}

.metalcard-tab-lock__text .h3 span {
  display: block;
  font-weight: 700;
}

.metalcard-tab-lock__text li,
.metalcard-tab-lock__text p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
}

.metalcard-tab-lock__text li:last-of-type,
.metalcard-tab-lock__text p:last-of-type {
  margin-bottom: 0;
}

.metalcard-tab-furn__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4.2rem;
  margin-bottom: 1.6rem;
}

.metalcard-tab-furn__item:last-of-type {
  margin-bottom: 0;
}

.metalcard-tab-furn__item-image {
  border: 1px solid rgba(31, 34, 41, 0.2);
  border-radius: 0.9rem;
  height: 25.5rem;
  max-width: 34.7rem;
  width: 100%;
  -webkit-box-flex: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4.2rem;
}

.metalcard-tab-furn__item-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.metalcard-tab-furn__item-text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  padding-top: 2.5rem;
}

.metalcard-tab-furn__item-text .h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.33333;
  margin-bottom: 1.1rem;
}

.metalcard-tab-furn__item-text .h3 span {
  display: block;
  font-weight: 700;
}

.metalcard-tab-furn__item-text li,
.metalcard-tab-furn__item-text p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  max-width: 80.3rem;
}

.metalcard-tab-furn__item-text li:last-of-type,
.metalcard-tab-furn__item-text p:last-of-type {
  margin-bottom: 0;
}

.metalcard-tab-photos {
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(4, 1fr);
}

.metalcard-tab-photo {
  border-radius: 0.9rem;
  height: 25.5rem;
  overflow: hidden;
  width: 100%;
}

.metalcard-tab-photo img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.metalcard.design--osfb .metalcard__content,
.metalcard.design--osfbv .metalcard__content,
.metalcard__holder.design--osfb .metalcard__content,
.metalcard__holder.design--osfbv .metalcard__content {
  padding-left: 2.5rem;
}

.metalcard.design--dsfbb .metalcard__content,
.metalcard__holder.design--dsfbb .metalcard__content {
  padding-left: 3.7rem;
}

.metalcard.design--ds .metalcard__content,
.metalcard__holder.design--ds .metalcard__content {
  padding-left: 1.7rem;
}

.metalcard.design--dsf .metalcard__content,
.metalcard__holder.design--dsf .metalcard__content {
  padding-left: 4rem;
}

.metalcard__reverse {
  max-width: 59.4rem;
  width: 100%;
}

.metalcard__reverse-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.metalcard__reverse-front {
  max-width: 40.3rem;
  width: 100%;
  -webkit-box-flex: 0;
  cursor: pointer;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.metalcard__reverse-front-image .metalcard__image {
  height: 58rem;
}

.metalcard__reverse-front-image .metalcard__image-download {
  bottom: 2.9rem;
  right: 1.9rem;
}

.metalcard__reverse-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.4rem;
  max-width: 40.3rem;
  width: 100%;
  -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;
}

.metalcard__reverse-front-image-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.195;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.metalcard__reverse-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
}

.metalcard__reverse-wrap .metalcard-change {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
}

.metalcard__reverse-wrap .metalcard-change--metal-frame {
  max-width: 22.9rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.metalcard__reverse-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 15.3rem;
  width: 100%;
  -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;
  cursor: pointer;
  padding-top: 2.2rem;
}

.metalcard__reverse-back .metalcard__image-download {
  display: none;
}

.metalcard__reverse-back-image-title {
  color: #1f2229;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.195;
  margin: 1.2rem -1rem 0;
  text-align: center;
  text-transform: uppercase;
}

.metalcard__reverse-back-image {
  position: relative;
}

.metalcard__reverse-back-image .metalcard__image {
  height: auto;
  opacity: 0.65;
}

.metalcard__reverse-icon {
  background: url(../img/icons/reverse-icon2.svg) 50% / contain no-repeat;
  height: 2.9rem;
  left: -3rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 2.9rem;
}

.doors-slider__header .h2 {
  font-weight: 500;
}

.catalog-slider__slider,
.doors-slider__slider {
  overflow: hidden;
}

.ed-catalog-item__buttons .ed-catalog-item__pickup {
  background: #1f2229;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 400;
  height: 5.2rem;
  max-width: 15.2rem;
  text-transform: uppercase;
  width: 100%;
}

.ed-catalog-item__buttons .ed-catalog-item__pickup:hover {
  background: #fff;
  border: 1px solid #1f2229;
  color: #1f2229;
}

.ed-catalog-item__buttons .ed-catalog-item__order {
  background: #28b19a;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 400;
  height: 5.2rem;
  max-width: 15.2rem;
  text-transform: uppercase;
  width: 100%;
}

.ed-catalog-item__buttons .ed-catalog-item__order:hover {
  background: #25a58f;
  border: 1px solid #28b19a;
  color: #fff;
}

.interior-catalog__header p {
  font-size: 1.6rem;
}

.interior-catalog__nav {
  margin-top: 3.4rem;
}

.interior-catalog__nav,
.interior-catalog__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.interior-catalog__nav-menu-title {
  font-size: 1.6rem;
}

.interior-catalog__nav-menu-list {
  border-bottom: 1px solid rgba(31, 34, 41, 0.4);
  padding: 0 0 0.4rem;
}

.interior-catalog__nav-menu-item {
  font-size: 1.6rem;
}

.interior-catalog__nav-menu-item:hover a {
  color: #b5191e;
}

.interior-catalog__nav-menu-item:after {
  background: #b5191e;
  top: calc(100% + 1px);
}

.interior-catalog__section {
  margin-bottom: 6.6rem;
}

.interior-catalog__section-download-title {
  font-size: 1.6rem;
  font-weight: 500;
}

.interior-catalog__section-download-item,
.interior-catalog__section-download-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.interior-catalog__section-download-item {
  border: 1.5px solid #1f2229;
  border-radius: 6.6rem;
  width: 21.5rem;
}

.interior-catalog__section-download-item span {
  font-size: 1.4rem;
  font-weight: 600;
}

.interior-catalog__section-download-item span:before {
  background: url(../img/icons/pdf-icon.svg) 50% / contain no-repeat;
}

.interior-catalog__section-download-item--red {
  border-color: #b5191e;
}

.interior-catalog__section-grid {
  gap: 2.2rem 2rem;
  grid-template-columns: repeat(4, 1fr);
}

.interior-item:hover .interior-item__image:after {
  opacity: 1;
}

.interior-item__image {
  height: 33.5rem;
}

.interior-item__image:after {
  background: rgba(31, 34, 41, 0.94);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.interior-item__steaker,
.interior-item__steakers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.interior-item__footer {
  gap: 1.2rem;
}

.interior-catalog--v2 .interior-catalog__header p {
  max-width: 112.2rem;
}

.interior-catalog__header-flex {
  margin-bottom: 2.3rem;
}

.interior-catalog__header-flex,
.interior-catalog__popular {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.interior-catalog__popular {
  margin-bottom: 2.8rem;
}

.interior-catalog__popular-title {
  font-size: 1.6rem;
}

.interior-catalog__popular-item {
  -webkit-box-shadow: 0 0 9px 0 rgba(49, 54, 61, 0.1);
  box-shadow: 0 0 9px 0 rgba(49, 54, 61, 0.1);
  padding: 2rem 0;
}

.interior-catalog__popular-item.is--active,
.interior-catalog__popular-item:hover {
  background: var(--red);
}

.card__header {
  margin-bottom: 5.1rem;
}

.card__area-mobile,
.card__area-mobile-fixed {
  display: none;
}

.card__area-mobile-fixed,
.card__area-mobile-fixed.is-active {
  -webkit-box-shadow: 0 0 9px 0 rgba(49, 54, 61, 0.1);
  box-shadow: 0 0 9px 0 rgba(49, 54, 61, 0.1);
}

.card__area-mobile-fixed {
  z-index: var(--zIndexCardBase);
}

.card__aside-sticky {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card__title {
  font-size: 2.2rem;
  margin-top: 3.3rem;
}

.card__price {
  margin-top: 2.4rem;
}

.card__buttons {
  gap: 1.1rem;
}

.card__buttons .catalog-item__order {
  background: #31363d;
  border-radius: 6.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  height: 4.6rem;
}

.card__buttons .catalog-item__order:hover {
  background: #484f59;
}

.card__buttons .catalog-item__to-cart {
  border-radius: 6.6rem;
  height: 4.6rem;
  max-width: 9.3rem;
}

.card__buttons .catalog-item__to-cart:hover {
  background: #da2e34;
}

.card__info {
  margin-top: 3.2rem;
}

.card__info,
.card__info-p {
  margin-left: 3rem;
  max-width: 26.9rem;
}

.card__info-p {
  font-weight: 300;
  margin-top: 2rem;
}

.card__info-item {
  color: rgba(31, 34, 41, 0.5);
  font-weight: 300;
}

.card__content {
  padding-left: 12rem;
}

.card__colors-title {
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.card__color {
  border-radius: 0.6rem;
}

.card__offer-image {
  height: 24.1rem;
}

.card__offer-title {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.4rem;
}

.about-collection__area {
  padding: 0 4.8rem;
}

.about-collection__slider .nav-prev {
  background: hsla(0, 0%, 100%, 0.2);
  height: 6.3rem;
  left: 2.6rem;
  width: 6.3rem;
}

.about-collection__slider .nav-next {
  background: hsla(0, 0%, 100%, 0.2);
  height: 6.3rem;
  right: 2.6rem;
  width: 6.3rem;
}

.opening-options__footer .link {
  font-weight: 600;
}

.opening-options__btn-more {
  background: #31363d;
  max-width: 20.2rem;
}

.ws-contact {
  padding-bottom: 32.5rem;
}

.ws-contact__regions-title {
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: center;
}

.ws-contact__opts-values li {
  border-radius: 0.9rem;
  -webkit-box-shadow: 0 0 9px 0 rgba(49, 54, 61, 0.1);
  box-shadow: 0 0 9px 0 rgba(49, 54, 61, 0.1);
}

.ws-contact__opts-values li.is--active {
  background: #b52025;
}

.ws-contact__area,
.ws-contact__list {
  margin-top: 2.5rem;
}

.ws-contact__menu {
  background: #fafafa;
}

.ws-contact__menu-name:after {
  background: url(../img/icons/contacts-plus.svg) 50% / contain no-repeat;
}

.ws-contact__menu-item.is--opened .ws-contact__menu-name:after {
  background: url(../img/icons/contacts-minus.svg) 50% / contain no-repeat;
}

.ws-contact__menu-desc a span {
  color: #b52025;
  font-size: 1.2rem;
}

.ws-contact__header {
  background: #e2e2e2;
}

.ws-contact__menu-name {
  font-weight: 600;
}

.ws-contact__list-title {
  font-size: 2.8rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.ws-contact__list-content {
  gap: 1.4rem 0.5rem;
}

.ws-contact__list-item {
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 15px 0 rgba(31, 34, 41, 0.15);
  box-shadow: 0 0 15px 0 rgba(31, 34, 41, 0.15);
  padding: 2.9rem 1.9rem;
}

.ws-contact__list-item.item--fe0000 .ws-contact__list-name i {
  color: #fe0000;
}

.ws-contact__list-item.item--83cc1a .ws-contact__list-name i {
  color: #83cc1a;
}

.ws-contact__list-item.item--929292 .ws-contact__list-name i {
  color: #929292;
}

.ws-contact__list-item.item--6a1bcc .ws-contact__list-name i {
  color: #6a1bcc;
}

.ws-contact__list-item.item--ff9c00 .ws-contact__list-name i {
  color: #ff9c00;
}

.ws-contact__list-item.item--0078bf .ws-contact__list-name i {
  color: #0078bf;
}

.ws-contact__list-item.item--ff05dd .ws-contact__list-name i {
  color: #ff05dd;
}

.ws-contact__list-item.item--3b3b3b .ws-contact__list-name i {
  color: #3b3b3b;
}

.ws-contact__list-prop.prop--address .ws-contact__prop-value a span {
  color: #b52025;
  font-size: 1.2rem;
}

.hidden-doors__header {
  margin-bottom: 3.5rem;
  max-width: 110rem;
}

.hidden-doors__header .h1 {
  margin-bottom: 1.6rem;
}

.hidden-doors__header p {
  font-size: 1.6rem;
}

.hidden-doors__hero-item:first-of-type .hidden-doors__hero-item-image {
  border-radius: 0.9rem 0 0 0.9rem;
}

.hidden-doors__hero-item:last-of-type .hidden-doors__hero-item-image {
  border-radius: 0 0.9rem 0.9rem 0;
}

.hidden-doors__vantages {
  border-bottom: 1px solid rgba(31, 34, 41, 0.3);
  border-top: 1px solid rgba(31, 34, 41, 0.3);
  margin: 8.6rem 0;
  padding: 3.3rem 8.3rem 4.7rem;
}

.hidden-doors__vantages,
.hidden-doors__vantages-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hidden-doors__vantages-item:first-of-type {
  max-width: 17.4rem;
}

.hidden-doors__vantages-item-num {
  color: var(--red);
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.hidden-doors__vantages-item-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 0.88;
}

.hidden-doors__vantages-item-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
  opacity: 0.7;
}

.hidden-doors__tabs-outer-image {
  border-radius: 0.9rem 0 0 0.9rem;
}

.hidden-doors__tabs-outer-text p {
  font-size: 1.6rem;
  line-height: 1.4375;
}

.hidden-doors__tabs-outer-header .h2 {
  font-size: 3.5rem;
}

.hidden-doors__tabs-outer-price {
  font-size: 1.6rem;
  font-weight: 400;
}

.hidden-doors__tabs-outer-price span {
  color: var(--red);
  font-weight: 700;
  padding: 0 0.5rem;
}

.hidden-doors__tabs-outer-btn-more {
  font-size: 1.6rem;
  gap: 1.6rem;
}

.hidden-doors__tabs-outer-btn-more .icon {
  height: 0.8rem;
  width: 1.5rem;
}

.hidden-doors__tabs-outer-btn-callback {
  border: 2px solid var(--black);
  font-size: 1.6rem;
}

.hidden-primed-doors__left {
  background: url(../img/hidden-primed-doors-hero-bg.jpg) 50% / cover no-repeat;
}

.hidden-doors__gallery-slider-area .slider-nav__prev {
  background: url(../img/icons/nav-slider-prev.svg) 50% / contain no-repeat;
}

.hidden-doors__gallery-slider-area .slider-nav__next {
  background: url(../img/icons/nav-slider-next.svg) 50% / contain no-repeat;
}

.hidden-doors__video .h2 {
  font-size: 3.5rem;
  text-align: center;
}

.video-slider {
  margin-top: 5.3rem;
}

.designers-reviews .h2 {
  font-size: 3.5rem;
  margin-bottom: 0;
  text-align: center;
}

.designers-reviews__area {
  max-width: 116.4rem;
  padding: 4.6rem 10rem;
}

.designers-reviews__slider .slider-nav__prev {
  background: url(../img/icons/nav-slider-prev.svg) 50% / contain no-repeat;
}

.designers-reviews__slider .slider-nav__next {
  background: url(../img/icons/nav-slider-next.svg) 50% / contain no-repeat;
}

.designers-reviews__slide-avatar {
  height: 28.9rem;
  max-width: 29rem;
}

.designers-reviews__slide-text p {
  font-size: 1.6rem;
}

.video-slide__preview {
  border-radius: 1.3rem;
}

.video-slide__play {
  background: url(../img/icons/video-play.svg) 50% / contain no-repeat;
  height: 3.7rem;
  width: 4.9rem;
}

.video-slide__title {
  font-size: 2.5rem;
  font-weight: 600;
}

.glass-hidden-doors__bl3 {
  padding: 6.1rem 4.5rem 0;
}

.custom-table__col,
.custom-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.custom-table-text--width-sup {
  padding-left: 4.7rem;
}

.custom-table-text--width-sup sup {
  left: -1rem;
}

.footer-form__text .h2 {
  font-size: 3.5rem;
}

.footer-form__check .checkbox-icon:after {
  background: url(../img/icons/check-v2.svg) 50% / contain no-repeat;
}

.footer-form__bottom-btn {
  border-radius: 5rem;
}

.footer-form__recapcha .checkbox-icon:after {
  background: url(../img/icons/check-v2.svg) 50% / contain no-repeat;
}

.download-catalog__area {
  background: rgba(244, 246, 247, 0.8);
}

.download-catalog__area .h2 {
  font-size: 3.5rem;
  margin-bottom: 0;
  text-align: center;
}

.download-catalog__grid {
  margin-top: 5.2rem;
}

.download-catalog__grid,
.download-catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.download-catalog__item .link {
  font-size: 1.6rem;
  font-weight: 500;
}

.download-catalog__item-image {
  margin-bottom: 3.2rem;
}

.sliding-partitions__header {
  max-width: 77rem;
}

.sliding-partitions__hero-slider .slider-nav__prev {
  background: url(../img/icons/nav-prev-v2.svg) 50% / contain no-repeat;
}

.sliding-partitions__hero-slider .slider-nav__next {
  background: url(../img/icons/nav-next-v2.svg) 50% / contain no-repeat;
}

.sliding-partitions__tabs {
  background: #f6f8f9;
  padding: 2rem;
}

.sliding-partitions__tab--reverse .sliding-partitions__tab-outer-image {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.sliding-partitions__tab--reverse .sliding-partitions__tab-outer {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.sliding-partitions__tab--reverse .sliding-partitions__tab-outer-text {
  text-align: left;
}

.sliding-partitions__tab--reverse .sliding-partitions__tab-outer-flex,
.sliding-partitions__tab--reverse .sliding-partitions__tab-outer-text {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.sliding-partitions__tab-outer {
  gap: 5.4rem;
  padding: 3rem 2.6rem;
}

.sliding-partitions__tab-outer-text {
  max-width: 48.1rem;
}

.sliding-partitions__tab-outer-text p {
  font-size: 1.6rem;
  line-height: 1.375;
}

.sliding-partitions__tab-outer-title {
  font-size: 2.5rem;
  font-weight: 400;
}

.sliding-partitions__tab-outer-price span {
  font-size: 2rem;
}

.sliding-partitions__tab-outer-price span span {
  font-size: 2.5rem;
  font-weight: 600;
}

.sliding-partitions__tab-outer-btn {
  font-weight: 600;
}

.sliding-partitions-inner .h2,
.sliding-partitions-inner .h3 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.sliding-partitions-inner__column-image,
.sliding-partitions-inner__column-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partitions-fantom__bl4-flex,
.partitions-fantom__bl4-left,
.wooden-interior__bl3,
.wooden-interior__bl4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.zoning-loft__ral,
.zoning-loft__rals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart {
  padding-bottom: 12.5rem;
}

.cart__header-download span:before {
  background: url(../img/icons/cart-download.svg) 50% / contain no-repeat;
}

.cart__header-print span:before {
  background: url(../img/icons/print.svg) 50% / contain no-repeat;
}

.cart__item,
.cart__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart__item-price,
.cart__item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.cart__item-to-favorites {
  position: static;
}

.cart__form-right .cart__form-input--textarea,
.cart__form-right .textarea {
  height: 100%;
}

.cart__aside-area {
  border-radius: 0.6rem;
  top: 10rem;
}

.cart__aside-order-btn {
  background: #b5191e;
  border-radius: 5rem;
}

.cart__aside-order-btn.btn--disabled {
  background: rgba(181, 25, 30, 0.5);
}

.cart__aside-copy,
.cart__aside-copy a {
  color: rgba(31, 34, 41, 0.5);
}

.cart__fixed-mobile {
  z-index: 400;
}

.bt-minus {
  background: url(../img/icons/quantity-minus.svg) 50%/2.5rem no-repeat;
}

.bt-minus,
.quantity {
  margin: 0;
  padding: 0;
}

.bt-plus {
  background: url(../img/icons/quantity-plus.svg) 50%/2.5rem no-repeat;
}

.penal a {
  display: block;
  position: relative;
}

.penal svg {
  background: hsla(0, 0%, 100%, 0.678);
  border-radius: 10px;
  padding: 5px 10px;
  position: absolute;
  right: 25px;
  top: 25px;
  width: 170px;
  z-index: 1;
}

.pencils-list_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.pencils-list__item {
  margin-bottom: 20px;
  margin-right: 2%;
  width: 32%;
}

.pencils-list__item:nth-child(3n) {
  margin-right: 0;
}

.pencils-list__image {
  margin-bottom: 10px;
}

.pencils-list__image a {
  display: block;
  overflow: hidden;
  position: relative;
}

.pencils-list__image i {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  line-height: 1px;
  padding: 25% 0;
}

.pencils-list__image i:before {
  background: hsla(0, 0%, 96%, 0.7);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
}

.pencils-list__item:hover .pencils-list__image i:before {
  left: -100%;
}

.pencils-list__name a {
  color: #333;
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.grid {
  margin-bottom: 50px;
}

.widget-image-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.widget-image-text > .media {
  text-align: center;
  width: 49%;
}

.widget-image-text .media img {
  margin: 0 auto;
}

.widget-image-text .widget-text {
  width: 49%;
}

.widget-image-text .widget-text p {
  color: #666;
  font-weight: 400;
  line-height: 1.2;
}

.separated .showroom-details-link {
  background: transparent;
  border: 2px solid #1b56a2;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1b56a2;
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin: 0 auto 10px;
  padding: 15px 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

.widget-text h2 {
  color: #999;
  display: block;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  margin: 10px 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.widget-text h2.title {
  color: #333;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.widget-text h3 {
  color: #333;
  font-size: 21px;
  font-weight: 500;
  margin: 10px 0;
}

.widget-text a {
  color: #3498db;
}

.widget-embedded-video {
  height: 305px;
  margin: 10px auto;
}

.widget-image-text .media .media .wysiwyg h3 {
  font-size: 17px;
  line-height: 20px;
}

.three-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.three-col .widget-image {
  width: 32%;
}

.three-col .widget-image .media {
  margin-bottom: 10px;
}

.three-col .widget-image h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.separated-botom .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  margin: 20px 0;
}

.separated-botom .row .media {
  text-align: center;
  width: 18%;
}

.separated-botom .row .media img {
  margin: 0 auto;
}

.separated-botom .row .widget-text.graybg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  background-color: #f5f5f5;
  padding: 10px 40px;
  text-align: center;
}

.separated-botom .row .widget-text.graybg a {
  background: transparent;
  border: 2px solid #1b56a2;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1b56a2;
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin: 0 auto 10px;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

.separated-botom .row .widget-text.graybg strong {
  color: #004f9e;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.separated-botom .center-text h3 {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}

.separated-botom .center-text h3 a {
  background: transparent;
  border: 2px solid #1b56a2;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1b56a2;
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin: 15px auto 10px;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

.pencils-blist .b-block__title {
  font-size: 22px;
  margin-bottom: 50px;
}

.pencils-blist .b-block__title span {
  border-bottom: 2px solid #d1d2d3;
  padding: 0 15px 15px;
  text-align: center;
}

.pencils-blist_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.pencils-blist__item {
  margin-bottom: 35px;
  margin-right: 2.66%;
  width: 23%;
}

.pencils-blist__item:nth-child(4n) {
  margin-right: 0;
}

.pencils-blist__image {
  margin-bottom: 20px;
}

.pencils-blist__image a {
  display: block;
  text-align: center;
}

.pencils-blist__image i {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  -webkit-box-shadow:
    0 0 0 5px #d1d2d3,
    0 0 0 0 #1b56a2;
  box-shadow:
    0 0 0 5px #d1d2d3,
    0 0 0 0 #1b56a2;
  display: block;
  height: 130px;
  margin: 0 auto;
  overflow: hidden;
  width: 130px;
}

.pencils-blist__image i,
.pencils-blist__item:hover .pencils-blist__image i {
  -webkit-transition: box-shadow 0.2s;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition:
    box-shadow 0.2s,
    -webkit-box-shadow 0.2s;
}

.pencils-blist__item:hover .pencils-blist__image i {
  -webkit-box-shadow:
    0 0 0 5px #fff,
    0 0 0 15px #1b56a2;
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 15px #1b56a2;
}

.pencils-blist__name a {
  color: #8c8c8c;
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.pencils-detail__image {
  margin-bottom: 30px;
}

.pencils-detail__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.pencils-detail__menu li {
  border: 1px solid #1b56a2;
  color: #1b56a2;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 16px;
  list-style: none;
  margin: 0 0 30px;
  padding: 15px 30px;
  text-transform: uppercase;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.pencils-detail__menu li:hover {
  background: #1b56a2;
  color: #fff;
}

.pencils-detail__menu li:first-child {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

.pencils-detail__menu li:last-child {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.pencils-detail__text-head {
  border-bottom: 1px solid #1b56a2;
  color: #1b56a2;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.bigvideo {
  text-align: center;
}

.bigvideo .video {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.bigvideo .img-preview.playbtn {
  position: absolute;
  z-index: 1;
}

.bigvideo video {
  position: relative;
  width: 100%;
  z-index: 0;
}

.bigvideo .img-preview.playbtn:before {
  content: "\f144";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: absolute;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  color: #01509d;
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 70px;
  justify-content: center;
}

.download__list_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.download__list__item {
  margin: 0 5% 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 28%;
}

.download__list__item:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.download__list__image {
  margin-bottom: 15px;
}

.download__list__image a {
  -webkit-box-shadow: 0 0 30px -10px #000;
  box-shadow: 0 0 30px -10px #000;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.download__list__item:hover .download__list__image a {
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.671);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.671);
}

.download__list__image i {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: cover;
  display: block;
  line-height: 1px;
  padding: 71% 0;
}

.download__list__name a {
  display: block;
  text-align: center;
  text-decoration: none;
}

.ul {
  margin-bottom: 30px;
  padding: 0 20px;
}

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

.ul ul li {
  background: url(../img/listStyleIMG.png) no-repeat 0 4px;
  line-height: 25px;
  margin-bottom: 10px;
  padding-left: 25px;
}

.article-dveri-top {
  background-color: #636363;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.article-dveri-top .video {
  width: 50%;
}

.article-dveri-top .video a {
  display: block;
  height: 100%;
  position: relative;
}

.article-dveri-top .video i {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  line-height: 1px;
}

.article-dveri-top .video .play {
  background: url(../images/play.png) no-repeat 50%;
  border-radius: 55px;
  height: 65px;
  left: 0;
  margin: -33px auto auto;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -o-transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  width: 65px;
}

.article-dveri-top .video:hover .play {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
}

.article-dveri-top .dark_bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 5%;
  width: 50%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  color: #fff;
}

.article-dveri-top .dark_bg .body {
  font-size: 18px;
  line-height: 1.1;
}

.article-dveri-top .dark_bg .white_bullet {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-dveri-top .dark_bg .white_bullet li {
  font-size: 18px;
  line-height: 1.1;
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
}

.razdvizhnye-text2 {
  font-size: 17px;
  line-height: 19px;
  margin: 10px 10% 20px;
}

.razdvizhnye__list_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.razdvizhnye__list__item {
  margin-bottom: 20px;
  text-align: center;
  width: 23%;
}

.razdvizhnye__list__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

.razdvizhnye__list__text {
  font-size: 16px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.razdvizhnye__list__image i {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  line-height: 1px;
  padding: 20% 0;
}

.article-dveri-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  margin-bottom: 20px;
}

.article-dveri-bottom .col-left {
  text-align: center;
  width: 50%;
}

.article-dveri-bottom .col-left img {
  margin: 0 auto;
}

.article-dveri-bottom .col-right {
  width: 49%;
}

.article-dveri-rigth-text p {
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.razdvizhnye-text5 {
  padding: 20px 80px;
}

.razdvizhnye-text5 .where-buy_title {
  color: #404040;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 25px;
}

.razdvizhnye-text5 .where-buy_text {
  color: #404040;
  font-size: 17px;
  font-weight: 400;
}

.peregorodki-photo__list_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.peregorodki-photo__list__item {
  margin-bottom: 25px;
  margin-right: 2%;
  width: 32%;
}

.peregorodki-photo__list__item:nth-child(3n) {
  margin-right: 0;
}

.peregorodki-photo__list__image {
  margin-bottom: 10px;
}

.peregorodki-photo__list__image i {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  line-height: 1px;
  padding: 40% 0;
}

.peregorodki-photo__list__name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.peregorodki-derev__list {
  background-color: #f1f2f2;
  margin: 32px 0;
  padding: 32px 20px 0;
}

.peregorodki-derev__list_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.peregorodki-derev__list__item {
  margin-bottom: 30px;
  width: 15%;
}

.peregorodki-derev__list__image {
  margin-bottom: 15px;
}

.peregorodki-derev__list__image i {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  line-height: 1px;
  padding: 15% 0;
}

.peregorodki-derev__list__name {
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}

.peregorodki-variant__list_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.peregorodki-variant__list__item {
  margin-bottom: 25px;
  margin-right: 2%;
  width: 32%;
}

.peregorodki-variant__list__item:nth-child(3n) {
  margin-right: 0;
}

.peregorodki-variant__list__image i {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  display: block;
  line-height: 1px;
  padding: 15% 0;
}

.peregorodki-text2 .peregorodki-article_text-middle {
  margin-bottom: 25px;
  padding: 10px;
}

.peregorodki-text2 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  margin-bottom: 25px;
}

.peregorodki-text2 .row div {
  width: 48%;
}

.peregorodki-text2 .row div.p-4 {
  text-align: center;
}

.peregorodki-text2 .row div.p-4 img {
  margin: 0 auto;
}

.peregorodki-text2 p {
  font-size: 18px;
  line-height: 1.1;
}

.reviews__list__container {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.reviews__list__item {
  background-color: #f6f6f6;
  border-bottom: 1px solid #aeaeae;
  color: #000;
  font-size: 15px;
  line-height: 17px;
  padding: 10px;
}

.reviews__list__date {
  color: #ff5c5c;
  font-weight: 500;
}

.reviews__list__rating {
  margin-bottom: 5px;
}

.reviews__list__rating.rating--good {
  color: #40be80;
}

.reviews__list__rating.rating--norn {
  color: #0083cc;
}

.reviews__list__rating b {
  color: #000;
  font-weight: 500;
}

.reviews__list__review b {
  font-weight: 500;
}

.sluzhba-servisa__list_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.sluzhba-servisa__list__item {
  margin-bottom: 25px;
  margin-right: 2%;
  position: relative;
  width: 32%;
}

.sluzhba-servisa__list__item:nth-child(3n) {
  margin-right: 0;
}

.sluzhba-servisa__list__image i {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  line-height: 1px;
  padding: 55% 0;
  position: relative;
}

.sluzhba-servisa__list__item:hover .sluzhba-servisa__list__image i {
  background-image: none !important;
  background: #ff5c5c;
}

.sluzhba-servisa__list__desc {
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 70px 10px 10px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}

.sluzhba-servisa__list__name {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sluzhba-servisa__list__text {
  font-size: 17px;
  line-height: 25px;
}

.articles-detail__text ul {
  list-style: none;
}

.articles-detail__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  margin-bottom: 20px;
}

.articles-detail__nav a {
  color: #dd4952;
  display: inline-block;
  font-size: 15px;
  line-height: 18px;
  text-decoration: none;
}

.articles-detail__nav a.articles-detail__nav--prev {
  background: url(../images/left_arrow.png) 0 no-repeat;
  padding-left: 25px;
}

.articles-detail__nav a.articles-detail__nav--next {
  background: url(../images/right_arrow.jpg) 100% no-repeat;
  padding-right: 25px;
}

.special__text {
  font-size: 20px;
  padding-bottom: 5px;
  position: relative;
}

.special__text:before {
  border-bottom: 1px dashed #3b3b3b;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  line-height: 1px;
  position: absolute;
  width: 50%;
}

.special__text p {
  font-size: 20px;
}

.special__list__container {
  list-style: none;
  margin: 0;
  padding: 0;
}

.special__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  margin-bottom: 30px;
}

.special__list__name {
  color: #dd4952 !important;
  font-size: 19px;
  font-weight: 400;
  font-weight: 500;
  margin-bottom: 15px;
  width: 100%;
}

.special__list__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 36%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.special__list__image {
  margin-bottom: 20px;
  padding: 0 5%;
  width: 49%;
}

.special__list__image a {
  display: block;
  text-align: center;
}

.special__list__image img {
  display: block;
  margin: 0 auto 10px;
}

.special__list__image span {
  display: block;
  font-size: 18px;
  text-align: center;
}

.special__list__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 61%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.special__list__description {
  margin: 0 1% 20px;
  width: 48%;
}

.special__list__title {
  color: #dd4952;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.special__list__content p {
  background-image: url(../images/ptichka2.jpg);
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 18px;
  line-height: 19px;
  line-height: 20px;
  margin-bottom: 13px;
  margin-left: 10px;
  padding-left: 27px;
}

.special__list__price {
  background-color: #dd4952;
  clear: both;
  color: #fff;
  font-size: 13pt;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 20px;
  padding: 10px;
  text-align: right;
  text-transform: uppercase;
}

.special__list__important {
  clear: both;
  color: red;
  font-size: 18px;
  font-style: italic;
  line-height: 20px;
  text-align: right;
  width: 100%;
}

.news-detail__date {
  color: #ff5c5c;
  font-size: 16px;
  margin-bottom: 10px;
}

.news-im {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.btn-news:hover {
  background-color: #fff;
  color: #ff5c5c;
}

.new .textBlock {
  margin-bottom: 70px;
}

.new .textBlock.first {
  height: 340px;
}

.new .textBlock.first .image {
  float: left;
}

.new .black {
  background-color: #292826;
  padding: 40px 30px;
  z-index: 10;
}

.new .black,
.new .black h3 {
  color: #fff;
}

.new .textBlock.first .text {
  float: right;
  margin-top: 20px;
  position: absolute;
  right: 0;
  width: 50%;
}

.new h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}

.new .textBlock.second .text {
  display: inline-block;
  vertical-align: top;
  width: 43%;
}

.new .textBlock.second .image {
  float: right;
  position: relative;
}

.new .textBlock.second .image:after {
  background-image: url(/upload/img/batimatTextBlock2AFTER.png);
  background-repeat: no-repeat;
  content: "";
  height: 350px;
  left: -125px;
  position: absolute;
  top: 27px;
  width: 350px;
  z-index: 10;
}

.new .textBlock.second .text .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.new .textBlock.second .text .images img {
  display: block;
  height: auto;
  width: 49%;
}

.new .textBlock.therd {
  clear: both;
  height: 430px;
}

.new .textBlock.therd .text {
  display: inline-block;
  margin-top: 17px;
  position: absolute;
  width: 50%;
}

.new .textBlock.therd .image {
  float: right;
}

.new .textBlock.last {
  clear: both;
  padding: 0 50px;
}

.items-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.items-photo > .item {
  margin-bottom: 15px;
  margin-right: 2.6%;
  width: 23%;
}

.items-photo > .item:nth-child(4n) {
  margin-right: 0;
}

.items-photo > .item {
  opacity: 0.5;
  ransition: all 0.2s ease-out;
}

.items-photo > .item:hover {
  opacity: 1;
}

.items-photo > .item a {
  display: block;
  text-decoration: none;
}

.items-photo > .item img {
  display: block;
}

.sertifikaty-images .align-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.sertifikaty-images .align-items .item {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  width: 24%;
}

.sertifikaty-images ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.sertifikaty-images .item {
  margin-bottom: 15px;
  margin-right: 2%;
  width: 32%;
}

.sertifikaty-images .item:nth-child(3n) {
  margin-right: 0;
}

.sertifikaty-images .item a {
  display: block;
}

.b-block__title {
  color: #3b3b3b;
  font-size: 37px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

.b-block__title a {
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.b-block__title a,
.page_rassrochka {
  position: relative;
}

.page_rassrochka img {
  display: block;
  height: auto;
  width: 100%;
}

.page_rassrochka a {
  background: #df5c5c;
  border: 1px solid #df5c5c;
  border-radius: 3px;
  color: #fff;
  display: block;
  font-size: 10px;
  height: 27px;
  line-height: 25px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  top: 91%;
  width: 20%;
}

.page_rassrochka a:hover {
  background: #fff;
  color: #df5c5c;
}

.page_rassrochka a.rassrochka1 {
  left: 28%;
}

.page_rassrochka a.rassrochka2 {
  left: 56%;
}

.guarantee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.guarantee p {
  line-height: normal;
  text-align: right;
}

.guarantee div,
.guarantee p {
  display: block;
  width: 48%;
}

.skidki a,
.skidki img {
  display: block;
}

.skidki img {
  height: auto;
  width: 100%;
}

.textBlock_second .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  margin-bottom: 20px;
  text-align: center;
}

.textBlock_second .images a {
  display: block;
  margin: 0 auto 20px;
  max-height: 230px;
  overflow: hidden;
  text-align: center;
  width: 32%;
}

.textBlock_second .images a img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.collection-category__gridE {
  display: grid;
  gap: 2.2rem 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 3.5rem;
  margin-top: 3.5rem;
}

.collection-category__itemE {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.collection-category__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 1.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  color: #1f2229;
  font-size: 1.8rem;
  justify-content: center;
  line-height: 1;
  margin-top: 1.2rem;
}

.collection-category__item-hover {
  display: none;
}

.collection-category__item-bg {
  border-radius: 0.9rem;
  height: 33.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.collection-category__item-bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  will-change: transform;
}

.collection-category__itemE:hover .collection-category__item-bg img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.nav-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
}

.nav-slider .icon {
  color: #ab3b66;
  height: 1.5rem;
  width: 1.5rem;
}

.nav-slider .nav-prev {
  background: #fff;
  border: 1px solid #ab3b66;
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4.8rem;
  width: 4.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  cursor: pointer;
  justify-content: center;
  padding-right: 0.1rem;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.nav-slider .nav-prev:hover {
  background: var(--black);
}

.nav-slider .nav-next {
  background: #fff;
  border: 1px solid #ab3b66;
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4.8rem;
  width: 4.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  cursor: pointer;
  justify-content: center;
  padding-left: 0.1rem;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.nav-slider .nav-next:hover {
  background: var(--black);
}

.autocomplete-suggestions {
  background-color: #fff;
  border: 1 solid #f0f0f0;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 16px 35px 0 rgba(31, 34, 41, 0.09);
  box-shadow: 0 16px 35px 0 rgba(31, 34, 41, 0.09);
  left: 0;
  overflow: auto;
  padding: 15px 10px;
  right: 0;
  width: auto !important;
}

.autocomplete-suggestion {
  overflow: hidden;
}

.autocomplete-suggestion:first-child {
  border-top: none;
}

.autocomplete-suggestion .ws-sug-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.autocomplete-suggestion:first-child .ws-sug-item {
  border-top: none;
}

.ws-sug-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 10px;
  text-decoration: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  cursor: pointer;
}

.ws-sug-item__image {
  width: 55px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.ws-sug-item__image i {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  padding: 50% 0;
  position: relative;
}

.ws-sug-item__image i.no-photo {
  background-color: #d2d2d2;
}

.ws-sug-item__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: norow;
  flex-direction: norow;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.ws-sug-item__name {
  color: #000;
  font-size: 18px;
  line-height: 22px;
}

.ws-sug-item__name b {
  color: #16d;
}

.ws-sug-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.ws-sug-item__price {
  font-size: 20px;
  font-weight: 500;
  margin-left: 15px;
}

.ws-sug-item__code {
  font-size: 14px;
  white-space: nowrap;
}

.ws-sug-item__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  position: relative;
}

.ws-sug-item__btn button {
  height: 52px;
  margin-left: 20px;
  width: 52px;
}

.ws-sug-item__btn button svg {
  height: 21px;
  width: 21px;
}

.ws-sug-item__btn .catalog-item__to-fav {
  position: relative;
  right: auto;
  top: auto;
}

.ws-sug-item__btn .catalog-item__to-fav svg {
  height: 30px;
  width: 30px;
}

.ws-sug-item__btn .btn--search {
  background-image: url(../images/ws-basket.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 14px;
  height: 37px;
  line-height: 35px;
  padding: 0 22px;
}

.ws-sug-item__btn .btn--search.is--active {
  background-color: #1dbf5b;
  border: 1px solid #1dbf5b;
}

.ws-sug-group {
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0;
  width: 100%;
}

.catalog__header-search {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.catalog__header--sort {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.catalog__header--sort select,
.catalog__sort select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url(../img/select.svg);
  background-position:
    right 1em top 50%,
    0 0;
  background-repeat: no-repeat;
  background-size: 1.7rem auto;
  border: 1px solid rgba(31, 34, 41, 0.15);
  border-radius: 0.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f2229;
  display: block;
  font-weight: 400;
  height: 5.8rem;
  line-height: 100%;
  margin: 0;
  max-width: 100%;
  outline: none;
  padding: 0 50px 0 27px;
  width: 100%;
}

.catalog__header--sort select::-ms-expand,
.catalog__sort select::-ms-expand {
  display: none;
}

.catalog__header--sort select:focus,
.catalog__sort select:focus {
  border-color: #aaa;
  color: #000;
  outline: none;
}

.catalog__header--sort select option,
.catalog__sort select option {
  font-weight: 400;
}

:root:lang(ar) .catalog__header--sort select,
:root:lang(ar) .catalog__sort select,
:root:lang(iw) .catalog__header--sort select,
:root:lang(iw) .catalog__sort select,
[dir="rtl"] .catalog__header--sort select,
[dir="rtl"].catalog__sort select {
  background-position:
    left 0.7em top 50%,
    0 0;
  padding: 0.6em 0.8em 0.5em 1.4em;
}

.catalog__selected {
  margin-bottom: 20px;
}

.ws-filters__selected {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
}

.ws-filters__selected,
.ws-filters__selected > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  align-content: stretch;
  justify-content: flex-start;
}

.ws-filters__selected > div {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 2px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: stretch;
  background-color: #16d;
  border: 1px solid #16d;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  list-style: 15px;
  white-space: nowrap;
}

.ws-filters__selected-text {
  margin-right: 10px;
}

.ws-filters__selected-icon .i-cross {
  height: 15px;
  width: 15px;
}

.panels-list__item .catalog-item__to-favorites {
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
}

.panels-list__item .catalog-item__to-favorites .icon {
  height: 2.1rem;
  width: 2.5rem;
  fill: #fff;
  stroke-width: 1px;
  stroke: rgba(31, 34, 41, 0.5);
}

.panels-list__item .catalog-item__to-favorites.is-fill .icon {
  stroke: none;
  fill: #b5191e;
}

.catalog-item__to-fav.is-fill .icon {
  stroke: #b5191e;
  fill: #b5191e;
}

.panels-list__item-name {
  border-radius: 0.4rem;
  font-size: 1.3rem;
  font-weight: 400;
  word-break: break-word;
}

.panels-list__item-btns .btn--select:hover,
.panels-list__item:hover .panels-list__item-btns .btn--select {
  background: #ab3b66;
  border-color: transparent;
}

.panels-filter__value.is--active .panels-filter__value-check {
  background: #1f2229;
}

.panels-list__item-name:after {
  background: url(../img/icons/ugolok.svg) 50% / cover no-repeat;
  bottom: -0.8rem;
  height: 1.1rem;
  width: 1.6rem;
}

.panels-filter__section.section--types .icon {
  max-height: 4.5rem;
  max-width: 2.1rem;
}

.panels-list__item.is--selected:after {
  display: none;
}

.panels-list__item.is--selected .panels-list__item-image {
  position: relative;
}

.panels-list__item.is--selected .panels-list__item-image:after {
  border: 2px solid #ab3b66;
  border-radius: 0.9rem;
  content: "";
  height: calc(100% + 16px);
  left: 50%;
  position: absolute;
  top: -8px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100% + 16px);
}

.panels-filter__section.section--color .icon {
  max-height: 4.5rem;
  max-width: 4.4rem;
}

.panels-filter__section.section--material .icon {
  max-height: 4.3rem;
  max-width: 2.2rem;
}

.panels-filter__section.section--doors .icon {
  max-height: 4.5rem;
  max-width: 2.6rem;
}

.panels-filter__section.section--options .icon {
  max-height: 4rem;
  max-width: 4.2rem;
}

.panels-filter__section.section--fav .icon {
  max-height: 4rem;
  max-height: 3.5rem;
}

.panels-filter__section span {
  margin-top: 0.1rem;
}

.panels-filter__sections {
  margin-bottom: 2.4rem;
}

.panels-filter__section.section--fav sup {
  background: #616368;
  border: 2px solid #f8f8f8;
}

.panels-filter__values.values--color
  .panels-filter__value.is--active
  .panels-filter__value-check
  i,
.panels-filter__values.values--doors
  .panels-filter__value.is--active
  .panels-filter__value-check
  i,
.panels-filter__values.values--material
  .panels-filter__value.is--active
  .panels-filter__value-check
  i {
  background: #1f2229;
}

.panels-filter__value.has--bgcolor.is--active .panels-filter__value-check,
.panels-filter__value.has--bgimage.is--active .panels-filter__value-check {
  outline: 1px solid #1f2229;
  outline-offset: 4px;
}

.panels-filter__section.section--fav.is--active sup {
  background: #fff;
  border-color: #28b19a;
  color: #1f2229;
}

.panels-filter__section.section--fav.is--active sup span {
  color: #1f2229;
}

.metaldlg-layout {
  backdrop-filter: blur(10px);
  background: rgba(31, 34, 41, 0.3);
}

.panels-filter__value-check i,
.panels-filter__values .panels-filter__value-check i:after {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.panels-filter__value.has--bgcolor.is--white .panels-filter__value-check {
  border: 1px solid rgba(48, 51, 59, 0.1);
}

.panels-filter__values.values--color .panels-filter__value-check i,
.panels-filter__values.values--doors .panels-filter__value-check i,
.panels-filter__values.values--material .panels-filter__value-check i {
  border: 1px solid rgba(31, 34, 41, 0.25);
}

.metaldlg-list.type--frame .metaldlg-list__item-btns .btn,
.metaldlg-list.type--furn .metaldlg-list__item-btns .btn {
  background: transparent;
  border: 1px solid #ab3b66;
  border-radius: 0.4rem;
  color: #1f2229;
  font-weight: 400;
}

.metaldlg-list.type--frame .metaldlg-list__item-btns .btn:hover,
.metaldlg-list.type--furn .metaldlg-list__item-btns .btn:hover {
  background: #ab3b66;
  border-color: transparent;
  color: #fff;
}

.metaldlg-list.type--frame
  .metaldlg-list__item.is--selected
  .metaldlg-list__item-btns
  .btn,
.metaldlg-list.type--furn
  .metaldlg-list__item.is--selected
  .metaldlg-list__item-btns
  .btn {
  background: #28b19a;
  border-color: transparent;
  color: #fff;
}

.metaldlg-list__item-btns .link {
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.metaldlg-list__item-btns .link:hover {
  text-decoration: none;
}

.metaldlg-list.type--frame .metaldlg-list__item,
.metaldlg-list.type--furn .metaldlg-list__item {
  border: 1px solid rgba(31, 34, 41, 0.3);
}

.metaldlg-list.type--frame .metaldlg-list__item.is--selected,
.metaldlg-list.type--furn .metaldlg-list__item.is--selected {
  background: #f2f2f2;
  border: 1px solid rgba(31, 34, 41, 0.1);
}

.metaldlg-list.type--frame .metaldlg-list__item-image {
  border-radius: 0.4rem;
}

.panels-list__item-name {
  max-width: unset;
  width: calc(100% + 4rem);
}

.metalinfo__window {
  border-radius: 0.4rem;
}

.fancybox-slide--html .fancybox-close-small {
  padding: 6px;
}

.catalog-item.design--osf .catalog-item__images {
  max-width: 27.1rem;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 3.4rem;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.catalog-item.design--osfb .catalog-item__images--slider {
  max-width: 21.4rem;
}

.catalog-item.design--osfbv .catalog-item__images--slider {
  max-width: 17.3rem;
}

.catalog-item.design--dsfbb .catalog-item__images--slider {
  max-width: 21.8rem;
}

.catalog-item.design--ds .catalog-item__images--slider {
  max-width: 26.4rem;
}

.catalog-item.design--dsf .catalog-item__images--slider {
  max-width: 21.6rem;
}

body .catalog-item__images--slider {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog-item__images-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.7rem;
}

.catalog-item__images-pagination .swiper-pagination-bullet {
  background: #d9d9d9;
  height: 0.7rem;
  margin: 0 !important;
  opacity: 1;
  width: 0.7rem;
}

.catalog-item__images-pagination .swiper-pagination-bullet-active {
  background: #ab3b66;
}

.catalog-item__to-fav .icon {
  stroke: #191c1f;
  fill: #fff;
}

.header__fav .icon {
  stroke: #fff;
  fill: transparent;
}

.header.header--inner .header__fav .icon {
  stroke: #1f2229;
}

.header.header--inner.fixed .header__fav .icon {
  stroke: #fff;
}

.header__cart {
  color: #fff;
}

.header.header--inner .header__cart {
  color: #1f2229;
}

.header.header--inner.fixed .header__cart {
  color: #fff;
}

.catalog-item .catalog-item__to-fav .ws-waiter {
  display: none;
}

.catalog-item .catalog-item__to-fav.ws-waiting {
  position: absolute;
}

.catalog__header--sort select {
  cursor: pointer;
}

body .ws-waiting:before {
  z-index: 19;
}

.header__actions .i--over {
  display: none;
}

.header-mark {
  right: -1rem;
  top: -0.8rem;
}

.header__actions {
  gap: 3.4rem;
}

body .ws-waiting .ws-waiter i:before {
  border: 5px solid #ab3b66;
}

.interior-catalog {
  padding-bottom: 10rem;
}

.interior-catalog__header {
  max-width: 112.2rem;
}

.interior-catalog__header .h1 {
  margin-bottom: 0.5rem;
}

.interior-catalog__header p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.195;
}

.interior-catalog__header p:last-of-type {
  margin-bottom: 0;
}

.interior-catalog__nav {
  margin-top: 3.9rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 3.9rem;
}

.interior-catalog__nav,
.interior-catalog__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.interior-catalog__nav-menu {
  gap: 2.7rem;
}

.interior-catalog__nav-menu-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.195;
}

.interior-catalog__nav-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  border-bottom: 1px solid #e2e2e2;
  gap: 1.6rem;
  padding: 0 0 0.9rem;
}

.interior-catalog__nav-menu-item {
  font-size: 1.8rem;
  line-height: 1.195;
  position: relative;
}

.interior-catalog__nav-menu-item:hover a {
  color: #ab3b66;
}

.interior-catalog__nav-menu-item:after {
  background: #1f2229;
  content: "";
  height: 0.4rem;
  left: 0;
  opacity: 0;
  position: absolute;
  top: calc(100% + 5px);
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.interior-catalog__nav-menu-item.is-active:after {
  opacity: 1;
}

.interior-catalog__nav-filter .interior-catalog__nav-menu-list {
  gap: 1.4rem;
}

.interior-catalog__section {
  margin-bottom: 4.6rem;
}

.interior-catalog__section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.interior-catalog__section-title {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 0;
}

.interior-catalog__section-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.interior-catalog__section-download-title {
  font-size: 1.8rem;
  line-height: 1.195;
}

.interior-catalog__section-download-items {
  gap: 1.8rem;
}

.interior-catalog__section-download-item,
.interior-catalog__section-download-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.interior-catalog__section-download-item {
  border: 1px solid #1f2229;
  border-radius: 0.4rem;
  height: 4.4rem;
  width: 22.7rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.interior-catalog__section-download-item:hover span {
  color: #b5191e;
}

.interior-catalog__section-download-item span {
  color: #1f2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.interior-catalog__section-download-item span:before {
  background: url(../img/icons/pdf-icon.svg) 50% / contain no-repeat;
  content: "";
  display: block;
  height: 2rem;
  width: 1.6rem;
}

.interior-catalog__section-download-item--red {
  background: #f5f5f5;
}

.interior-catalog__section-grid {
  display: grid;
  gap: 3.3rem 1.6rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3.5rem;
}

.interior-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.interior-item:hover .interior-item__image img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.interior-item__hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  padding: 6rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.interior-item__hover .interior-item__title {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}

.interior-item__image {
  aspect-ratio: 1;
  border-radius: 0.9rem;
  height: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.interior-item__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  will-change: transform;
}

.interior-item__steakers {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  right: 1.1rem;
  top: 1.3rem;
  z-index: 2;
}

.interior-item__steaker,
.interior-item__steakers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.interior-item__steaker {
  background: #14aa23;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  height: 2.8rem;
  width: 7.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.interior-item__steaker--sale {
  background: #14aa23;
}

.interior-item__steaker--new {
  background: #b5191e;
}

.interior-item__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.2rem;
}

.interior-item__title {
  color: #1f2229;
  font-size: 1.8rem;
  line-height: 1;
}

.interior-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.7rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.interior-catalog__section--popular .interior-item__price {
  display: inline;
}

.interior-catalog__section--popular .interior-item__price span {
  font-weight: 400;
}

.interior-catalog__section--popular .interior-item__footer {
  display: block;
  text-align: center;
}

.interior-item__price-old {
  color: rgba(31, 34, 41, 0.5);
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: line-through;
}

.interior-item__price-main {
  color: #1f2229;
  font-size: 1.8rem;
  line-height: 1;
}

.interior-item__price-main span {
  font-weight: 600;
}

.interior-catalog--v2 .interior-catalog__header {
  max-width: 100%;
}

.interior-catalog--v2 .interior-catalog__header p {
  max-width: 128.1rem;
}

.interior-catalog--v2 .interior-catalog__header .h1 {
  margin-bottom: 0;
}

.interior-catalog__header-flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2.9rem;
}

.interior-catalog__header-flex,
.interior-catalog__popular {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.interior-catalog__popular {
  gap: 5.4rem;
  margin-bottom: 3.5rem;
}

.interior-catalog__popular-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.195;
}

.interior-catalog__popular-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: 100%;
}

.interior-catalog__popular-item {
  -webkit-box-flex: 1;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 0.4rem;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.6rem;
  padding: 1.2rem 0;
  text-align: center;
}

.interior-catalog__popular-item.is--active,
.interior-catalog__popular-item:hover {
  background: #28b19a;
  border-color: transparent;
  color: #fff;
}

.bx-search-form {
  position: relative;
}

.bx-search-form input {
  border: 4px solid #ab3b66;
  border-radius: 0.4rem;
  display: block;
  height: 4.7rem;
  padding: 0 5.8rem 0 1.9rem;
  width: 100%;
}

.bx-search-form-btn {
  background: none;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4.3rem;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5.8rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bx-search-form-btn .icon {
  color: #31363d;
  height: 1.9rem;
  -webkit-transform: all ease 0.3s;
  -ms-transform: all ease 0.3s;
  transform: all ease 0.3s;
  width: 1.9rem;
}

.bx-search-form-btn:hover {
  background: none;
}

.bx-search {
  margin-bottom: 2.9rem;
}

.catalog-item--rd .catalog-item__title {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
  margin-top: 2rem;
  min-height: auto;
  padding-right: 0;
  text-align: center;
}

.catalog-item--rd .catalog-item__price {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.catalog-item--rd .catalog-item__price-main {
  font-size: 2.6rem;
}

.catalog-item--rd .catalog-item__price-old {
  color: #d9d9d9;
  font-size: 1.5rem;
  text-decoration: line-through;
}

.catalog-item--rd .catalog-item__buttons .catalog-item__to-cart {
  max-width: 7.2rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.catalog-item--rd .catalog-item__buttons .catalog-item__to-form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
}

.catalog-item--rd .catalog-item__article:before {
  opacity: 1;
}

.catalog-item.catalog-item--rd.catalog-promo {
  border: none;
  gap: 1.5rem;
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog-item.catalog-item--rd.catalog-promo:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.catalog-item--rd .catalog-promo__item {
  border-radius: 0.5rem;
  overflow: hidden;
}

.catalog-item.catalog-item--rd {
  border: 1px solid #d9d9d9;
  border-radius: 0.4rem;
  padding: 1.1rem 2rem 2rem;
}

.catalog-item__stickers {
  position: absolute;
  right: 0.5rem;
  top: 4.6rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.catalog-item__sticker,
.catalog-item__stickers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog-item__sticker {
  background: #ab3b66;
  border-radius: 0.4rem;
  height: 4.4rem;
  width: 4.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
}

.catalog-item__sticker--hit {
  background: var(--red);
  font-size: 1.8rem;
  padding-bottom: 0.2rem;
}

.catalog-slider__slider {
  overflow: unset;
}

.catalog__grid {
  margin-top: 2.8rem;
}

.active-filter {
  background: #28b19a;
}

.active-filter[data-ctrl="clear"] {
  background: #ab3b66;
}

.interior-item__steaker {
  border-radius: 0.2rem;
}

.interior-item__steaker--sale {
  background: #28b19a;
}

.interior-item__steaker--new {
  background: #ab3b66;
}

.interior-item__footer {
  gap: 0.8rem;
}

.interior-item__price-old {
  margin-right: -0.2rem;
}

.catalog__pagination ul li.active {
  background: #f4f4f4;
  color: #1f2229;
}

.catalog__pagination ul li.active a,
.catalog__pagination ul li.active span {
  color: #1f2229;
}

.catalog__loadmore {
  background: #ab3b66;
  border-color: transparent;
  color: #fff;
}

.catalog-category__content ol,
.catalog-category__content ul {
  margin: 0;
  padding: 0;
}

.catalog-category__content ul {
  list-style: none;
}

.catalog-category__content li,
.catalog-category__content p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.38889;
}

.catalog-category__content ul li {
  margin-bottom: 1.5rem;
  padding-left: 2.9rem;
  position: relative;
}

.catalog-category__content ul li:after {
  background: #ab3b66;
  border-radius: 50%;
  content: "";
  height: 1.2rem;
  left: 0;
  position: absolute;
  top: 0.7rem;
  width: 1.2rem;
}

.catalog-category__content img {
  border-radius: 0.9rem;
}

.catalog-category__content .h3,
.catalog-category__content .h4,
.catalog-category__content h3,
.catalog-category__content h4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.38889;
  margin-bottom: 2rem;
}

.catalog-category__content h3 {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 500;
}

.catalog-category__header p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.38889;
  max-width: 100.7rem;
}

.catalog-category__header,
.catalog__header {
  display: block;
  padding: 0;
}

.catalog-category__header .h1 {
  margin-bottom: 2rem;
}

.card {
  padding-bottom: 7.6rem;
}

.card__header {
  margin-bottom: 3.7rem;
}

.card__header .h1 {
  margin-bottom: 0;
}

.card__header p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
  max-width: 110rem;
}

.card__header p:last-of-type {
  margin-bottom: 0;
}

.card__header-text {
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 1.1rem;
}

.card__header-flex {
  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;
}

.card__area-mobile,
.card__area-mobile-fixed {
  display: none;
}

.card__area-mobile-fixed.is-active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.card__area-mobile-fixed,
.card__area-mobile-fixed.is-active {
  -webkit-box-shadow: 0 0 9px 0 rgba(49, 54, 61, 0.1);
  box-shadow: 0 0 9px 0 rgba(49, 54, 61, 0.1);
}

.card__area-mobile-fixed {
  background: #fff;
  gap: 24px;
  left: 0;
  padding: 20px 30px;
  position: fixed;
  top: 50px;
  width: 100%;
  z-index: 500;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card__area-mobile-fixed .card__area-mobile-description {
  display: none;
}

.card__area-mobile-fixed .card__image {
  height: 170px;
}

.card__area-mobile-fixed .card__area-mobile-image {
  max-width: 77px;
}

.card__area-mobile-fixed .card__area-mobile-text {
  padding: 0;
  width: 100%;
}

.card__area-mobile-image {
  max-width: 136px;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.card__area-mobile-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 5px;
  padding-right: 5px;
  padding-top: 22px;
}

.card__area-mobile-price {
  margin-top: auto;
}

.card__mobile-tabs {
  display: none;
}

.card__mobile-tabs-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: baseline;
  align-self: baseline;
  gap: 5.2rem;
}

.card__mobile-tabs-header-item {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.195;
}

.card__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.4rem;
}

.card__aside {
  max-width: 30.2rem;
  width: 100%;
}

.card__aside-sticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: sticky;
  top: 8rem;
  -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;
}

.card__image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 66.5rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.card__title {
  font-size: 2.6rem;
  line-height: 1.195;
  margin-top: 2.5rem;
  text-align: center;
}

.card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.8rem;
}

.card__price-main {
  font-size: 3.5rem;
  font-weight: 500;
}

.card__price-old {
  font-size: 1.7rem;
  opacity: 0.5;
  text-decoration: line-through;
}

.card__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}

.card__buttons .catalog-item__order {
  -webkit-box-flex: 1;
  background: #28b19a;
  border-radius: 0.4rem;
  color: #fff;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 1.4rem;
  height: 5.2rem;
  text-transform: uppercase;
  width: 100%;
}

.card__buttons .catalog-item__order:hover {
  background: #3ad2b9;
}

.card__buttons .catalog-item__to-cart {
  border-radius: 0.4rem;
  height: 5.2rem;
  max-width: 8.1rem;
  width: 100%;
}

.card__buttons .catalog-item__to-cart:hover {
  background: #c75c85;
  border-color: transparent;
  color: #fff;
}

.card__buttons .catalog-item__to-cart .icon {
  height: 2.8rem;
  width: 2.8rem;
}

.card__info {
  margin-top: 1.5rem;
  width: 100%;
}

.card__info,
.card__info-p {
  max-width: 26.9rem;
}

.card__info-p {
  font-size: 1.4rem;
  margin-top: 1.7rem;
}

.card__info-item,
.card__info-p {
  color: rgba(31, 34, 41, 0.85);
  font-weight: 300;
}

.card__info-p {
  color: rgba(31, 34, 41, 0.5);
}

.card__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  gap: 0.7rem;
}

.card__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 11rem;
  width: 100%;
}

.card__colors-area {
  margin-bottom: 2.7rem;
}

.card__colors-area:last-of-type {
  margin-bottom: 0;
}

.card__colors-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.195;
  margin-bottom: 1rem;
}

.card__colors-grid {
  display: grid;
  gap: 1.4rem 1rem;
  grid-template-columns: repeat(15, 1fr);
}

.card__color {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.4rem;
  cursor: pointer;
  height: 5.5rem;
  width: 5.5rem;
}

.card__color.is-selected {
  outline: 1px solid rgba(49, 54, 61, 0.4);
  outline-offset: 0.3rem;
}

.card__offers {
  margin-top: 4.5rem;
}

.card__offers-area {
  margin-bottom: 1.7rem;
}

.card__offers-area:last-of-type {
  margin-bottom: 0;
}

.card__offers-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.card__offers-grid {
  display: grid;
  gap: 2.9rem;
  grid-template-columns: repeat(7, 1fr);
}

.card__offer {
  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;
  cursor: pointer;
}

.card__offer-image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 24.8rem;
  margin-bottom: 1.1rem;
  width: 100%;
}

.card__offer-title {
  color: #31363d;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.card__offer.is-selected .card__offer-image {
  outline: 1px solid rgba(49, 54, 61, 0.4);
  outline-offset: 0.4rem;
}

.opening-schemes {
  padding: 4.8rem 0 9.3rem;
}

.opening-schemes .h2 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}

.opening-schemes__grid {
  display: grid;
  gap: 6.5rem 14.8rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 4.2rem;
  padding: 0 4.8rem;
}

.opening-schemes__item {
  width: 100%;
}

.opening-schemes__item:first-of-type span {
  margin-right: -2rem;
}

.opening-schemes__item:nth-of-type(6) span {
  margin-right: -6rem;
}

.opening-schemes__item:nth-of-type(9) span {
  margin-right: -6rem;
}

.opening-schemes__item span {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
}

.opening-schemes__item-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20.2rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 1.7rem;
}

.opening-schemes__item-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.about-collection {
  padding-bottom: 9.9rem;
}

.about-collection__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-collection__text {
  max-width: 52rem;
  width: 100%;
}

.about-collection__text .h2 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
}

.about-collection__text p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.625;
}

.about-collection__text p:last-of-type {
  margin-bottom: 0;
}

.about-collection__image {
  max-width: 74.6rem;
  width: 100%;
}

.about-collection__image img {
  border-radius: 1.3rem;
  height: 48rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.about-collection__slider {
  position: relative;
}

.about-collection__slider .nav-prev {
  background: #fff;
  border: none;
  border-radius: 50%;
  height: 6.4rem;
  left: -3.2rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6.4rem;
  z-index: 2;
}

.about-collection__slider .nav-prev .icon {
  height: 1.9rem;
  width: 1.1rem;
}

.about-collection__slider .nav-next {
  background: #fff;
  border: none;
  border-radius: 50%;
  height: 6.4rem;
  position: absolute;
  right: -3.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6.4rem;
  z-index: 2;
}

.about-collection__slider .nav-next .icon {
  height: 1.9rem;
  width: 1.1rem;
}

.doors-slider .swiper-slide .doors-slider__slide {
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.about-collection__slider .nav-next:hover,
.about-collection__slider .nav-prev:hover {
  background: #fff;
}

.doors-slider .swiper-slide-visible .doors-slider__slide {
  opacity: 1;
  pointer-events: auto;
}

.doors-slider__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.9rem;
  margin-bottom: 4rem;
}

.doors-slider__slide:hover .doors-slider__slide-image img {
  opacity: 0.9;
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.doors-slider__slide-image {
  border-radius: 1.3rem;
  height: 37rem;
  overflow: hidden;
  width: 100%;
}

.doors-slider__slide-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  will-change: transform;
}

.doors-slider__slide-title {
  display: block;
  font-size: 2.3rem;
  line-height: 1.195;
  margin-top: 2rem;
  text-align: center;
}

.card__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.card__color-item span {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  margin: 0.5rem 0 0;
  opacity: 0.7;
  text-align: center;
}

.card-action--to-favorites.is-fill {
  stroke: transparent;
}

.card-action--to-favorites .icon {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.card__offer-image.no-photo {
  background: url(../img/no-photo.jpg) 50%/130% no-repeat;
  background-color: #fafafa;
}

.nav-slider .icon {
  height: 1.4rem;
  width: 1.9rem;
}

.card__buttons .catalog-item__order {
  font-weight: 400;
}

.card__color-item.is-active .card__color {
  outline: 1px solid #ab3b66;
  outline-offset: 0.3rem;
}

.catalog-slider .swiper-slide .ed-catalog-item {
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.catalog-slider .swiper-slide-visible .ed-catalog-item {
  opacity: 1;
  pointer-events: auto;
}

body .btn.catalog-item__to-cart.ws-waiting:before {
  border-radius: 0.4rem;
}

body .btn.ws-waiting:before {
  background-color: #ab3b66;
}

.catalog-item__to-cart.is-active {
  background: #16ba3a;
}

.home .catalog-category__header,
.home .catalog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.opening-options {
  padding: 10rem 0;
}

.opening-options .h2 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 3.2rem;
  text-align: center;
}

.opening-options video {
  height: auto;
  max-width: 100%;
}

.opening-options__grid {
  display: grid;
  gap: 3.2rem 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.opening-options__item {
  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;
}

.opening-options__item.is-hidden {
  display: none;
}

.opening-options__item-video {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5rem;
  position: relative;
}

.opening-options__item-video video {
  border-radius: 0.9rem;
}

.opening-options__item-title {
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
}

.opening-options__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 3.6rem;
  justify-content: center;
}

.opening-options__footer .link {
  color: #1f2229;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.opening-options__footer .link:hover {
  text-decoration: none;
}

.opening-options__footer .link:after {
  bottom: -0.2rem;
  height: 1px;
}

.opening-options__btn-more {
  background: #28b19a;
  font-weight: 600;
  height: 4.6rem;
  max-width: 26.9rem;
  padding-bottom: 0.1rem;
  width: 100%;
}

.opening-options__btn-more:hover {
  background: #3ad2b9;
}

.opening-options__header {
  margin-bottom: 2.5rem;
}

.ws-wnd .fancybox-bg {
  background: rgba(31, 34, 41, 0.3);
}

.ws-wnd.fancybox-is-open {
  backdrop-filter: blur(10px);
}

.ws-wnd .fancybox-slide--html {
  padding: 4rem;
}

.ws-wnd .ws-modal__window {
  background: #fff;
  border-radius: 0.9rem;
  -webkit-box-shadow: 0 0 72px 0 rgba(31, 34, 41, 0.15);
  box-shadow: 0 0 72px 0 rgba(31, 34, 41, 0.15);
  max-width: 80.9rem;
  padding: 8.6rem 8.2rem 6.6rem;
  width: 100%;
}

.ws-wnd .fancybox-slide--html .fancybox-close-small {
  padding: 0.6rem;
  right: 0.5rem;
  top: 0.5rem;
}

.b-form__title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  text-align: center;
}

.b-form__text {
  color: #929292;
  font-size: 2rem;
  text-align: center;
}

.b-form__object {
  background: #fafafa;
  border-radius: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8rem 4.3rem 0.8rem 1.7rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 3.4rem 0;
}

.b-form__object-image {
  height: 14.3rem;
  max-width: 6rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  mix-blend-mode: darken;
}

.b-form__object-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.b-form__object-name-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.b-form__object-desc,
.b-form__object-name-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.b-form__object-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 3rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.b-form__object-name {
  font-size: 2rem;
  font-weight: 400;
}

.b-form__object-code {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
  opacity: 0.5;
}

.b-form__object-price {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.11111;
}

.b-form__label {
  display: none;
}

.input-text {
  background: transparent;
  border: 1px solid rgba(31, 34, 41, 0.2);
  border-radius: 0.4rem;
  color: #1f2229;
  font-family: Gilroy, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  height: 8.6rem;
  padding: 0 2.6rem;
  resize: none;
  text-align: center;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.input-text::-webkit-input-placeholder {
  color: rgba(31, 34, 41, 0.5);
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input-text::-moz-placeholder {
  color: rgba(31, 34, 41, 0.5);
  opacity: 1;
  -moz-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input-text:-ms-input-placeholder {
  color: rgba(31, 34, 41, 0.5);
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input-text::-ms-input-placeholder {
  color: rgba(31, 34, 41, 0.5);
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input-text::placeholder {
  color: rgba(31, 34, 41, 0.5);
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input-text:focus {
  border-color: #1f2229;
}

.input-text:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input-text:focus::-moz-placeholder {
  opacity: 0;
}

.input-text:focus:-ms-input-placeholder {
  opacity: 0;
}

.input-text:focus::-ms-input-placeholder {
  opacity: 0;
}

.input-text:focus::placeholder {
  opacity: 0;
}

textarea.input-text {
  height: 16.1rem;
  padding: 2.6rem;
}

.b-form__field {
  margin-bottom: 2.1rem;
  position: relative;
}

.b-form__field:last-of-type {
  margin-bottom: 0;
}

.b-form__field .btn {
  font-size: 2rem;
  font-weight: 400;
  height: 8.6rem;
  max-width: 100%;
  width: 100%;
}

.b-form__note {
  color: #707070;
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 1.6rem;
  text-align: center;
}

.b-form__note a {
  color: #000;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.b-form__note a:hover {
  text-decoration: none;
}

.ws-wnd__call .b-form__header {
  margin-bottom: 5.1rem;
}

.ws-wnd__order .b-form__header {
  margin-bottom: 3.4rem;
}

.b-form__error {
  background: #fff;
  border-radius: 5rem;
  -webkit-box-shadow: 0 4px 20px 0 rgba(31, 34, 41, 0.1);
  box-shadow: 0 4px 20px 0 rgba(31, 34, 41, 0.1);
  color: #b5191e;
  font-size: 1.8rem;
  height: 2.8rem;
  left: 50%;
  padding: 0.3rem;
  position: absolute;
  text-align: center;
  top: -1.2rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70%;
}

.form__field--error .input-text {
  border-color: #b5191e;
}

.form__field--error .input-text::-webkit-input-placeholder {
  opacity: 0.4;
}

.form__field--error .input-text::-moz-placeholder {
  opacity: 0.4;
}

.form__field--error .input-text:-ms-input-placeholder {
  opacity: 0.4;
}

.form__field--error .input-text::-ms-input-placeholder {
  opacity: 0.4;
}

.form__field--error .input-text::placeholder {
  opacity: 0.4;
}

body .ws-sys__massage-text {
  background-color: #fff;
  border-radius: 0.9rem;
  -webkit-box-shadow: 0 0 29px 0 rgba(31, 34, 41, 0.15);
  box-shadow: 0 0 29px 0 rgba(31, 34, 41, 0.15);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.22222;
  padding: 3.3rem 4.5rem 3.3rem 9.8rem;
}

body .msg--error {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjRDkyNDM4IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMyIgZD0ibTE5IDExLTggOG04IDAtOC04bTE3IDRjMCA3LjE4LTUuODIgMTMtMTMgMTNTMiAyMi4xOCAyIDE1IDcuODIgMiAxNSAyczEzIDUuODIgMTMgMTNaIi8+PC9zdmc+);
  color: #d92438;
}

body .msg--error,
body .msg--success {
  background-position: 4.3rem 50%;
}

body .msg--success {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjMUJBRTE4IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMyIgZD0ibTIwLjk1OCAxMS43NS03Ljk0OSA3LjU4My0zLjk2Ny0zLjc5MU0yOCAxNWMwIDcuMTgtNS44MiAxMy0xMyAxM1MyIDIyLjE4IDIgMTUgNy44MiAyIDE1IDJzMTMgNS44MiAxMyAxMyIvPjwvc3ZnPg==);
  color: #1bae18;
}

.b-forms__success-text-title {
  display: block;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 3.3rem;
  text-align: center;
}

.b-forms__success-text p {
  color: #929292;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 auto;
  max-width: 90%;
  text-align: center;
}

.b-forms__success-text-result {
  color: #1f2229;
  display: block;
  font-size: 2.8rem;
  font-weight: 600;
  margin: 2rem auto 0;
  text-align: center;
}

.ws-form__success .btn--ord {
  background: #1f2229;
  height: 5.4rem;
  margin: 3rem auto 0;
  max-width: 30rem;
}

.b-forms__success-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.ws-contact {
  padding-bottom: 4.5rem;
}

.ws-contact__regions-title {
  font-size: 2.8rem;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 4.5rem;
}

.ws-contact__opts-values {
  display: grid;
  gap: 0.3rem;
  grid-template-columns: repeat(8, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.ws-contact__opts-values li {
  background: #fff;
  border-radius: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5.7rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(31, 34, 41, 0.1);
  cursor: pointer;
  font-size: 1.4rem;
  padding: 0.7rem;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.ws-contact__opts-values li:hover {
  border: 1px solid rgba(31, 34, 41, 0.5);
}

.ws-contact__opts-values li.is--active {
  background: #28b19a;
  border-color: transparent;
  color: #fff;
}

.ws-contact__opts-values li.is--hidden {
  display: none;
}

.ws-contact__link-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.8rem;
}

.ws-contact__link-more span {
  color: #b52025;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.42857;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.ws-contact__link-more span:hover {
  text-decoration: none;
}

.ws-contact__area,
.ws-contact__list {
  margin-top: 3rem;
}

.ws-contact__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#tab-contact-menu {
  max-width: 35.3rem;
  width: 100%;
}

.ws-contact__menu {
  border: 1px solid #f2f2f2;
  border-radius: 0.9rem;
  height: 67.7rem;
  overflow-y: auto;
  padding: 1.9rem 5.6rem 1.9rem 2.8rem;
  scrollbar-color: #d6d6d7 transparent;
  scrollbar-width: thin;
  width: 100%;
}

.ws-contact__menu::-webkit-scrollbar {
  width: 7px;
}

.ws-contact__menu::-webkit-scrollbar-track {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ws-contact__menu::-webkit-scrollbar-thumb {
  background-color: #d6d6d7;
  outline: none;
}

.ws-contact__menu-item {
  border-bottom: 1px solid rgba(31, 34, 41, 0.2);
  cursor: pointer;
  position: relative;
}

.ws-contact__menu-item:last-of-type {
  border-color: transparent;
}

.ws-contact__menu-name:after {
  background: url(../img/icons/contacts-plus.svg) 50% / contain no-repeat;
  content: "";
  height: 1.5rem;
  position: absolute;
  right: -3rem;
  top: 1rem;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 1.5rem;
}

.ws-contact__menu-item.is--opened .ws-contact__menu-name:after {
  background: url(../img/icons/contacts-minus.svg) 50% / contain no-repeat;
}

.ws-contact__menu-item.is--opened .ws-contact__menu-desc {
  display: block;
  padding-bottom: 1.4rem;
}

.ws-contact__menu-item.is--opened .ws-contact__menu-name {
  color: #b5191e;
}

.ws-contact__menu-prop {
  margin-bottom: 0.7rem;
}

.ws-contact__menu-desc .ws-contact__prop-name,
.ws-contact__menu-desc .ws-contact__prop-value {
  font-size: 1.4rem;
  line-height: 1;
}

.ws-contact__menu-desc a span {
  color: #28b19a;
  font-size: 1.4rem;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.ws-contact__header {
  background: #f2f2f2;
  border-radius: 0.9rem 0.9rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  padding-left: 2.8rem;
}

.ws-contact__menu-name {
  font-size: 1.4rem;
  padding: 0.9rem 0;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.ws-contact__menu-region {
  font-style: normal;
  font-weight: 400;
}

.ws-contact__menu-desc {
  display: none;
  padding-left: 1.4rem;
}

.ws-contact__menu-props {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
}

.ws-contact__menu-label,
.ws-contact__menu-type {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}

#tab-contact-map {
  height: 73.2rem;
  max-width: 103.6rem;
  width: 100%;
}

.ws-contact__map {
  border-radius: 0.9rem;
  height: 100% !important;
  overflow: hidden;
}

.ws-contact__list-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

.ws-contact__list-content {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, 1fr);
}

.ws-contact__list-item {
  border: 1px solid rgba(31, 34, 41, 0.1);
  border-radius: 0.9rem;
  padding: 2.3rem 1.9rem;
}

.ws-contact__list-name {
  border-bottom: 1px solid rgba(31, 34, 41, 0.2);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.3rem;
  padding-bottom: 1.1rem;
}

.ws-contact__list-name i {
  font-style: normal;
  position: relative;
}

.ws-contact__list-name i:before {
  border-radius: 0.2rem;
  content: "";
  display: inline-block;
  height: 1.3rem;
  margin-right: 1.1rem;
  position: relative;
  top: 1px;
  width: 1.3rem;
}

.ws-contact__list-item.item--fe0000 .ws-contact__list-name i:before {
  background: #fe0000;
}

.ws-contact__list-item.item--83cc1a .ws-contact__list-name i:before {
  background: #83cc1a;
}

.ws-contact__list-item.item--929292 .ws-contact__list-name i:before {
  background: #929292;
}

.ws-contact__list-item.item--6a1bcc .ws-contact__list-name i:before {
  background: #6a1bcc;
}

.ws-contact__list-item.item--ff9c00 .ws-contact__list-name i:before {
  background: #ff9c00;
}

.ws-contact__list-item.item--0078bf .ws-contact__list-name i:before {
  background: #0078bf;
}

.ws-contact__list-item.item--ff05dd .ws-contact__list-name i:before {
  background: #ff05dd;
}

.ws-contact__list-item.item--3b3b3b .ws-contact__list-name i:before {
  background: #3b3b3b;
}

.ws-contact__list-name .ws-contact__list-region {
  font-style: normal;
}

.ws-contact__list-props {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ws-contact__list-prop {
  margin-bottom: 1.3rem;
}

.ws-contact__list-prop:last-of-type {
  margin-bottom: 0;
}

.ws-contact__list-prop.prop--address .ws-contact__prop-value a span {
  color: #28b19a;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.ws-contact__list-prop.prop--address .ws-contact__prop-value a span:hover {
  text-decoration: none;
}

.ws-contact__prop-name {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
}

.ws-contact__prop-value {
  font-size: 1.6rem;
}

.prop--email .ws-contact__prop-value a {
  font-weight: 400;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.prop--email .ws-contact__prop-value a:hover {
  text-decoration: none;
}

.ws-contact__list-prop.prop--phone a,
.ws-contact__menu-prop.prop--phone a {
  color: #ab3b66;
}

.header__actions .i--over {
  cursor: pointer;
  display: block;
  height: 4.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 4.5rem;
  z-index: 2;
}

.hidden-doors__header {
  margin-bottom: 3rem;
  max-width: 126rem;
}

.hidden-doors__header .h1 {
  margin-bottom: 1.1rem;
}

.hidden-doors__header p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.195;
}

.hidden-doors__header p:last-of-type {
  margin-bottom: 0;
}

.hidden-doors__hero {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(4, 1fr);
}

.hidden-doors__hero-item {
  width: 100%;
}

.hidden-doors__hero-item:hover .hidden-doors__hero-item-image img {
  -webkit-transform: scale(1.028);
  -ms-transform: scale(1.028);
  transform: scale(1.028);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  will-change: transform;
}

.hidden-doors__hero-item .hidden-doors__hero-item-image {
  border-radius: 0.9rem;
}

.hidden-doors__hero-item span {
  font-size: 2rem;
  font-weight: 500;
}

.hidden-doors__hero-item-image {
  height: 45.7rem;
  margin-bottom: 1.6rem;
  overflow: hidden;
  width: 100%;
}

.hidden-doors__hero-item-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1.006);
  -ms-transform: scale(1.006);
  transform: scale(1.006);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  will-change: transform;
}

.hidden-doors__vantages {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background: #f4f4f4;
  border-radius: 0.9rem;
  gap: 4rem;
  justify-content: space-between;
  margin: 6.6rem 0;
  padding: 3.3rem 11.3rem 4.7rem;
}

.hidden-doors__vantages,
.hidden-doors__vantages-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hidden-doors__vantages-item {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hidden-doors__vantages-item:first-of-type {
  max-width: 20.4rem;
}

.hidden-doors__vantages-item:nth-of-type(2) {
  max-width: 19.8rem;
}

.hidden-doors__vantages-item:nth-of-type(3) {
  max-width: 21.3rem;
}

.hidden-doors__vantages-item:nth-of-type(4) {
  max-width: 18.4rem;
}

.hidden-doors__vantages-item-num {
  color: #ab3b66;
  font-size: 6.5rem;
  font-weight: 900;
  margin-bottom: 0;
}

.hidden-doors__vantages-item-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hidden-doors__vantages-item-text {
  color: #1f2229;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.hidden-doors__tabs-item {
  margin-bottom: 3.5rem;
}

.hidden-doors__tabs-item:last-of-type {
  margin-bottom: 0;
}

.hidden-doors__tabs-item.is-active .hidden-doors__tabs-inner {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  display: block;
}

.hidden-doors__tabs-item.is-active .hidden-doors__tabs-outer-btn-more .icon {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.hidden-doors__tabs-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hidden-doors__tabs-outer-image {
  border-radius: 0.9rem;
  height: 45.4rem;
  max-width: 65.2rem;
  overflow: hidden;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.hidden-doors__tabs-outer-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hidden-doors__tabs-outer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 3.9rem 7.5rem 3.8rem 6.2rem;
}

.hidden-doors__tabs-outer-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.hidden-doors__tabs-outer-text p:last-of-type {
  margin-bottom: 0;
}

.hidden-doors__tabs-outer-header .h2 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2.8rem;
}

.hidden-doors__tabs-outer-body {
  margin-top: auto;
}

.hidden-doors__tabs-outer-price {
  margin-bottom: 2.5rem;
}

.hidden-doors__tabs-outer-price,
.hidden-doors__tabs-outer-price span {
  color: #1f2229;
  font-size: 3.5rem;
  font-weight: 500;
}

.hidden-doors__tabs-outer-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.2rem;
}

.hidden-doors__tabs-outer-buttons .btn {
  height: 5rem;
  max-width: 22.6rem;
  width: 100%;
}

.hidden-doors__tabs-outer-btn-more {
  background: #28b19a;
  font-size: 1.4rem;
  font-weight: 400;
  gap: 1.3rem;
  text-transform: uppercase;
}

.hidden-doors__tabs-outer-btn-more:hover {
  background: #3ad2b9;
}

.hidden-doors__tabs-outer-btn-more .icon {
  height: 2rem;
  width: 2rem;
}

.hidden-doors__tabs-outer-btn-callback {
  background: #1f2229;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
}

.hidden-doors__tabs-outer-btn-callback:hover {
  background: #393f4c;
  border-color: transparent;
  color: #fff;
}

.hidden-doors__tabs-inner {
  display: none;
  padding: 4.1rem 0;
}

.hidden-doors__close-area {
  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;
  margin-top: 6.1rem;
}

.hidden-doors__close {
  font-size: 1.6rem;
  font-weight: 400;
  gap: 1.6rem;
  height: 5rem;
  max-width: 22.6rem;
  width: 100%;
}

.hidden-doors__close .icon {
  height: 0.8rem;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  width: 1.5rem;
}

.hidden-primed-doors .h2 {
  font-size: 4rem;
  font-weight: 500;
}

.hidden-primed-doors__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hidden-primed-doors__left {
  background: url(../img/hidden-primed-doors-hero-bg.jpg) 50% / cover no-repeat;
  max-width: 80.9rem;
  padding: 6.4rem 3.4rem 5.8rem;
  width: 100%;
}

.hidden-primed-doors__left .h2 {
  margin-bottom: 4.3rem;
}

.hidden-primed-doors__left-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9.5rem;
  margin-bottom: 3.1rem;
}

.hidden-primed-doors__left-flex p {
  font-size: 1.6rem;
  font-weight: 500;
}

.hidden-primed-doors__left-flex p span {
  color: #b52025;
}

.hidden-primed-doors__left-text {
  margin-bottom: 4.6rem;
  max-width: 35rem;
}

.hidden-primed-doors__left-text .h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.hidden-primed-doors__left-text p {
  font-size: 1.6rem;
}

.hidden-primed-doors__left-text p:last-of-type {
  margin-bottom: 0;
}

.hidden-primed-doors__left-text-2 {
  max-width: 42rem;
}

.hidden-primed-doors__left-text-2 .h4,
.hidden-primed-doors__left-text-2 p {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0;
  opacity: 0.4;
}

.hidden-primed-doors__right {
  background: #fafafa;
  border-radius: 0 0 0.9rem 0;
  max-width: 59rem;
  padding: 6.3rem 5.1rem 5.8rem 1.5rem;
  width: 100%;
}

.hidden-primed-doors__right .h2 {
  margin-bottom: 6.5rem;
}

.hidden-primed-doors__right p {
  font-size: 1.6rem;
  line-height: 1.5625;
  margin-bottom: 2.4rem;
}

.hidden-primed-doors__right p:last-of-type {
  margin-bottom: 0;
}

.hidden-primed-doors__mask {
  padding: 4rem 0 4.7rem;
}

.hidden-primed-doors__mask-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.hidden-primed-doors__mask-text {
  max-width: 80.9rem;
  padding-left: 3.4rem;
  width: 100%;
}

.hidden-primed-doors__mask-text .h2 {
  margin-bottom: 4.3rem;
}

.hidden-primed-doors__mask-text .italic {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5625;
  padding-left: 3.6rem;
}

.hidden-primed-doors__mask-text .custom-ul {
  max-width: 75rem;
}

.hidden-primed-doors__mask-image {
  max-width: 48.5rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-top: 3.7rem;
}

.hidden-primed-doors__mask-image img {
  height: 33.8rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.hidden-doors__montage {
  background: #f6f6f6;
  border-radius: 0.9rem;
  padding: 5rem 4rem;
}

.hidden-doors__montage-top .h2 {
  margin-bottom: 5.2rem;
}

.hidden-doors__montage-top-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hidden-doors__montage-top-video {
  max-width: 44.3rem;
  width: 100%;
}

.hidden-doors__montage-top-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}

.hidden-doors__montage-top-images img {
  border-radius: 0.9rem;
  height: 24.2rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 24.5rem;
}

.hidden-doors__montage-middle {
  margin-top: 8.6rem;
}

.hidden-doors__montage-middle-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hidden-doors__montage-middle-text {
  max-width: 85.8rem;
  width: 100%;
}

.hidden-doors__montage-middle-text .h2 {
  margin-bottom: 3.4rem;
}

.hidden-doors__montage-middle-text li,
.hidden-doors__montage-middle-text p {
  font-size: 1.6rem;
  line-height: 1.5625;
}

.hidden-doors__montage-middle-text ol,
.hidden-doors__montage-middle-text ul {
  margin: 1.3rem 0;
  padding-left: 2.6rem;
}

.hidden-doors__montage-middle-text b {
  font-weight: 500;
}

.hidden-doors__montage-middle-image {
  max-width: 41.1rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 32.4rem;
}

.hidden-doors__montage-middle-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hidden-doors__gallery {
  margin: 7.1rem 0 0;
}

.hidden-doors__gallery .h2 {
  margin-bottom: 3.5rem;
}

.hidden-doors__gallery-slider-area {
  position: relative;
}

.hidden-doors__gallery-slider-area .slider-nav__prev {
  background: url(../img/icons/nav-slider-prev.svg) 50% / contain no-repeat;
  left: -7rem;
}

.hidden-doors__gallery-slider-area .slider-nav__next {
  background: url(../img/icons/nav-slider-next.svg) 50% / contain no-repeat;
  right: -7rem;
}

.hidden-doors__gallery-slider-area .slider-arrow {
  height: 5.8rem;
  width: 5.8rem;
}

.hidden-doors__gallery-slider {
  overflow: hidden;
}

.hidden-doors__gallery-slider .swiper-slide .hidden-doors__gallery-slide {
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.hidden-doors__gallery-slider
  .swiper-slide-visible
  .hidden-doors__gallery-slide {
  opacity: 1;
  pointer-events: auto;
}

.hidden-doors__gallery-slide {
  width: 100%;
}

.hidden-doors__gallery-slide img {
  border-radius: 0.9rem;
  height: 24.2rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hidden-doors__video {
  padding: 8.6rem 0;
}

.hidden-doors__video .h2 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 0;
}

.video-slider {
  margin-top: 5rem;
}

.video-slider .swiper-slide .video-slide {
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.video-slider .swiper-slide-visible .video-slide {
  opacity: 1;
  pointer-events: auto;
}

.designers-reviews {
  padding: 8.6rem 0 0;
}

.designers-reviews .h2 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.designers-reviews__area {
  background: #f6f8f9;
  border-radius: 1.3rem;
  margin: 2rem auto 0;
  max-width: 100%;
  padding: 4.6rem 12.5rem;
  position: relative;
}

.hidden-doors .designers-reviews .container,
.hidden-doors .download-catalog .container,
.hidden-doors .hidden-doors__video .container {
  padding: 0;
}

.designers-reviews__slider .slider-nav__prev {
  background: url(../img/icons/nav-slider-prev.svg) 50% / contain no-repeat;
  left: -3.05rem;
}

.designers-reviews__slider .slider-nav__next {
  background: url(../img/icons/nav-slider-next.svg) 50% / contain no-repeat;
  right: -3.05rem;
}

.designers-reviews__slider .slider-arrow {
  height: 6.1rem;
  width: 6.1rem;
}

.designers-reviews__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.9rem;
}

.designers-reviews__slide-avatar {
  height: 32.8rem;
  max-width: 32.8rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.designers-reviews__slide-avatar img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.designers-reviews__slide-text {
  padding-top: 1.7rem;
}

.designers-reviews__slide-text p {
  margin-bottom: 2.4rem;
}

.designers-reviews__slide-text,
.designers-reviews__slide-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4375;
}

.designers-reviews__slide-text p:last-of-type {
  margin-bottom: 0;
}

.designers-reviews__slide-name {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 0.88;
  margin-bottom: 2.5rem;
}

.video-slide__preview {
  border-radius: 0.9rem;
  height: 25rem;
  margin-bottom: 1.9rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-slide__preview img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  width: 100%;
}

.video-slide__play {
  background: url(../img/icons/video-play2.svg) 50% / contain no-repeat;
  height: 8.2rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 8.2rem;
  z-index: 2;
}

.video-slide__title {
  font-size: 2rem;
  font-weight: 500;
}

.hidden-entrance-doors .h2 {
  font-size: 4rem;
  font-weight: 500;
}

.hidden-entrance-doors
  .custom-table--5-cols
  .custom-table__body
  .custom-table__col:nth-of-type(4),
.hidden-entrance-doors .custom-table__header .custom-table__col:nth-of-type(4) {
  -webkit-box-flex: 2.5;
  -ms-flex: 2.5;
  flex: 2.5;
}

.hidden-entrance-doors__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.7rem;
  margin-bottom: 4.9rem;
  padding-top: 9.2rem;
}

.hidden-entrance-doors__bl1-text {
  max-width: 68.3rem;
  padding-top: 2.8rem;
  width: 100%;
}

.hidden-entrance-doors__bl1-text .h2 {
  margin-bottom: 3.9rem;
}

.hidden-entrance-doors__bl1-text p {
  font-size: 1.6rem;
  line-height: 1.5625;
  margin-bottom: 2rem;
}

.hidden-entrance-doors__bl1-image {
  height: 36.4rem;
  max-width: 59.1rem;
  width: 100%;
}

.hidden-entrance-doors__bl1-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hidden-entrance-doors__bl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.7rem;
  margin-bottom: 4rem;
}

.hidden-entrance-doors__bl2-text {
  max-width: 79.4rem;
  width: 100%;
}

.hidden-entrance-doors__bl2-text .h2 {
  margin-bottom: 3.9rem;
  max-width: 68.7rem;
}

.hidden-entrance-doors__bl2-text p {
  font-size: 1.6rem;
  line-height: 1.5625;
}

.hidden-entrance-doors__bl2-text p:first-of-type {
  max-width: 68.3rem;
}

.hidden-entrance-doors__bl2-text p:last-of-type {
  margin-top: 2rem;
}

.hidden-entrance-doors__bl2-text ul {
  margin: 2rem 0;
  max-width: 48rem;
  padding: 0 2.8rem;
}

.hidden-entrance-doors__bl2-text li {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.hidden-entrance-doors__bl2-image {
  height: 47.7rem;
  margin-top: 5.6rem;
  max-width: 47.7rem;
  width: 100%;
}

.hidden-entrance-doors__bl2-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hidden-entrance-doors__bl3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11.8rem;
  margin-bottom: 7.5rem;
  padding-left: 10.7rem;
  padding-right: 1.3rem;
}

.hidden-entrance-doors__bl3-image {
  height: 46.9rem;
  max-width: 46.9rem;
  width: 100%;
}

.hidden-entrance-doors__bl3-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hidden-entrance-doors__bl3-text {
  max-width: 69.3rem;
  padding-top: 7.1rem;
  width: 100%;
}

.hidden-entrance-doors__bl3-text .h2 {
  margin-bottom: 2.9rem;
}

.hidden-entrance-doors__bl3-text ol {
  max-width: 48rem;
  padding: 0 2.3rem;
}

.hidden-entrance-doors__bl3-text li {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.hidden-entrance-doors__bl4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}

.hidden-entrance-doors__text {
  max-width: 41.4rem;
  padding-top: 18.3rem;
  width: 100%;
}

.hidden-entrance-doors__text .h2 {
  margin-bottom: 3.6rem;
}

.hidden-entrance-doors__text p {
  font-size: 1.6rem;
  line-height: 1.5625;
}

.hidden-entrance-doors__grid {
  display: grid;
  gap: 1.6rem 2.5rem;
  grid-template-columns: 39.4rem 24.5rem 24.5rem;
}

.hidden-entrance-doors__grid-mobile {
  display: none;
}

.hidden-entrance-doors__grid-item {
  height: 24.2rem;
  width: 100%;
}

.hidden-entrance-doors__grid-item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hidden-entrance-doors__youtube {
  cursor: pointer;
  position: relative;
}

.hidden-entrance-doors__youtube-play {
  left: 50%;
  position: absolute;
  top: 59%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.glass-hidden-doors-gallery,
.hidden-entrance-doors-gallery {
  background: #f6f6f6;
  border-radius: 0.9rem;
  margin-top: 5rem;
  padding: 4rem 4.5rem 4.9rem;
}

.glass-hidden-doors-gallery {
  margin-top: 0;
  padding-top: 5.4rem;
}

.glass-hidden-doors .h2 {
  font-size: 4rem;
  font-weight: 500;
}

.glass-hidden-doors
  .custom-table--5-cols
  .custom-table__body
  .custom-table__col:nth-of-type(4),
.glass-hidden-doors .custom-table__header .custom-table__col:nth-of-type(4) {
  -webkit-box-flex: 2.5;
  -ms-flex: 2.5;
  flex: 2.5;
}

.glass-hidden-doors__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.8rem;
  margin-top: 7.9rem;
}

.glass-hidden-doors__image {
  height: 37.4rem;
  max-width: 60.7rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.glass-hidden-doors__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.glass-hidden-doors__text {
  padding-top: 3.4rem;
}

.glass-hidden-doors__text .h2 {
  margin-bottom: 3.9rem;
}

.glass-hidden-doors__text p {
  font-size: 1.6rem;
  line-height: 1.5625;
  margin-bottom: 2rem;
  max-width: 65.7rem;
}

.glass-hidden-doors__bl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5.6rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 5rem;
  justify-content: space-between;
}

.glass-hidden-doors__bl2-text {
  max-width: 41.4rem;
  width: 100%;
}

.glass-hidden-doors__bl2-text .h2 {
  margin-bottom: 2.2rem;
}

.glass-hidden-doors__bl2-text p {
  font-size: 1.6rem;
  line-height: 1.5625;
  margin-bottom: 2rem;
}

.glass-hidden-doors__bl2-text p:last-of-type {
  margin-bottom: 0;
}

.glass-hidden-doors__bl2-images {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 39.4rem 24.5rem 24.5rem;
  margin-top: 5.3rem;
}

.glass-hidden-doors__bl2-images-mobile,
.glass-hidden-doors__bl2-images-mobile2 {
  display: none;
}

.glass-hidden-doors__bl2-image {
  height: 24.2rem;
  width: 100%;
}

.glass-hidden-doors__bl2-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.glass-hidden-doors__bl2-youtube {
  cursor: pointer;
  position: relative;
}

.glass-hidden-doors__bl2-youtube-play {
  height: 4.1rem;
  left: 50%;
  max-width: 5.4rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.glass-hidden-doors__bl3 {
  background: #f6f6f6;
  border-radius: 0.9rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4rem 4.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 6.4rem;
  justify-content: space-between;
  margin-top: 5.6rem;
}

.glass-hidden-doors__bl3-text {
  max-width: 84.7rem;
  padding-top: 1.6rem;
  width: 100%;
}

.glass-hidden-doors__bl3-text .h2 {
  margin-bottom: 2.8rem;
}

.glass-hidden-doors__bl3-text p {
  font-size: 1.6rem;
  line-height: 1.5625;
  margin-bottom: 2rem;
}

.glass-hidden-doors__bl3-text p:last-of-type {
  margin-bottom: 0;
}

.glass-hidden-doors__bl3-image {
  height: 39.9rem;
  max-width: 39.9rem;
  width: 100%;
}

.glass-hidden-doors__bl3-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hidden-doors-finishing .h2 {
  font-size: 4rem;
  font-weight: 500;
}

.hidden-doors-finishing
  .custom-table--5-cols
  .custom-table__body
  .custom-table__col:nth-of-type(4),
.hidden-doors-finishing
  .custom-table__header
  .custom-table__col:nth-of-type(4) {
  -webkit-box-flex: 2.7;
  -ms-flex: 2.7;
  flex: 2.7;
}

.hidden-doors-finishing__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 5.5rem;
  justify-content: space-between;
  margin-top: 3rem;
}

.hidden-doors-finishing__bl1-text {
  max-width: 79rem;
  width: 100%;
}

.hidden-doors-finishing__bl1-text .h2 {
  margin-bottom: 4rem;
}

.hidden-doors-finishing__bl1-text p {
  font-size: 1.6rem;
  line-height: 1.5625;
  margin-bottom: 2rem;
}

.hidden-doors-finishing__bl1-text-margin {
  margin-top: 8.6rem;
  max-width: 73.2rem;
}

.hidden-doors-finishing__bl1-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4rem;
  max-width: 55.5rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}

.hidden-doors-finishing__bl1-images img {
  height: 34.2rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hidden-doors-finishing__bl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.hidden-doors-finishing__bl2-image {
  border-radius: 1.2rem;
  height: 34.2rem;
  margin-top: 7rem;
  max-width: 55.5rem;
  width: 100%;
}

.hidden-doors-finishing__bl2-image img {
  border-radius: 1.2rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hidden-doors-finishing__bl2-text {
  max-width: 73.2rem;
  width: 100%;
}

.hidden-doors-finishing__bl2-text .h2 {
  margin-bottom: 1.2rem;
}

.hidden-doors-finishing__bl2-text p {
  font-size: 1.6rem;
  line-height: 1.5625;
  margin-bottom: 2rem;
}

.nav-next.swiper-button-disabled,
.nav-prev.swiper-button-disabled {
  opacity: 0.7;
}

.custom-table {
  padding: 2.5rem 0 0.6rem;
}

.custom-table--5-cols .custom-table__col:first-of-type {
  max-width: 77.3rem;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.custom-table--5-cols .custom-table__col:nth-of-type(2) {
  max-width: 19.8rem;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.custom-table--5-cols .custom-table__body .custom-table__col:first-of-type,
.custom-table--5-cols .custom-table__header .custom-table__col:first-of-type {
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 3.7rem;
}

.custom-table--5-cols .custom-table__header .custom-table__col:nth-of-type(4) {
  -webkit-box-flex: 1.4;
  -ms-flex: 1.4;
  flex: 1.4;
}

.custom-table--5-cols .custom-table__body .custom-table__col:nth-of-type(4) {
  font-size: 1.4rem;
  text-align: center;
  -webkit-box-flex: 1.4;
  -ms-flex: 1.4;
  flex: 1.4;
}

.custom-table__header {
  margin-bottom: 1.1rem;
}

.custom-table__header .custom-table__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4.7rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f6f6f6;
  border-radius: 0.9rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  font-size: 2rem;
  font-weight: 500;
  justify-content: center;
  text-align: center;
}

.custom-table__header-mobile {
  display: none;
}

.custom-table__row {
  gap: 0.5rem;
}

.custom-table__col,
.custom-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.custom-table__col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.6rem;
  height: 3.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.9rem;
}

.custom-table__col sup {
  font-size: 3rem;
  font-weight: 300;
  top: 0;
}

.custom-table__body .custom-table__row:nth-of-type(2n) .custom-table__col {
  background: #f6f6f6;
}

.custom-table-text {
  border-bottom: 3px solid rgba(31, 34, 41, 0.1);
  border-top: 3px solid rgba(31, 34, 41, 0.1);
  padding: 2.1rem 3.7rem;
}

.custom-table-text p {
  color: rgba(49, 54, 61, 0.7);
  font-size: 1.6rem;
  line-height: 1.4375;
  position: relative;
}

.custom-table-text p:last-of-type {
  margin-bottom: 0;
}

.custom-table-text--width-sup {
  padding-left: 5.3rem;
}

.custom-table-text--width-sup sup {
  color: #000;
  display: block;
  font-size: 3rem;
  font-weight: 300;
  left: -1.5rem;
  position: absolute;
  top: 0;
  top: 1rem;
}

.custom-table-text--width-sup p {
  position: relative;
}

.footer-form {
  padding-bottom: 7.8rem;
}

.footer-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12.3rem;
  padding: 0 18.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-form__text {
  margin-bottom: 3rem;
  max-width: 38.4rem;
  width: 100%;
}

.footer-form__text .h2 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2.6rem;
  text-align: right;
}

.footer-form__text p {
  font-size: 1.6rem;
  margin-left: auto;
  max-width: 27rem;
  text-align: right;
  width: 100%;
}

.footer-form__text p:last-of-type {
  margin-bottom: 0;
}

.footer-form__area {
  width: 100%;
}

.footer-form__inputs .footer-form__input {
  margin-bottom: 2.5rem;
}

.footer-form__inputs .input,
.footer-form__inputs .textarea {
  border: none;
  border-bottom: 1px solid rgba(31, 34, 41, 0.3);
  border-radius: 0;
  padding: 0 0 1rem;
}

.footer-form__inputs .input::-webkit-input-placeholder,
.footer-form__inputs .textarea::-webkit-input-placeholder {
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.75;
}

.footer-form__inputs .input::-moz-placeholder,
.footer-form__inputs .textarea::-moz-placeholder {
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.75;
}

.footer-form__inputs .input:-ms-input-placeholder,
.footer-form__inputs .textarea:-ms-input-placeholder {
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.75;
}

.footer-form__inputs .input::-ms-input-placeholder,
.footer-form__inputs .textarea::-ms-input-placeholder {
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.75;
}

.footer-form__inputs .input::placeholder,
.footer-form__inputs .textarea::placeholder {
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.75;
}

.footer-form__inputs .textarea {
  height: 8.8rem;
  margin-bottom: 0;
  scrollbar-color: #d6d6d7 transparent;
  scrollbar-width: thin;
}

.footer-form__inputs .textarea::-webkit-scrollbar {
  width: 7px;
}

.footer-form__inputs .textarea::-webkit-scrollbar-track {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.footer-form__inputs .textarea::-webkit-scrollbar-thumb {
  background-color: #d6d6d7;
  outline: none;
}

.footer-form__error {
  color: #b5191e;
  display: none;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 1rem 0;
}

.footer-form__error.is-active {
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
  display: block;
}

.footer-form__check {
  margin-top: 1.4rem;
}

.footer-form__check span {
  color: #707070;
  font-size: 1.4rem;
  font-weight: 300;
}

.footer-form__check span a {
  color: #000;
}

.footer-form__check .checkbox-icon {
  border: 1px solid rgba(31, 34, 41, 0.4);
  border-radius: 0.2rem;
  height: 2rem;
  width: 2rem;
}

.footer-form__check .custom-checkbox input:checked ~ .checkbox-icon {
  background: #fff;
  border: 1px solid rgba(31, 34, 41, 0.4);
}

.footer-form__check .checkbox-icon:after {
  background: url(../img/icons/check-v2.svg) 50% / contain no-repeat;
  height: 0.9rem;
  width: 1.1rem;
}

.footer-form__check .link:after {
  bottom: 0;
  height: 1px;
}

.footer-form__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
}

.footer-form__bottom .footer-form__input {
  position: relative;
}

.footer-form__bottom .footer-form__error {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.footer-form__bottom-btn {
  font-size: 1.6rem;
  font-weight: 400;
  height: 5rem;
  max-width: 22.6rem;
  width: 100%;
}

.footer-form__recapcha {
  border: 1px solid rgba(31, 34, 41, 0.2);
  border-radius: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5rem;
  max-width: 25.3rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 2.2rem;
}

.footer-form__recapcha .checkbox-icon {
  border: 1px solid rgba(31, 34, 41, 0.4);
  border-radius: 0.2rem;
  height: 2rem;
  width: 2rem;
}

.footer-form__recapcha .custom-checkbox input:checked ~ .checkbox-icon {
  background: #fff;
  border: 1px solid rgba(31, 34, 41, 0.4);
}

.footer-form__recapcha .checkbox-icon:after {
  background: url(../img/icons/check-v2.svg) 50% / contain no-repeat;
  height: 0.9rem;
  width: 1.1rem;
}

.footer-form__recapcha-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-form__recapcha-text span {
  font-weight: 300;
}

.footer-form__recapcha-text span:first-of-type {
  color: #1f2229;
  font-size: 1.6rem;
}

.footer-form__recapcha-text span:nth-of-type(2) {
  color: #1f2229;
  font-size: 1.2rem;
  opacity: 0.7;
}

.download-catalog {
  padding-bottom: 7.4rem;
}

.download-catalog__area {
  border-radius: 1.3rem;
  padding: 3.6rem 0 4.9rem;
}

.download-catalog__area .h2 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.download-catalog__grid {
  margin-top: 5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  border: 1px solid rgba(31, 34, 41, 0.2);
  border-radius: 1.3rem;
  gap: 16.9rem;
  justify-content: center;
  padding: 3rem;
}

.download-catalog__grid,
.download-catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.download-catalog__item {
  -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;
}

.download-catalog__item:hover .link {
  color: #b52025;
}

.download-catalog__item:hover .link:after {
  width: 0;
}

.download-catalog__item .link {
  font-size: 2rem;
}

.download-catalog__item-image {
  height: 39rem;
  margin-bottom: 2.2rem;
  max-width: 27.5rem;
  width: 100%;
}

.download-catalog__item-image img {
  border-radius: 1.3rem;
  -webkit-filter: drop-shadow(0 0 50px rgba(31, 34, 41, 0.2));
  filter: drop-shadow(0 0 50px rgba(31, 34, 41, 0.2));
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.slider-arrow {
  cursor: pointer;
  height: 8rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8rem;
  z-index: 2;
}

#aboutMenu,
#companyMenu,
#rightMenu {
  padding-bottom: 0;
  right: -50rem;
}

#aboutMenu.active,
#companyMenu.active,
#rightMenu.active {
  right: 0;
}

#aboutMenu ul,
#companyMenu ul,
#rightMenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  max-height: 34.4rem;
  overflow-y: auto;
}

#aboutMenu ul a:hover,
#companyMenu ul a:hover,
#rightMenu ul a:hover {
  color: #009a9a;
}

#aboutMenu .bottom,
#companyMenu .bottom,
#rightMenu .bottom {
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
  margin: auto -6.5rem 0;
  padding: 2.4rem 6.5rem 2.1rem;
}

#aboutMenu .bottom svg,
#companyMenu .bottom svg,
#rightMenu .bottom svg {
  height: 1.7rem;
  width: 1.7rem;
}

#aboutMenu .bottom b,
#companyMenu .bottom b,
#rightMenu .bottom b {
  font-weight: 500;
}

#aboutMenu .bottom p,
#companyMenu .bottom p,
#rightMenu .bottom p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}

#aboutMenu .bottom a,
#companyMenu .bottom a,
#rightMenu .bottom a {
  color: rgba(31, 34, 41, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.3rem;
}

#aboutMenu .bottom a:hover,
#companyMenu .bottom a:hover,
#rightMenu .bottom a:hover {
  color: #009a9a;
}

.sliding-partitions__header {
  margin-bottom: 4.4rem;
  max-width: 128.1rem;
}

.sliding-partitions__header .h1 {
  margin-bottom: 1.2rem;
}

.sliding-partitions__header p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
}

.sliding-partitions__header p:last-of-type {
  margin-bottom: 0;
}

.sliding-partitions__hero {
  display: none;
}

.sliding-partitions__hero-slider {
  position: relative;
}

.sliding-partitions__hero-slider .slider-nav__prev {
  background: url(../img/icons/nav-prev-v2.svg) 50% / contain no-repeat;
  left: -3.4rem;
}

.sliding-partitions__hero-slider .slider-nav__next {
  background: url(../img/icons/nav-next-v2.svg) 50% / contain no-repeat;
  right: -3.4rem;
}

.sliding-partitions__hero-slider .slider-arrow {
  height: 6.4rem;
  width: 6.4rem;
}

.sliding-partitions__hero-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sliding-partitions__hero-image {
  max-width: 75.3rem;
  width: 100%;
  -webkit-box-flex: 0;
  border-radius: 0.9rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 51.9rem;
  overflow: hidden;
}

.sliding-partitions__hero-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.sliding-partitions__hero-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 4.5rem;
  padding-right: 6.7rem;
  padding-top: 8.3rem;
  width: 100%;
}

.sliding-partitions__hero-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.195;
  max-width: 48.8rem;
}

.sliding-partitions__hero-text p:last-of-type {
  margin-bottom: 0;
}

.sliding-partitions__hero-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.7rem;
}

.sliding-partitions__hero-price {
  margin-top: 3.3rem;
}

.sliding-partitions__hero-price span {
  font-size: 2rem;
}

.sliding-partitions__hero-price span span {
  font-size: 4rem;
  font-weight: 600;
  padding: 0 0.4rem;
}

.sliding-partitions__hero-btn {
  background: #31363d;
  font-weight: 600;
  height: 4.6rem;
  margin-top: 2.3rem;
  max-width: 19.8rem;
  width: 100%;
}

.sliding-partitions__tabs {
  border-radius: 0.9rem;
  margin-top: 2.6rem;
}

.sliding-partitions__tab {
  background: #fff;
  border-radius: 0.9rem;
  margin-bottom: 2.2rem;
}

.sliding-partitions__tab:last-of-type {
  margin-bottom: 0;
}

.sliding-partitions__tab.is-active .sliding-partitions__tab-inner {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  display: block;
}

.sliding-partitions__tab.is-active .sliding-partitions__tab-outer-btn .icon {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.sliding-partitions__tab-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  padding: 3rem 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sliding-partitions__tab-outer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 55rem;
  text-align: right;
  width: 100%;
}

.sliding-partitions__tab-outer-text p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.sliding-partitions__tab-outer-text p:last-of-type {
  margin-bottom: 0;
}

.sliding-partitions__tab-outer-title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.7rem;
}

.sliding-partitions__tab-outer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.sliding-partitions__tab-outer-price {
  margin-top: 1.8rem;
}

.sliding-partitions__tab-outer-price span {
  font-size: 3.5rem;
  font-weight: 500;
}

.sliding-partitions__tab-outer-price span span {
  font-size: 3.5rem;
  font-weight: 500;
  padding: 0 0.4rem;
}

.sliding-partitions__tab-outer-btn {
  background: #28b19a;
  color: #fff;
  font-size: 1.4rem;
  gap: 1rem;
  height: 4.6rem;
  margin-top: 2.3rem;
  max-width: 19.8rem;
  text-transform: uppercase;
  width: 100%;
}

.sliding-partitions__tab-outer-btn:hover {
  background: #3ad2b9;
  color: #fff;
}

.sliding-partitions__tab-outer-btn .icon {
  height: 0.9rem;
  -webkit-transition: none;
  transition: none;
  width: 1.5rem;
}

.sliding-partitions__tab-outer-image {
  height: 49.1rem;
  max-width: 70.4rem;
  width: 100%;
  -webkit-box-flex: 0;
  border-radius: 0.9rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  overflow: hidden;
}

.sliding-partitions__tab-outer-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.sliding-partitions__tab-inner {
  display: none;
  padding-bottom: 10rem;
}

.sliding-partitions-inner {
  padding-left: 9.3rem;
}

.sliding-partitions-inner .h2 {
  margin-bottom: 2.4rem;
}

.sliding-partitions-inner .h2,
.sliding-partitions-inner .h3 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.sliding-partitions-inner li,
.sliding-partitions-inner p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4375;
}

.sliding-partitions-inner__column-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin-bottom: 4.6rem;
  padding-right: 10rem;
}

.sliding-partitions-inner__column-text p {
  width: 100%;
}

.sliding-partitions-inner__column-text p:first-of-type {
  max-width: 55rem;
}

.sliding-partitions-inner__column-text p:nth-of-type(2) {
  max-width: 53.3rem;
}

.sliding-partitions-inner__column-images {
  padding-left: 6.6rem;
  padding-right: 15.9rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin-bottom: 6.1rem;
}

.sliding-partitions-inner__column-image,
.sliding-partitions-inner__column-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sliding-partitions-inner__column-image {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sliding-partitions-inner__column-image:first-of-type {
  max-width: 55rem;
}

.sliding-partitions-inner__column-image:nth-of-type(2) {
  max-width: 53.3rem;
}

.sliding-partitions-inner__column-image span {
  font-size: 1.4rem;
}

.sliding-partitions-inner__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4.6rem;
  padding-right: 2.8rem;
}

.sliding-partitions-inner__main-text {
  max-width: 48.9rem;
  width: 100%;
}

.sliding-partitions-inner__main-text .h3 {
  margin-bottom: 5.2rem;
}

.sliding-partitions-inner__main-text p {
  margin-bottom: 2.2rem;
}

.sliding-partitions-inner__main-text p:last-of-type {
  margin-bottom: 0;
}

.sliding-partitions-inner__main-image {
  max-width: 72.1rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 46.5rem;
}

.sliding-partitions-inner__main-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.sliding-partitions-inner__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  padding-right: 9.1rem;
}

.sliding-partitions-inner__bottom p {
  margin-bottom: 2.2rem;
}

.sliding-partitions-inner__bottom p:last-of-type {
  margin-bottom: 0;
}

.sliding-partitions-inner__bottom-text {
  max-width: 52.4rem;
  width: 100%;
}

.sliding-partitions-inner__bottom-ral {
  max-width: 56.8rem;
  padding-top: 0.6rem;
  width: 100%;
}

.sliding-partitions-inner__rals {
  display: grid;
  gap: 2.3rem;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 3.3rem;
  padding-right: 3rem;
}

.sliding-partitions-inner__ral {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sliding-partitions-inner__ral img {
  border-radius: 0.4rem;
  height: 5.7rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 5.7rem;
}

.sliding-partitions-inner__ral span {
  font-size: 1.4rem;
  font-weight: 300;
  margin: 1.1rem -1rem 0;
}

.sliding-partitions__video {
  padding: 4rem 0 4.6rem;
}

.sliding-partitions__video .h2 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}

.sliding-partitions__video .video-slider {
  margin-top: 4.2rem;
}

.sliding-partitions__video .video-slide__title {
  display: block;
  padding-right: 1rem;
}

.wooden-interior {
  padding-right: 9.3rem;
  padding-top: 2rem;
}

.wooden-interior__bl1 .h2 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}

.wooden-interior__bl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 3.4rem;
}

.wooden-interior__bl2 p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4375;
}

.wooden-interior__bl2-left {
  max-width: 55rem;
  width: 100%;
}

.wooden-interior__bl2-right {
  max-width: 54.5rem;
  width: 100%;
}

.wooden-interior__bl3 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4.1rem;
  padding-left: 8.5rem;
  padding-right: 5.6rem;
}

.wooden-interior__bl3,
.wooden-interior__bl4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.wooden-interior__bl4 {
  gap: 4.4rem;
  margin-left: -6.6rem;
}

.wooden-interior__bl4-left {
  max-width: 65.3rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.wooden-interior__bl4-image {
  height: 48rem;
  width: 100%;
}

.wooden-interior__bl4-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.wooden-interior__bl4-right {
  max-width: 55.6rem;
  padding-top: 5.4rem;
  width: 100%;
}

.wooden-interior__bl4-right li,
.wooden-interior__bl4-right p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4375;
}

.wooden-interior__bl4-right .h2 {
  margin-bottom: 1.5rem;
  margin-top: 2.7rem;
}

.wooden-interior__bl4-right ul {
  margin: 0 0 3.5rem;
  padding: 0 0 0 1.5rem;
}

.wooden-interior__bl4-right li {
  margin-bottom: 0.6rem;
}

.wooden-interior__bl4-right img {
  display: block;
  margin-left: auto;
  padding-right: 4rem;
}

.wooden-interior__bl4-rals {
  margin-top: 5.1rem;
}

.partitions-fantom li,
.partitions-fantom p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.375;
}

.partitions-fantom .h2 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.partitions-fantom .hidden-doors__gallery .h2 {
  margin-bottom: 3rem;
}

.partitions-fantom__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 5.5rem;
  justify-content: space-between;
}

.partitions-fantom__bl1-left {
  max-width: 56.8rem;
  width: 100%;
}

.partitions-fantom__bl1-left .h2 {
  margin-bottom: 3.1rem;
}

.partitions-fantom__bl1-left p {
  margin-bottom: 2.4rem;
}

.partitions-fantom__bl1-right {
  max-width: 54.5rem;
  width: 100%;
}

.partitions-fantom__bl1-right .h2 {
  margin-bottom: 1.7rem;
}

.partitions-fantom__bl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 3.5rem;
  justify-content: space-between;
}

.partitions-fantom__bl2-image {
  max-width: 58.7rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-top: 1.7rem;
}

.partitions-fantom__bl2-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.partitions-fantom__bl2-text {
  max-width: 54.5rem;
  width: 100%;
}

.partitions-fantom__bl2-text .h2 {
  margin-bottom: 1.4rem;
}

.partitions-fantom__bl2-text p {
  margin-bottom: 1.5rem;
}

.partitions-fantom__bl2-text p b {
  font-weight: 600;
}

.partitions-fantom__bl2-colors {
  display: grid;
  gap: 1.9rem;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 2.1rem;
}

.partitions-fantom__bl2-color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  height: 6.3rem;
  width: 6.3rem;
}

.partitions-fantom__bl2-color img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.partitions-fantom__bl2-color span {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.33333;
  text-align: center;
}

.partitions-fantom__bl3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4.2rem;
  justify-content: space-between;
  margin-top: 4.2rem;
}

.partitions-fantom__bl3-text {
  max-width: 54.5rem;
  width: 100%;
}

.partitions-fantom__bl3-text .h2 {
  margin-bottom: 1.6rem;
}

.partitions-fantom__bl3-text p {
  margin-bottom: 1.5rem;
}

.partitions-fantom__bl3-text p b {
  font-weight: 600;
}

.partitions-fantom__bl3-image {
  height: 42.2rem;
  max-width: 58.7rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-top: 3.3rem;
}

.partitions-fantom__bl3-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.partitions-fantom__bl4 {
  margin-top: 2rem;
}

.partitions-fantom__bl4 .h2 {
  margin-bottom: 2.9rem;
}

.partitions-fantom__bl4-flex {
  gap: 4rem;
  padding-left: 1.1rem;
}

.partitions-fantom__bl4-flex,
.partitions-fantom__bl4-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.partitions-fantom__bl4-left {
  gap: 4.5rem;
  max-width: 52.4rem;
  width: 100%;
}

.partitions-fantom__bl4-left img {
  height: 25.6rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.partitions-fantom__bl4-left img:first-of-type {
  width: 14.9rem;
}

.partitions-fantom__bl4-left img:nth-of-type(2) {
  width: 15.8rem;
}

.partitions-fantom__bl4-left img:nth-of-type(3) {
  width: 11.6rem;
}

.partitions-fantom__bl4-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 58.7rem;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6.2rem;
}

.partitions-fantom__bl4-right img {
  -o-object-fit: contain;
  object-fit: contain;
}

.partitions-fantom__bl4-right img:first-of-type {
  height: 18.2rem;
  width: 28.7rem;
}

.partitions-fantom__bl4-right img:nth-of-type(2) {
  height: 16.7rem;
  width: 23.8rem;
}

.zoning-loft .h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.zoning-loft li,
.zoning-loft p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4375;
}

.zoning-loft__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 18.4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1rem;
}

.zoning-loft__bl1-text {
  max-width: 56.8rem;
  padding-top: 3.2rem;
  width: 100%;
}

.zoning-loft__bl1-text p {
  margin-bottom: 1.6rem;
}

.zoning-loft__bl1-text .h2 {
  margin-bottom: 2.2rem;
}

.zoning-loft__bl1-image {
  height: 26.1rem;
  max-width: 34.1rem;
  width: 100%;
}

.zoning-loft__bl1-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.zoning-loft__bl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 2.9rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 5.5rem;
}

.zoning-loft__bl2-text {
  max-width: 48.2rem;
  padding-top: 5rem;
  width: 100%;
}

.zoning-loft__bl2-text .h2 {
  margin-bottom: 2.6rem;
}

.zoning-loft__bl2-text p {
  margin-bottom: 1.4rem;
}

.zoning-loft__bl2-image {
  height: 49.1rem;
  max-width: 70.4rem;
  width: 100%;
}

.zoning-loft__bl2-image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.zoning-loft__bl3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 15.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin-top: 6.5rem;
}

.zoning-loft__bl3-text {
  max-width: 56.7rem;
  width: 100%;
}

.zoning-loft__bl3-image {
  height: 12.5rem;
  max-width: 47.4rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.zoning-loft__bl3-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.zoning-loft__rals {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 3.7rem;
  justify-content: center;
  margin: 3.7rem auto 0 10.2rem;
  max-width: 97.3rem;
}

.zoning-loft__ral,
.zoning-loft__rals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.zoning-loft__ral {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.3rem;
  width: 6.4rem;
}

.zoning-loft__ral img {
  border-radius: 0.9rem;
  height: 6.3rem;
  width: 6.4rem;
}

.zoning-loft__ral span {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.33333;
  text-align: center;
}

.sliding-partitions__tab-outer-image {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.sliding-partitions__tab-outer {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.sliding-partitions__tab-outer-text {
  text-align: left;
}

.sliding-partitions__tab-outer-flex,
.sliding-partitions__tab-outer-text {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#regionMenu .social-block img {
  height: 3.2rem;
  width: 3.2rem;
}

#regionMenu .social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.9rem;
  margin-top: auto;
}

.regoin-menu-btn {
  margin-bottom: 2rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

#regionMenu .info {
  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%;
}

.callback-modal .modal__close {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.callback-modal .socialRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5rem;
}

.callback-modal .socialRow .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.callback-modal .socialRow .item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

.smarts-category {
  margin-bottom: 6.1rem;
  margin-top: -2.3rem;
}

.smarts-category__description {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.195;
  max-width: 127.6rem;
}

.smarts-category__description p {
  margin-bottom: 0;
}

.smarts-category__grid {
  display: grid;
  gap: 2.8rem 7.6rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4rem;
}

.smarts-category__title {
  display: block;
  font-size: 1.8rem;
  margin-top: 1.4rem;
  text-transform: uppercase;
}

.smarts-category__image {
  height: 40.8rem;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.smarts-category__image img {
  border-radius: 0.8rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.furn-sections {
  margin-top: 5.7rem;
}

.furn-sections__grid {
  display: grid;
  gap: 1.9rem;
  grid-template-columns: repeat(3, 1fr);
}

.furn-sections__image {
  height: 43.2rem;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.furn-sections__image img {
  border-radius: 0.9rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.furn-sections__title {
  display: block;
  font-size: 2rem;
  margin-top: 2.6rem;
}

.furn-sections__item:hover .furn-sections__image,
.smarts-category__item:hover .smarts-category__image {
  -webkit-filter: brightness(0.85);
  filter: brightness(0.85);
}

.cart {
  padding-bottom: 6rem;
}

.cart .cart__item-to-favorites .icon {
  stroke: #191c1f;
  fill: #fff;
}

.cart .cart__item-to-favorites {
  cursor: pointer;
}

.cart__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart__main {
  max-width: 99.8rem;
  width: 100%;
}

.cart__main .h1 {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0;
}

.cart__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.9rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 1.8rem;
}

.cart__h1 {
  display: contents;
}

.cart__header-count {
  color: rgba(0, 0, 0, 0.5);
  font-size: 2rem;
}

.cart__header-count.--mobile {
  display: none;
}

.cart__header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 1.6rem;
}

.cart__header-download {
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1.15;
}

.cart__header-download span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.1rem;
}

.cart__header-download span:before {
  background: url(../img/icons/cart-download.svg) 50% / contain no-repeat;
  content: "";
  display: block;
  height: 2rem;
  width: 1.7rem;
}

.cart__header-print {
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1.15;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.cart__header-print:hover {
  color: #000;
}

.cart__header-print span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}

.cart__header-print span:before {
  background: url(../img/icons/print.svg) 50% / contain no-repeat;
  content: "";
  display: block;
  height: 1.9rem;
  width: 2.1rem;
}

.cart__body {
  margin-top: 2rem;
}

.cart__item {
  border: 1px solid rgba(31, 34, 41, 0.15);
  border-radius: 0.4rem;
  padding: 1.5rem 5.6rem 1.5rem 4.3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.cart__item,
.cart__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart__item-info {
  gap: 4.6rem;
  max-width: 37.2rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.cart__item-image {
  height: 16rem;
  max-width: 7.1rem;
  width: 100%;
}

.cart__item-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.cart__item-description {
  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-article {
  color: rgba(31, 34, 41, 0.5);
  font-size: 1.5rem;
  line-height: 1.33333;
  margin-bottom: 0.8rem;
}

.cart__item-name {
  font-size: 2rem;
  line-height: 1.15;
}

.cart__item-mobile-area {
  display: contents;
}

.cart__item-quantity {
  max-width: 25rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cart__item-price,
.cart__item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.cart__item-price {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 20rem;
}

.cart__item-price-old {
  color: #1f2229;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.33333;
  margin-top: -0.7rem;
  opacity: 0.5;
  text-decoration: line-through;
}

.cart__item-price-main {
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.66667;
}

.cart__item-price-main span {
  font-size: 1.8rem;
}

.cart__item-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.9rem;
}

.cart__item-to-favorites {
  position: static !important;
}

.cart__item-to-favorites .icon {
  height: 2rem;
  width: 2.5rem;
}

.cart__item-to-remove {
  cursor: pointer;
}

.cart__item-to-remove .icon {
  height: 2.5rem;
  width: 2.3rem;
}

.cart__form {
  margin-top: 5.8rem;
}

.cart__form-wrap .h2 {
  color: #31363d;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 3.3rem;
}

.cart__form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 0.6rem;
  justify-content: space-between;
}

.cart__form-left {
  max-width: 49.6rem;
  width: 100%;
}

.cart__form-input {
  margin-bottom: 1.4rem;
}

.cart__form-input:last-of-type {
  margin-bottom: 0;
}

.cart__form-input .input,
.cart__form-input .textarea {
  border: 1px solid rgba(31, 34, 41, 0.15);
  border-radius: 0.4rem;
  font-size: 1.8rem;
  font-weight: 300;
  height: 5.7rem;
  padding: 0 1.7rem;
}

.cart__form-input .input::-webkit-input-placeholder,
.cart__form-input .textarea::-webkit-input-placeholder {
  color: rgba(31, 34, 41, 0.5);
}

.cart__form-input .input::-moz-placeholder,
.cart__form-input .textarea::-moz-placeholder {
  color: rgba(31, 34, 41, 0.5);
}

.cart__form-input .input:-ms-input-placeholder,
.cart__form-input .textarea:-ms-input-placeholder {
  color: rgba(31, 34, 41, 0.5);
}

.cart__form-input .input::-ms-input-placeholder,
.cart__form-input .textarea::-ms-input-placeholder {
  color: rgba(31, 34, 41, 0.5);
}

.cart__form-input .input::placeholder,
.cart__form-input .textarea::placeholder {
  color: rgba(31, 34, 41, 0.5);
}

.cart__form-input .textarea {
  padding: 1.7rem;
}

.cart__form-input-error {
  color: #b5191e;
  display: none;
  font-size: 1.4rem;
  margin: 1rem 0;
}

.cart__form-input-error.is-active {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  display: block;
}

.cart__form-right {
  max-width: 49.6rem;
  width: 100%;
}

.cart__form-right .cart__form-input--textarea,
.cart__form-right .textarea {
  height: 100%;
}

.cart__aside {
  max-width: 38rem;
  padding-top: 15.3rem;
  width: 100%;
}

.cart__aside-area {
  background: #fff;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 38px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 38px 0 rgba(0, 0, 0, 0.08);
  padding: 4.2rem 3.5rem 2rem;
  position: sticky;
  top: 13rem;
}

.cart__aside-header {
  border-bottom: 1px solid rgba(31, 34, 41, 0.5);
  font-size: 1.8rem;
  padding-bottom: 2.3rem;
}

.cart__aside-items {
  margin: 3.6rem 0 3.9rem;
  max-height: 17.6rem;
  overflow-y: auto;
}

.cart__aside-item {
  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: 1.2rem;
}

.cart__aside-item:last-of-type {
  margin-bottom: 0;
}

.cart__aside-item-name {
  font-size: 1.8rem;
  line-height: 1.27778;
}

.cart__aside-item-count {
  color: rgba(31, 34, 41, 0.5);
  font-size: 1.6rem;
}

.cart__aside-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.3rem;
}

.cart__aside-total span:first-of-type {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.cart__aside-total span:nth-of-type(2) {
  font-size: 4rem;
  font-weight: 700;
}

.cart__aside-total span:nth-of-type(2) span {
  font-size: 1.8rem;
  font-weight: 600;
}

.cart__aside-saving {
  color: rgba(31, 34, 41, 0.5);
  font-size: 1.8rem;
}

.cart__aside-order {
  margin-top: 3rem;
  width: 100%;
}

.cart__aside-order-btn {
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  height: 4.4rem;
  pointer-events: auto;
  width: 100%;
}

.cart__aside-order-btn.btn--disabled {
  background: rgba(171, 59, 102, 0.5);
  color: hsla(0, 0%, 100%, 0.5);
  cursor: not-allowed;
}

.cart__aside-copy {
  font-size: 1.6rem;
  margin-top: 1.6rem;
}

.cart__aside-copy,
.cart__aside-copy a {
  color: rgba(31, 34, 41, 0.5);
}

.cart__fixed-mobile {
  background: #fff;
  bottom: 0;
  -webkit-box-shadow: 0 -4px 21px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 21px 0 rgba(0, 0, 0, 0.15);
  display: none;
  left: 0;
  padding: 12px 15px;
  position: fixed;
  width: 100%;
  z-index: 500;
}

.cart__fixed-mobile-area {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.cart-empty .h1 {
  font-size: 5rem;
  margin-bottom: -0.9rem;
}

.cart-empty__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 7.2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-empty__content {
  max-width: 78rem;
  width: 100%;
}

.cart-empty__header {
  margin-bottom: 3.4rem;
}

.cart-empty__header p {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.28571;
  margin-bottom: 0;
}

.cart-empty__header p a {
  color: #b5191e;
}

.cart-empty__header p a:after {
  bottom: 0;
}

.cart-empty__body p {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cart-empty__body a {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.cart-empty__btn {
  font-size: 2rem;
  font-weight: 400;
  height: 5.2rem;
  margin-top: 2.7rem;
  max-width: 40.5rem;
  padding-bottom: 0.2rem;
  width: 100%;
}

.cart-empty__image {
  height: 42.7rem;
  left: -5rem;
  max-width: 47rem;
  top: -2.2rem;
  width: 100%;
}

.cart-empty__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.quantity-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bt-minus {
  background: url(../img/icons/quantity-minus.svg) 50%/2.5rem no-repeat;
  border: none;
  cursor: pointer;
  height: 5rem;
  width: 5rem;
}

.bt-minus,
.quantity {
  margin: 0;
  padding: 0;
}

.quantity {
  background: none;
  border: 1px solid #dedede;
  border-radius: 0.4rem;
  font-size: 3rem;
  font-weight: 400;
  font-weight: 700;
  height: 5.2rem;
  max-width: 5.3rem;
  min-width: 5.3rem;
  text-align: center;
}

.bt-plus {
  background: url(../img/icons/quantity-plus.svg) 50%/2.5rem no-repeat;
  border: none;
  cursor: pointer;
  height: 5rem;
  margin: 0;
  outline: none;
  padding: 0;
  width: 5rem;
}

.cart__item-image .no--photo {
  background-color: #fafafa;
  background-size: 11rem;
}

.furn__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6rem;
}

.furn__links {
  max-width: 81rem;
}

.furn__links,
.furn__links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.furn__links ul {
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.furn__links li {
  background: rgba(31, 34, 41, 0.1);
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5.8rem;
  max-width: 26rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  justify-content: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.furn__links li.is--active {
  background: #1f2229;
  color: #fff;
}

.catalog__sort {
  margin-left: auto;
}

.furn-list__grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(4, 1fr);
}

.furn-list__item {
  border: 1px solid rgba(31, 34, 41, 0.25);
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 2rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.furn-list__item:hover {
  border: 1px solid rgba(31, 34, 41, 0.5);
}

.furn-list__image {
  max-height: 18.7rem;
  max-width: 9.5rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.furn-list__image img {
  max-height: 18.7rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.furn-list__text {
  font-size: 1.6rem;
  -webkit-line-clamp: 6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 6;
  overflow: hidden;
}

.furn-list__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.furn-list__price-value {
  font-size: 1.8rem;
}

.furn-list__props {
  font-size: 1.6rem;
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.furn-list__text:empty {
  display: none;
}

.header__cart,
.header__fav {
  cursor: pointer;
}

.furn-list-detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6rem;
}

.furn-list-detail__title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.furn-list-detail__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 16rem;
  max-width: 16rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.furn-list-detail__image img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.furn-list-detail__text {
  font-size: 1.6rem;
  line-height: 1.375;
}

.furn-list-detail__props {
  font-size: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.furn-list-detail__price {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.furn-list-detail__item .catalog-item__buttons {
  gap: 2rem;
  margin-top: 2rem;
  padding-left: 22rem;
}

.furn-list--cylinders .furn-list__item,
.furn-list--handles .furn-list__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.furn-list--cylinders .furn-list__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 15.7rem;
  max-width: 24.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.furn-list--cylinders .furn-list__image img {
  max-height: 15.7rem;
}

.furn-list--handles .furn-list__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 11rem;
  max-width: 23.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.furn-list--handles .furn-list__image img {
  max-height: 11rem;
}

.furn-list--handles .furn-list__item {
  gap: 3rem;
  padding: 3rem;
}

.furn-list--handles .furn-list__props-name {
  display: none;
}

.furn-list--handles .furn-list__props-value {
  display: block;
}

.furn-list--handles .furn-list__props-value:first-letter {
  text-transform: uppercase;
}

.furn-list--cylinders .furn-list__props,
.furn-list--handles .furn-list__props {
  margin: 0.5rem 0;
}

.furn-list--cylinders .furn-list__title,
.furn-list--handles .furn-list__title {
  margin-bottom: 0.5rem;
}

.furn-list-detail__item .catalog-item__to-cart {
  background: #28b19a;
  gap: 1.2rem;
  max-width: 50%;
}

.furn-list-detail__item .catalog-item__to-cart .icon {
  height: 1.9rem;
  width: 1.9rem;
}

.furn-list-detail__item .catalog-item__to-fav {
  line-height: 1;
  max-width: 50%;
  position: static;
  text-transform: uppercase;
  -webkit-box-flex: 1;
  background: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ab3b66;
  border-radius: 0.4rem;
  color: #fff;
  gap: 1.2rem;
  height: 5.2rem;
}

.furn-list-detail__item .catalog-item__to-fav .icon {
  height: 1.9rem;
  width: 2.3rem;
  stroke: #fff;
  fill: none;
}

.cart .cart__item-to-favorites.is-fill .icon {
  stroke: #b5191e;
  fill: #b5191e;
}

.furn-list-detail__props span {
  color: #28b19a;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.furn-list-detail__props {
  margin: 1rem 0 1.5rem;
}

.furn-list-detail__props li {
  margin: 0.5rem 0;
}

.furn-list-detail__props .prop--color .furn-list-detail__props-value {
  display: inline-block;
}

.furn-list-detail__props
  .prop--color
  .furn-list-detail__props-value:first-letter {
  text-transform: uppercase;
}

.download-catalog__area {
  background: none;
}

.sliding-partitions__tabs {
  background: none;
  padding: 0;
}

.hidden-doors__vantages {
  border: none;
}

.designers-reviews .h2,
.download-catalog__area .h2,
.hidden-doors__video .h2 {
  text-align: left;
}

.sliding-partitions__tab-outer-btn .icon {
  display: none;
}

.sliding-partitions__tab-outer-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  font-weight: 400;
  gap: 1.3rem;
  justify-content: center;
  line-height: 1;
  text-transform: uppercase;
}

.sliding-partitions__tab-outer-btn span:after {
  background: url(../img/icons/down-icon.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 2rem;
  width: 2rem;
}

.cart__aside-order-btn {
  background: #ab3b66;
}

.param-filter .filter-row .filter-row-item .options.has--colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.4rem 1.3rem;
  max-width: 26rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.filter-wnd.modalStyled .ws-modal__window {
  height: 100%;
}

.filter-wnd.modalStyled .param-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.filter-wnd.modalStyled .param-filter .bottom {
  margin-top: auto;
}

.header__menu li.has--sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu li.has--sub .icon {
  display: inline-block;
  height: 1.5rem;
  margin-bottom: 0.2rem;
  margin-left: -0.8rem;
  width: 0.9rem;
}

.how-buy__item--3.active .how-buy__item-image {
  -webkit-transform: scale(1.15) translate(-0.6rem, -0.1rem) rotate(-9.7deg);
  -ms-transform: scale(1.15) translate(-0.6rem, -0.1rem) rotate(-9.7deg);
  transform: scale(1.15) translate(-0.6rem, -0.1rem) rotate(-9.7deg);
}

@media (min-width: 767px) {
  .fancybox-custom.fancybox-show-thumbs .fancybox-thumbs {
    padding: 2rem 0;
  }

  .fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list a {
    float: none;
    margin: 2rem auto;
  }

  .articles-lvl2 .articles__content-section ul a {
    padding: 0.67rem 0;
  }

  .articles-lvl2 .articles__content {
    max-width: 88.9rem;
  }

  .articles-lvl2 .articles__wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .completed-work__item:hover .completed-work__item-image img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
  }

  .communication-form__footer .custom-checkbox:hover span {
    color: rgba(31, 34, 41, 0.5);
  }

  .how-buy__item.active {
    -webkit-box-flex: 1.46;
    -ms-flex: 1.46;
    flex: 1.46;
  }

  .how-buy__item.active p {
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }

  .how-buy__item--1.active .how-buy__item-image {
    -webkit-transform: scale(1) translate(10.4rem, -1.6rem);
    -ms-transform: scale(1) translate(10.4rem, -1.6rem);
    transform: scale(1) translate(10.4rem, -1.6rem);
  }

  .how-buy__item--2.active .how-buy__item-image {
    -webkit-transform: scale(1.44) translate(6.8rem, 0.9rem) rotate(-11deg);
    -ms-transform: scale(1.44) translate(6.8rem, 0.9rem) rotate(-11deg);
    transform: scale(1.44) translate(6.8rem, 0.9rem) rotate(-11deg);
  }

  .how-buy__item--3.active .how-buy__item-image {
    -webkit-transform: scale(1.15) translate(-0.6rem, -0.1rem) rotate(-18.7deg);
    -ms-transform: scale(1.15) translate(-0.6rem, -0.1rem) rotate(-18.7deg);
    transform: scale(1.15) translate(-0.6rem, -0.1rem) rotate(-18.7deg);
  }

  .how-buy__item--4.active .how-buy__item-image {
    -webkit-transform: scale(0.64) translate(9.3rem, 6.2rem);
    -ms-transform: scale(0.64) translate(9.3rem, 6.2rem);
    transform: scale(0.64) translate(9.3rem, 6.2rem);
  }

  .custom-checkbox:hover span {
    color: #000;
  }

  .catalog__grid.grid--wide {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 0;
  }

  .catalog__grid.grid--wide .catalog-item:nth-of-type(4n) {
    border-color: #d6d7d8;
  }

  .catalog__grid.grid--wide .catalog-item:nth-of-type(5n) {
    border-color: transparent;
  }

  .catalog__grid.grid--wide .catalog-item:after {
    left: -6px;
    width: 6px;
  }

  .entrance-doors-catalog__grid.grid--wide {
    gap: 2.2rem;
    grid-template-columns: repeat(4, 1fr);
  }

  .header-bottom__nav {
    padding-left: 0;
  }

  .interior-catalog__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }

  .hero__slide {
    height: 58.5rem;
  }

  .stock-detail__price-main span {
    font-size: 3.5rem;
    font-weight: 400;
  }

  .stock-detail__price-main {
    font-size: 6rem;
    font-weight: 700;
  }

  .metalcard.design--dsf .metalcard__reverse-icon,
  .metalcard.design--dsfbb .metalcard__reverse-icon,
  .metalcard__holder.design--dsf .metalcard__reverse-icon,
  .metalcard__holder.design--dsfbb .metalcard__reverse-icon {
    left: -3.4rem;
  }

  .metalcard.design--ds .metalcard__reverse-icon,
  .metalcard__holder.design--ds .metalcard__reverse-icon {
    left: -3rem;
  }

  .header-bottom__nav {
    padding-left: 3rem;
  }

  .sliding-doors__types-grid {
    gap: 3.8rem 2.5rem;
  }

  .portfolio-video__item-description {
    padding-right: 0;
  }

  .gipermenu__col {
    width: 100%;
  }

  .entrance-doors .doors-type__grid {
    gap: 1.3rem;
    padding: 0;
  }

  .entrance-doors .doors-type__item {
    padding: 2rem 4.2rem;
  }

  .entrance-doors .doors-type {
    padding: 4.5rem 0 3.3rem;
  }

  .metalcard.design--osf .metalcard__images,
  .metalcard__holder.design--osf .metalcard__images {
    gap: 7.1rem;
    margin-left: 1.5rem;
    max-width: 57.5rem;
    width: 100%;
  }

  .metalcard.design--osf .metalcard__image,
  .metalcard__holder.design--osf .metalcard__image {
    height: 65rem;
  }

  .metalcard.design--osf .metalcard__content,
  .metalcard__holder.design--osf .metalcard__content {
    padding-left: 9.2rem;
  }

  .metalcard.design--osf .metalcard__image-download,
  .metalcard__holder.design--osf .metalcard__image-download {
    bottom: 4.5rem;
    right: 1.5rem;
  }

  .metalcard.design--osf .metalcard__actions,
  .metalcard__holder.design--osf .metalcard__actions {
    margin: 0 -1.2rem;
  }

  .metalcard.design--osfb .metalcard__reverse-icon,
  .metalcard__holder.design--osfb .metalcard__reverse-icon {
    left: -3.8rem;
  }

  .metalcard.design--osfbv .metalcard__reverse,
  .metalcard__holder.design--osfbv .metalcard__reverse {
    max-width: 59.4rem;
  }

  .metalcard.design--osfbv .metalcard__reverse-front,
  .metalcard__holder.design--osfbv .metalcard__reverse-front {
    max-width: 36.9rem;
  }

  .metalcard.design--osfbv .metalcard__reverse-area,
  .metalcard__holder.design--osfbv .metalcard__reverse-area {
    gap: 7.1rem;
  }

  .metalcard.design--osfbv .metalcard__reverse-front-image .metalcard__image,
  .metalcard__holder.design--osfbv
    .metalcard__reverse-front-image
    .metalcard__image {
    height: 64.9rem;
  }

  .metalcard.design--osfbv .metalcard__reverse-icon,
  .metalcard__holder.design--osfbv .metalcard__reverse-icon {
    left: -5rem;
  }

  .metalcard.design--dsfbb .metalcard__reverse,
  .metalcard__holder.design--dsfbb .metalcard__reverse {
    max-width: 66.7rem;
  }

  .metalcard.design--dsfbb .metalcard__reverse-front,
  .metalcard__holder.design--dsfbb .metalcard__reverse-front {
    max-width: 46.3rem;
  }

  .metalcard.design--dsfbb .metalcard__reverse-area,
  .metalcard__holder.design--dsfbb .metalcard__reverse-area {
    gap: 4.5rem;
  }

  .metalcard.design--dsfbb .metalcard__reverse-front-image .metalcard__image,
  .metalcard__holder.design--dsfbb
    .metalcard__reverse-front-image
    .metalcard__image {
    height: 64.9rem;
  }

  .metalcard.design--dsfbb .metalcard__reverse-icon,
  .metalcard__holder.design--dsfbb .metalcard__reverse-icon {
    left: -3.9rem;
  }

  .metalcard.design--ds .metalcard__reverse,
  .metalcard__holder.design--ds .metalcard__reverse {
    max-width: 73.5rem;
  }

  .metalcard.design--ds .metalcard__reverse-front,
  .metalcard__holder.design--ds .metalcard__reverse-front {
    max-width: 49.9rem;
  }

  .metalcard.design--ds .metalcard__reverse-area,
  .metalcard__holder.design--ds .metalcard__reverse-area {
    gap: 5.3rem;
  }

  .metalcard.design--ds .metalcard__reverse-front-image .metalcard__image,
  .metalcard__holder.design--ds
    .metalcard__reverse-front-image
    .metalcard__image {
    height: 58rem;
  }

  .metalcard.design--ds .metalcard__reverse-icon,
  .metalcard__holder.design--ds .metalcard__reverse-icon {
    left: -4.1rem;
  }

  .metalcard.design--ds .metalcard__reverse-actions,
  .metalcard__holder.design--ds .metalcard__reverse-actions {
    max-width: 49.4rem;
    padding: 0 4.8rem;
  }

  .metalcard.design--dsf .metalcard__reverse,
  .metalcard__holder.design--dsf .metalcard__reverse {
    max-width: 66rem;
    max-width: 67rem;
  }

  .metalcard.design--dsf .metalcard__reverse-front,
  .metalcard__holder.design--dsf .metalcard__reverse-front {
    max-width: 45.7rem;
  }

  .metalcard.design--dsf .metalcard__reverse-area,
  .metalcard__holder.design--dsf .metalcard__reverse-area {
    gap: 4.5rem;
  }

  .metalcard.design--dsf .metalcard__reverse-front-image .metalcard__image,
  .metalcard__holder.design--dsf
    .metalcard__reverse-front-image
    .metalcard__image {
    height: 64.9rem;
  }

  .metalcard.design--dsf .metalcard__reverse-icon,
  .metalcard__holder.design--dsf .metalcard__reverse-icon {
    left: -3.1rem;
    left: -4.3rem;
  }

  .metalcard.design--dsf .metalcard__reverse-actions,
  .metalcard__holder.design--dsf .metalcard__reverse-actions {
    max-width: 45.7rem;
    padding: 0 2.7rem;
  }

  .card__color:hover,
  .card__offer:hover .card__offer-image {
    outline: 1px solid rgba(49, 54, 61, 0.1);
  }

  .card__offer:hover .card__offer-image {
    outline-offset: 0.4rem;
  }

  .ws-contact__data-btns,
  .ws-contact__regions select,
  .ws-contact__regions-content select {
    display: none;
  }

  .panels-list_items {
    gap: 2.5rem 4rem;
  }

  .panels-list__item-btns {
    margin-top: 1.4rem;
  }

  .panels-list__item.is--selected:after {
    top: -0.7rem;
    width: 13.6rem;
  }

  .panels-filter__section {
    height: 9rem;
  }

  .panels-filter__section.section--fav sup {
    right: 6rem;
    top: 0.9rem;
  }

  .metaldlg-list.type--frame .metaldlg-list__item-btns .btn,
  .metaldlg-list.type--furn .metaldlg-list__item-btns .btn {
    font-size: 1.6rem;
  }

  .metaldlg-list.type--frame .metaldlg-list__item-btns {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    gap: 3.2rem;
    justify-content: flex-start;
  }

  .collection-category__gridE {
    grid-template-columns: repeat(5, 1fr);
  }

  .collection-category__item-bg {
    height: 26.4rem;
  }

  .entrance-doors__hero .collection-category__item-title {
    font-size: 1.8rem;
  }

  .interior-catalog--v2 .interior-catalog__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .catalog-item--rd .catalog-item__image {
    height: 29.7rem;
  }

  .catalog-item--rd .catalog-item__buttons {
    gap: 0.7rem;
  }

  .catalog-item--rd .catalog-item__to-fav .icon {
    height: 2.2rem;
    width: 2.7rem;
  }

  .catalog-item--rd .catalog-item__to-fav {
    right: 1.4rem;
    top: 0.8rem;
  }

  .interior-item__steaker {
    border-radius: 0.2rem;
    font-size: 1.4rem;
    font-weight: 400;
  }

  .card__color:hover {
    outline: 1px solid #ab3b66;
    outline-offset: 0.3rem;
  }

  .card__offer.is-active .card__offer-image,
  .card__offer:hover .card__offer-image {
    outline: 1px solid #ab3b66;
    outline-offset: 0.4rem;
  }

  .card__offer:hover .card__offer-title {
    color: #000;
  }

  .ws-contact__data-btns,
  .ws-contact__regions select,
  .ws-contact__regions-content select {
    display: none;
  }

  .glass-hidden-doors-gallery
    .hidden-doors__gallery-slider-area
    .slider-nav__prev,
  .hidden-entrance-doors-gallery
    .hidden-doors__gallery-slider-area
    .slider-nav__prev {
    left: -7.6rem;
  }

  .glass-hidden-doors-gallery
    .hidden-doors__gallery-slider-area
    .slider-nav__next,
  .hidden-entrance-doors-gallery
    .hidden-doors__gallery-slider-area
    .slider-nav__next {
    right: -7.6rem;
  }

  .sliding-partitions .footer-form {
    padding-bottom: 10rem;
  }

  .wooden-interior__bl4-rals .sliding-partitions-inner__rals {
    gap: 1.9rem;
    grid-template-columns: repeat(8, 1fr);
    padding-left: 4rem;
    padding-right: 0;
  }

  .partitions-fantom {
    padding-right: 9.3rem;
    padding-top: 0.4rem;
  }

  .partitions-fantom .hidden-doors__gallery-slider-area .slider-nav__prev {
    left: -2.5rem;
  }

  .partitions-fantom .hidden-doors__gallery-slider-area .slider-nav__next {
    right: -2.5rem;
  }

  .partitions-fantom .hidden-doors__gallery-slide img {
    height: 27.3rem;
  }

  .partitions-fantom .hidden-doors__gallery-slider-area .slider-arrow {
    height: 6.1rem;
    width: 6.1rem;
  }

  .ws-wnd.ws-wnd__furn .ws-modal__window {
    padding: 8.6rem 7.2rem 6.6rem;
  }

  .sliding-partitions__tab-outer-btn {
    height: 5.2rem;
    max-width: 21.7rem;
  }

  .sliding-partitions__tab {
    margin-bottom: 0;
  }

  .filter-row {
    max-height: 58rem;
  }
}

@media (min-width: 1930px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1940px) {
  .header.header--inner .header__wrap {
    padding: 0;
  }

  .header__wrap {
    max-width: 192rem;
    padding-right: 8rem;
  }

  .hero:after {
    display: none;
  }

  .hero:before {
    display: none;
  }
}

@media (max-width: 1800px) {
  .header__wrap {
    max-width: 100%;
    padding-right: 10rem;
  }

  .hero:after,
  .hero:before {
    display: none;
  }
}

@media (max-width: 1700px) {
  html {
    font-size: 9px;
  }

  .header.header--inner .header__logo {
    max-width: 22rem;
  }

  .header__wrap {
    padding-right: 10rem;
  }

  .header__geo {
    margin-left: 6.3rem;
  }
}

@media (max-width: 1600px) {
  .header.header--inner {
    padding: 4.6rem 4rem;
  }

  .header.header--inner .header__logo {
    max-width: 21rem;
  }

  .header.header--inner.fixed {
    padding: 2.7rem 4rem;
  }

  .header__geo {
    gap: 0;
    margin: 0 3rem;
  }

  .hero:after {
    display: none;
  }

  .hero:before {
    display: none;
  }

  .hero__slider-bg img {
    height: 80rem;
  }

  .header__wrap {
    padding-right: 5rem;
  }

  #aboutMenu ul,
  #companyMenu ul,
  #rightMenu ul {
    max-height: 27.6rem;
  }

  #regionMenu .top {
    margin-right: -1rem;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-color: #d6d6d7 transparent;
    scrollbar-width: thin;
  }

  #regionMenu .top::-webkit-scrollbar {
    width: 7px;
  }

  #regionMenu .top::-webkit-scrollbar-track {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  #regionMenu .top::-webkit-scrollbar-thumb {
    background-color: #d6d6d7;
    outline: none;
  }

  #regionMenu .social-block {
    margin-top: 3rem;
  }

  .header__menu li.has--sub .icon {
    height: 1.4rem;
  }
}

@media (max-width: 1500px) {
  .control {
    font-size: 1.5rem;
  }

  .header__geo {
    margin: 0 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }

  .header__geo a {
    padding-left: 0;
  }

  .header__burger {
    margin-left: 1rem;
  }

  .header__actions {
    gap: 1.4rem;
    margin: 0 2rem;
  }

  .hero__slider-bg img {
    height: 85rem;
  }

  #aboutMenu ul,
  #companyMenu ul,
  #rightMenu ul {
    max-height: 30.4rem;
  }
}

@media (max-width: 1450px) {
  .header__geo {
    margin-right: 2rem;
  }

  .header__actions {
    margin: 0 1rem;
  }
}

@media (max-width: 1430px) {
  html {
    font-size: 8.6px;
  }
}

@media (max-width: 1400px) {
  .header.header--inner .header__logo {
    max-width: 18rem;
  }

  .header__logo {
    max-width: 20rem;
  }

  .header__logo img {
    max-width: 13.2rem;
  }

  .hero__slider-content {
    padding-top: 28rem;
  }

  .custom-checkbox span {
    font-size: 1.8rem;
  }

  .checkbox-icon {
    height: 1.8rem;
    width: 1.8rem;
  }

  .custom-checkbox__found,
  .custom-checkbox__found-btn {
    font-size: 1.6rem;
  }

  .catalog-filter__show-more {
    font-size: 1.4rem;
  }

  #aboutMenu .top,
  #companyMenu .top,
  #rightMenu .top {
    gap: 4rem;
  }

  #aboutMenu ul,
  #companyMenu ul,
  #rightMenu ul {
    max-height: 23.4rem;
  }

  .filter-row {
    max-height: 43rem;
  }
}

@media (max-width: 1320px) {
  html {
    font-size: 8.4px;
  }
}

@media (max-width: 1300px) {
  .new .textBlock.second .text {
    width: 35%;
  }
}

@media (max-width: 1250px) {
  .sluzhba-servisa__list__desc {
    padding: 30px 10px 10px;
  }

  .sluzhba-servisa__list__image i {
    padding: 60% 0;
  }
}

@media (max-width: 1200px) {
  .new .textBlock.second .image,
  .new .textBlock.second .text {
    width: 45%;
  }

  .new .textBlock.second .image:after {
    background-size: contain;
    height: 200px;
    left: -70px;
    width: 200px;
  }
}

@media (max-width: 1150px) {
  .sluzhba-servisa__list_container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sluzhba-servisa__list__item {
    margin-right: 2%;
    width: 40%;
  }

  .sluzhba-servisa__list__item:nth-child(3n) {
    margin-right: 2%;
  }

  .sluzhba-servisa__list__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 1100px) {
  body.is-lock,
  body.lock {
    padding-right: 0;
  }

  .header__geo {
    margin: 0 3rem;
  }

  .header__configurator,
  .header__geo,
  .header__geo a,
  .header__menu a,
  .header__menu li {
    font-size: 1.4rem;
  }
  .article-dveri-top .video {
    margin-bottom: 5px;
    width: 100%;
  }

  .article-dveri-top .video i {
    height: auto;
    padding: 25% 0;
  }

  .article-dveri-top .dark_bg {
    width: 100%;
  }

  .razdvizhnye__list__item {
    width: 48%;
  }

  .special__list__images {
    width: 25%;
  }

  .special__list__image {
    width: 100%;
  }

  .special__list__desc {
    width: 75%;
  }

  .items-photo {
    padding-right: 0;
  }
}

@media (max-width: 1050px) {
  .new .textBlock.therd {
    margin-bottom: 130px;
  }
}

@media (max-width: 1000px) {
  .download__list__item {
    margin: 0 5% 20px;
    width: 40%;
  }

  .peregorodki-photo__list__item {
    margin-right: 2%;
    width: 49%;
  }

  .peregorodki-photo__list__item:nth-child(3n) {
    margin-right: 2%;
  }

  .peregorodki-photo__list__item:nth-child(2n) {
    margin-right: 0;
  }

  .peregorodki-derev__list__item {
    width: 30%;
  }

  .peregorodki-text2 .row div {
    width: 100%;
  }

  .peregorodki-text2 .row div.p-4 {
    margin-bottom: 15px;
  }

  .sluzhba-servisa__list_container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .sluzhba-servisa__list__item {
    margin-right: 2%;
    width: 49%;
  }

  .sluzhba-servisa__list__item:nth-child(3n) {
    margin-right: 2%;
  }

  .sluzhba-servisa__list__item:nth-child(2n) {
    margin-right: 0;
  }

  .new .textBlock.first {
    margin-bottom: 130px;
  }

  .new .textBlock.second .text {
    width: 50%;
  }

  .new .textBlock.second .image {
    width: 37%;
  }

  .new .textBlock.second .image:after {
    background-size: contain;
    height: 200px;
    left: -70px;
    width: 200px;
  }

  .sertifikaty-images .align-items .item {
    width: 32%;
  }
}

@media (max-width: 950px) {
  .article-dveri-bottom .col-left {
    margin-bottom: 15px;
    width: 100%;
  }

  .article-dveri-bottom .col-right {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .pencils-list__item {
    margin-right: 2%;
    width: 49%;
  }

  .pencils-list__item:nth-child(3n) {
    margin-right: 2%;
  }

  .pencils-list__item:nth-child(2n) {
    margin-right: 0;
  }

  .grid {
    margin-bottom: 30px;
  }

  .widget-image-text > .media {
    margin-bottom: 15px;
    width: 100%;
  }

  .widget-image-text .widget-text {
    width: 100%;
  }

  .separated-botom .row .widget-text.graybg {
    padding: 10px 20px;
  }

  .pencils-blist__item {
    margin-right: 2%;
    width: 32%;
  }

  .pencils-blist__item:nth-child(4n) {
    margin-right: 2%;
  }

  .pencils-blist__item:nth-child(3n) {
    margin-right: 0;
  }

  .new .textBlock.second .text {
    width: 100%;
  }

  .new .textBlock.second .image {
    display: none;
  }

  .new .textBlock.therd {
    height: auto;
    margin-bottom: 30px;
  }

  .new .textBlock.therd .text {
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 0;
    position: relative;
    width: 100%;
  }

  .new .textBlock.therd .image {
    float: none;
  }

  .items-photo > .item {
    margin-right: 2%;
    width: 32%;
  }

  .items-photo > .item:nth-child(4n) {
    margin-right: 2%;
  }

  .items-photo > .item:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 800px) {
  .sluzhba-servisa__list__item {
    margin-right: 0;
    width: 100%;
  }

  .sluzhba-servisa__list__item:nth-child(3n) {
    margin-right: 0;
  }

  .sluzhba-servisa__list__item:nth-child(2n) {
    margin-right: 0;
  }

  .sluzhba-servisa__list__image i {
    padding: 30% 0;
  }
}

@media (max-width: 776px) {
  .control {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .razdvizhnye-text5 {
    padding: 20px 15px;
  }

  .sluzhba-servisa__list__item {
    margin-right: 2%;
    width: 49%;
  }

  .sluzhba-servisa__list__item:nth-child(3n) {
    margin-right: 2%;
  }

  .sluzhba-servisa__list__item:nth-child(2n) {
    margin-right: 0;
  }

  .sluzhba-servisa__list__image i {
    padding: 50% 0;
  }

  .new .textBlock.first {
    height: auto;
    margin-bottom: 20px;
  }

  .new .textBlock.first .image {
    float: none;
    margin: 20px 0;
    text-align: center;
  }

  .new .textBlock.first .image img {
    margin: 0 auto;
  }

  .new .textBlock.first .text {
    float: none;
    margin-bottom: 20px;
    margin-top: 0;
    position: relative;
    right: auto;
    width: 100%;
  }

  .new .textBlock.last {
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .sertifikaty-images .item {
    margin-right: 2%;
    width: 49%;
  }

  .sertifikaty-images .item:nth-child(3n) {
    margin-right: 2%;
  }

  .sertifikaty-images .item:nth-child(2n) {
    margin-right: 0;
  }

  .b-block__title {
    font-size: 23px;
    line-height: 26px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
  }

  main,
  main.main--inner {
    padding-top: 50px;
  }

  .touch [data-fullscreen] {
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
  }

  .input,
  .textarea {
    font-size: 15px;
    padding: 0 13px;
    text-align: left;
  }

  .textarea {
    padding: 13px;
  }

  .select-box {
    font-size: 14px;
    width: 100%;
  }

  .select-box__current {
    font-size: 14px;
    height: 54px;
    padding-left: 12px;
    padding-right: 35px;
  }

  .select-box__list {
    font-size: 14px;
    width: 100%;
  }

  .select-box__option {
    padding: 6px 20px;
  }

  .h1 {
    font-size: 23px;
  }

  .h2 {
    font-size: 20px;
  }

  .h3 {
    font-size: 18px;
  }

  .container,
  .container-1500 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .btn {
    font-size: 16px;
    height: 50px;
    line-height: 1;
    padding: 0;
  }

  .fancybox-custom .fancybox-button,
  .fancybox-custom-video .fancybox-button {
    height: 4rem;
    margin: 20px;
    width: 4rem;
  }

  .fancybox-custom .fancybox-navigation .fancybox-button,
  .fancybox-custom-video .fancybox-navigation .fancybox-button {
    top: calc(50% - 20px);
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
    height: 4rem;
    width: 4rem;
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
    display: none;
    right: 0;
    right: env(safe-area-inset-left);
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left {
    display: none;
    left: 0;
    left: env(safe-area-inset-left);
  }

  .fancybox-custom .fancybox-caption .fancybox-completed-work-info,
  .fancybox-custom-video .fancybox-caption .fancybox-completed-work-info {
    margin-top: 1rem;
    padding: 1.6rem;
  }

  .fancybox-custom .fancybox-completed-work-info,
  .fancybox-custom-video .fancybox-completed-work-info {
    margin-top: 1rem;
    padding: 16px 16px 13px;
  }

  .fancybox-custom .fancybox-completed-work-title,
  .fancybox-custom-video .fancybox-completed-work-title {
    font-size: 1.6rem;
    margin-bottom: 3px;
  }

  .fancybox-custom .fancybox-completed-work-price,
  .fancybox-custom-video .fancybox-completed-work-price {
    font-size: 1.6rem;
  }

  .fancybox-custom-video .fancybox-slide {
    padding: 12px;
  }

  .fancybox-custom.fancybox-show-thumbs .fancybox-inner {
    left: 0;
  }

  .fancybox-custom.fancybox-show-thumbs .fancybox-thumbs {
    bottom: 30px;
    padding-bottom: 10px;
    top: auto;
    width: 100%;
  }

  .fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list a:before {
    margin: -2px;
  }

  .fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list a {
    height: 58px;
    margin: 5px;
    width: 60px;
  }

  .slider-nav {
    gap: 10px;
  }

  .fixed-calling {
    display: none;
  }

  .parametrs-btn {
    font-size: 13px;
    height: 44px;
    max-width: 100%;
  }

  .parametrs-btn .icon {
    height: 13px;
    width: 16px;
  }

  .catalog__grid {
    gap: 12px 6px;
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-item {
    padding: 8px 6px;
  }

  .catalog-item__article {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .catalog-item__article:before {
    font-size: 12px;
  }

  .catalog-item__to-fav {
    right: 6px;
    top: 3px;
  }

  .catalog-item__to-fav .icon {
    height: 15px;
    width: 18px;
  }

  .catalog-item__image {
    height: auto;
  }

  .catalog-item__images {
    gap: 8px;
    margin-bottom: 8px;
  }

  .catalog-item__title {
    font-size: 12px;
    margin-bottom: 7px;
    min-height: 29px;
    padding: 0;
  }

  .catalog-item__price {
    gap: 5px;
    margin-bottom: 8px;
  }

  .catalog-item__price b {
    display: none;
  }

  .catalog-item__price-main {
    font-size: 12px;
  }

  .catalog-item__price-main span {
    font-size: 20px;
  }

  .catalog-item__price-sale {
    font-size: 12px;
  }

  .catalog-item__buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
  }

  .catalog-item__buttons .btn {
    font-size: 11px;
    height: 28px;
    width: 100%;
  }

  .catalog-item__buttons .catalog-item__to-form {
    max-width: 100%;
  }

  .catalog-item__buttons .catalog-item__to-cart {
    height: 28px;
    max-width: 46px;
  }

  .catalog-item__buttons .catalog-item__to-cart .icon {
    height: 16px;
    width: 16px;
  }

  .catalog-teasers {
    gap: 6px;
  }

  .catalog__footer {
    padding: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .catalog__loadmore {
    font-size: 13px;
    max-width: 100%;
  }

  .catalog__pagination ul li.active {
    height: 40px;
    width: 40px;
  }

  .catalog__pagination a,
  .catalog__pagination li {
    font-size: 15px;
  }

  .subscribe {
    margin: 30px 0 0;
  }

  .subscribe .container {
    background: transparent;
    padding: 0;
  }

  .subscribe__area:after {
    display: none;
  }

  .subscribe__area {
    background: url(../img/subscribe-bg-mobile.png) 50% / cover no-repeat;
    background-color: #f2f2f2;
    height: 637px;
    padding: 31px 28px;
  }

  .subscribe__area .h2 {
    font-size: 2.6rem;
    text-align: center;
  }

  .subscribe__links {
    gap: 10px;
    margin-top: 18px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .subscribe__link {
    gap: 7px;
  }

  .subscribe__link span {
    font-size: 23px;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
  }

  .subscribe__link img {
    height: 38px;
    width: 38px;
  }

  .subscribe__text {
    margin-top: 19px;
    max-width: 100%;
    padding: 0 22px;
    text-align: center;
  }

  .subscribe__text p {
    font-size: 17px;
  }

  .catalog-slider {
    padding: 50px 0 30px;
  }

  .catalog-slider .swiper-slide .catalog-item {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: initial;
    transition: initial;
  }

  .catalog-slider__header {
    margin-bottom: 15px;
  }

  .catalog-slider__header .h2 {
    font-size: 20px;
  }

  .catalog-slider__nav,
  .header {
    display: none;
  }

  .bottom-nav-mobile,
  .header-mobile {
    display: block;
  }

  .breadcrumbs {
    padding: 10px 0 20px;
  }

  .breadcrumbs__area ul {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    font-size: 10px;
    overflow-x: auto;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }

  .breadcrumbs__area li:not(:last-of-type):after {
    margin: 0 0.6rem;
  }

  .footer {
    padding: 55px 0 97px;
  }

  .footer__wrap {
    padding: 0;
  }

  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-top__col:first-of-type {
    display: none;
  }

  .footer-top__col:nth-of-type(2) {
    display: none;
  }

  .footer-top__col:nth-of-type(3) {
    display: none;
    left: 0;
  }

  .footer-top__col:nth-of-type(4) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    text-align: center;
    -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;
  }

  .footer-top__col:nth-of-type(4) .footer__title {
    margin-bottom: 19px;
  }

  .footer__title {
    line-height: 1.2;
    margin-bottom: 11px;
  }

  .footer__phones {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .footer-top__social,
  .footer__phones {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-top__social {
    margin-bottom: 28px;
  }

  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 26px;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-bottom__col:first-of-type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
  }

  .footer-bottom__col:nth-of-type(2) {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    margin-bottom: 5.6rem;
    order: -1;
    padding-top: 0;
  }

  .footer__logo {
    display: none;
  }

  .footer__copyright {
    margin: 0 auto;
    max-width: 29.9rem;
    text-align: center;
  }

  .footer__copyright p {
    font-size: 14px;
  }

  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }

  .footer__links a {
    font-size: 14px;
  }

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

  .about__hero {
    height: auto;
    margin: 20px 0;
  }

  .about__main .h2 {
    font-size: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .about__main .h2 span {
    font-size: 18px;
  }

  .about__main p {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .about__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
  }

  .about__info-image {
    height: auto;
    max-width: 100%;
  }

  .about__info-text {
    padding: 0;
  }

  .about__info-text p {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .about__nums {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
    padding: 0;
  }

  .about__num span:first-of-type {
    font-size: 35px;
    margin-bottom: 10px;
  }

  .about__num span:nth-of-type(2) {
    font-size: 14px;
  }

  .about__text-images {
    margin: 10px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .about__text-images-text {
    padding-bottom: 0;
  }

  .about__text-images-text .big-margin {
    margin-bottom: 10px;
  }

  .about__text-images-text h3 {
    font-size: 20px;
    margin: 15px 0 10px;
  }

  .about__text-images-text p {
    font-size: 15px;
  }

  .about__text-images-images {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
    height: 200px;
    max-width: 100%;
  }

  .about__text-images-images img {
    height: 200px;
  }

  .about__text-images-images img:first-of-type {
    max-width: 100%;
  }

  .about__text-images-images img:nth-of-type(2) {
    max-width: 100%;
  }

  .about__text-images.reverse .about__text-images-images {
    gap: 6px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .about__text-images.reverse-images .about__text-images-text {
    padding: 0;
  }

  .about__text-images.reverse-images .big-margin {
    margin-bottom: 10px;
  }

  .about__qlty {
    gap: 20px;
    margin: 20px 0;
    padding: 24px;
  }

  .about__qlty-logo {
    max-width: 40px;
  }

  .about__qlty-text p {
    font-size: 13px;
  }

  .about__qlty-text p br {
    display: none;
  }

  .about__inn {
    font-size: 14px;
    margin: 20px 0;
    text-align: center;
  }

  .architects .h1 {
    margin-bottom: 20px;
  }

  .architects .h2 {
    font-size: 16px;
  }

  .architects .h2 br {
    display: none;
  }

  .architects .h3 {
    font-size: 15px;
    line-height: 1.25;
    margin-top: 10px;
  }

  .architects .h3 br {
    display: none;
  }

  .architects li,
  .architects p {
    font-size: 14px;
  }

  .architects__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .architects__top ul {
    margin: 10px 0;
    padding-left: 17px;
  }

  .architects__top ul li:after {
    left: -17px;
    top: 5px;
  }

  .architects__top-image {
    height: auto;
    max-width: 100%;
  }

  .architects__middle {
    margin-top: 15px;
  }

  .architects__middle ul {
    margin: 10px 0 20px;
    padding-left: 17px;
  }

  .architects__middle ul li:after {
    height: 11px;
    left: -17px;
    top: 3px;
    width: 6px;
  }

  .architects__middle-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .architects__middle-left {
    max-width: 100%;
  }

  .architects__middle-right {
    margin-top: -13px;
    max-width: 100%;
  }

  .architects__middle-item-last {
    margin-top: 10px;
  }

  .architects__middle-bottom {
    margin-top: 20px;
  }

  .architects__middle-bottom a {
    font-size: 18px;
  }

  .articles {
    padding-bottom: 20px;
  }

  .articles__area .h1 {
    font-size: 23px;
  }

  .articles__wrap {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .articles__menu {
    max-width: 100%;
  }

  .articles__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3px 30px;
    padding-left: 17px;
    padding-right: 0;
  }

  .articles__menu ul a,
  .articles__menu ul li {
    font-size: 14px;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
  }

  .articles__menu ul a:hover,
  .articles__menu ul li:hover {
    text-decoration: none;
  }

  .articles__menu ul a {
    padding: 5px 0;
  }

  .articles__menu-sticky {
    position: static;
  }

  .articles__menu-title {
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .articles__content {
    margin-top: 25px;
    padding: 0 0 0 25px;
  }

  .articles__content-section {
    margin-bottom: 30px;
  }

  .articles__content-section ul a,
  .articles__content-section ul li {
    font-size: 14px;
  }

  .articles__content-section ul a {
    padding: 5px 0;
  }

  .articles__content-section ul a:after {
    height: 12px;
    left: -25px;
    top: 7px;
    width: 14px;
  }

  .articles__content-section-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .articles__content-section-title:after {
    height: 16px;
    left: -27px;
    top: 1px;
    width: 17px;
  }

  .articles__content-section-more {
    font-size: 15px;
  }

  .articles__pagination {
    margin: 0;
    padding: 0 25px 0 0;
  }

  .panels-list__item-name:after {
    display: none;
  }

  .metaldlg-wnd {
    padding: 24px;
  }

  .panels-filter__sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .panels-filter__section .icon {
    max-height: 30px !important;
    max-width: 30px !important;
  }

  .panels-filter__section {
    height: auto;
    max-width: 100%;
    padding: 12px;
  }

  .panels-filter__section-icon {
    max-height: 30px;
    max-width: 30px;
  }

  .panels-filter__section span {
    font-size: 12px;
    margin-top: 5px;
  }

  .panels-filter__sections {
    margin-bottom: 20px;
  }

  .panels-filter__value {
    padding: 10px;
  }

  .panels-filter__value-check {
    height: 14px;
    margin-right: 0;
    width: 14px;
  }

  .panels-filter__value-label,
  .panels-filter__value-text {
    font-size: 12px;
  }

  .panels-filter__values {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
  }

  .panels-list {
    margin-top: 20px;
    padding-top: 30px;
  }

  .panels-filter__values.values--color .panels-filter__value-check i,
  .panels-filter__values.values--material .panels-filter__value-check i {
    height: 14px;
    width: 14px;
  }

  .panels-filter__values.values--options .panels-filter__value {
    padding: 10px;
  }

  .panels-filter__values.values--color,
  .panels-filter__values.values--material {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, 1fr);
  }

  .panels-filter__values.values--color .panels-filter__value-count,
  .panels-filter__values.values--color .panels-filter__value-label,
  .panels-filter__values.values--material .panels-filter__value-count,
  .panels-filter__values.values--material .panels-filter__value-label {
    font-size: 12px;
  }

  .panels-filter__values.values--color .panels-filter__value,
  .panels-filter__values.values--material .panels-filter__value {
    max-width: 100%;
  }

  .panels-filter__values.values--color .panels-filter__value-check,
  .panels-filter__values.values--material .panels-filter__value-check {
    height: 50px;
  }

  .panels-filter__values.values--doors {
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }

  .panels-filter__values.values--doors .panels-filter__value-check {
    height: 100px;
    padding: 10px;
  }

  .panels-filter__values.values--doors .panels-filter__value-check i {
    height: 14px;
    width: 14px;
  }

  .panels-filter__values.values--doors .panels-filter__value-count,
  .panels-filter__values.values--doors .panels-filter__value-label {
    font-size: 12px;
  }

  .panels-list_items {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }

  .panels-list__item.is--selected:after {
    width: calc(100% + 20px);
  }

  .panels-list__item-btns {
    margin-top: 10px;
  }

  .panels-list__item-name {
    padding: 8px;
    width: 100%;
  }

  .metaldlg-close {
    right: 16px;
    top: 19px;
  }

  .metaldlg-list.type--frame .metaldlg-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .metaldlg-list.type--frame .metaldlg-items {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }

  .metaldlg-list.type--frame .metaldlg-list__item {
    gap: 10px;
    padding: 10px;
  }

  .metaldlg-list.type--frame .metaldlg-list__item-image {
    height: 100px;
    width: 100px;
  }

  .metaldlg-list.type--frame .metaldlg-list__item-desc {
    padding: 0;
  }

  .metaldlg-list.type--frame .metaldlg-list__item-name {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .metaldlg-list.type--frame .metaldlg-list__item-price {
    font-size: 14px;
  }

  .metaldlg-list.type--frame .metaldlg-list__item-price span {
    font-size: 18px;
  }

  .metaldlg-list.type--frame .metaldlg-list__item-btns .btn {
    font-size: 12px;
    height: 30px;
    padding: 0;
  }

  .metaldlg-list.type--frame .metaldlg-list__item-btns {
    font-size: 12px;
    gap: 10px;
    max-width: 100%;
  }

  .metaldlg-list.type--furn .metaldlg-items {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .metaldlg-list.type--furn .metaldlg-list__item-name {
    font-size: 18px;
  }

  .metaldlg-list.type--furn .metaldlg-list__item-btns .link {
    font-size: 12px;
  }

  .metaldlg-list.type--furn .metaldlg-list__item-btns {
    gap: 10px;
  }

  .metaldlg-list.type--furn .metaldlg-list__item-btns .btn {
    font-size: 12px;
    height: 30px;
    padding: 0;
  }

  .metaldlg-list.type--furn .metaldlg-list__item {
    padding: 0 10px 10px;
  }

  .metaldlg-list.type--furn .metaldlg-list__item-image {
    height: 100px;
  }

  .panels-filter__values.values--types .panels-filter__value-text {
    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;
    text-align: center;
  }

  .panels-filter__value {
    width: calc(50% - 4px);
  }

  .panels-filter__values.values--options .panels-filter__value-text,
  .panels-filter__values.values--types .panels-filter__value-text {
    text-align: left;
  }

  .metalinfo-furn__name {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .metalinfo-furn__data-item {
    gap: 10px;
    margin-bottom: 10px;
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .metalinfo-furn__data-text {
    padding: 0;
  }

  .metalinfo-furn__data-image img {
    max-height: 80px;
    max-width: 80px;
  }

  .metalinfo-furn__data-image {
    max-width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 10px;
    padding: 0;
  }

  .metalinfo-furn__data-text {
    font-size: 12px;
  }

  .metalinfo-furn__data-title {
    font-size: 16px;
  }

  .metalinfo-furn__data-name {
    font-size: 14px;
  }

  .metalinfo-frame__name {
    font-size: 18px;
  }

  .metalinfo-frame__text li,
  .metalinfo-frame__text p {
    font-size: 14px;
  }

  .metalinfo-frame {
    max-width: 100%;
    padding: 0;
  }

  .panels-filter__value-check i,
  .panels-filter__values.values--color .panels-filter__value-check i:after,
  .panels-filter__values.values--doors .panels-filter__value-check i:after,
  .panels-filter__values.values--material .panels-filter__value-check i:after {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 8px;
    width: 12px;
  }

  .panels-filter__values.values--doors .panels-filter__value-check {
    background-size: cover;
  }

  .completed-work .h1 {
    margin-bottom: 20px;
  }

  .completed-work__grid {
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
  }

  .completed-work__item {
    height: auto;
  }

  .completed-work__item-hover {
    display: none !important;
    padding: 16px;
  }

  .completed-work__item-title {
    font-size: 12px;
  }

  .completed-work__item-price b {
    font-size: 18px;
  }

  .cooperate {
    padding-bottom: 10px;
  }

  .cooperate__grid {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }

  .cooperate__item img {
    height: auto;
    margin-bottom: 12px;
  }

  .cooperate__item span {
    font-size: 16px;
  }

  .dealers .h1 {
    margin-bottom: 20px;
  }

  .dealers .h2 {
    font-size: 16px;
  }

  .dealers .h2 br {
    display: none;
  }

  .dealers .h3 {
    font-size: 15px;
    line-height: 1.25;
    margin-top: 10px;
  }

  .dealers li,
  .dealers p {
    font-size: 14px;
  }

  .dealers__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .dealers__top .h2:nth-of-type(2) {
    margin-bottom: 10px;
  }

  .dealers__top-image {
    height: auto;
    max-width: 100%;
  }

  .dealers__top-text {
    padding-top: 0;
  }

  .dealers__middle {
    margin-top: 15px;
  }

  .dealers__middle-grid {
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
  }

  .dealers__middle-grid-item .h3 {
    margin-top: 5px;
  }

  .dealers__bottom {
    margin-top: 20px;
    padding: 23px;
  }

  .dealers__bottom .h2 {
    margin-bottom: 15px;
  }

  .dealers__bottom ul {
    padding-left: 17px;
  }

  .communication-form {
    margin: 30px 0;
  }

  .communication-form .h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .communication-form__inputs .input,
  .communication-form__inputs .textarea {
    font-size: 14px;
    height: 50px;
    padding: 0 12px;
  }

  .communication-form__inputs .textarea {
    height: 120px;
    padding: 13px;
  }

  .communication-form__inputs .input {
    margin-bottom: 6px;
  }

  .communication-form__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .communication-form__footer .custom-checkbox span {
    font-size: 12px;
  }

  .communication-form-btn {
    font-size: 14px;
    font-weight: 500;
    margin: 0 auto;
    max-width: 90%;
  }

  .discount {
    padding-bottom: 10px;
  }

  .discount__head {
    margin-top: 20px;
  }

  .discount__head p {
    margin-bottom: 0;
  }

  .discount__head p,
  .discount__head span {
    font-size: 14px;
  }

  .discount__item {
    padding: 20px 0;
  }

  .discount__item-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .discount__item-area {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .discount__item-images {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .discount__item-image-item {
    margin-bottom: 10px;
  }

  .discount__item-image-item span {
    font-size: 14px;
  }

  .discount__item-image {
    height: auto;
  }

  .discount__item-content {
    gap: 0;
    max-width: 100%;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 5px;
  }

  .discount__item-content ul {
    margin: 0;
    padding-left: 17px;
  }

  .discount__item-content li,
  .discount__item-content p {
    font-size: 14px;
  }

  .discount__item-content-area {
    margin-bottom: 5px;
    max-width: 100%;
  }

  .discount__item-content-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .discount__item-price {
    font-size: 14px;
    height: auto;
    margin-top: 10px;
    padding: 10px 0;
    width: 100%;
  }

  .discount__item-price b {
    font-size: 12px;
  }

  .discount__item-warn {
    width: 100%;
  }

  .faq {
    padding-bottom: 20px;
  }

  .faq__add {
    font-size: 12px;
    max-width: 150px;
  }

  .faq__body {
    margin-top: 25px;
  }

  .faq__item-question {
    padding: 24px;
  }

  .faq__item-question:after {
    height: 22px;
    right: 24px;
    top: 20px;
    width: 22px;
  }

  .faq__item-question-header {
    font-size: 18px;
    gap: 12px;
    margin-bottom: 15px;
  }

  .faq__item-question-header span {
    gap: 12px;
  }

  .faq__item-question-body {
    font-size: 16px;
  }

  .faq__item-question-body br {
    display: none;
  }

  .faq__item-answer {
    padding: 0 24px 24px;
  }

  .faq__item-answer-header {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .faq__item-answer-body {
    font-size: 16px;
  }

  .faq__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
  }

  .faq__footer .faq__add {
    max-width: 200px;
  }

  .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hero__aside {
    max-width: 40px;
    position: absolute;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-bottom: 60px;
  }

  .hero__aside .social-block:first-of-type {
    margin-bottom: 20px;
  }

  .hero__aside .social-block:first-of-type:after {
    width: 1px;
  }

  .hero__aside .social-block a img {
    width: 14px;
  }

  .hero__slider-area {
    margin-left: 40px;
    width: calc(100% - 40px);
  }

  .hero__slider-content {
    padding: 80px 0 10px;
  }

  .hero__slider-content .container {
    height: 100%;
  }

  .hero__slider-content-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    height: 100%;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    text-align: left;
    z-index: 3;
  }

  .hero__slider-content-area p {
    display: none;
    font-size: 14px;
    max-width: 85%;
  }

  .hero__slider-title {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero__slider-btn {
    border-color: hsla(0, 0%, 100%, 0.5);
    font-size: 14px;
    height: 41px;
    margin-top: 0;
    max-width: 50%;
  }

  .hero__slider-bg {
    height: 500px;
  }

  .hero__slider-bg:after {
    background: #333;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.2;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .hero__slider-bg img {
    height: 100%;
  }

  .hero__slider-navigation-next:hover,
  .hero__slider-navigation-prev:hover {
    color: #fff;
  }

  .hero__slider-navigation-area {
    bottom: 20px;
    left: auto;
    margin-left: auto;
    max-width: 40%;
    right: 0;
  }

  .hero__slider-navigation-area .hero__slider-navigation-pagination {
    display: none;
  }

  .hero__slider-navigation {
    gap: 10px;
    padding-left: 5px;
  }

  .sales-slider {
    margin: 40px 0 0;
  }

  .sales-slider .swiper-slide .sales__item {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: initial;
    transition: initial;
  }

  .sales-slider__header {
    gap: 20px;
    margin-bottom: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .catalog-category {
    padding: 40px 0;
  }

  .catalog-category__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .nav-block {
    gap: 10px;
  }

  .nav-slider-next,
  .nav-slider-prev {
    height: 30px;
    width: 30px;
  }

  .catalog-category__grid .swiper-slide .catalog-category__item {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: initial;
    transition: initial;
  }

  .catalog-category__item {
    height: 290px;
  }

  .catalog-category__item-text {
    font-size: 18px;
    padding: 24px;
  }

  .catalog__header {
    gap: 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .catalog__header .parametrs-btn {
    font-size: 13px;
    height: 44px;
  }

  .catalog__header-search .input {
    font-size: 14px;
    height: 44px;
  }

  .catalog__category {
    padding: 20px 0 30px;
  }

  .catalog__category-grid {
    gap: 6px;
  }

  .catalog__category-item {
    -webkit-box-shadow: 0 0 6px 0 rgba(31, 34, 41, 0.07);
    box-shadow: 0 0 6px 0 rgba(31, 34, 41, 0.07);
    font-size: 14px;
    height: 40px;
    padding: 12px;
  }

  .vantages-doors {
    padding: 0 0 30px;
  }

  .vantages-doors .container-1380 {
    padding: 0;
  }

  .vantages-doors__wrap .h2 {
    margin: 0 auto 20px;
    max-width: 90%;
  }

  .vantages-doors__area {
    margin-right: 0;
    padding: 24px 12px;
  }

  .vantages-doors__image {
    display: none;
  }

  .vantages-doors__grid {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    left: 0;
  }

  .vantages-doors__item-icon {
    max-width: 40px;
  }

  .vantages-doors__item-icon img {
    height: auto !important;
    width: 40px !important;
  }

  .vantages-doors__item-text p {
    font-size: 15px;
  }

  .gallery {
    padding-bottom: 30px;
  }

  .gallery__area-header {
    margin-bottom: 20px;
  }

  .gallery__area-header a {
    font-size: 12px;
  }

  .gallery__grid {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery__item:nth-of-type(9) {
    display: none;
  }

  .gallery__item {
    grid-area: unset !important;
    height: auto !important;
  }

  .how-buy {
    padding: 40px 0 30px;
  }

  .how-buy__wrap .h2 {
    margin-bottom: 20px;
  }

  .how-buy__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .how-buy__item {
    padding: 24px;
  }

  .how-buy__item .h3 {
    font-size: 20px;
    margin-bottom: 30px;
    min-height: auto;
  }

  .how-buy__item p {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 1;
  }

  .how-buy__item--1 {
    border-radius: 1rem 1rem 0 0;
  }

  .how-buy__item--1 .how-buy__item-image {
    -webkit-transform: scale(0.72) translate(13rem, -3.4rem);
    -ms-transform: scale(0.72) translate(13rem, -3.4rem);
    transform: scale(0.72) translate(13rem, -3.4rem);
  }

  .how-buy__item--2 .how-buy__item-image {
    -webkit-transform: scale(1.2) translate(7rem, -3.8rem);
    -ms-transform: scale(1.2) translate(7rem, -3.8rem);
    transform: scale(1.2) translate(7rem, -3.8rem);
  }

  .how-buy__item--3 .how-buy__item-image {
    -webkit-transform: scale(1) translate(-4.3rem, -2.6rem);
    -ms-transform: scale(1) translate(-4.3rem, -2.6rem);
    transform: scale(1) translate(-4.3rem, -2.6rem);
  }

  .how-buy__item--4 {
    border-radius: 0 0 1rem 1rem;
  }

  .how-buy__item--4 .how-buy__item-image {
    -webkit-transform: scale(0.5) translate(-1rem, -2.6rem);
    -ms-transform: scale(0.5) translate(-1rem, -2.6rem);
    transform: scale(0.5) translate(-1rem, -2.6rem);
  }

  .history__wrap {
    padding: 24px 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .history__content {
    max-width: 100%;
    padding: 0;
    text-align: left;
  }

  .history__content .h3 {
    font-size: 20px;
  }

  .history__content .h2 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .history__content p {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .history__video {
    border-radius: 8px;
  }

  .history__video-play img {
    width: 60px;
  }

  .modalStyled {
    overflow-y: auto;
    padding: 80px 24px 0 !important;
  }

  .modalStyled .top {
    gap: 25px;
  }

  .modalStyled h2 {
    font-size: 20px;
  }

  #socialModal {
    padding: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #socialModal .socialRow {
    gap: 20px;
  }

  .callback-modal {
    padding: 24px;
  }

  #paramFilter .grey {
    font-size: 15px;
  }

  #paramFilter .catalog-item__buttons {
    margin: 0 -24px;
    padding: 15px 24px;
  }

  #paramFilter .catalog-item__buttons .btn {
    height: 44px;
  }

  .btn--red.outlined svg {
    width: 12px;
  }

  .partners .h1 {
    margin-bottom: 20px;
  }

  .partners .h2 {
    font-size: 16px;
  }

  .partners .h2 br {
    display: none;
  }

  .partners .h3 {
    font-size: 16px;
    line-height: 1.25;
    margin-top: 10px;
  }

  .partners .h3 br {
    display: none;
  }

  .partners li,
  .partners p {
    font-size: 14px;
  }

  .partners__hero {
    gap: 15px;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .partners__hero-image {
    height: auto;
    max-width: 100%;
  }

  .partners__hero-text {
    padding: 0;
  }

  .partners__hero-text .h2 {
    margin-bottom: 10px;
  }

  .partners__hero-text .h3 {
    font-size: 15px;
    margin-bottom: 5px;
    margin-top: 0;
  }

  .partners__hero-btn {
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 0;
    max-width: 80%;
  }

  .partners__vantages {
    margin-top: 30px;
  }

  .partners__vantages .h2 {
    margin-bottom: 20px;
  }

  .partners__vantages-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }

  .partners__vantages-row:nth-of-type(2)
    .partners__vantages-item:nth-of-type(3)
    span {
    margin-bottom: 10px;
  }

  .partners__vantages-item {
    margin-bottom: 15px;
  }

  .partners__vantages-item span {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .partners__vantages-item-icon {
    height: 50px;
    margin-bottom: 10px;
    max-width: 50px;
  }

  .partners__vantages-btn-area {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .partners__vantages-btn {
    font-size: 14px;
    font-weight: 500;
    max-width: 80%;
  }

  .partners-work {
    padding: 30px 0;
  }

  .partners-work .h2 {
    margin-bottom: 30px;
  }

  .partners-work__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .partners-work__content {
    max-width: 100%;
  }

  .partners-work__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
  }

  .partners-work__author-avatar {
    height: 130px;
    margin-bottom: 0;
    width: 130px;
  }

  .partners-work__author-name {
    font-size: 14px;
    padding: 0;
  }

  .partners-work__author-name span {
    font-size: 16px;
  }

  .partners-work__description .h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .partners-work__description p {
    font-size: 14px;
  }

  .partners-work__images {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 270px auto;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    gap: 10px;
    order: -1;
  }

  .partners-work__images img:first-of-type {
    grid-area: 1/1/2/3;
  }

  .partners-work__images img:nth-of-type(2) {
    grid-area: 2/1/3/2;
  }

  .partners-work__images img:nth-of-type(3) {
    grid-area: 2/2/3/3;
  }

  .partners-work__images img:nth-of-type(4) {
    grid-area: 3/1/4/2;
  }

  .partners-work__images img:nth-of-type(5) {
    grid-area: 3/2/4/3;
  }

  .partners-work__slider-actions {
    margin-top: 15px;
  }

  .partners-work__btn {
    font-size: 14px;
    max-width: 100%;
  }

  .partners-work__slider-nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 10px;
    justify-content: space-between;
  }

  .partners-work__slider-next,
  .partners-work__slider-prev {
    height: 40px;
    width: 40px;
  }

  .partners-work__pagination {
    gap: 10px;
    margin-top: 20px;
  }

  .partners-work__pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
  }

  .politics .h1 {
    margin-bottom: 20px;
  }

  .politics__area li,
  .politics__area p {
    font-size: 15px;
    line-height: 1.3;
  }

  .portfolio {
    padding-bottom: 20px;
  }

  .portfolio .h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .portfolio__photos {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .portfolio__photos-item img {
    height: auto;
    margin-bottom: 10px;
  }

  .portfolio__photos-item span {
    font-size: 16px;
  }

  .portfolio__videos {
    margin-top: 30px;
  }

  .portfolio__videos-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .portfolio__videos-item img {
    height: auto;
    margin-bottom: 10px;
  }

  .portfolio__videos-item span {
    font-size: 16px;
  }

  .portfolio__videos-item-image:after {
    height: 70px;
    width: 70px;
  }

  .portfolio-detail {
    padding-bottom: 20px;
  }

  .portfolio-photos__grid {
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .portfolio-photos__item {
    aspect-ratio: 1;
    height: auto;
    width: 100%;
  }

  .portfolio-videos__grid {
    gap: 12px 6px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .portfolio-videos__item {
    min-height: auto;
  }

  .portfolio-videos__item span {
    font-size: 14px;
    margin-top: 10px;
  }

  .portfolio-videos__item-image {
    aspect-ratio: 16/9;
    height: auto;
  }

  .portfolio-videos__item-image:after {
    height: 50px;
    width: 50px;
  }

  .portfolio__pagination {
    margin-top: 35px;
  }

  .reviews__area {
    padding-bottom: 20px;
  }

  .reviews__header {
    margin-bottom: 25px;
  }

  .reviews__add-btn {
    font-size: 12px;
    max-width: 150px;
  }

  .reviews__item {
    margin-bottom: 12px;
    padding: 24px;
  }

  .reviews__item-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 0;
    padding-bottom: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .reviews__item-name {
    font-size: 18px;
    gap: 12px;
  }

  .reviews__item-date {
    font-size: 16px;
    margin: 0;
  }

  .reviews__item-rating {
    top: 0;
  }

  .reviews__item-company,
  .reviews__item-content {
    font-size: 16px;
    margin-top: 15px;
  }

  .reviews__item-company br,
  .reviews__item-content br {
    display: none;
  }

  .reviews__item-company b {
    padding-right: 0;
  }

  .reviews__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
  }

  .reviews__footer .reviews__add-btn {
    max-width: 200px;
  }

  .sales {
    padding-bottom: 10px;
  }

  .sales__grid {
    gap: 12px 12px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .sales__item {
    height: auto;
  }

  .sales-detail__content {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .sales-detail__image {
    margin: 15px 0;
    max-width: 100%;
  }

  .sales-detail__text .h1,
  .sales-detail__text h1 {
    font-size: 23px;
    margin-bottom: 15px;
  }

  .sales-detail__text li,
  .sales-detail__text p {
    font-size: 16px;
  }

  .sales-detail__text .mb-20 {
    margin-bottom: 10px;
  }

  .sales-detail__btn {
    font-size: 12px;
    margin: 20px auto 0;
    max-width: 70%;
  }

  .sliding-doors .h1 {
    margin-bottom: 20px;
  }

  .sliding-doors .sliding-doors__types-grid {
    gap: 15px 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .sliding-doors__hero {
    padding: 50px 24px 100px;
  }

  .sliding-doors__hero:after {
    background: rgba(49, 54, 61, 0.3);
    border-radius: 0.9rem;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .sliding-doors__hero li,
  .sliding-doors__hero p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .sliding-doors__hero ul {
    padding-left: 17px;
  }

  .sliding-doors__hero-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .sliding-doors__hero-play {
    bottom: 24px;
    gap: 10px;
    left: 24px;
    right: auto;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    z-index: 2;
  }

  .sliding-doors__hero-play span {
    font-size: 13px;
  }

  .sliding-doors__hero-play-icon {
    height: 60px;
    width: 60px;
  }

  .sliding-doors__types {
    margin: 30px 0 0;
  }

  .sliding-doors__types-item span {
    font-size: 14px;
  }

  .sliding-doors__types-item-image {
    margin-bottom: 9px;
  }

  .sliding-doors__types-item-image img {
    aspect-ratio: 1;
    height: auto;
    max-width: 100%;
  }

  .where-buy {
    border: none;
    margin: 30px 0;
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .where-buy .h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 22px;
    text-align: left;
  }

  .where-buy-image {
    max-width: 100%;
  }

  .where-buy-image img {
    height: 153px;
  }

  .where-buy-text {
    padding-left: 0;
    padding-top: 23px;
  }

  .where-buy-text p {
    font-size: 1.2rem;
    font-weight: 400;
  }

  .where-buy--v2-mobile {
    border: 1px solid rgba(49, 54, 61, 0.2);
    border-radius: 1.3rem;
    padding: 19px 8px 27px;
  }

  .where-buy--v2-mobile .where-buy-image img {
    height: 148px;
  }

  .where-buy--v2-mobile .where-buy-text {
    padding-top: 15px;
  }

  .where-buy--v2-mobile .where-buy-text p {
    line-height: 1.66667;
  }

  .where-buy--v2-mobile .h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
  }

  .static-products-nav {
    margin-bottom: 20px;
    width: calc(100% + 15px);
  }

  .static-products-nav ul {
    margin: -5px;
    overflow-x: auto;
    padding: 5px 15px 15px 5px;
  }

  .static-products-nav li {
    max-width: 100px;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 44px;
    text-align: center;
  }

  .static-products-nav li.is-active {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .static-products-nav a,
  .static-products-nav span {
    font-size: 12px;
    padding: 0 5px;
  }

  .custom-ul {
    margin-bottom: 20px;
  }

  .custom-ul li {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 19px;
    padding-left: 26px;
  }

  .custom-ul li:after {
    top: 2px;
  }

  .video-item__preview img {
    height: 189px;
  }

  .video-item__play {
    height: 33px;
    width: 43px;
  }

  .video-item__title {
    bottom: 12px;
    font-size: 11px;
  }

  .static-products .h1,
  .static-products h1,
  .static-products__content .h1,
  .static-products__content h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .static-products .h2,
  .static-products h2,
  .static-products__content .h2,
  .static-products__content h2 {
    font-size: 20px;
  }

  .static-products .h3,
  .static-products h3,
  .static-products__content .h3,
  .static-products__content h3 {
    font-size: 16px;
  }

  .static-products .custom-ul,
  .static-products__content .custom-ul {
    margin: 20px 0;
  }

  .static-products .custom-ul li,
  .static-products__content .custom-ul li {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .static-products .custom-ul li br,
  .static-products__content .custom-ul li br {
    display: none;
  }

  .static-products .custom-ul li:after,
  .static-products__content .custom-ul li:after {
    height: 13px;
    top: 3px;
    width: 15px;
  }

  .static-products__videos {
    gap: 8px;
    grid-template-columns: repeat(1, 1fr);
    margin: 30px 0;
  }

  .static-products__video {
    aspect-ratio: 16/10;
    height: auto;
  }

  .static-products__video-play {
    height: 32px;
    width: 44px;
  }

  .custom-checkbox span {
    font-size: 16px;
  }

  .custom-checkbox__found {
    display: none;
  }

  .custom-checkbox__found-btn {
    border-radius: 12px;
    font-weight: 500;
    height: 48px;
    margin: 0;
    padding-bottom: 0.2rem;
  }

  .card-actions {
    gap: 8px;
    max-width: 100%;
  }

  .card-actions--desktop {
    display: none;
  }

  .card-actions--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
  }

  .card-action {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 10px;
    height: 28px;
    max-width: 100%;
  }

  .card-action .icon {
    max-height: 16px;
    max-width: 16px;
  }

  .card-action--download,
  .card-action--share,
  .card-action--to-favorites {
    gap: 8px;
    padding: 0;
  }

  .card-actions.temp-hidden .card-action--to-favorites {
    max-width: 110px;
    width: 100%;
  }

  .catalog-slider--4-items .h2 {
    font-size: 20px;
    font-weight: 700;
  }

  .catalog-slider--4-items .ed-catalog-item__image {
    height: calc(var(--indexSize) * 31);
  }

  .catalog-slider--4-items .ed-catalog-item__description {
    font-size: 9px;
    margin-bottom: 5px;
    min-height: 22px;
  }

  .catalog-slider--4-items .ed-catalog-item__price-old {
    font-size: 7px;
  }

  .catalog-slider--4-items .ed-catalog-item__price-main span {
    font-size: 12px;
  }

  .catalog-slider--4-items .ed-catalog-item__price-main {
    font-size: 10px;
  }

  .favorites__groups .h2,
  .favorites__main .h1 {
    margin-bottom: 10px;
  }

  .favorites__group {
    margin-bottom: 30px;
  }

  .favorites-page {
    padding-bottom: 30px;
  }

  .favorites-page .active-filter {
    font-size: 12px;
  }

  .favorites__group-head,
  .favorites__main-head {
    margin-bottom: 15px;
  }

  .favorites__group-head .active-filter i,
  .favorites__main-head .active-filter i {
    display: none;
  }

  .entrance-doors__description {
    margin-bottom: 2rem;
  }

  .stock-detail__price-main {
    font-size: 6rem;
    font-size: 35px;
    font-weight: 700;
  }

  .stock-detail__price-main span {
    font-size: 18px;
    font-weight: 400;
  }

  .content-row__text {
    max-width: 100%;
    min-width: 100%;
  }

  .content-row__image {
    margin-bottom: 20px;
  }

  .content-row,
  .content-row:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 30px 0;
    padding: 0;
  }

  .content-row.row--gray {
    padding: 24px;
  }

  .content-row__image {
    margin-right: 0;
  }

  .content-row:nth-child(odd) .content-row__image {
    margin-left: 0;
  }

  .promotional-item__price-sale {
    font-size: 9px;
    gap: 7px;
    margin-top: -14px;
  }

  .promotional-item__price-sale span {
    font-size: 13px;
  }

  .promotional-item__bg:after {
    display: none;
  }

  .card .opening-options__item.is-hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

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

  .portfolio-video__item-image:after {
    height: 50px;
    width: 50px;
  }

  .metaldlg-panel__head {
    margin-bottom: 20px;
  }

  .panels-filter__section sup {
    height: 9px;
    right: 10px;
    top: 10px;
    width: 14px;
  }

  .panels-filter__section.section--fav sup {
    height: 20px;
    right: calc(var(--indexSize) * 6.4);
    top: 9px;
    width: 20px;
  }

  .panels-filter__section.section--fav sup span {
    font-size: 12px;
  }

  .collection-category__grid .swiper-slide:nth-of-type(3) img {
    -o-object-position: 100% 50%;
    object-position: 100% 50%;
  }

  .collection-category__grid .swiper-slide:nth-of-type(5) img {
    -o-object-position: 82% 50%;
    object-position: 82% 50%;
  }

  .collection-category__grid .swiper-slide:nth-of-type(6) img {
    -o-object-position: 100% 50%;
    object-position: 100% 50%;
  }

  .interior-item .interior-item__image:after {
    display: none;
  }

  .card__area-mobile-text {
    width: 100%;
  }

  .card__color-item span {
    word-break: break-word;
  }

  .header-mobile__menu-phone a {
    font-size: 19px;
  }

  .opening-systems-page .opening-options__item.is-hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .entrance-doors {
    padding-bottom: 10px;
  }

  .entrance-doors .doors-type__item {
    font-size: 13px;
  }

  .entrance-doors .doors-type {
    padding-bottom: 25px;
  }

  .entrance-doors__head {
    gap: 10px;
    margin-bottom: 20px;
    -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;
  }

  .entrance-doors__head-logo {
    max-width: 80px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .entrance-doors__hero .collection-category__grid {
    display: block;
  }

  .entrance-doors__hero .collection-category__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .entrance-doors__hero .collection-category__item-title {
    font-size: 14px;
    margin-top: 5px;
    padding: 0;
    text-align: center;
  }

  .entrance-doors__catalog {
    padding: 0;
  }

  .entrance-doors__catalog-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .entrance-doors__search {
    margin-bottom: 5px;
  }

  .entrance-doors-search__form .input {
    border: 3px solid rgba(49, 54, 61, 0.15);
    font-size: 14px;
    height: 48px;
    padding: 0 4.5rem 0 20px;
  }

  .entrance-doors-search__btn {
    height: 42px;
    right: 3px;
    top: 3px;
  }

  .entrance-doors__sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
  }

  .entrance-doors-sort {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 100%;
  }

  .entrance-doors__catalog-aside {
    display: none;
  }

  .entrance-doors__catalog-content {
    padding: 0;
  }

  .entrance-doors-catalog__active-filters {
    display: none;
  }

  .entrance-doors-catalog__grid {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .ed-catalog-item {
    max-width: 100%;
    padding: 10px;
  }

  .ed-catalog-item__article {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .ed-catalog-item__article:before {
    font-size: 10px;
  }

  .ed-catalog-item__image {
    height: calc(var(--indexSize) * 37.5);
  }

  .ed-catalog-item__images {
    gap: 8px;
    margin-bottom: 5px;
  }

  .ed-catalog-item__description {
    font-size: 11px;
    margin-bottom: 5px;
    min-height: 26px;
  }

  .ed-catalog-item__price {
    gap: 5px;
    margin-bottom: 10px;
  }

  .ed-catalog-item__price-main {
    font-size: 14px;
  }

  .ed-catalog-item__price-main span {
    font-size: 18px;
  }

  .ed-catalog-item__price-old {
    font-size: 8px;
  }

  .ed-catalog-item__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }

  .ed-catalog-item__buttons .btn {
    font-size: 8px;
    height: 22px;
  }

  .ed-catalog-promo {
    gap: 8px;
  }

  .doors-type--after-catalog {
    display: none;
  }

  .entrance-doors-desc__bl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .entrance-doors-desc__bl1-image {
    height: auto;
    margin: 0 auto;
    max-width: 50%;
  }

  .entrance-doors-desc__bl1-text {
    padding: 0;
  }

  .entrance-doors-desc__bl1-text .h2 {
    font-size: 20px;
  }

  .entrance-doors-desc__bl1-text li,
  .entrance-doors-desc__bl1-text p {
    font-size: 14px;
  }

  .entrance-doors-desc__bl1-text li {
    margin-bottom: 15px;
    padding-left: 40px;
  }

  .entrance-doors-desc__bl1-text li:before {
    font-size: 16px;
  }

  .entrance-doors-desc__bl2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }

  .entrance-doors-desc__bl2-text {
    max-width: 100%;
  }

  .entrance-doors-desc__bl2-text p {
    font-size: 14px;
  }

  .entrance-doors-desc__bl2-image {
    max-width: 100%;
  }

  .entrance-doors-desc__bl2-image .h2 {
    font-size: 20px;
  }

  .entrance-doors-desc__bl2-image span {
    font-size: 14px;
  }

  .entrance-doors-desc__bl3 {
    padding: 24px;
  }

  .entrance-doors-desc__bl3 span {
    font-size: 12px;
    gap: 15px;
  }

  .catalog .catalog-slider {
    padding-top: 42px;
  }

  .catalog .catalog-slider__header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .catalog__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .catalog__aside {
    display: none;
  }

  .catalog-content {
    padding: 0;
    width: 100%;
  }

  .catalog-content .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog__header {
    padding: 0;
  }

  .catalog__header .h1 {
    font-size: 25px;
    margin-bottom: 0;
  }

  .catalog__active-filters,
  .catalog__header p {
    display: none;
  }

  .catalog-filter {
    margin-bottom: 18px;
  }

  .catalog-filter .custom-checkbox {
    padding: 3.5px 0;
  }

  .catalog-filter__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .catalog-filter__show-more {
    font-size: 12px;
  }

  .catalog__footer {
    display: none;
  }

  .mobile-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 9px;
  }

  .penta-itec__header {
    margin-bottom: 20px;
  }

  .penta-itec__header .h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .penta-itec__header p {
    font-size: 14px;
  }

  .penta-itec__bl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .penta-itec__bl1-text {
    max-width: 100%;
    padding-top: 0;
  }

  .penta-itec__bl1-text p {
    font-size: 14px;
    max-width: 100%;
  }

  .penta-itec__bl1-images {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }

  .penta-itec__bl1-images img {
    height: 250px;
  }

  .penta-itec__bl2 {
    margin-top: 30px;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .penta-itec__bl2-left {
    max-width: 100%;
    padding: 0;
  }

  .penta-itec__bl2-left .h2 {
    margin-bottom: 15px;
  }

  .penta-itec__bl2-left p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .penta-itec__bl2-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .penta-itec__bl2-image {
    height: 250px;
    max-width: 100%;
  }

  .penta-itec__bl2-text {
    padding: 0;
  }

  .penta-itec__bl2-text .custom-ul {
    margin: 20px 0;
  }

  .penta-itec__bl2-text .custom-ul li {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
    padding-left: 28px;
  }

  .penta-itec__bl3 {
    height: auto;
    margin-top: 10px;
    padding: 15px;
  }

  .penta-itec__bl3 p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }

  .penta-itec__bl3 p:before {
    display: inline-block;
    height: 24px;
    left: 0;
    position: static;
    top: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 24px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .penta-itec__bl4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
    padding: 24px;
  }

  .penta-itec__bl4-text {
    max-width: 100%;
  }

  .penta-itec__bl4-text .h2 {
    margin-bottom: 15px;
  }

  .penta-itec__bl4-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .penta-itec__bl4-image {
    max-width: 100%;
    padding: 0;
  }

  .penta-itec__bl4-image span {
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 15px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .penta-itec__bl4-image img {
    height: auto;
  }

  .penta-itec-touch {
    padding-bottom: 60px;
  }

  .penta-itec-touch__bl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }

  .penta-itec-touch__bl1-text {
    max-width: 100%;
  }

  .penta-itec-touch__bl1-text p {
    font-size: 14px;
    max-width: 100%;
  }

  .penta-itec-touch__bl1-text .h1 {
    font-size: 30px;
    margin-bottom: 15px;
    max-width: 100%;
  }

  .penta-itec-touch__bl1-text .custom-ul {
    margin: 20px 0;
    max-width: 100%;
  }

  .penta-itec-touch__bl1-text .custom-ul li:after {
    top: 3px;
  }

  .penta-itec-touch__bl1-image {
    max-width: 100%;
  }

  .penta-itec-touch__bl1-image img {
    height: auto;
  }

  .penta-itec-touch__bl2 {
    margin-top: 30px;
    padding: 24px;
  }

  .penta-itec-touch__bl2-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .penta-itec-touch__bl2-top-image {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .penta-itec-touch__bl2-top-image img {
    height: auto;
  }

  .penta-itec-touch__bl2-top-text {
    margin-bottom: 15px;
    padding: 0;
  }

  .penta-itec-touch__bl2-top-text .h2 {
    margin-bottom: 10px;
  }

  .penta-itec-touch__bl2-top-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .penta-itec-touch__bl2-bottom {
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .penta-itec-touch__bl2-bottom-text {
    margin-top: 0;
    max-width: 100%;
  }

  .penta-itec-touch__bl2-bottom-text .custom-ul {
    margin: 20px 0;
    max-width: 100%;
  }

  .penta-itec-touch__bl2-bottom-text .custom-ul li {
    font-size: 14px;
  }

  .penta-itec-touch__bl2-bottom-text .custom-ul li:after {
    height: 13px;
    top: 4px;
    width: 13px;
  }

  .penta-itec-touch__bl2-bottom-images {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .penta-itec-touch__bl2-bottom-images img {
    aspect-ratio: 1;
    height: auto;
  }

  .penta-itec-touch__bl3 {
    margin-top: 30px;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .penta-itec-touch__bl3-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .penta-itec-touch__bl3-image img {
    height: 270px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .penta-itec-touch__bl3-text {
    margin-top: 15px;
    max-width: 100%;
    padding: 0;
  }

  .penta-itec-touch__bl3-text .h2 {
    margin-bottom: 15px;
  }

  .penta-itec-touch__bl3-text .h3 {
    margin: 15px 0;
  }

  .penta-itec-touch__bl3-text p {
    font-size: 14px;
    max-width: 100%;
  }

  .penta-itec-touch__bl3-text .custom-ul {
    margin: 20px 0;
  }

  .penta-itec-touch__bl3-text .custom-ul li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 28px;
  }

  .penta-itec-touch__bl3-text .custom-ul li:after {
    height: 13px;
    top: 2px;
    width: 13px;
  }

  .penta-itec-touch__bl4 {
    margin-top: 15px;
    padding: 24px;
  }

  .penta-itec-touch__bl4 .h2 {
    margin-bottom: 15px;
  }

  .penta-itec-touch__bl4-image img {
    height: auto;
    width: 100%;
  }

  .penta-itec-touch__hidden-block {
    margin-top: 25px;
  }

  .penta-itec-touch__hidden-block-open span {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .penta-itec-touch__hidden-block-open-btn span {
    font-size: 18px;
  }

  .penta-itec-touch__bl5 {
    margin-top: 30px;
  }

  .penta-itec-touch__bl5 .h2 {
    font-weight: 600;
    margin-bottom: 0;
    text-align: left;
  }

  .penta-itec-touch__bl5 .h3,
  .penta-itec-touch__bl5 h3 {
    font-size: 16px;
    margin: 20px 0 15px;
  }

  .penta-itec-touch__bl5 li,
  .penta-itec-touch__bl5 p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .penta-itec-touch__bl5-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .penta-itec-touch__bl5-left,
  .penta-itec-touch__bl5-right {
    max-width: 100%;
  }

  .penta-itec-touch__bl6 {
    margin: 30px 0;
  }

  .penta-itec-touch__bl6 img {
    height: auto;
  }

  .penta-itec-touch__bl7 .h2,
  .penta-itec-touch__bl7 h2 {
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
  }

  .penta-itec-touch__bl7 .h3,
  .penta-itec-touch__bl7 h3 {
    margin: 20px 0 15px;
  }

  .penta-itec-touch__bl7 li,
  .penta-itec-touch__bl7 p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .penta-itec-touch__bl7-flex {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .penta-itec-touch__bl7-left {
    max-width: 100%;
  }

  .penta-itec-touch__bl7-left img {
    height: auto;
    width: 100%;
  }

  .penta-itec-touch__bl7-left-text {
    padding: 0;
  }

  .penta-itec-touch__bl7-right {
    max-width: 100%;
  }

  .penta-bio {
    padding-bottom: 40px;
  }

  .penta-bio__bl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .penta-bio__bl1-text {
    max-width: 100%;
  }

  .penta-bio__bl1-header {
    margin-bottom: 15px;
  }

  .penta-bio__bl1-header .h1 {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .penta-bio__bl1-header p {
    font-size: 14px;
  }

  .penta-bio__bl1-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .penta-bio__bl1-content p:first-of-type {
    max-width: 100%;
  }

  .penta-bio__bl1-image {
    max-width: 100%;
  }

  .penta-bio__bl1-image img {
    height: auto;
  }

  .penta-bio__bl2 {
    margin-top: 30px;
    padding: 24px;
  }

  .penta-bio__bl2-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }

  .penta-bio__bl2-video {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    margin-bottom: 15px;
    order: 1;
  }

  .penta-bio__bl2 .video-slide__preview {
    height: 160px;
  }

  .penta-bio__bl2-top-text {
    padding: 0;
  }

  .penta-bio__bl2-top-text .h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .penta-bio__bl2-top-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .penta-bio__bl2-middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .penta-bio__bl2-middle-text {
    max-width: 100%;
  }

  .penta-bio__bl2-middle-text .h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .penta-bio__bl2-middle-text p {
    font-size: 14px;
  }

  .penta-bio__bl2-middle-text-warn {
    margin-top: 20px;
  }

  .penta-bio__bl2-middle-text-warn span {
    font-size: 11px;
    gap: 20px;
  }

  .penta-bio__bl2-middle-text-warn span:before {
    height: 32px;
    width: 32px;
  }

  .penta-bio__bl2-middle-images {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: grid;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 15px;
  }

  .penta-bio__bl2-middle-images img {
    height: auto;
  }

  .penta-bio__bl2-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  .penta-bio__bl2-bottom-images {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .penta-bio__bl2-bottom-images img {
    aspect-ratio: 1;
    height: auto;
  }

  .penta-bio__bl2-bottom-text {
    margin-bottom: 20px;
    padding: 0;
  }

  .penta-bio__bl2-bottom-text .h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .penta-bio__bl2-bottom-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .penta-bio__bl3 {
    -webkit-box-shadow: inset 0 0 0 2100px hsla(0, 0%, 100%, 0.7);
    box-shadow: inset 0 0 0 2100px hsla(0, 0%, 100%, 0.7);
    margin-top: 30px;
    padding: 24px;
  }

  .penta-bio__bl3 .h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .penta-bio__bl3 p {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .penta-bio__bl4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .penta-bio__bl4-text {
    padding: 0;
  }

  .penta-bio__bl4-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .penta-bio__bl4-image {
    max-width: 100%;
  }

  .penta-bio__bl4-image img {
    height: auto;
  }

  .penta-bio__bl5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
    margin-top: 20px;
    padding: 0;
  }

  .penta-bio__bl5-image {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    margin-top: 15px;
    order: 1;
  }

  .penta-bio__bl5-image img {
    height: auto;
  }

  .penta-bio__bl5-text {
    padding: 0;
  }

  .penta-bio__bl5-text .h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .penta-bio__bl5-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .secret-new {
    padding-bottom: 50px;
  }

  .secret-new__bl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .secret-new__bl1-text {
    max-width: 100%;
  }

  .secret-new__bl1-text-header .h1 {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .secret-new__bl1-text-header p {
    font-size: 14px;
  }

  .secret-new__bl1-text-content {
    margin-top: 20px;
  }

  .secret-new__bl1-text-content p {
    font-size: 14px;
  }

  .secret-new__bl1-text-content p b {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .secret-new__bl1-images {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .secret-new__bl1-images img {
    aspect-ratio: 1;
    height: auto;
  }

  .secret-new__bl2 {
    margin-top: 30px;
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .secret-new__bl2-left {
    max-width: 100%;
  }

  .secret-new__bl2-image {
    margin-bottom: 15px;
  }

  .secret-new__bl2-image img {
    height: auto;
  }

  .secret-new__bl2-warn {
    padding: 12px;
  }

  .secret-new__bl2-warn span {
    font-size: 12px;
    gap: 20px;
  }

  .secret-new__bl2-right {
    max-width: 100%;
    padding-top: 10px;
  }

  .secret-new__bl2-right li,
  .secret-new__bl2-right p {
    font-size: 14px;
  }

  .secret-new__bl2-right p:last-of-type {
    margin-right: 0;
  }

  .secret-new__bl2-right p b {
    font-size: 20px;
    margin-bottom: 10px;
    max-width: 100%;
  }

  .secret-new__bl2-right .custom-ul {
    margin: 20px 0;
  }

  .secret-new__bl2-right .custom-ul li {
    font-size: 14px;
    margin-bottom: 10px;
    margin-left: 0;
    padding-left: 28px;
  }

  .secret-new__bl2-right .custom-ul li:after {
    height: 12px;
    width: 12px;
  }

  .secret-new__bl3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    padding: 0;
  }

  .secret-new__bl3 .h2 {
    margin-bottom: 7px;
  }

  .secret-new__bl3-image:after {
    display: none;
  }

  .secret-new__bl3-image {
    max-width: 100%;
  }

  .secret-new__bl3-image img {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 60%;
  }

  .secret-new__bl3-text {
    max-width: 100%;
    padding: 0;
  }

  .secret-new__bl3-text .h2 {
    font-size: 30px;
  }

  .secret-new__bl3-text ol li {
    font-size: 14px;
    margin-bottom: 15px;
    padding-left: 40px;
  }

  .secret-new__bl3-text ol li:before {
    font-size: 14px;
    height: 25px;
    width: 25px;
  }

  .secret-new__bl4 {
    margin-top: 30px;
    padding: 24px;
  }

  .secret-new__bl4-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .secret-new__bl4-top-left {
    max-width: 100%;
  }

  .secret-new__bl4-top-left .h2 {
    margin-bottom: 15px;
  }

  .secret-new__bl4-top-left p {
    font-size: 14px;
  }

  .secret-new__bl4-top-right {
    margin: 0;
    max-width: 100%;
    padding: 0;
  }

  .secret-new__bl4-top-right img {
    height: auto;
  }

  .secret-new__bl4-bottom {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .secret-new__bl4-bottom img {
    height: auto;
    width: 100%;
  }

  .secret-new__bl5 {
    margin-top: 30px;
  }

  .secret-new__bl5 .static-products__video,
  .secret-new__bl5 .video-slide__preview {
    height: 160px;
    width: 100%;
  }

  .secret-new__bl5-video-preview img {
    aspect-ratio: 16/9;
    height: auto;
  }

  .secret-new__bl5-video-play {
    height: 41px;
    width: 62px;
  }

  .smart-lock {
    padding-bottom: 30px;
  }

  .smart-lock__bl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .smart-lock__bl1-text {
    max-width: 100%;
    padding: 0;
  }

  .smart-lock__bl1-text .h1 {
    font-size: 30px;
    margin-bottom: 10px;
    max-width: 100%;
  }

  .smart-lock__bl1-text p {
    font-size: 14px;
  }

  .smart-lock__bl1-image {
    max-width: 100%;
  }

  .smart-lock__bl1-image img {
    height: auto;
  }

  .smart-lock__bl2 {
    margin-top: 30px;
    padding: 25px;
  }

  .smart-lock__bl2-text-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    padding: 0;
  }

  .smart-lock__bl2-text-flex p {
    font-size: 14px;
  }

  .smart-lock__bl2-text-flex p b {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .smart-lock__bl2-text-left {
    max-width: 100%;
  }

  .smart-lock__bl2-text-left p b {
    margin-top: 15px;
  }

  .smart-lock__bl2-text-right {
    max-width: 100%;
  }

  .smart-lock__bl2-text-right p b {
    margin-top: 15px;
  }

  .smart-lock__bl2-text-items {
    margin-top: 10px;
    padding: 12px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .smart-lock__bl2-text-item {
    gap: 12px !important;
    left: 0 !important;
    max-width: 100% !important;
    width: 100%;
  }

  .smart-lock__bl2-text-item span {
    font-size: 12px;
  }

  .smart-lock__bl2-text-item-icon {
    max-height: 35px;
    max-width: 35px;
  }

  .smart-lock__section {
    margin: 25px 0;
    padding: 24px;
  }

  .smart-lock__section-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .smart-lock__section-slider .slider__col {
    display: none;
  }

  .smart-lock__section-slider .slider__next,
  .smart-lock__section-slider .slider__prev {
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 30px;
    width: 30px;
  }

  .smart-lock__section-slider .slider__prev {
    background: url(../img/card-arrow-prev.svg) 50%/1.1rem no-repeat;
    margin-bottom: 0;
  }

  .smart-lock__section-slider .slider__next {
    background: url(../img/card-arrow-next.svg) 50%/1.1rem no-repeat;
    margin-top: 0;
  }

  .smart-lock__section-slider .slider__images img {
    padding: 20px;
  }

  .smart-lock__section-slider .slider__thumbs .slider__image {
    height: 47px;
  }

  .smart-lock__section-slider .slider__thumbs .slider__image img {
    height: 47px;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .smart-lock__section-slider .slider__image img {
    height: 266px;
  }

  .smart-lock__section-description {
    padding-right: 0 !important;
    padding-top: 10px;
  }

  .smart-lock__section-description .h2 {
    font-size: 20px;
    margin-bottom: 15px !important;
  }

  .smart-lock__section-description-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .smart-lock__section-description-col {
    max-width: 100% !important;
    width: 100% !important;
  }

  .smart-lock__section-description-item {
    margin-bottom: 10px !important;
  }

  .smart-lock__section-description-item li,
  .smart-lock__section-description-item p {
    font-size: 14px;
  }

  .smart-lock__section-description-item .h3 {
    font-size: 15px;
    margin-bottom: 5px !important;
  }

  .smart-lock__section-bottom {
    margin: 10px 0 !important;
    padding: 0 !important;
  }

  .smart-lock__section-bottom-icon {
    background: #fff;
    border-radius: 9px;
    font-size: 13px;
    margin: 0 -15px;
    padding: 45px 15px 20px;
  }

  .smart-lock__section-bottom-icon p {
    margin-bottom: 0;
  }

  .smart-lock__section-bottom-icon:after {
    left: 15px;
    top: 10px;
  }

  .smart-lock__gallery-grid {
    display: block;
  }

  .smart-lock__gallery-item img {
    height: auto;
  }

  .smart-lock__section-description-p {
    font-size: 14px;
    margin-bottom: 20px !important;
    max-width: 100%;
  }

  .smart-lock__section-bottom .h3 {
    font-size: 16px;
    margin: 15px 0;
  }

  .smart-lock__section-bottom-features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .smart-lock__section-bottom-features-col:first-of-type {
    max-width: 100% !important;
  }

  .smart-lock__section-bottom-features-col:nth-of-type(2) {
    max-width: 100% !important;
  }

  .smart-lock__section-bottom-features-item {
    margin-bottom: 10px;
  }

  .smart-lock__section-bottom-features-item p {
    font-size: 14px;
  }

  .smart-lock__section-bottom-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .smart-lock__section-bottom-ul ul {
    padding: 0 13px;
  }

  .smart-lock__section-bottom-ul li {
    font-size: 14px;
  }

  .smart-lock__section-description-chars .h3 {
    margin-bottom: 10px;
  }

  .smart-lock__section-description-chars-item {
    gap: 15px;
    margin-bottom: 5px;
  }

  .smart-lock__section-description-chars-item span {
    font-size: 13px;
  }

  .smart-lock__section-description-chars-item span:first-of-type {
    max-width: 50%;
  }

  .smart-lock__section-description-chars-item span:nth-of-type(2) {
    text-align: right;
  }

  .smart-lock__section-bottom-gray {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background: rgba(31, 34, 41, 0.05);
    border-radius: 9px;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin: 10px -15px;
    padding: 20px 15px;
  }

  .smart-lock__section-bottom-gray .h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .smart-lock__section-bottom-gray-col p {
    font-size: 14px;
  }

  .smart-lock__section-description-items {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .smart-lock__section-description-items .smart-lock__section-description-item {
    left: 0 !important;
    max-width: 100% !important;
  }

  .metalcard {
    padding-bottom: 40px;
  }

  .truncate-description-toggle {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
  }

  .metalcard__design {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    margin-right: -15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 0;
  }

  .metalcard__design-title {
    font-size: 14px;
  }

  .metalcard__design-items {
    gap: 8px;
    overflow-x: scroll;
    padding-bottom: 15px;
    padding-right: 15px;
  }

  .metalcard__design-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 60px;
    max-width: 70px;
  }

  .metalcard__design-item .icon {
    height: auto !important;
    max-height: 40px;
    max-width: 60px;
    width: auto !important;
  }

  .metalcard__main {
    -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;
  }

  .metalcard__images {
    gap: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
  }

  .metalcard__image {
    height: auto;
    width: 100%;
  }

  .metalcard__image-download {
    bottom: 10px;
    height: 30px;
    right: 9px;
    width: 30px;
  }

  .metalcard__image-title {
    font-size: 14px;
    margin-top: 5px;
  }

  .metalcard-change__btn {
    font-size: 12px;
    font-weight: 600;
    height: 30px;
  }

  .metalcard-change__title {
    font-size: 10px;
  }

  .metalcard__content {
    font-size: 14px;
    padding: 0;
  }

  .metalcard__content h2 {
    font-size: 16px;
    margin: 10px 0 5px;
  }

  .metalcard__content h3 {
    font-size: 14px;
    margin: 10px 0 5px;
  }

  .metalcard__content li,
  .metalcard__content p {
    font-size: 14px;
    font-weight: 300;
  }

  .metalcard__content .card-actions {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .metalcard__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.195;
    margin-bottom: 12px;
  }

  .metalcard__price {
    gap: 10px;
    margin-top: 10px;
  }

  .metalcard__price > span {
    font-size: 14px;
  }

  .metalcard__price > span:nth-of-type(2) {
    font-size: 27px;
  }

  .metalcard__price > span:nth-of-type(2) > span:first-child {
    font-size: 27px;
  }

  .metalcard__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin: 0;
  }

  .metalcard__btn {
    font-size: 14px;
    height: 53px;
    margin-top: 10px;
    max-width: 100%;
  }

  .metalcard__content-flex {
    gap: 25px;
    margin-top: 15px;
  }

  .metalcard__dates span,
  .metalcard__guarantee span {
    font-size: 12px;
  }

  .metalcard__tabs {
    margin: 30px 0;
  }

  .metalcard__tabs-header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
  }

  .metalcard__tabs-header-item {
    border-radius: 9px;
    font-size: 12px;
  }

  .metalcard-tab-description {
    font-size: 14px;
    margin: 0;
    max-width: 100%;
  }

  .metalcard-tab-description li,
  .metalcard-tab-description p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .metalcard-tab-description h2,
  .metalcard-tab-description h3,
  .metalcard-tab-description h4 {
    margin: 20px 0 10px;
  }

  .metalcard-tab-description ol,
  .metalcard-tab-description ul {
    margin: 0 0 20px;
    padding-left: 16px;
  }

  .metalcard-tab-lock__item {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .metalcard-tab-lock__image {
    height: 200px;
  }

  .metalcard-tab-lock__text {
    font-size: 14px;
  }

  .metalcard-tab-lock__text .h3 {
    margin-bottom: 10px;
  }

  .metalcard-tab-lock__text li,
  .metalcard-tab-lock__text p {
    font-size: 14px;
  }

  .metalcard-tab-furn__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .metalcard-tab-furn__item-image {
    height: 200px;
  }

  .metalcard-tab-furn__item-text .h3 {
    margin-bottom: 10px;
  }

  .metalcard-tab-furn__item-text li,
  .metalcard-tab-furn__item-text p {
    font-size: 14px;
  }

  .metalcard-tab-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .metalcard-tab-photo {
    height: calc(var(--indexSize) * 31.5);
  }

  .metalcard.design--ds .metalcard__content,
  .metalcard.design--dsf .metalcard__content,
  .metalcard.design--dsfbb .metalcard__content,
  .metalcard.design--osfb .metalcard__content,
  .metalcard.design--osfbv .metalcard__content,
  .metalcard__holder.design--ds .metalcard__content,
  .metalcard__holder.design--dsf .metalcard__content,
  .metalcard__holder.design--dsfbb .metalcard__content,
  .metalcard__holder.design--osfb .metalcard__content,
  .metalcard__holder.design--osfbv .metalcard__content {
    padding-left: 0;
  }

  .metalcard__reverse {
    max-width: 100%;
  }

  .metalcard__reverse-area {
    gap: 40px;
  }

  .metalcard__reverse-front {
    max-width: 65%;
  }

  .metalcard__reverse-front-image .metalcard__image {
    height: auto;
  }

  .metalcard__reverse-front-image .metalcard__image-download {
    bottom: 10px;
    right: 10px;
  }

  .metalcard__reverse-wrap .metalcard-change--metal-frame {
    max-width: 50%;
  }

  .metalcard__reverse-back-image-title {
    font-size: 12px;
    margin: 5px 0 0;
  }

  .metalcard__reverse-icon {
    height: 15px;
    left: -27px;
    width: 15px;
  }

  .interior-catalog__section-download-item span {
    font-size: 8px;
  }

  .interior-catalog__header-flex,
  .interior-catalog__popular {
    -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;
    margin-bottom: 20px;
  }

  .card__area-mobile,
  .card__area-mobile-fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .card__header-text p {
    font-size: 14px;
    font-weight: 300;
  }

  .card__buttons .catalog-item__order,
  .card__buttons .catalog-item__to-cart {
    border-radius: 42px;
  }

  .about-collection__slider .nav-prev {
    left: 13px;
  }

  .about-collection__slider .nav-next {
    right: 13px;
  }

  .opening-options__item-video:after {
    background: url(../img/icons/pause.svg) 50% / contain no-repeat;
    background: url(../img/icons/play.svg) 50% / contain no-repeat;
  }

  .opening-options__item-video.is-played:after {
    background: url(../img/icons/pause.svg) 50% / contain no-repeat;
  }

  .ws-contact__list-content {
    margin: 0 -15px;
  }

  .ws-contact__list-item {
    -webkit-box-shadow: 0 0 8px 0 rgba(31, 34, 41, 0.15);
    box-shadow: 0 0 8px 0 rgba(31, 34, 41, 0.15);
  }

  .ws-contact__select-wrapper:after {
    background: url(../img/icons/arrow-select.svg) 50% / cover no-repeat;
  }

  .ws-contact__data-btns,
  .ws-contact__data-btns span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }

  .hidden-doors__tabs-outer-btn-more .icon {
    height: 8px;
    width: 13px;
  }

  .hidden-primed-doors__left-text p,
  .hidden-primed-doors__left-text-2 .h4,
  .hidden-primed-doors__left-text-2 p {
    font-size: 12px;
  }

  .designers-reviews__area {
    margin-left: -15px;
    margin-right: -15px;
  }

  .designers-reviews__slider .slider-nav__prev {
    background: url(../img/icons/nav-slider-prev-mobile.svg) 50% / contain
      no-repeat;
  }

  .designers-reviews__slider .slider-nav__next {
    background: url(../img/icons/nav-slider-next-mobile.svg) 50% / contain
      no-repeat;
  }

  .video-slide__play {
    height: 24px;
    width: 32px;
  }

  .download-catalog__area {
    border-radius: 0;
    margin-left: -15px;
    margin-right: -15px;
    padding: 20px 34px 27px;
  }

  .download-catalog__grid {
    margin-top: 35px;
  }

  .sliding-partitions__tab--reverse .sliding-partitions__tab-outer-flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .wooden-interior__bl2-left,
  .wooden-interior__bl2-right {
    max-width: 100%;
  }

  .cart__aside-order,
  .cart__aside-order-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .collection-category__gridE {
    gap: 14px 7px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .catalog__header-search {
    width: 100% !important;
  }

  .autocomplete-suggestions {
    padding: 2rem;
  }

  .ws-sug-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    cursor: pointer;
  }

  .ws-sug-item__desc {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 2rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    width: 45%;
  }

  .ws-sug-item__name {
    color: #000;
    font-size: 18px;
    line-height: 22px;
  }

  .ws-sug-item__price {
    width: 100%;
    width: auto;
  }

  .ws-sug-item__btn button {
    height: 36px;
    width: 36px;
  }

  .ws-sug-item__btn button svg {
    height: 21px;
    width: 21px;
  }

  .ws-sug-item__btn .catalog-item__to-fav svg {
    height: 25px;
    width: 25px;
  }

  .panels-list__item.is--selected:after {
    height: 89%;
    width: calc(100% + 14px);
  }

  .panels-list__item.is--selected .panels-list__item-image:after {
    height: calc(100% + 12px);
    top: -6px;
    width: calc(100% + 12px);
  }

  .panels-filter__section.section--fav sup {
    top: 7px;
  }

  .metalcard__design-items {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .metaldlg-list__item-btns .link {
    font-size: 12px;
  }

  .panels-list__item-name {
    font-size: 10px;
    width: calc(100% + 1rem);
  }

  .metalcard__description {
    padding: 16px;
  }

  .catalog-item.design--osf .catalog-item__images {
    gap: 8px;
    margin-bottom: 5px;
  }

  .catalog-item.design--osfb .catalog-item__images--slider {
    max-width: calc(var(--indexSize) * 34.3);
    padding: 0;
  }

  .catalog-item.design--osfbv .catalog-item__images--slider {
    max-width: calc(var(--indexSize) * 32.4);
  }

  .catalog-item.design--dsfbb .catalog-item__images--slider {
    max-width: calc(var(--indexSize) * 36.4);
  }

  .catalog-item.design--ds .catalog-item__images--slider {
    margin-left: -3px;
    max-width: calc(var(--indexSize) * 39.4);
    width: calc(100% + 3px);
  }

  .catalog-item.design--dsf .catalog-item__images--slider {
    max-width: calc(var(--indexSize) * 36.2);
  }

  body .catalog-item__images--slider {
    gap: 0;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    width: 100%;
  }

  .catalog-item__images-pagination {
    margin-top: 4px;
  }

  .catalog-item__images-pagination .swiper-pagination-bullet {
    height: 5px;
    -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
    width: 5px;
  }

  .catalog-item__image {
    height: calc(var(--indexSize) * 39);
  }

  .catalog-item__images {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .collection-category__item-bg {
    height: auto;
  }

  .catalog-item.design--osf .catalog-item__images {
    gap: 10px;
  }

  .catalog__header--sort {
    font-size: 14px;
    height: 44px;
    width: 100%;
  }

  .catalog__header--sort select {
    background-position:
      right 1.4em top 50%,
      0 0;
    background-size: 1.4rem auto;
    height: 44px;
    padding: 0 13px;
  }

  .interior-catalog {
    padding-bottom: 40px;
  }

  .interior-catalog__header .h1 {
    margin-bottom: 10px;
  }

  .interior-catalog__header p {
    font-size: 12px;
  }

  .interior-catalog__nav {
    margin: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .interior-catalog__nav-category {
    width: 100%;
  }

  .interior-catalog__nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background: #fafafa;
    border-radius: 9px;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }

  .interior-catalog__nav-menu-title {
    font-size: 14px;
  }

  .interior-catalog__nav-menu-list {
    border-color: transparent;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding-bottom: 3px;
  }

  .interior-catalog__nav-menu-item {
    font-size: 12px;
  }

  .interior-catalog__nav-menu-item:after {
    height: 2px;
    top: 100%;
  }

  .interior-catalog__nav-filter {
    margin-top: 10px;
  }

  .interior-catalog__nav-filter .interior-catalog__nav-menu-list {
    gap: 6px 12px;
  }

  .interior-catalog__section {
    margin-bottom: 30px;
  }

  .interior-catalog__section-header {
    -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;
  }

  .interior-catalog__section-title {
    font-size: 20px;
    margin-bottom: 0;
  }

  .interior-catalog__section-download {
    gap: 10px;
    margin-top: 15px;
    width: 100%;
  }

  .interior-catalog__section-download-title {
    font-size: 12px;
  }

  .interior-catalog__section-download-items {
    gap: 8px;
    width: 100%;
  }

  .interior-catalog__section-download-item {
    height: 28px;
    text-align: center;
    width: 50%;
  }

  .interior-catalog__section-download-item span {
    font-size: 10px;
  }

  .interior-catalog__section-download-item span:before {
    display: none;
  }

  .interior-catalog__section-grid {
    gap: 14px 7px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .interior-item__image {
    aspect-ratio: 1;
    height: auto;
  }

  .interior-item__steakers {
    right: 10px;
    top: 10px;
  }

  .interior-item__steaker {
    font-size: 10px;
    height: 22px;
    padding: 0 8px;
    width: auto;
  }

  .interior-item__footer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1px;
    margin-top: 10px;
  }

  .interior-item__title {
    font-size: 12px;
    text-align: center;
  }

  .interior-item__price {
    gap: 6px;
  }

  .interior-item__price-old {
    font-size: 9px;
  }

  .interior-item__price-main {
    font-size: 12px;
  }

  .interior-catalog--v2 .interior-catalog__nav {
    margin-bottom: 10px;
  }

  .interior-catalog__header-flex,
  .interior-catalog__popular {
    -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;
    margin-bottom: 20px;
  }

  .interior-catalog__popular {
    background: #fafafa;
    border-radius: 9px;
    gap: 5px;
    padding: 10px;
  }

  .interior-catalog__popular-title {
    font-size: 14px;
  }

  .interior-catalog__popular-grid {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .interior-catalog__popular-item {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    font-size: 12px;
    padding: 6px 8px;
  }

  .bx-search {
    margin-bottom: 20px;
  }

  .catalog-item--rd .catalog-item__title {
    font-size: 12px;
    margin-bottom: 7px;
    margin-top: 7px;
    padding: 0;
  }

  .catalog-item--rd .catalog-item__price-main {
    font-size: 20px;
  }

  .catalog-item--rd .catalog-item__price-old {
    font-size: 12px;
  }

  .catalog-item--rd .catalog-item__buttons .catalog-item__to-cart {
    max-width: 46px;
  }

  .catalog-item--rd .catalog-item__buttons .catalog-item__to-form {
    max-width: calc(100% - 51px);
  }

  .catalog-item.catalog-item--rd.catalog-promo {
    gap: 6px;
  }

  .catalog-item--rd .catalog-item__to-fav {
    right: 8px;
  }

  .catalog-item.catalog-item--rd {
    padding: 8px 6px;
  }

  .catalog-item__stickers {
    gap: 2px;
    top: 28px;
  }

  .catalog-item__sticker {
    font-size: 14px;
    height: 27px;
    padding-top: 2px;
    width: 27px;
  }

  .catalog__grid {
    margin-top: 20px;
  }

  .interior-item__price-old {
    margin-right: 0;
  }

  .interior-item__footer {
    gap: 6px;
  }

  .catalog-category__content .h3,
  .catalog-category__content .h4,
  .catalog-category__content h3,
  .catalog-category__content h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .catalog-category__content h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .content-row__text ol,
  .content-row__text ul {
    margin-bottom: 15px;
  }

  .catalog-category__content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
  }

  .catalog-category__content li,
  .catalog-category__content p {
    font-size: 14px;
  }

  .catalog-category__content ul li:after {
    height: 8px;
    top: 5px;
    width: 8px;
  }

  .catalog-category__header .h1 {
    margin-bottom: 14px;
  }

  .catalog-category__header p {
    font-size: 14px;
  }

  .card__colors-title {
    font-size: 16px;
  }

  .card {
    padding-bottom: 60px;
  }

  .card .catalog-slider .h2 {
    font-size: 20px;
    font-weight: 700;
  }

  .card .catalog-slider__header {
    margin-bottom: 20px;
  }

  .card__header {
    display: none;
  }

  .card__area-mobile {
    gap: 9px;
  }

  .card__area-mobile,
  .card__area-mobile-fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .card__area-mobile-fixed {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(-210px);
    -ms-transform: translateY(-210px);
    transform: translateY(-210px);
    -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  .card__mobile-tabs {
    display: block;
  }

  .card__area {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .card__aside {
    max-width: 100%;
  }

  .card__aside-sticky {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .card__aside-sticky .card__buttons,
  .card__aside-sticky .card__image,
  .card__aside-sticky .card__price,
  .card__aside-sticky .card__title {
    display: none;
  }

  .card__image {
    height: 300px;
    -webkit-transition-property: background-image;
    transition-property: background-image;
  }

  .card__header-text {
    -webkit-line-clamp: 7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    display: -moz-box;
    -moz-line-clamp: 7;
    font-size: 14px;
    overflow: hidden;
  }

  .card__header-text,
  .card__header-text p {
    font-size: 14px;
    font-weight: 300;
  }

  .card__title {
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.195;
    margin-bottom: 12px;
    margin-top: 0;
    text-align: left;
  }

  .card__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
  }

  .card__price-main {
    font-size: 30px;
    font-weight: 700;
  }

  .card__price-old {
    font-size: 1.5rem;
    text-decoration: none;
  }

  .card__price-old:before {
    content: "старая цена ";
  }

  .card__buttons {
    gap: 5px;
    margin-top: 15px;
  }

  .card__buttons .catalog-item__order {
    font-size: 1.2rem;
    font-weight: 600;
    height: 30px;
  }

  .card__buttons .catalog-item__to-cart {
    height: 30px;
    max-width: 47px;
  }

  .card__buttons .catalog-item__to-cart .icon {
    height: 18px;
    width: 18px;
  }

  .card__info {
    margin: 16px 0 0;
    max-width: 100%;
  }

  .card__info-p {
    font-size: 12px;
    margin: 10px 0 0;
    max-width: 80%;
  }

  .card__info-item {
    font-size: 1.2rem;
    gap: 5px;
  }

  .card__content {
    border-top: 1px solid rgba(49, 54, 61, 0.2);
    margin-top: 8px;
    padding: 13px 0 0;
  }

  .card__colors-grid {
    gap: 14px 11px;
    grid-template-columns: repeat(5, 1fr);
  }

  .card__color {
    aspect-ratio: 1;
    height: auto;
    width: 100%;
  }

  .card__offers {
    display: grid;
    gap: 12px 11px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
  }

  .card__offers-area {
    display: contents;
  }

  .card__offers-title {
    display: none;
  }

  .card__offers-grid {
    display: contents;
  }

  .card__offer-image {
    background-position: 50%;
    height: calc(var(--indexSize) * 43);
    margin-bottom: 5px;
  }

  .card__offer-title {
    font-size: 12px;
  }

  .card__offer.is-selected .card__offer-image {
    outline-offset: 2px;
  }

  .opening-schemes {
    padding: 51px 0 41px;
  }

  .opening-schemes .h2 {
    font-size: 20px;
    font-weight: 600;
  }

  .opening-schemes__grid {
    gap: 26px 0;
    grid-template-columns: 31% 38% 33%;
    margin-left: -6px;
    margin-top: 34px;
    padding: 0;
  }

  .opening-schemes__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -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;
  }

  .opening-schemes__item:first-of-type span {
    margin-right: 0;
  }

  .opening-schemes__item:nth-of-type(6) span {
    margin-right: 0;
  }

  .opening-schemes__item:nth-of-type(9) span {
    margin-right: 0;
  }

  .opening-schemes__item:last-of-type {
    display: none;
  }

  .opening-schemes__item:nth-of-type(4) .opening-schemes__item-image img,
  .opening-schemes__item:nth-of-type(5) .opening-schemes__item-image img,
  .opening-schemes__item:nth-of-type(6) .opening-schemes__item-image img {
    max-height: 159px;
  }

  .opening-schemes__item:nth-of-type(2) span {
    max-width: 95px;
  }

  .opening-schemes__item:nth-of-type(5) span {
    max-width: 60px;
  }

  .opening-schemes__item:nth-of-type(7) span {
    max-width: 60px;
  }

  .opening-schemes__item:nth-of-type(8) span {
    max-width: 81px;
  }

  .opening-schemes__item span {
    font-size: 12px;
  }

  .opening-schemes__item-image {
    height: auto;
    margin-bottom: 8px;
    max-height: 169px;
  }

  .opening-schemes__item-image img {
    max-height: 169px;
  }

  .about-collection {
    padding-bottom: 43px;
  }

  .about-collection__area {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 19px;
  }

  .about-collection__text {
    max-width: 100%;
  }

  .about-collection__text .h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 13px;
  }

  .about-collection__text p {
    font-size: 14px;
    line-height: 1.2;
  }

  .about-collection__image img {
    border-radius: 6px;
    height: 222px;
  }

  .about-collection__slider .nav-prev {
    height: 42px;
    left: -21px;
    width: 42px;
  }

  .about-collection__slider .nav-prev .icon {
    height: 13px;
    width: 7px;
  }

  .about-collection__slider .nav-next {
    height: 42px;
    right: -21px;
    width: 42px;
  }

  .about-collection__slider .nav-next .icon {
    height: 13px;
    width: 7px;
  }

  .doors-slider .swiper-slide .doors-slider__slide {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: initial;
    transition: initial;
  }

  .doors-slider__header {
    margin-bottom: 20px;
  }

  .doors-slider__header .h2 {
    font-size: 20px;
    font-weight: 700;
  }

  .doors-slider__nav {
    display: none;
  }

  .doors-slider__slide-image {
    height: 233px;
  }

  .doors-slider__slide-title {
    font-size: 16px;
    margin-top: 13px;
    text-align: left;
  }

  .card__header-text {
    height: 118px;
    overflow-y: auto;
    -webkit-line-clamp: unset;
    -moz-line-clamp: unset;
    margin-right: -6px;
    padding-right: 6px;
  }

  .opening-options {
    padding: 34px 0 44px;
  }

  .opening-options .h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: left;
  }

  .opening-options__item-video {
    margin-bottom: 5px;
  }

  .opening-options__item-video:after {
    background: url(../img/icons/o-pause.svg) 50% / contain no-repeat;
    background: url(../img/icons/o-play.svg) 50% / contain no-repeat;
    content: "";
    height: 2rem;
    position: absolute;
    right: 1.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1.7rem;
  }

  .opening-options__item-video.is-played:after {
    background: url(../img/icons/o-pause.svg) 50% / contain no-repeat;
  }

  .opening-options__item-title {
    font-size: 12px;
  }

  .opening-options__footer {
    gap: 0;
    margin-top: 24px;
  }

  .opening-options__footer .link {
    font-size: 14px;
  }

  .opening-options__btn-more {
    display: none;
  }

  .opening-options__header {
    margin-bottom: 15px;
  }

  .catalog-slider--rd .catalog-item__buttons .btn {
    font-size: 10px;
  }

  .input-text {
    font-size: 15px;
    padding: 0 13px;
    text-align: center;
  }

  .ws-wnd .fancybox-slide--html {
    padding: 6px;
  }

  .ws-wnd .ws-modal__window {
    padding: 48px 12px;
  }

  .b-form__title {
    font-size: 20px;
  }

  .b-form__text {
    font-size: 14px;
  }

  .b-form__title {
    margin-bottom: 10px;
  }

  .b-form__object {
    margin: 20px 0;
    padding: 12px;
  }

  .b-form__object-desc {
    -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;
  }

  .b-form__object-code {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .b-form__object-name {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .input-text {
    border-radius: 4px;
    font-size: 16px;
    height: 60px;
    padding: 0 20px;
  }

  .b-form__field {
    margin-bottom: 10px;
  }

  .b-form__field .btn {
    font-size: 16px;
    height: 60px;
  }

  .b-form__note {
    font-size: 12px;
    margin-top: 10px;
  }

  textarea.input-text {
    height: 120px;
    padding: 20px;
  }

  .ws-wnd__call .b-form__header {
    margin-bottom: 30px;
  }

  .ws-wnd__order .b-form__header {
    margin-bottom: 20px;
  }

  .b-form__error {
    font-size: 12px;
    height: auto;
    top: -8px;
  }

  .b-forms__success-text-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .b-forms__success-text p {
    font-size: 16px;
  }

  .b-forms__success-text-result {
    font-size: 20px;
  }

  .ws-form__success .btn--ord {
    height: 50px;
    margin: 20px auto 0;
    max-width: 270px;
  }

  body .ws-sys__massage-text {
    font-size: 14px;
  }

  body .ws-sys__massage.is--flashing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  body .msg--error,
  body .msg--success {
    background-position: 33px 50%;
  }

  .ws-contact__list-name i:before {
    height: 9px;
    margin-right: 5px;
    top: 0;
    width: 9px;
  }

  .ws-contact__opts {
    display: none;
  }

  .ws-contact__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ws-contact__regions-title {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: left;
  }

  .ws-contact__data-content {
    display: none;
  }

  .ws-contact__data-content.tab-active {
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    display: block;
  }

  #tab-contact-map {
    height: 250px;
  }

  .ws-contact__list-title {
    font-size: 23px;
    margin-bottom: 20px;
    text-align: left;
  }

  .ws-contact__list-content {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-contact__list-item {
    border-radius: 9px;
    padding: 12px 15px;
  }

  .ws-contact__list-name {
    font-size: 14px;
  }

  .ws-contact__prop-name,
  .ws-contact__prop-value {
    font-size: 12px;
  }

  .ws-contact {
    padding-bottom: 40px;
  }

  .ws-contact__list-prop {
    line-height: 1;
    margin-bottom: 10px;
  }

  .ws-contact__regions-content select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid rgba(31, 34, 41, 0.15);
    border-radius: 0.4rem;
    height: 100%;
    padding: 0 15px;
    width: 100%;
  }

  .ws-contact__select-wrapper {
    height: 50px;
    margin-bottom: 10px;
    position: relative;
    width: 100%;
  }

  .ws-contact__select-wrapper:after {
    background: url(../img/icons/arrow-select.svg) 50% / cover no-repeat;
    content: "";
    height: 8px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 15px;
  }

  .ws-contact__data-btns {
    -ms-flex-align: center;
    gap: 10px;
  }

  .ws-contact__data-btns,
  .ws-contact__data-btns span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .ws-contact__data-btns span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    border: 1px solid rgba(31, 34, 41, 0.15);
    border-radius: 0.4rem;
    font-size: 16px;
  }

  .ws-contact__data-btns span.btn-active {
    border-color: #1f2229;
  }

  .ws-contact__header {
    font-size: 16px;
    height: 50px;
  }

  .ws-contact__menu {
    height: 250px;
  }

  .ws-contact__list-prop.prop--address .ws-contact__prop-value a span {
    font-size: 12px;
  }

  .ws-contact__regions-content select {
    font-size: 16px;
  }

  .hidden-doors__header {
    margin-bottom: 15px;
  }

  .hidden-doors__header .h1 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .hidden-doors__header p {
    font-size: 12px;
  }

  .hidden-doors__hero {
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hidden-doors__hero-item:first-of-type .hidden-doors__hero-item-image {
    border-radius: 9px;
  }

  .hidden-doors__hero-item:last-of-type .hidden-doors__hero-item-image {
    border-radius: 9px;
  }

  .hidden-doors__hero-item span {
    display: block;
    font-size: 12px;
    margin: 0 10px;
    max-width: 137px;
  }

  .hidden-doors__hero-item-image {
    border-radius: 9px;
    height: 151px;
    margin-bottom: 8px;
  }

  .hidden-doors__vantages {
    display: none;
  }

  .hidden-doors__tabs {
    padding: 40px 0 0;
  }

  .hidden-doors__tabs-item {
    margin-bottom: 18px;
  }

  .hidden-doors__tabs-item:first-of-type .hidden-doors__tabs-outer-image img {
    -o-object-position: 15% 50%;
    object-position: 15% 50%;
  }

  .hidden-doors__tabs-item:nth-of-type(2) .hidden-doors__tabs-outer-image img {
    -o-object-position: 90% 50%;
    object-position: 90% 50%;
  }

  .hidden-doors__tabs-item:nth-of-type(3) .hidden-doors__tabs-outer-image img {
    -o-object-position: 89% 50%;
    object-position: 89% 50%;
  }

  .hidden-doors__tabs-item:nth-of-type(4) .hidden-doors__tabs-outer-image img {
    -o-object-position: 32% 50%;
    object-position: 32% 50%;
  }

  .hidden-doors__tabs-outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hidden-doors__tabs-outer-image {
    border-radius: 0;
    height: 357px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }

  .hidden-doors__tabs-outer-text {
    padding: 16px 0;
  }

  .hidden-doors__tabs-outer-text p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 4px;
  }

  .hidden-doors__tabs-outer-header {
    padding-right: 5px;
  }

  .hidden-doors__tabs-outer-header .h2 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .hidden-doors__tabs-outer-body {
    margin-top: 15px;
  }

  .hidden-doors__tabs-outer-price {
    margin-bottom: 13px;
    padding-left: 6px;
  }

  .hidden-doors__tabs-outer-buttons {
    gap: 6px;
  }

  .hidden-doors__tabs-outer-buttons .btn {
    max-width: 100%;
  }

  .hidden-doors__tabs-outer-btn-more {
    font-weight: 500;
    gap: 12px;
  }

  .hidden-doors__tabs-outer-btn-more .icon {
    height: 16px;
    width: 16px;
  }

  .hidden-doors__tabs-outer-btn-callback {
    font-weight: 500;
  }

  .hidden-doors__tabs-inner {
    padding: 30px 0;
  }

  .hidden-primed-doors .h2 {
    font-size: 20px;
  }

  .hidden-primed-doors__hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: -15px;
    width: calc(100% + 30px);
  }

  .hidden-primed-doors__left {
    background: #f6f6f6;
    max-width: 100%;
    padding: 24px 15px 19px;
  }

  .hidden-doors__tabs-outer-price,
  .hidden-doors__tabs-outer-price span {
    font-size: 25px;
  }

  .hidden-primed-doors__left .h2 {
    margin-bottom: 26px;
    text-align: center;
  }

  .hidden-primed-doors__left-flex {
    gap: 20px;
    margin-bottom: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .hidden-primed-doors__left-flex p {
    font-size: 14px;
  }

  .hidden-primed-doors__left-text {
    margin-bottom: 10px;
    max-width: 262px;
  }

  .hidden-primed-doors__left-text .h3 {
    font-size: 14px;
  }

  .hidden-primed-doors__left-text p,
  .hidden-primed-doors__left-text-2 .h4,
  .hidden-primed-doors__left-text-2 p {
    font-size: 12px;
  }

  .hidden-primed-doors__right {
    background: #f6f6f6;
    border-radius: 0;
    max-width: 100%;
    padding: 0 15px 24px;
  }

  .hidden-primed-doors__right .h2 {
    margin-bottom: 11px;
    text-align: center;
  }

  .hidden-primed-doors__right p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 17px;
  }

  .hidden-primed-doors__mask {
    padding: 0;
  }

  .hidden-primed-doors__mask-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hidden-primed-doors__mask-text {
    padding: 0;
  }

  .hidden-primed-doors__mask-text .h2 {
    margin-bottom: 10px;
    text-align: center;
  }

  .hidden-primed-doors__mask-text .italic {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0;
    padding-left: 25px;
  }

  .hidden-primed-doors__mask-image {
    margin: 0 auto 20px;
    max-width: 302px;
  }

  .hidden-primed-doors__mask-image img {
    height: auto;
  }

  .hidden-doors__montage {
    border-radius: 0;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 22px;
    padding: 19px 15px 28px;
  }

  .hidden-doors__montage-top .h2 {
    margin-bottom: 16px;
    text-align: center;
  }

  .hidden-doors__montage-top-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
  }

  .hidden-doors__montage-top-video {
    max-width: 100%;
  }

  .hidden-doors__montage-top-images {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hidden-doors__montage-top-images img {
    aspect-ratio: 1;
    height: auto;
    max-width: 100%;
  }

  .hidden-doors__montage-middle {
    margin-top: 19px;
  }

  .hidden-doors__montage-middle-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .hidden-doors__montage-middle-text .h2 {
    margin-bottom: 22px;
    text-align: center;
  }

  .hidden-doors__montage-middle-text li,
  .hidden-doors__montage-middle-text p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .hidden-doors__montage-middle-image {
    display: none;
  }

  .hidden-doors__gallery {
    margin-top: 21px;
  }

  .hidden-doors__gallery .h2 {
    margin-bottom: 19px;
    text-align: center;
  }

  .hidden-doors__gallery-slider-area {
    margin-right: -15px;
  }

  .hidden-doors__gallery-slider .swiper-slide .hidden-doors__gallery-slide {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: initial;
    transition: initial;
  }

  .hidden-doors__gallery-slide img {
    height: 131px;
  }

  .hidden-doors__video {
    padding: 46px 0;
  }

  .hidden-doors__video .h2 {
    font-size: 20px;
  }

  .video-slider {
    margin-top: 29px;
  }

  .video-slider .swiper-slide .video-slide {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: initial;
    transition: initial;
  }

  .designers-reviews {
    padding: 34px 0 0;
  }

  .designers-reviews .h2 {
    font-size: 20px;
  }

  .designers-reviews__area {
    border-radius: 0;
    margin-top: 14px;
    padding: 18px 15px 12px;
  }

  .designers-reviews__slider .slider-nav__prev {
    background: url(../img/icons/nav-slider-prev-mobile.svg) 50% / contain
      no-repeat;
  }

  .designers-reviews__slider .slider-nav__next {
    background: url(../img/icons/nav-slider-next-mobile.svg) 50% / contain
      no-repeat;
  }

  .designers-reviews__slider .slider-arrow {
    height: 34px;
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 34px;
  }

  .designers-reviews__slider .slider-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 11px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 14px;
  }

  .designers-reviews__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .designers-reviews__slide-avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    max-width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
  }

  .designers-reviews__slide-avatar img {
    height: 132px;
    width: 133px;
  }

  .designers-reviews__slide-text {
    padding-top: 11px;
  }

  .designers-reviews__slide-text p {
    margin-bottom: 18px;
  }

  .designers-reviews__slide-text,
  .designers-reviews__slide-text p {
    font-size: 12px;
    line-height: 1.5;
  }

  .designers-reviews__slide-name {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 0;
  }

  .video-slide__preview {
    border-radius: 7px;
    height: 160px;
    margin-bottom: 11px;
  }

  .video-slide__play {
    height: 50px;
    width: 50px;
  }

  .video-slide__title {
    display: block;
    font-size: 14px;
    text-align: center;
  }

  .hidden-entrance-doors .h2 {
    font-size: 20px;
    margin-bottom: 20px !important;
    text-align: center;
  }

  .hidden-entrance-doors__bl1 {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
  }

  .hidden-entrance-doors__bl1-text {
    max-width: 100%;
    padding: 0;
  }

  .hidden-entrance-doors__bl1-text p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .hidden-entrance-doors__bl1-image {
    height: auto;
  }

  .hidden-entrance-doors__bl2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }

  .hidden-entrance-doors__bl2-text {
    max-width: 100%;
  }

  .hidden-entrance-doors__bl2-text p {
    font-size: 12px;
    line-height: 1.5;
  }

  .hidden-entrance-doors__bl2-text p:last-of-type {
    margin-top: 10px;
  }

  .hidden-entrance-doors__bl2-text ul {
    margin: 10px 0;
    max-width: 100%;
    padding: 0 18px;
  }

  .hidden-entrance-doors__bl2-text li {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .hidden-entrance-doors__bl2-image {
    height: auto;
    margin-top: 15px;
    max-width: 100%;
  }

  .hidden-entrance-doors__bl3 {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin: 10px 0 0;
  }

  .hidden-entrance-doors__bl3-image {
    height: auto;
    max-width: 100%;
  }

  .hidden-entrance-doors__bl3-text {
    max-width: 100%;
    padding-top: 20px;
  }

  .hidden-entrance-doors__bl3-text ol {
    max-width: 100%;
    padding: 0 18px;
  }

  .hidden-entrance-doors__bl3-text li {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .hidden-entrance-doors__bl4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .hidden-entrance-doors__text {
    max-width: 100%;
    padding-top: 20px;
  }

  .hidden-entrance-doors__text p {
    font-size: 12px;
    line-height: 1.5;
  }

  .hidden-entrance-doors__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }

  .hidden-entrance-doors__grid-mobile {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hidden-entrance-doors__grid-item {
    height: auto;
  }

  .hidden-entrance-doors__grid-item:last-of-type {
    display: none;
  }

  .glass-hidden-doors-gallery,
  .hidden-entrance-doors-gallery {
    border-radius: 0;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 0;
    padding: 0 15px;
  }

  .hidden-entrance-doors-gallery {
    margin-top: 20px;
    padding-top: 20px;
  }

  .glass-hidden-doors-gallery {
    padding-top: 20px;
  }

  .glass-hidden-doors .h2 {
    font-size: 20px;
    margin-bottom: 20px !important;
    text-align: center;
  }

  .glass-hidden-doors__bl1 {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .glass-hidden-doors__image {
    height: auto;
  }

  .glass-hidden-doors__text {
    padding-top: 10px;
  }

  .glass-hidden-doors__text p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 100%;
  }

  .glass-hidden-doors__bl2 {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .glass-hidden-doors__bl2-text {
    max-width: 100%;
  }

  .glass-hidden-doors__bl2-text p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .glass-hidden-doors__bl2-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
  }

  .glass-hidden-doors__bl2-images-mobile,
  .glass-hidden-doors__bl2-images-mobile2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
  }

  .glass-hidden-doors__bl2-image {
    height: auto;
  }

  .glass-hidden-doors__bl2-youtube-play {
    height: 31px;
    max-width: 44px;
  }

  .glass-hidden-doors__bl3 {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-radius: 0;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px;
  }

  .glass-hidden-doors__bl3-text p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .glass-hidden-doors__bl3-image {
    height: auto;
    max-width: 100%;
  }

  .hidden-doors-finishing .h2 {
    font-size: 20px;
    margin-bottom: 20px !important;
    text-align: center;
  }

  .hidden-doors-finishing__bl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }

  .hidden-doors-finishing__bl1-text p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .hidden-doors-finishing__bl1-text-margin {
    margin-top: 20px;
    max-width: 100%;
  }

  .hidden-doors-finishing__bl1-images {
    gap: 6px;
    margin-top: 0;
    max-width: 100%;
  }

  .hidden-doors-finishing__bl1-images img {
    height: auto;
  }

  .hidden-doors-finishing__bl2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  .hidden-doors-finishing__bl2-image {
    height: auto;
    margin-bottom: 10px;
    margin-top: 0;
    max-width: 100%;
  }

  .hidden-doors-finishing__bl2-text p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .custom-table {
    padding: 15px 0;
  }

  .custom-table--5-cols .custom-table__col:first-of-type {
    line-height: 1.5;
    max-width: 111px;
  }

  .custom-table--5-cols .custom-table__col:nth-of-type(2) {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto;
  }

  .custom-table--5-cols .custom-table__body .custom-table__col:first-of-type,
  .custom-table--5-cols .custom-table__header .custom-table__col:first-of-type {
    padding: 7px;
  }

  .custom-table--5-cols .custom-table__header .custom-table__col:first-of-type {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .custom-table--5-cols
    .custom-table__header
    .custom-table__col:nth-of-type(4) {
    display: none;
  }

  .custom-table--5-cols .custom-table__body .custom-table__col:nth-of-type(4) {
    display: none;
  }

  .custom-table--5-cols .custom-table__body .custom-table__col:nth-of-type(2),
  .custom-table--5-cols .custom-table__body .custom-table__col:nth-of-type(3),
  .custom-table--5-cols .custom-table__body .custom-table__col:nth-of-type(4),
  .custom-table--5-cols .custom-table__body .custom-table__col:nth-of-type(5) {
    font-size: 11px;
  }

  .custom-table__header .custom-table__col {
    font-size: 16px;
    text-align: center;
  }

  .custom-table__header-desktop {
    display: none;
  }

  .custom-table__header-mobile {
    display: block;
  }

  .custom-table__col {
    font-size: 12px;
    height: auto;
    padding: 7px;
  }

  .custom-table__col sup {
    font-size: 16px;
    font-weight: 500;
  }

  .custom-table__body {
    margin-left: -7px;
    margin-right: -7px;
  }

  .custom-table-text {
    border-bottom: 2px solid rgba(31, 34, 41, 0.1);
    border-top: 2px solid rgba(31, 34, 41, 0.1);
    margin-bottom: 25px;
    padding: 10px 0;
  }

  .custom-table-text p {
    font-size: 12px;
    line-height: 1.5;
  }

  .custom-table-text p br {
    display: none;
  }

  .custom-table-text--width-sup {
    padding-left: 0;
  }

  .custom-table-text--width-sup sup {
    font-size: 20px;
  }

  .footer-form {
    padding-bottom: 49px;
  }

  .footer-form__wrap {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .footer-form__text {
    margin-bottom: 0;
    max-width: 100%;
    text-align: center;
  }

  .footer-form__text .h2 {
    font-size: 20px;
    margin-bottom: 9px;
    text-align: center;
  }

  .footer-form__text p {
    font-size: 12px;
    margin: 0 auto;
    text-align: center;
  }

  .footer-form__form {
    margin-top: 24px;
  }

  .footer-form__inputs .input,
  .footer-form__inputs .textarea {
    font-size: 14px;
    text-align: center;
  }

  .footer-form__inputs .input::-webkit-input-placeholder,
  .footer-form__inputs .textarea::-webkit-input-placeholder {
    font-size: 14px;
  }

  .footer-form__inputs .input::-moz-placeholder,
  .footer-form__inputs .textarea::-moz-placeholder {
    font-size: 14px;
  }

  .footer-form__inputs .input:-ms-input-placeholder,
  .footer-form__inputs .textarea:-ms-input-placeholder {
    font-size: 14px;
  }

  .footer-form__inputs .input::-ms-input-placeholder,
  .footer-form__inputs .textarea::-ms-input-placeholder {
    font-size: 14px;
  }

  .footer-form__inputs .input::placeholder,
  .footer-form__inputs .textarea::placeholder {
    font-size: 14px;
  }

  .footer-form__inputs .textarea {
    height: 82px;
    margin-top: 7px;
  }

  .footer-form__error {
    font-size: 12px;
    text-align: center;
  }

  .footer-form__check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -3px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-form__check .custom-checkbox {
    gap: 5px;
  }

  .footer-form__check span {
    font-size: 12px;
  }

  .footer-form__check .checkbox-icon {
    height: 17px;
    width: 17px;
  }

  .footer-form__bottom {
    gap: 14px;
    margin-right: -10px;
    margin-top: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-form__bottom .footer-form__error {
    margin: 0;
  }

  .footer-form__bottom-btn {
    max-width: 170px;
  }

  .footer-form__recapcha .custom-checkbox {
    gap: 5px;
  }

  .footer-form__recapcha {
    border: none;
    max-width: 164px;
    padding: 0;
  }

  .footer-form__recapcha-text span:first-of-type {
    font-size: 12px;
  }

  .footer-form__recapcha-text span:nth-of-type(2) {
    font-size: 10px;
  }

  .download-catalog {
    padding-bottom: 49px;
  }

  .download-catalog--single .download-catalog__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }

  .download-catalog--single .download-catalog__item-image {
    height: 326px;
    margin-bottom: 24px;
  }

  .download-catalog--single .download-catalog__item .link {
    font-size: 16px;
    font-weight: 500;
  }

  .download-catalog--single .download-catalog__area {
    border-radius: 9px;
    margin-left: 0;
    margin-right: 0;
  }

  .download-catalog__area {
    border-radius: 9px;
    padding: 0;
  }

  .download-catalog__area .h2 {
    font-size: 20px;
  }

  .download-catalog__grid {
    display: grid;
    gap: 33px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .download-catalog__item .link {
    font-size: 12px;
    font-weight: 400;
  }

  .download-catalog__item .link:after {
    bottom: -1px;
    height: 1px;
  }

  .download-catalog__item-image {
    height: 193px;
    margin-bottom: 21px;
  }

  .download-catalog__item-image img {
    border-radius: 7px;
    -webkit-filter: drop-shadow(0 0 28px 0 rgba(31, 34, 41, 0.2));
    filter: drop-shadow(0 0 28px 0 rgba(31, 34, 41, 0.2));
  }

  .hidden-doors__gallery-slider-area .slider-nav {
    display: none;
  }

  .sliding-partitions__header {
    margin-bottom: 21px;
    max-width: 100%;
  }

  .sliding-partitions__header .h1 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .sliding-partitions__header p {
    font-size: 12px;
  }

  .sliding-partitions__hero-slider .slider-nav__prev {
    left: -16px;
  }

  .sliding-partitions__hero-slider .slider-nav__next {
    right: -16px;
  }

  .sliding-partitions__hero-slider .slider-arrow {
    height: 29px;
    top: 86px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 29px;
  }

  .sliding-partitions__hero-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sliding-partitions__hero-image {
    border-radius: 5px;
    height: 199px;
    max-width: 100%;
  }

  .sliding-partitions__hero-text {
    padding: 10px 0 0;
  }

  .sliding-partitions__hero-text p {
    font-size: 12px;
  }

  .sliding-partitions__hero-title {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .sliding-partitions__hero-price {
    margin-top: 0;
  }

  .sliding-partitions__hero-price span {
    font-size: 16px;
  }

  .sliding-partitions__hero-price span span {
    font-size: 32px;
  }

  .sliding-partitions__hero-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 11px;
  }

  .sliding-partitions__hero-btn {
    font-size: 15px;
    height: 43px;
    margin-top: 0;
    max-width: 186px;
  }

  .sliding-partitions__tabs {
    margin-top: 28px;
    padding: 9px 5px;
  }

  .sliding-partitions__tab {
    margin-bottom: 11px;
  }

  .sliding-partitions__tab-outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 10px 25px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    gap: 0;
    justify-content: flex-start;
  }

  .sliding-partitions__tab-outer-text {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }

  .sliding-partitions__tab-outer-text p {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .sliding-partitions__tab-outer-title {
    font-size: 20px;
    margin-bottom: 7px;
  }

  .sliding-partitions__tab-outer-title br {
    display: none;
  }

  .sliding-partitions__tab-outer-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 10px;
    justify-content: space-between;
    margin-top: 16px;
  }

  .sliding-partitions__tab-outer-price {
    margin-top: 0;
  }

  .sliding-partitions__tab-outer-price span {
    font-size: 18px;
  }

  .sliding-partitions__tab-outer-price span span {
    font-size: 23px;
    padding: 0 3px;
  }

  .sliding-partitions__tab-outer-btn {
    font-size: 17px;
    height: 42px;
    margin-top: 0;
    max-width: 179px;
  }

  .sliding-partitions__tab-outer-image {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    height: 192px;
    margin-bottom: 8px;
    order: -1;
  }

  .sliding-partitions__tab-inner {
    padding-bottom: 34px;
  }

  .sliding-partitions-inner {
    padding: 10px 10px 0;
  }

  .sliding-partitions-inner .h2 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-right: 40px;
  }

  .sliding-partitions-inner .h3 {
    font-size: 20px;
  }

  .sliding-partitions-inner li,
  .sliding-partitions-inner p {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
  }

  .sliding-partitions-inner__column-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-bottom: 5px;
    padding: 0;
  }

  .sliding-partitions-inner__column-text p:first-of-type {
    max-width: 100%;
  }

  .sliding-partitions-inner__column-text p:nth-of-type(2) {
    max-width: 100%;
  }

  .sliding-partitions-inner__column-images {
    gap: 14px;
    margin-bottom: 34px;
    padding: 0;
  }

  .sliding-partitions-inner__column-image:first-of-type {
    max-width: 50%;
  }

  .sliding-partitions-inner__column-image:nth-of-type(2) {
    max-width: 50%;
  }

  .sliding-partitions-inner__column-image span {
    font-size: 12px;
    text-align: center;
  }

  .sliding-partitions-inner__main {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-bottom: 15px;
  }

  .sliding-partitions-inner__main-text {
    margin-bottom: 14px;
    max-width: 100%;
  }

  .sliding-partitions-inner__main-text .h3 {
    margin-bottom: 11px;
  }

  .sliding-partitions-inner__main-text p {
    margin-bottom: 10px;
  }

  .sliding-partitions-inner__main-image {
    height: 185px;
    max-width: 100%;
  }

  .sliding-partitions-inner__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .sliding-partitions-inner__bottom p {
    margin-bottom: 10px;
  }

  .sliding-partitions-inner__bottom-ral {
    max-width: 100%;
    padding: 23px 10px 0;
  }

  .sliding-partitions-inner__bottom-ral p {
    margin: 0 -10px;
  }

  .sliding-partitions-inner__rals {
    gap: 14px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 16px;
    padding: 0;
  }

  .sliding-partitions-inner__ral span {
    font-size: 12px;
  }

  .sliding-partitions__video {
    padding: 23px 0 30px;
  }

  .sliding-partitions__video .h2 {
    font-size: 20px;
    text-align: left;
  }

  .sliding-partitions__video .video-slider {
    margin-top: 25px;
  }

  .wooden-interior {
    padding: 10px 10px 0;
  }

  .wooden-interior__bl1 .h2 {
    font-size: 20px;
    margin-bottom: 11px;
    padding: 0;
  }

  .wooden-interior__bl2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
  }

  .wooden-interior__bl2 p {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 7px;
  }

  .wooden-interior__bl2-left,
  .wooden-interior__bl2-right {
    max-width: 100%;
  }

  .wooden-interior__bl3 {
    gap: 20px;
    margin-bottom: 20px;
    padding: 0;
  }

  .wooden-interior__bl4 {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .wooden-interior__bl4-left {
    max-width: 100%;
  }

  .wooden-interior__bl4-image {
    height: auto;
  }

  .wooden-interior__bl4-right {
    max-width: 100%;
    padding-top: 0;
  }

  .wooden-interior__bl4-right li,
  .wooden-interior__bl4-right p {
    font-size: 12px;
    line-height: 1.2;
  }

  .wooden-interior__bl4-right .h2 {
    margin-top: 15px;
  }

  .wooden-interior__bl4-right ul {
    margin-bottom: 20px;
    padding-left: 17px;
  }

  .wooden-interior__bl4-right li {
    margin-bottom: 5px;
  }

  .wooden-interior__bl4-right img {
    padding: 0 40px;
  }

  .wooden-interior__bl4-rals {
    margin-top: 20px;
  }

  .partitions-fantom li,
  .partitions-fantom p {
    font-size: 12px;
    line-height: 1.2;
  }

  .partitions-fantom .h2 {
    font-size: 20px;
  }

  .partitions-fantom .hidden-doors__gallery .h2 {
    margin-bottom: 15px;
  }

  .partitions-fantom__bl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .partitions-fantom__bl1-left {
    max-width: 100%;
  }

  .partitions-fantom__bl1-left .h2 {
    margin-bottom: 15px;
  }

  .partitions-fantom__bl1-left p {
    margin-bottom: 8px;
  }

  .partitions-fantom__bl2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .partitions-fantom__bl2-image {
    height: auto;
    max-width: 100%;
    padding-top: 10px;
  }

  .partitions-fantom__bl2-text {
    max-width: 100%;
  }

  .partitions-fantom__bl2-text .h2 {
    margin-bottom: 15px;
    padding: 0;
  }

  .partitions-fantom__bl2-text p {
    margin-bottom: 8px;
  }

  .partitions-fantom__bl2-colors {
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 20px;
  }

  .partitions-fantom__bl2-color {
    height: auto;
  }

  .partitions-fantom__bl2-color span {
    font-size: 10px;
    line-height: 1.1;
    min-height: 27px;
  }

  .partitions-fantom__bl3 {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .partitions-fantom__bl3-text {
    max-width: 100%;
  }

  .partitions-fantom__bl3-text .h2 {
    margin-bottom: 15px;
  }

  .partitions-fantom__bl3-text p {
    margin-bottom: 8px;
  }

  .partitions-fantom__bl3-image {
    height: auto;
    margin-top: 0;
    max-width: 100%;
  }

  .partitions-fantom__bl4-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .partitions-fantom__bl4-flex img {
    max-width: 27%;
  }

  .partitions-fantom__bl4-left {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: contents;
    justify-content: center;
  }

  .partitions-fantom__bl4-left img {
    height: 120px;
  }

  .partitions-fantom__bl4-right {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: contents;
    justify-content: center;
  }

  .partitions-fantom__bl4-right img:first-of-type {
    height: 120px;
  }

  .partitions-fantom__bl4-right img:nth-of-type(2) {
    height: 120px;
  }

  .zoning-loft .h2 {
    font-size: 20px;
  }

  .zoning-loft li,
  .zoning-loft p {
    font-size: 12px;
    line-height: 1.2;
  }

  .zoning-loft__bl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  .zoning-loft__bl1-text {
    max-width: 100%;
    padding: 0;
  }

  .zoning-loft__bl1-text p {
    margin-bottom: 8px;
  }

  .zoning-loft__bl1-text .h2 {
    margin-bottom: 15px;
  }

  .zoning-loft__bl1-image {
    height: auto;
    margin-top: 15px;
    max-width: 70%;
  }

  .zoning-loft__bl2 {
    margin-top: 30px;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .zoning-loft__bl2-text {
    max-width: 100%;
    padding: 0;
  }

  .zoning-loft__bl2-text .h2 {
    margin-bottom: 16px;
  }

  .zoning-loft__bl2-text p {
    margin-bottom: 8px;
  }

  .zoning-loft__bl2-image {
    height: auto;
    margin-top: 15px;
    max-width: 100;
  }

  .zoning-loft__bl3 {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }

  .zoning-loft__bl3-text {
    max-width: 100%;
  }

  .zoning-loft__bl3-image {
    height: auto;
    max-width: 100%;
  }

  .zoning-loft__rals {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, 1fr);
    margin: 30px 0 0;
    max-width: 100%;
  }

  .zoning-loft__ral {
    gap: 8px;
    width: 100%;
  }

  .zoning-loft__ral img {
    height: 57px;
    width: 57px;
  }

  .smarts-category__description {
    font-size: 14px;
    font-weight: 400;
  }

  .smarts-category {
    margin-bottom: 30px;
    margin-top: -5px;
  }

  .smarts-category__grid {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }

  .smarts-category__image {
    height: auto;
  }

  .smarts-category__title {
    font-size: 16px;
    margin-top: 8px;
  }

  .catalog__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .entrance-doors .catalog__footer {
    margin-top: 9px;
  }

  .entrance-doors .doors-slider .container,
  .metalcard .catalog-slider .container,
  .metalcard .doors-slider .container {
    padding: 0;
  }

  .furn-sections {
    margin-top: 20px;
  }

  .furn-sections__grid {
    gap: 12px 12px;
    grid-template-columns: repeat(1, 1fr);
  }

  .furn-sections__image {
    height: auto;
  }

  .furn-sections__title {
    font-size: 16px;
    margin-top: 8px;
  }

  .cart,
  .catalog {
    padding-bottom: 40px;
  }

  .cart__main .h1 {
    font-size: 30px;
  }

  .cart__header {
    display: none;
    margin-top: 20px;
  }

  .cart__h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 20px;
  }

  .cart__header-count.--mobile {
    display: block;
    font-size: 16px;
  }

  .cart__item {
    padding: 12px;
    -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;
  }

  .cart__item-info {
    gap: 20px;
    max-width: 100%;
  }

  .cart__item-article {
    font-size: 14px;
  }

  .cart__item-name {
    font-size: 18px;
  }

  .cart__item-mobile-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 12px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 15px;
    justify-content: space-between;
  }

  .cart__item-quantity {
    max-width: 71px;
  }

  .cart__item-price {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
    text-align: center;
  }

  .cart__item-price-main {
    font-size: 20px;
  }

  .cart__item-price-main span {
    font-size: 14px;
  }

  .cart__item-actions {
    gap: 20px;
  }

  .cart__form {
    margin-top: 30px;
  }

  .cart__form-wrap .h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .cart__form-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }

  .cart__form-left {
    max-width: 100%;
  }

  .cart__form-input {
    margin-bottom: 8px;
  }

  .cart__form-input .input,
  .cart__form-input .textarea {
    font-size: 16px;
    height: 54px;
    padding: 0 13px;
  }

  .cart__form-input .textarea {
    height: 108px;
    padding: 13px;
  }

  .cart__form-right {
    max-width: 100%;
  }

  .cart__form-right .textarea {
    height: 108px;
  }

  .cart__aside {
    display: none;
  }

  .cart__aside-total {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .cart__aside-total span:first-of-type {
    font-size: 14px;
  }

  .cart__aside-total span:nth-of-type(2) {
    font-size: 18px;
  }

  .cart__aside-total span:nth-of-type(2) span {
    font-size: 14px;
  }

  .cart__aside-order {
    margin: 0;
  }

  .cart__aside-order,
  .cart__aside-order-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .cart__aside-order-btn {
    font-size: 16px;
  }

  .cart__fixed-mobile {
    display: block;
  }

  .cart-empty .h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .cart-empty__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .cart-empty__header {
    margin-bottom: 15px;
  }

  .cart-empty__header p {
    font-size: 18px;
  }

  .cart-empty__body p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .cart-empty__body a {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .cart-empty__btn {
    font-size: 16px;
    height: 54px;
    margin: 20px 0 0;
    max-width: 100%;
    padding: 0;
  }

  .cart-empty__image {
    height: auto;
    left: 0;
    margin: 10px auto;
    max-width: 70%;
    top: 0;
  }

  .bt-minus {
    background-size: 13px;
    height: 26px;
    position: relative;
    top: -1px;
    width: 26px;
  }

  .quantity {
    font-size: 20px;
    height: 32px;
    max-width: 32px;
    min-width: 32px;
    padding-top: 1px;
  }

  .bt-plus {
    background-size: 13px;
    height: 26px;
    position: relative;
    top: -1px;
    width: 26px;
  }

  .furn__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .furn__links li {
    font-size: 14px;
    font-weight: 400;
    height: 44px;
  }

  .furn__links ul {
    gap: 6px;
  }

  .catalog__sort select {
    background-position:
      right 1.4em top 50%,
      0 0;
    height: 44px;
    max-width: 100%;
    padding: 0 13px;
  }

  .catalog__sort {
    font-size: 14px;
    height: 44px;
    margin-left: 0;
    margin-top: 6px;
    max-width: 100%;
    width: 100%;
  }

  .catalog__header,
  .furn__top {
    margin-bottom: 20px;
  }

  .furn-list__grid {
    gap: 6px;
    grid-template-columns: repeat(1, 1fr);
  }

  .furn-list__title {
    font-size: 18px;
  }

  .furn-list__text {
    font-size: 14px;
  }

  .furn-list__price-value {
    font-size: 16px;
  }

  .furn-list__image img {
    max-height: 160px;
  }

  .furn-list__props {
    font-size: 14px;
  }

  .furn-list__grid.furn-list--cylinders,
  .furn-list__grid.furn-list--handles {
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
  }

  .furn-list__item {
    border: 1px solid rgba(31, 34, 41, 0.2);
    gap: 10px;
    padding: 12px;
  }

  .furn-list--locks .furn-list__item {
    gap: 20px;
    padding: 20px;
  }

  .furn-list--cylinders .furn-list__image,
  .furn-list--cylinders .furn-list__image img,
  .furn-list--handles .furn-list__image,
  .furn-list--handles .furn-list__image img {
    height: 100px;
    max-height: 100px;
  }

  .furn-list--cylinders .furn-list__title,
  .furn-list--handles .furn-list__title {
    font-size: 16px;
  }

  .furn-list--cylinders .furn-list__props,
  .furn-list--handles .furn-list__props {
    font-size: 12px;
  }

  .furn-list--cylinders .furn-list__price-value,
  .furn-list--handles .furn-list__price-value {
    font-size: 15px;
  }

  .furn-list--handles .furn-list__item {
    gap: 0;
    padding: 12px;
  }

  .furn-list-detail__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .furn-list-detail__item .catalog-item__buttons {
    gap: 6px;
    margin-top: 10px;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .furn-list-detail__title {
    font-size: 25px;
    margin-bottom: 10px;
    text-align: center;
  }

  .furn-list-detail__text {
    font-size: 14px;
    text-align: center;
  }

  .furn-list-detail__price {
    font-size: 20px;
    text-align: center;
  }

  .furn-list-detail__item .catalog-item__to-cart,
  .furn-list-detail__item .catalog-item__to-fav {
    font-size: 11px;
    gap: 6px;
    height: 44px;
  }

  .furn-list-detail__item .catalog-item__to-cart .icon,
  .furn-list-detail__item .catalog-item__to-fav .icon {
    height: 16px;
    width: 16px;
  }

  .furn-list-detail__props span {
    font-size: 14px;
  }

  .furn-list-detail__props {
    margin: 10px 0;
    text-align: center;
  }

  .furn-list-detail__props li {
    margin: 0;
  }

  .metalcard-tab-furn__item-text {
    font-size: 14px;
    padding-top: 0;
  }

  .metalcard-tab-furn__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .metalcard-tab-furn__item-text .h3 {
    font-size: 18px;
  }

  .download-catalog__area {
    margin: 0;
  }

  .custom-table-text--width-sup {
    padding-left: 15px;
  }

  .sliding-partitions__tab-outer-flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .sliding-partitions__tab-outer-btn {
    font-size: 14px;
  }

  .sliding-partitions__tab-outer {
    padding: 10px 0 25px;
  }

  .sliding-partitions-inner {
    padding: 10px 0 0;
  }

  .sliding-partitions__tab-outer-btn span {
    font-weight: 500;
  }

  .sliding-partitions__tabs {
    margin-top: 20px;
  }

  .breadcrumbs__area li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .breadcrumbs__area ul {
    margin-bottom: -10px;
    padding-bottom: 10px;
  }

  .filter-row {
    max-height: calc(var(--indexSize) * 112);
  }
}

@media (max-width: 767.98px) {
  .smart-lock__section-slider .slider__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .smart-lock__section-slider .slider__col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
    margin-top: 15px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .smart-lock__section-slider .slider__images {
    width: 100%;
  }

  .smart-lock__section-slider .slider__thumbs {
    height: 70px;
    margin: 0 16px;
    width: calc(100% - 96px);
  }
}

@media (max-width: 767.98px) and (max-width: 767px) {
  .smart-lock__section-slider .slider__thumbs {
    height: 47px;
  }
}

@media (max-width: 767.98px) and (max-width: 320px) {
  .smart-lock__section-slider .slider__thumbs {
    height: 60px;
  }
}

@media (max-width: 650px) {
  .sluzhba-servisa__list__image i {
    padding: 55% 0;
  }
}

@media (max-width: 600px) {
  .separated-botom .row .media,
  .separated-botom .row .widget-text.graybg {
    margin-bottom: 20px;
    width: 100%;
  }

  .sluzhba-servisa__list__image i {
    padding: 62% 0;
  }

  .special__list__images {
    width: 100%;
  }

  .special__list__image {
    width: 48%;
  }

  .special__list__desc {
    width: 100%;
  }
  .ws-sug-item__name {
    font-size: 1.6rem;
  }

  .ws-sug-item__price {
    font-size: 1.8rem;
  }
}

@media (max-width: 550px) {
  .sluzhba-servisa__list__image i {
    padding: 30% 0;
  }

  .sluzhba-servisa__list__item {
    margin-right: 0;
    width: 100%;
  }

  .sluzhba-servisa__list__item:nth-child(3n) {
    margin-right: 0;
  }

  .sluzhba-servisa__list__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 540px) {
  .bx-search {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .bx-search__title {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 1rem;
    margin-right: 0;
    white-space: nowrap;
    width: 100%;
  }

  .bx-search__form {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    width: 100%;
  }

  .ws-sug-item__desc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .ws-sug-item__name {
    margin-bottom: 5px;
    width: 100%;
  }

  .ws-sug-item__name b {
    color: #16d;
  }
}

@media (max-width: 500px) {
  .bottom-nav-mobile__wrap {
    background: url(../img/mobile-nav-bg.svg) 50% / cover no-repeat;
    height: 54px;
  }

  .bottom-nav-mobile__item--catalog {
    height: calc(var(--indexSize) * 10.6);
    width: calc(var(--indexSize) * 10.5);
  }
  .pencils-blist__item {
    margin-right: 2%;
    width: 49%;
  }
}

@media (max-width: 500px) {
  .pencils-blist__item:nth-child(4n) {
    margin-right: 2%;
  }

  .pencils-blist__item:nth-child(3n) {
    margin-right: 2%;
  }

  .pencils-blist__item:nth-child(2n) {
    margin-right: 0;
  }

  .peregorodki-derev__list__item {
    margin-bottom: 20px;
    width: 45%;
  }

  .peregorodki-variant__list__item {
    margin-right: 10%;
    width: 45%;
  }

  .peregorodki-variant__list__item:nth-child(3n) {
    margin-right: 10%;
  }

  .peregorodki-variant__list__item:nth-child(2n) {
    margin-right: 0;
  }

  .sertifikaty-images .align-items .item {
    width: 48%;
  }

  .guarantee p {
    text-align: center;
  }

  .guarantee div,
  .guarantee p {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .download__list__item {
    margin: 0 0 20px;
    width: 80%;
  }

  .sluzhba-servisa__list__image i {
    padding: 40% 0;
  }

  .items-photo > .item {
    margin-bottom: 15px;
    margin-right: 2%;
    width: 49%;
  }

  .items-photo > .item:nth-child(3n) {
    margin-right: 2%;
  }

  .items-photo > .item:nth-child(2n) {
    margin-right: 0;
  }

  .sertifikaty-images .item {
    margin-right: 0;
    width: 100%;
  }

  .sertifikaty-images .item:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 400px) {
  .subscribe__text {
    padding: 0 5px;
  }

  .header-mobile__menu-nav {
    margin-bottom: 32px;
  }

  .bottom-nav-mobile__wrap {
    height: 50px;
  }

  .bottom-nav-mobile__item--catalog {
    height: calc(var(--indexSize) * 11.5);
    width: calc(var(--indexSize) * 11.2);
  }

  .hero__slider-content-area p {
    font-size: 13px;
  }

  .hero__slider-title {
    font-size: 23px;
  }

  .hero__slider-bg {
    height: 480px;
  }

  .panels-filter__section.section--fav sup {
    right: calc(var(--indexSize) * 4.7);
  }
  .razdvizhnye__list__item {
    width: 100%;
  }

  .peregorodki-photo__list__item {
    margin-right: 0;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .peregorodki-photo__list__item:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 390px) {
  .special__list__description {
    margin: 0 0 20px;
    width: 100%;
  }

  .special__list__price {
    width: 100%;
  }

  .special__list__important,
  .special__list__price {
    text-align: center;
  }
}

@media (max-width: 370px) {
  .subscribe__area .h2 {
    font-size: 23px;
  }

  .subscribe__link span {
    font-size: 20px;
  }

  .subscribe__text p {
    font-size: 15px;
  }

  .header-mobile__menu-phone a {
    letter-spacing: 0.05em;
  }

  .entrance-doors .doors-type__item {
    font-size: 12px;
  }

  .opening-schemes__grid {
    grid-template-columns: 32% 38% 31.7%;
  }

  .sliding-partitions__hero-btn {
    max-width: 50%;
  }

  .sliding-partitions__tab-outer-btn {
    font-size: 15px;
    gap: 6px;
    max-width: 55%;
  }

  .sliding-partitions__tab-outer-btn .icon {
    height: 7px;
    width: 13px;
  }
}

@media (max-width: 360px) {
  .header-mobile__menu {
    padding: 34px;
  }

  .bottom-nav-mobile__item--catalog {
    height: calc(var(--indexSize) * 11.8);
    width: calc(var(--indexSize) * 12);
  }

  .panels-filter__value,
  .panels-filter__values.values--options .panels-filter__value {
    padding: 8px;
  }

  .hero__slider-title {
    font-size: 22px;
  }

  .panels-filter__section.section--fav sup {
    right: calc(var(--indexSize) * 4.4);
  }

  .penta-bio__bl2-middle-text-warn span {
    font-size: 10px;
  }

  .interior-item__footer,
  .interior-item__price {
    gap: 4px;
  }

  .catalog-slider--rd .catalog-item__buttons .btn {
    font-size: 9px;
  }

  .ws-contact__prop-name,
  .ws-contact__prop-value {
    font-size: 11px;
  }
}

@media (max-width: 350px) {
  .sluzhba-servisa__list__image i {
    padding: 50% 0;
  }
}

@media (max-width: 340px) {
  .catalog__pagination ul a {
    padding: 0 6px;
  }

  .subscribe__area .h2 {
    font-size: 20px;
  }

  .subscribe__link span {
    font-size: 18px;
  }

  .subscribe__text {
    padding: 0;
  }

  .subscribe__text p {
    font-size: 15px;
  }

  .header-mobile__menu {
    padding: 30px;
  }

  .bottom-nav-mobile__item--catalog {
    height: calc(var(--indexSize) * 13);
    width: calc(var(--indexSize) * 14);
  }

  .footer__phones {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hero__slider-content-area p {
    font-size: 12px;
  }

  .hero__slider-title {
    font-size: 19px;
  }

  .hero__slider-btn {
    font-size: 14px;
    height: 40px;
  }

  .hero__slider-bg {
    height: 460px;
  }

  .card-action--download,
  .card-action--share,
  .card-action--to-favorites,
  .card-actions {
    gap: 4px;
  }

  .header-mobile__menu-phone a {
    letter-spacing: 0;
  }

  .ed-catalog-item__price-main span {
    font-size: 14px;
  }

  .card__buttons .catalog-item__order {
    font-size: 11px;
  }

  .custom-table__col,
  .footer-form__check span,
  .interior-item__title {
    font-size: 10px;
  }

  .interior-item__price-old {
    font-size: 8px;
  }

  .interior-item__price-main {
    font-size: 10px;
  }

  .card__area-mobile-text {
    padding-top: 5px;
  }

  .card__price-main {
    font-size: 27px;
  }

  .card__price-old {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
  }

  .card__buttons {
    margin-top: 10px;
  }

  .card__buttons .catalog-item__order {
    font-size: 10px;
  }

  .designers-reviews__slide-avatar {
    gap: 12px;
  }

  .designers-reviews__slide-avatar img {
    height: 115px;
    width: 116px;
  }

  .designers-reviews__slide-name {
    font-size: 18px;
  }

  .custom-table--5-cols .custom-table__col:first-of-type {
    max-width: 100px;
  }

  .custom-table--5-cols .custom-table__body .custom-table__col:nth-of-type(2),
  .custom-table--5-cols .custom-table__body .custom-table__col:nth-of-type(3),
  .custom-table--5-cols .custom-table__body .custom-table__col:nth-of-type(4),
  .custom-table--5-cols .custom-table__body .custom-table__col:nth-of-type(5) {
    font-size: 9px;
  }

  .custom-table__header .custom-table__col {
    font-size: 14px;
  }

  .custom-table__col,
  .footer-form__check span {
    font-size: 10px;
  }

  .footer-form__recapcha-text span:first-of-type {
    font-size: 10px;
  }

  .footer-form__recapcha-text span:nth-of-type(2) {
    font-size: 8px;
  }

  .download-catalog__item .link {
    font-size: 10px;
  }

  .download-catalog__item-image {
    height: 160px;
    margin-bottom: 10px;
  }

  .sliding-partitions__hero-price span {
    font-size: 14px;
  }

  .sliding-partitions__hero-price span span {
    font-size: 28px;
  }

  .sliding-partitions__tab-outer-btn {
    font-size: 12px;
    max-width: 50%;
  }

  .partitions-fantom__bl2-color {
    width: 47px;
  }

  .zoning-loft__bl1-image {
    max-width: 100%;
  }

  .zoning-loft__rals {
    grid-template-columns: repeat(4, 1fr);
  }

  .cart-empty__header p {
    font-size: 16px;
  }

  .cart-empty__body p {
    font-size: 14px;
  }

  .furn-list-detail__item .catalog-item__buttons {
    gap: 6px;
  }

  .furn-list-detail__item .catalog-item__to-cart .icon,
  .furn-list-detail__item .catalog-item__to-fav .icon {
    height: 14px;
    width: 14px;
  }

  .furn-list-detail__item .catalog-item__to-cart,
  .furn-list-detail__item .catalog-item__to-fav {
    font-size: 10px;
  }
}

@media (max-width: 320px) {
  .smart-lock__section-slider .slider__thumbs .slider__image {
    height: 60px;
  }
}
