@charset "UTF-8";

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Gilroy-Light.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Gilroy-Regular.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/Gilroy-Medium.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Gilroy-Semibold.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Gilroy-Bold.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/Gilroy-Extrabold.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/Gilroy-Black.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 1000;
  src: url(../fonts/Gilroy-Heavy.woff2) format("woff2");
}

:root {
  --indexSize: 1vh + 1vw;
  --black: #31363d;
  --red: #b52025;
  --hoverRed: #7e181b;
  --zIndexHeader: 1000;
  --zIndexGiperMenu: 1000;
  --zIndexOverlay: 999;
  --zIndexCartFixed: 1002;
  --zIndexCartFixedOverlay: 1001;
  --zIndexFoundBtn: 500;
  --zIndexModalv100: 1002;
  --zIndexCardBase: 500;
  --zIndexCatalogMenuMobile: 999;
}

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

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

body {
  color: #31363d;
  font-size: 1.6rem;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.touch body.is-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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: opacity;
  transition-property: opacity; */
}

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

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

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

::selection {
  background-color: #b52025;
  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: 0.06rem solid #1f2229;
  border-radius: 0.4rem;
  color: #1f2229;
  font-family: Gilroy, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0 2.3rem;
  text-align: left;
  -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::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #616161;
  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::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #616161;
  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:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #616161;
  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::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #616161;
  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::placeholder,
.textarea::placeholder {
  color: #616161;
  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: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 rgba(31, 34, 41, 0.15);
  border-radius: 0.4rem;
  color: #1f2229;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Gilroy, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  height: 6.2rem;
  padding: 0 5rem 0 2.5rem;
  text-align: left;
  -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%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.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__current:focus .select-box__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.select-box__icon {
  position: absolute;
  right: 2.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 1.7rem;
}

.select-box__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select-box__input {
  display: none;
}

.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: 1px solid rgba(31, 34, 41, 0.15);
  border-radius: 0.4rem;
  -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.6rem;
  list-style: none;
  opacity: 0;
  padding: 1rem 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.select-box__option {
  background: #fff;
  color: #1f2229;
  display: block;
  margin-bottom: 0;
  padding: 0.8rem 2.5rem;
  -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);
}

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

@-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;
}

.link {
  cursor: pointer;
  position: relative;
}

.link:hover {
  color: #b52025;
}

.link:after {
  background: currentColor;
  bottom: -0.3rem;
  content: "";
  height: 0.2rem;
  left: 0;
  position: absolute;
  -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%;
}

.link:hover:after {
  width: 0;
}

.h1 {
  font-size: 4rem;
  font-weight: 400;
}

.h2 {
  font-size: 2.8rem;
}

.h2,
.h3 {
  font-weight: 500;
}

.h3 {
  font-size: 2rem;
}

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

a {
  -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);
}

a,
a:hover {
  color: #31363d;
  text-decoration: none;
}

.container {
  max-width: 148rem;
}

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

.container-1542 {
  max-width: 162.2rem;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Gilroy, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  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: #b52025;
  border: 1px solid transparent;
  border-radius: 3.5rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  justify-content: center;
  letter-spacing: 0;
  position: relative;
  -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);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:hover {
  background: #7e181b;
  color: #fff;
}

.btn--stroke {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

.btn--stroke:hover {
  border-color: transparent;
}

.btn--green {
  background: #0f801b;
}

.btn--green:hover {
  background: #13a523;
}

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

.btn--black:hover {
  background: #313540;
}

svg {
  -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);
}

.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-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 #b52025;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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;
}

.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;
}

.link--arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.link--arrow:hover .icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.link--arrow .icon {
  height: 1rem;
  position: relative;
  top: 0.1rem;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  width: 1rem;
}

.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;
}

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

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

.catalog-item {
  border-right: 1px solid #d6d7d8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 27.5rem;
  padding: 4.6rem 2.7rem 2.2rem;
  position: relative;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -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);
}

.catalog-item:before {
  background: #fff;
  content: "";
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: -1px;
  top: 0;
  -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: 2px;
}

.catalog-item:after {
  background: #fff;
  content: "";
  height: 100%;
  left: -1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -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: 2px;
}

.catalog-item:last-of-type {
  border-color: transparent;
}

.catalog-item__article {
  left: 1.4rem;
  position: absolute;
  top: 1.2rem;
}

.catalog-item__to-favorites {
  cursor: pointer;
  position: absolute;
  right: 1.4rem;
  top: 1.1rem;
  fill: #fff;
  stroke: var(--black);
}

.catalog-item__to-favorites .icon {
  height: 2.2rem;
  -webkit-transition: none;
  transition: none;
  width: 2.7rem;
}

.catalog-item__to-favorites.is-fill {
  fill: var(--red);
  stroke: var(--red);
}

.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: var(--black);
  border-radius: 0.3rem;
  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-item__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog-item__image img {
  height: 30rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.catalog-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin-top: 1rem;
  width: 100%;
}

.catalog-item__title {
  font-size: 1.6rem;
  line-height: 1.195;
  margin-bottom: 0.2rem;
  opacity: 0.7;
  width: 100%;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
}

.catalog-item__description,
.catalog-item__title {
  display: -webkit-box;
  font-weight: 500;
  text-align: center;
  -webkit-box-orient: vertical;
  display: -moz-box;
  overflow: hidden;
}

.catalog-item__description {
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.5;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  margin-bottom: 1.3rem;
}

.catalog-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: auto;
}

.catalog-item__price-main {
  font-size: 2.4rem;
  font-weight: 500;
}

.catalog-item__price-old {
  font-size: 1.3rem;
  opacity: 0.3;
  text-decoration: line-through;
}

.catalog-item__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0.7rem;
  width: 100%;
}

.catalog-item__order {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 1.2rem;
  font-weight: 600;
  width: 100%;
}

.catalog-item__order:hover {
  background: var(--black);
}

.catalog-item__to-cart {
  border-radius: 5rem;
  height: 3.5rem;
  max-width: 7.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);
  width: 100%;
}

.catalog-item__to-cart:hover {
  background: var(--black);
}

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

.catalog-item__to-cart.is-active {
  background: #14aa23;
}

.slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1rem;
}

.slider-pagination .swiper-pagination-bullet {
  background: #d6d7d8;
  height: 1rem;
  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);
  width: 1rem;
}

.slider-pagination .swiper-pagination-bullet-active {
  background: var(--black);
}

.social-block {
  gap: 1.4rem;
}

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

.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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

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

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

.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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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: var(--red);
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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: var(--red);
  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: 5rem;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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: rgba(31, 34, 41, 0.1);
}

.active-filter[data-ctrl="clear"] span {
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 400;
}

.active-filter[data-ctrl="clear"] .active-filter__remove {
  background: url(../img/icons/remove-filter-black.svg) 50%/1.6rem no-repeat;
}

.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: #f4f4f4;
  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;
  justify-content: center;
}

.catalog__pagination ul li.active a,
.catalog__pagination ul li.active span {
  color: var(--black);
  font-weight: 600;
}

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

.catalog__pagination li.link {
  cursor: pointer;
  position: static;
}

.catalog__pagination li.link:after {
  display: none;
}

.catalog__pagination li.link span {
  padding: 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);
}

.catalog__pagination li.link span:hover {
  color: #28b19a;
}

.catalog__pagination-link {
  font-size: 1.6rem;
  padding: 0 1rem;
}

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

.catalog__pagination-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  width: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  cursor: pointer;
  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: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  cursor: pointer;
  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: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  cursor: pointer;
  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: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  cursor: pointer;
  justify-content: center;
}

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

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

.modal-v100 {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  max-width: 100%;
  overflow-y: auto;
  padding: 60px 30px 100px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--zIndexModalv100);
}

.modal-v100.is-active {
  display: block;
}

.search-mobile .header__search-input,
.search-mobile .header__search-input:focus {
  border: 1px solid #d92438;
}

.search-mobile .header__search-input:required {
  border: 1px solid #d92438;
}

.modal-v100__header {
  background: #fff;
  height: 48px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-bottom: 1px solid rgba(31, 34, 41, 0.3);
  justify-content: space-between;
  left: 0;
  margin: 0 30px;
  position: fixed;
  top: 0;
  width: calc(100% - 60px);
  z-index: 250;
}

.modal-v100__header,
.modal-v100__header-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-v100__header-title {
  cursor: pointer;
  gap: 1.2rem;
}

.modal-v100__header-title span {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.modal-v100__header-title .icon {
  height: 1.6rem;
  width: 1.9rem;
}

.modal-v100__cancel {
  color: #b5191e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  cursor: pointer;
  justify-content: flex-end;
  position: relative;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.modal-v100__cancel:after {
  content: "";
  height: 48px;
  position: absolute;
  right: -25px;
  top: -16px;
  width: 100px;
}

.modal-v100__footer {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  bottom: 0;
  -webkit-box-shadow: 0 0 16px 2px rgba(204, 214, 228, 0.6);
  box-shadow: 0 0 16px 2px rgba(204, 214, 228, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 72px;
  left: 0;
  padding: 0 30px;
  position: fixed;
  width: 100%;
  z-index: 250;
}

.modal-v100__footer .btn {
  max-width: 100%;
  width: 100%;
}

.modal-v100__content {
  padding-top: 10px;
}

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

.catalog-slider__link {
  background: #1f2229;
  height: 5rem;
  margin: 6.5rem auto 0;
  max-width: 22.6rem;
  width: 100%;
}

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

.catalog-slider .h2 {
  margin-bottom: 0;
  text-align: center;
}

.catalog-slider__slider {
  margin-top: 4.1rem;
}

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

.catalog-slider__slider .swiper-slide .catalog-item,
.catalog-slider__slider .swiper-slide .ed-catalog-item {
  border-color: #d6d7d8;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  -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);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.catalog-slider__slider .swiper-slide .catalog-item:nth-last-of-type(),
.catalog-slider__slider .swiper-slide .ed-catalog-item:nth-last-of-type() {
  border-color: transparent;
}

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

.catalog-slider__slider .last-visible-slide .catalog-item {
  border-color: transparent;
}

.catalog-slider__slider .catalog-item__description {
  display: none;
}

.catalog-slider__slider .catalog-item__title {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.ed-catalog-item {
  min-width: 0;
}

.ed-catalog-item.design--osf .ed-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;
}

.ed-catalog-item.design--osfb .ed-catalog-item__images--slider {
  max-width: 21.4rem;
}

.ed-catalog-item.design--osfbv .ed-catalog-item__images--slider {
  max-width: 17.3rem;
}

.ed-catalog-item.design--dsfbb .ed-catalog-item__images--slider {
  max-width: 21.8rem;
}

.ed-catalog-item.design--ds .ed-catalog-item__images--slider {
  max-width: 26.4rem;
}

.ed-catalog-item.design--dsf .ed-catalog-item__images--slider {
  max-width: 21.6rem;
}

body .ed-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;
}

.ed-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;
}

.ed-catalog-item__images-pagination .swiper-pagination-bullet {
  background: #d9d9d9;
  height: 0.7rem;
  margin: 0 !important;
  opacity: 1;
  width: 0.7rem;
}

.ed-catalog-item__images-pagination .swiper-pagination-bullet-active {
  background: #1f2229;
}

.nav-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
}

.nav-slider .icon {
  color: #fff;
  height: 0.8rem;
  width: 0.6rem;
}

.nav-prev {
  background: #d92438;
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2.6rem;
  width: 2.6rem;
  -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-prev:hover {
  background: var(--black);
}

.nav-next {
  background: #d92438;
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2.6rem;
  width: 2.6rem;
  -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-next:hover {
  background: var(--black);
}

.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: 4.7rem;
}

.custom-table-text--width-sup sup {
  color: #000;
  display: block;
  font-size: 3rem;
  font-weight: 300;
  left: -1rem;
  position: absolute;
  top: 0;
  top: 1rem;
}

.custom-table-text--width-sup p {
  position: relative;
}

.custom-ul {
  list-style: none;
  margin: 0 0 3.3rem;
  padding: 0;
}

.custom-ul li {
  font-size: 1.6rem;
  line-height: 1.5625;
  margin-bottom: 2.4rem;
  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: 1.3rem;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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;
}

.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: 3.5rem;
  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 {
  border-radius: 5rem;
  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 {
  background: rgba(244, 246, 247, 0.8);
  border-radius: 1.3rem;
  padding: 3.6rem 0 4.9rem;
}

.download-catalog__area .h2 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}

.download-catalog__grid {
  margin-top: 5.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 16.9rem;
  justify-content: center;
}

.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: 1.6rem;
  font-weight: 500;
}

.download-catalog__item-image {
  height: 39rem;
  margin-bottom: 3.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%;
}

.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: 600;
}

.opening-options__footer .link:after {
  bottom: -0.2rem;
  height: 1px;
}

.opening-options__btn-more {
  background: #31363d;
  font-weight: 600;
  height: 4.6rem;
  max-width: 20.2rem;
  padding-bottom: 0.1rem;
  width: 100%;
}

.opening-options__header {
  margin-bottom: 2.5rem;
}

.where-buy {
  border: 1px solid rgba(49, 54, 61, 0.2);
  border-radius: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 6.1rem 0 8.1rem;
  padding: 1.6rem 10.1rem 1.6rem 1.6rem;
}

.where-buy .h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.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: 27.5rem;
  -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;
  padding-top: 2.7rem;
  width: 100%;
}

.where-buy-text p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4375;
  margin-bottom: 0;
}

.where-buy-text p a {
  color: #b52025;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.mark {
  position: relative;
}

.mark:after {
  background: #e8eced;
  bottom: 0;
  content: "";
  height: 43%;
  position: absolute;
  right: -1rem;
  width: 90%;
  z-index: -1;
}

.catalog-section {
  margin-top: 10.6rem;
}

.catalog-section__link {
  background: #1f2229;
  height: 5rem;
  margin: 6.5rem auto 0;
  max-width: 22.6rem;
  width: 100%;
}

.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: #fe5b3e !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);
  }
}

.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;
}

.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: 50%;
  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;
}

.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: #fff;
  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);
  -ms-flex: 1;
  flex: 1;
  height: 5.7rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-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);
}

.static-products-nav li:hover {
  background: #fafafa;
}

.static-products-nav li.is-active {
  background: #b52025;
}

.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.4rem;
  height: 100%;
  width: 100%;
}

.static-products .h1,
.static-products h1 {
  font-size: 4rem;
  font-weight: 400;
}

.static-products .h2,
.static-products h2 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.15;
}

.static-products .h3,
.static-products h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.15;
}

.static-products .custom-ul {
  margin: 2.8rem 0;
}

.static-products .custom-ul li {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
  padding-left: 2.8rem;
}

.static-products .custom-ul li:after {
  background: url(../img/icons/ul-marker.svg) 50% / contain no-repeat;
  content: "";
  height: 1.5rem;
  top: 0.5rem;
  width: 1.7rem;
}

.static-products .footer-form .h2 {
  font-size: 3.5rem;
}

.static-products .footer-form__inputs .textarea {
  padding-top: 0.4rem;
}

.static-products .footer-form__inputs .footer-form__input:last-of-type {
  margin-bottom: 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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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;
}

.ed-catalog-item {
  position: relative;
}

.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__color-item.is-active .card__color {
  outline: 1px solid rgba(49, 54, 61, 0.1);
  outline-offset: 0.3rem;
}

.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.4);
  border-radius: 5rem;
  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: 1.5rem;
  padding-left: 1rem;
}

.card-action--share .icon {
  height: 2.1rem;
  width: 2.1rem;
}

.card-action--download {
  gap: 1.2rem;
  padding-left: 0.8rem;
}

.card-action--download .icon {
  height: 1.9rem;
  width: 1.9rem;
}

.card-action--to-favorites {
  gap: 0.9rem;
  padding-left: 1rem;
  fill: #fff;
  stroke: #b5191e;
}

.card-action--to-favorites .icon {
  height: 2rem;
  width: 2.3rem;
}

.card-action--to-favorites.is-fill {
  fill: #b5191e;
}

.card-actions.temp-hidden .card-action--download,
.card-actions.temp-hidden .card-action--share {
  display: none;
}

.subscribe {
  background: #393d44;
  margin: 8.4rem 0 0;
}

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

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

.subscribe__area .h2 {
  color: #fff;
  font-size: 4.6rem;
  font-weight: 500;
  text-transform: uppercase;
}

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

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

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

.subscribe__link:hover span {
  text-decoration: none;
}

.subscribe__link span {
  color: #fff;
  font-size: 3.5rem;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

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

.subscribe__text {
  margin-top: 3.7rem;
  max-width: 61.6rem;
}

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

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

.header {
  position: relative;
  width: 100%;
  z-index: var(--zIndexHeader);
}

.header .header-bottom__fixed {
  display: none;
}

.header.is-fixed {
  background: #fff;
  left: 0;
  position: fixed;
  top: 0;
}

.header.is-fixed .header-bottom__area-fixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header.is-fixed .header-top {
  display: none;
}

.header.is-fixed .header__catalog-btn {
  height: 4.1rem;
  margin: 0 1.7rem;
  max-width: 5.8rem;
  width: 100%;
}

.header.is-fixed .header-bottom__nav,
.header.is-fixed .header__catalog-btn span,
.header.is-fixed .header__tg,
.header.is-fixed .header__wa {
  display: none;
}

.header.is-fixed .header-bottom__fixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header.is-fixed .header-top-nav {
  margin-top: 0;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.header.is-fixed .header-top-nav ul {
  gap: 1.6rem;
}

.header.is-fixed .header-top-nav a,
.header.is-fixed .header-top-nav li {
  color: #fff;
  font-size: 1.6rem;
}

.header.is-fixed .header__callback,
.header.is-fixed .header__phone {
  color: #fff;
  font-size: 1.5rem;
}

.header.is-fixed .header__phone {
  left: -1.2rem;
  margin-left: 0;
  opacity: 0.7;
  position: relative;
}

.header.is-fixed .header__mail,
.header.is-fixed .header__social {
  display: none;
}

.header.is-fixed .header-top-wrap {
  -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;
}

.header.is-fixed .header__favorites {
  fill: transparent;
  stroke: #fff;
}

.header.is-fixed .header__cart-icon {
  color: #fff;
}

.header.is-fixed .header-top-actions {
  max-width: 38rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header.is-fixed .header__actions {
  gap: 2.7rem;
  margin-left: 0;
}

.header.is-fixed .header__logo--fixed {
  display: block;
  height: 2.9rem;
  margin: 0;
  max-width: 13.4rem;
}

.header.is-fixed .header-bottom__area {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header.is-fixed .header__catalog-btn .icon {
  height: 1.4rem;
  width: 1.6rem;
}

.header__logo--fixed {
  display: none;
}

.header-bottom__area-fixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  display: none;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.header-top {
  padding: 1.7rem 0 2.3rem;
  position: relative;
}

.header-top:after {
  background: hsla(0, 0%, 100%, 0.8);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.header-top.is-overlayed:after {
  opacity: 1;
  pointer-events: auto;
}

.header-top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  height: 4.6rem;
  margin-right: 3.5rem;
  margin-top: 1rem;
  max-width: 20.8rem;
  width: 100%;
}

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

.header__expirience {
  padding-top: 1.6rem;
}

.header__expirience-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
}

.header__expirience-item span {
  font-size: 1.4rem;
}

.header__expirience-item:first-of-type .header__expirience-item-icon img {
  width: 1.5rem;
}

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

.header__expirience-item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.9rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__expirience-item-icon span {
  color: #31363d;
  font-size: 1.4rem;
}

.header__expirience-item-icon img {
  max-width: 1.9rem;
  width: 100%;
}

.header-top-wrap {
  -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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header-top-actions,
.header-top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-top-actions {
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__callback {
  color: #b5191e;
  font-weight: 500;
}

.header__callback:hover {
  color: var(--black);
}

.header__phone {
  font-weight: 600;
  margin-left: 3.2rem;
  margin-right: 1.8rem;
}

.header__mail {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4rem;
  width: 4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #31363d;
  margin-left: 1.2rem;
  margin-right: 7.8rem;
}

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

.header__tg,
.header__wa {
  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;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.header__tg:hover,
.header__wa:hover {
  opacity: 0.8;
  -webkit-transform: rotate(1turn);
  -ms-transform: rotate(1turn);
  transform: rotate(1turn);
}

.header__tg img,
.header__wa img {
  height: 1.7rem;
  width: 1.7rem;
}

.header__wa {
  margin-left: 1rem;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.1rem;
  margin-left: 5rem;
}

.header__lk .icon {
  height: 2rem;
  width: 2.2rem;
}

.header__favorites {
  fill: #fff;
  stroke: var(--black);
}

.header__favorites .header__action-count {
  left: 1rem;
  top: -1rem;
}

.header__favorites .icon {
  height: 2rem;
  width: 2.4rem;
}

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

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

.header-top-nav {
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.header-top-nav,
.header-top-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.37rem;
}

.header-top-nav a,
.header-top-nav li {
  font-size: 1.7rem;
}

.header-top-nav a {
  position: relative;
}

.header-top-nav a:after {
  background: currentColor;
  bottom: -0.3rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  -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%;
  width: 0;
}

.header__action {
  cursor: pointer;
  position: relative;
}

.header__action.is-active .header__action-count {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: 2;
}

.header__action-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2.3rem;
  width: 2.3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #b5191e;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -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);
  visibility: hidden;
  z-index: -1;
}

.header__cart-sum {
  font-size: 1.1rem;
  opacity: 0.65;
}

.header__cart-icon {
  height: 2.1rem;
  position: relative;
  width: 2.1rem;
}

.header__cart-icon .header__action-count {
  left: 1rem;
  top: -1rem;
}

.header-bottom {
  background: var(--black);
  padding: 1.5rem 0;
}

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

.header__catalog-btn {
  background: #b5191e;
  border-radius: 2.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  gap: 0.8rem;
  height: 4.3rem;
  max-width: 18.3rem;
  -webkit-transition-property: background;
  transition-property: background;
  width: 100%;
}

.header__catalog-btn:hover {
  background: var(--hoverRed);
}

.header__catalog-btn .icon {
  height: 1rem;
  -webkit-transition: none;
  transition: none;
  width: 1.2rem;
}

.ader__catalog-btn.is-active .icon {
  height: 1rem;
  width: 1rem;
}

.header-bottom__nav ul {
  gap: 4.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-bottom__nav a,
.header-bottom__nav li,
.header-bottom__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.header-bottom__nav a,
.header-bottom__nav li {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}

.header-bottom__nav a {
  position: relative;
}

.header-bottom__nav a:hover {
  color: #dd131a;
}

.gipermenu__overlay {
  background: hsla(0, 0%, 100%, 0.8);
  height: 100%;
  top: 0;
  z-index: var(--zIndexOverlay);
}

.gipermenu,
.gipermenu__overlay {
  display: none;
  left: 0;
  position: fixed;
  width: 100%;
}

.gipermenu {
  margin-left: auto;
  margin-right: auto;
  max-width: 162.2rem;
  padding: 0 4rem;
  right: 0;
  top: 18.8rem;
  z-index: var(--zIndexGiperMenu);
}

.gipermenu.is-active,
.gipermenu__overlay.is-active {
  display: block;
}

.gipermenu.is-scroll {
  top: 7.1rem;
}

.gipermenu.is-scroll .gipermenu__area {
  height: 75rem;
}

.gipermenu__area {
  background: #fff;
  border-radius: 0 0 1.8rem 1.8rem;
  -webkit-box-shadow: 0 6px 63px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 63px 0 rgba(0, 0, 0, 0.1);
  height: 63rem;
  overflow-y: auto;
  padding: 1.8rem 7.1rem 4.4rem 8.2rem;
}

.gipermenu__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.gipermenu__col {
  max-width: 23.6rem;
}

.gipermenu__item {
  margin-top: 2.6rem;
}

.gipermenu__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gipermenu__item-header span {
  font-size: 2rem;
  font-weight: 600;
}

.gipermenu__item-header-icon img {
  max-height: 3.1rem;
  max-width: 3rem;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.gipermenu__item-list a,
.gipermenu__item-list li {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.6rem;
  line-height: 1.2;
}

.gipermenu__item-list a {
  display: inline-block;
  padding: 0.29rem 0;
}

.gipermenu__item-list a:hover {
  color: #000;
}

.gipermenu__item-show-more {
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.28571;
  margin-top: 0.7rem;
}

.gipermenu__item-show-more:hover {
  color: var(--red);
}

.gipermenu__item-show-more span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9rem;
}

.gipermenu__item-show-more span:after {
  background: url(../img/icons/gipermenu-arrow.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 0.6rem;
  position: relative;
  top: 0.1rem;
  width: 0.9rem;
}

.gipermenu__item.is-expanded .gipermenu__item-show-more span:after {
  top: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header-mobile {
  display: none;
}

.header-mobile__area {
  background: #fff;
  height: 50px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--zIndexHeader);
  -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: 129px;
  width: 100%;
}

.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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  visibility: hidden;
  width: 100%;
  z-index: var(--zIndexHeader);
}

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

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

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

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

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

.header-mobile__menu-social .social-block a:nth-of-type(2) img {
  width: 18px;
}

.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;
}

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

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

.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-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: 600;
  opacity: 0.4;
}

.bottom-nav-mobile__item-count {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #b5191e;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  font-weight: 600;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  visibility: hidden;
  width: 2.3rem;
  z-index: -1;
}

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

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

.bottom-nav-mobile__item--sales .icon {
  color: #1f2229;
  height: 26px;
  width: 26px;
}

.bottom-nav-mobile__item.is-active .icon {
  color: #d92438;
  opacity: 1;
}

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

.bottom-nav-mobile__item--catalog {
  background: #b5191e;
  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: #31363d;
  height: 24px;
  opacity: 0.4;
  width: 24px;
}

.bottom-nav-mobile__item--lk .icon {
  color: #36393f;
  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;
}

.cart-fixed {
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 100%;
  max-width: 44.5rem;
  padding: 4.1rem 2.7rem;
  pointer-events: none;
  position: fixed;
  right: -44.5rem;
  top: 0;
  -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%;
  z-index: var(--zIndexCartFixed);
}

.cart-fixed.is-active {
  -webkit-box-shadow: -8px 0 28px 0 rgba(49, 54, 61, 0.1);
  box-shadow: -8px 0 28px 0 rgba(49, 54, 61, 0.1);
  pointer-events: auto;
  right: 0;
}

.cart-fixed__overlay {
  -webkit-animation: fadeIn 0.6s;
  animation: fadeIn 0.6s;
  background: hsla(0, 0%, 100%, 0.8);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--zIndexCartFixedOverlay);
}

.cart-fixed__overlay.is-active {
  display: block;
}

.cart-fixed__header {
  margin-bottom: 4.1rem;
  padding: 0 22px;
}

.cart-fixed__header span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  gap: 1.3rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 2.4rem;
}

.cart-fixed__header span span {
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 0.6;
}

.cart-fixed__body {
  max-height: 63rem;
  overflow-y: auto;
}

.cart-fixed__item-area {
  background: #fafafa;
  border-radius: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.7rem 1.7rem 1.7rem 2.1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1.1rem;
}

.cart-fixed__item-area:last-of-type {
  margin-bottom: 0;
}

.cart-fixed__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  max-width: 26rem;
  width: 100%;
}

.cart-fixed__item-image {
  width: 4.8rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.cart-fixed__item-image img {
  height: 11.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.cart-fixed__item-content {
  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: 0.5rem;
  padding-top: 2rem;
}

.cart-fixed__item-article {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
  opacity: 0.5;
}

.cart-fixed__item-title {
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 1;
  overflow: hidden;
}

.cart-fixed__item-brand {
  font-weight: 600;
  text-transform: uppercase;
}

.cart-fixed__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.7rem;
  margin-top: auto;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.cart-fixed__item-price-old {
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.5;
  text-decoration: line-through;
}

.cart-fixed__item-price-main {
  font-size: 1.8rem;
  font-weight: 700;
}

.cart-fixed__item-remove {
  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;
  gap: 0.4rem;
}

.cart-fixed__item-remove:hover .icon {
  color: var(--red);
  -webkit-transform: translateY(-0.5rem);
  -ms-transform: translateY(-0.5rem);
  transform: translateY(-0.5rem);
}

.cart-fixed__item-remove span {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.5;
}

.cart-fixed__item-remove .icon {
  color: #191c1f;
  height: 2rem;
  width: 1.9rem;
}

.cart-fixed__footer {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.6rem 1.2rem 2rem 2.1rem;
}

.cart-fixed__footer,
.cart-fixed__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart-fixed__sum {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.8rem;
}

.cart-fixed__sum span:first-of-type {
  font-size: 2.1rem;
  font-weight: 400;
  opacity: 0.5;
}

.cart-fixed__sum span:nth-of-type(2) {
  font-size: 2.6rem;
  font-weight: 700;
}

.cart-fixed__clear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 12.5rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 0.8rem;
}

.cart-fixed__clear:hover span:after {
  width: 0;
}

.cart-fixed__clear:hover .icon {
  color: var(--red);
}

.cart-fixed__clear span {
  font-size: 1.2rem;
  font-weight: 300;
}

.cart-fixed__clear span:after {
  bottom: 0;
  height: 1px;
}

.cart-fixed__clear .icon {
  height: 1.3rem;
  width: 1.3rem;
}

.cart-fixed__btn {
  background: var(--black);
  height: 4.6rem;
  margin: 0 2.1rem;
  max-width: 19.8rem;
  width: 100%;
}

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

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

.breadcrumbs__area li {
  border: 1px solid rgba(31, 34, 41, 0.2);
  border-radius: 0.4rem;
  -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);
}

.breadcrumbs__area li:not(:last-of-type):hover {
  background: #f4f4f4;
}

.breadcrumbs__area li:last-of-type {
  background: #f4f4f4;
}

.breadcrumbs__area a,
.breadcrumbs__area span {
  display: inline-block;
  padding: 0.5rem 1.6rem;
}

.breadcrumbs__area span {
  font-weight: 600;
}

.catalog-menu-mobile,
.header-mobile-categories {
  display: none;
  padding-top: 50px;
}

.catalog-menu-mobile {
  background: #fff;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--zIndexCatalogMenuMobile);
}

.catalog-menu-mobile.is-active {
  display: block;
}

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

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

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

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

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

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

.catalog-menu-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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.footer {
  background: #fbfbfb;
  padding: 10.4rem 0;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.footer__top,
.footer__top .footer__right {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__left {
  max-width: 26.3rem;
  width: 100%;
}

.footer__logo {
  display: block;
  margin-bottom: auto;
  padding-top: 0.2rem;
}

.footer__logo img {
  height: 4.9rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 24.9rem;
}

.footer__phone {
  margin-bottom: 2.3rem;
}

.footer__phone span {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer__phone a {
  color: #292d32;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.footer__links {
  margin-bottom: 4.5rem;
  margin-top: 3.9rem;
}

.footer__links a {
  color: #828486;
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  opacity: 0.9;
}

.footer__links a:after {
  bottom: 0;
  height: 1px;
}

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

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 83.2rem;
  width: 100%;
}

.footer__menu:first-of-type a {
  opacity: 0.7;
}

.footer__menu:nth-of-type(2) a:hover,
.footer__menu:nth-of-type(3) a:hover {
  opacity: 0.7;
}

.footer__menu:nth-of-type(2) {
  left: 1rem;
  position: relative;
}

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

.footer__menu a,
.footer__menu li {
  font-size: 1.8rem;
}

.footer__menu a {
  display: block;
  padding: 1.1rem 0;
}

.footer__menu a:hover {
  opacity: 1;
}

.footer__menu-title {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.6rem;
}

.footer__bottom {
  gap: 4rem;
  margin-top: 5.6rem;
}

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

.footer__copyright a,
.footer__copyright p {
  color: #828486;
  font-size: 1.4rem;
  margin-bottom: 0;
  opacity: 0.5;
}

.footer__copyright a:hover {
  color: var(--black);
}

.footer__btn {
  background: var(--black);
  font-size: 1.4rem;
  font-weight: 600;
  height: 4.5rem;
  max-width: 24.2rem;
  width: 100%;
}

.footer__social {
  margin-top: -2rem;
}

.footer__social:first-of-type {
  left: 3.2rem;
  position: relative;
}

.footer__social:first-of-type .social-block {
  gap: 2rem;
  margin-left: -0.5rem;
}

.footer__social:nth-of-type(2) {
  margin-bottom: 2rem;
  max-width: 16.6rem;
  width: 100%;
}

.footer__social .footer__social-title {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.footer__social .social-block {
  gap: 1.8rem;
  left: -0.5rem;
  position: relative;
}

.footer__social .social-block a img {
  width: 2.1rem;
}

.footer__social-mail {
  margin-left: 1.9rem;
}

.footer__social-mail .icon {
  height: 2.1rem;
  width: 2.4rem;
}

.footer__year {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 5.5rem;
}

.footer__year,
.footer__year span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__year span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #828486;
  font-size: 1.4rem;
  gap: 0.2rem;
  text-transform: uppercase;
}

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

.footer__mail {
  color: #828486;
  font-size: 1.4rem;
  margin-bottom: 0;
  opacity: 0.5;
}

.footer__info {
  max-width: 24.2rem;
  width: 100%;
}

.footer__info .footer__social:nth-of-type(2) {
  max-width: 100%;
}

.footer__info .footer__social {
  margin-top: 0;
}

.footer__info-content {
  left: 1.2rem;
  position: relative;
}

.footer__left .footer__year {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 2.5rem;
}

.page-404__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 11rem 16.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-404__text {
  max-width: 52.3rem;
  width: 100%;
}

.page-404__text .h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 3.3rem;
}

.page-404__text p {
  font-size: 2.2rem;
  font-weight: 500;
}

.page-404__text p a {
  color: #b5191e;
}

.page-404__text p a:after {
  bottom: 0;
}

.page-404__btn {
  background: #1f2229;
  font-size: 2rem;
  font-weight: 400;
  height: 5.2rem;
  margin-top: 4.3rem;
  max-width: 32.3rem;
  padding-bottom: 0.2rem;
  width: 100%;
}

.page-404__image {
  height: 39rem;
  left: 3rem;
  max-width: 46.4rem;
  position: relative;
  top: -0.6rem;
  width: 100%;
}

.page-404__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.about__me {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about__me p {
  color: #000;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
}

.about__me-col {
  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;
}

.about__me-col--1 {
  max-width: 42.6rem;
  padding-top: 7.9rem;
}

.about__me-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.about__me-items img {
  max-height: 5rem;
  max-width: 5.2rem;
}

.about__me-col--2 {
  max-width: 37.9rem;
}

.about__me-col--2 .about__me-image {
  height: 56rem;
}

.about__me-image {
  width: 100%;
}

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

.about__me-col--3 {
  max-width: 52.7rem;
}

.about__me-col--3 p {
  max-width: 44.2rem;
}

.about__me-col--3 p:last-of-type {
  margin-bottom: 0;
}

.about__me-col--3 .about__me-image {
  height: 29.8rem;
  margin-bottom: 5rem;
}

.about__goal {
  padding: 7.3rem 0 8rem;
}

.about__goal-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
}

.about__goal-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 27.8rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.9rem;
  position: relative;
}

.about__goal-item:after {
  background: url(../img/icons/goal-icon.svg) 50% / contain no-repeat;
  content: "";
  height: 3.4rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 3.4rem;
}

.about__goal-item p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.66667;
}

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

.about__goal-item:first-of-type {
  background: #b5191e;
  padding-left: 3rem;
  padding-right: 9.8rem;
}

.about__goal-item:nth-of-type(2) {
  background: #f0f0f0;
  padding-left: 3rem;
  padding-right: 1.4rem;
}

.about__goal-item:nth-of-type(2) p {
  color: #1f2229;
}

.about__goal-item:nth-of-type(3) {
  background: #31363d;
  padding-left: 3rem;
  padding-right: 4.4rem;
}

.about__motto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.about__motto-content {
  max-width: 57.3rem;
  padding-top: 5.8rem;
  width: 100%;
}

.about__motto-content .h2 {
  margin-bottom: 7.7rem;
}

.about__motto-content li {
  font-size: 1.8rem;
  line-height: 1.66667;
  margin-bottom: 2rem;
  padding-left: 5.9rem;
}

.about__motto-content .custom-ul li:after {
  background: url(../img/icons/marker.svg) 50% / contain no-repeat;
  height: 3.4rem;
  left: 0;
  top: 0;
  width: 3.4rem;
}

.about__images {
  width: 100%;
  -webkit-box-flex: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  gap: 3rem;
  max-width: 75rem;
}

.about__image {
  height: 46.9rem;
}

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

.about__cooperation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7.9rem 5.3rem 0 0;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about__cooperation p {
  color: #000;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.55556;
  margin-bottom: 2.2rem;
}

.about__cooperation-col1 {
  max-width: 46.7rem;
  padding-top: 0.6rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.about__cooperation-col1 .h2 {
  margin-bottom: 9rem;
}

.about__cooperation-col2 {
  max-width: 52.7rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  left: -1rem;
  position: relative;
}

.about__cooperation-col2 img {
  height: 58.2rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.about__cooperation-col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 39.2rem;
  padding-top: 3.1rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 1.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  left: -4.1rem;
  position: relative;
}

.about__cooperation-col3 p {
  margin-bottom: 2.9rem;
}

.about__cooperation-btn {
  font-size: 2.1rem;
  font-weight: 400;
  height: 6.6rem;
  margin-top: auto;
  max-width: 26.7rem;
  width: 100%;
}

.about__cooperation-icon {
  bottom: 0;
  height: 6.2rem;
  left: 0;
  position: absolute;
  width: 6.2rem;
}

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

.about__mission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 7.2rem 0 10.1rem;
}

.about__mission-content {
  max-width: 83.7rem;
  width: 100%;
}

.about__mission-content .h2 {
  margin-bottom: 3.1rem;
}

.about__mission-content p {
  color: #000;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.55556;
  margin-bottom: 2.2rem;
}

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

.about__mission-social {
  display: grid;
  gap: 1.9rem 1.6rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 27.3rem;
  width: 100%;
}

.about__mission-social 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;
}

.about__mission-social a:hover img {
  -webkit-transform: translateY(-0.6rem);
  -ms-transform: translateY(-0.6rem);
  transform: translateY(-0.6rem);
}

.about__mission-social span {
  color: #000;
  font-size: 1.6rem;
  font-weight: 300;
}

.about__social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.1rem;
}

.about__social-icon img {
  -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);
}

.articles {
  padding-bottom: 15rem;
}

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

.articles__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6.1rem;
  -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 {
  list-style: none;
  margin: 0;
  padding: 0 2rem 0 0;
}

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

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

.articles__menu ul a:hover,
.articles__menu ul li.is-active a,
.articles__menu ul li.is-active span {
  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: #b5191e;
}

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

.articles__menu-title {
  border-bottom: 1px solid rgba(31, 34, 41, 0.4);
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 1.4rem;
  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.2rem;
}

.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.5rem;
  width: 1.7rem;
}

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

.articles__content-section-title {
  display: inline-block;
  font-size: 1.8rem;
  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: #b5191e;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  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.9rem;
  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-height: 4rem;
  max-width: 4.7rem;
}

.panels-filter__section.is--active {
  background: #b5191e;
  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: #b5191e;
}

.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%;
  padding: 1.5rem 3rem;
  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: 100%;
  width: calc(100% + 7rem);
  -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: 1.3rem;
}

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

.panels-list__item.is--selected:after {
  border: 1px solid rgba(49, 54, 61, 0.4);
  border-radius: 0.9rem;
  content: "";
  height: 99%;
  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: #b5191e;
  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;
}

.secret-card .card-main {
  padding-bottom: 10.5rem;
}

.secret-card .card__image {
  display: block;
}

.secret-card__offers {
  display: grid;
  gap: 1.9rem 2.7rem;
  grid-template-columns: repeat(4, 1fr);
}

.secret-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;
  text-align: center;
}

.secret-card__offer:hover .secret-card__offer-image {
  outline: 1px solid rgba(49, 54, 61, 0.1);
  outline-offset: 0.4rem;
}

.secret-card__offer.is-selected .secret-card__offer-image {
  outline: 1px solid rgba(49, 54, 61, 0.4);
  outline-offset: 0.3rem;
}

.secret-card__offer-image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0.9rem;
  height: 20.2rem;
  margin-bottom: 1rem;
  max-width: 20.2rem;
  width: 100%;
}

.secret-card__offer-title {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
}

.card {
  padding-bottom: 7.6rem;
}

.card__header {
  margin-bottom: 5.1rem;
}

.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 {
  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: var(--zIndexCardBase);
  -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: center;
  -ms-flex-align: center;
  align-items: center;
}

.card__image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 66.5rem;
  -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%;
}

.card__title {
  font-size: 2.2rem;
  line-height: 1.195;
  margin-top: 3.3rem;
  text-align: center;
}

.card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.4rem;
  -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: 1.1rem;
  width: 100%;
}

.card__buttons .catalog-item__order {
  -webkit-box-flex: 1;
  background: #31363d;
  border-radius: 6.6rem;
  color: #fff;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 1.6rem;
  font-weight: 600;
  height: 4.6rem;
  width: 100%;
}

.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;
  width: 100%;
}

.card__buttons .catalog-item__to-cart:hover {
  background: #da2e34;
}

.card__buttons .catalog-item__to-cart .icon {
  height: 2.8rem;
  width: 2.8rem;
}

.card__info {
  margin-top: 3.2rem;
  width: 100%;
}

.card__info,
.card__info-p {
  margin-left: 3rem;
  max-width: 26.9rem;
}

.card__info-p {
  font-size: 1.4rem;
  margin-top: 2rem;
}

.card__info-item,
.card__info-p {
  color: rgba(31, 34, 41, 0.5);
  font-weight: 300;
}

.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: 12rem;
  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.6rem;
  font-weight: 500;
  line-height: 1.195;
  margin-bottom: 1.4rem;
}

.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.6rem;
  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.1rem;
  margin-bottom: 1.1rem;
  width: 100%;
}

.card__offer-title {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.195;
  position: relative;
  -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);
}

.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;
  padding: 0 4.8rem;
  -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: hsla(0, 0%, 100%, 0.2);
  border-radius: 50%;
  height: 6.3rem;
  left: 2.6rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6.3rem;
  z-index: 2;
}

.about-collection__slider .nav-prev .icon {
  height: 1.9rem;
  width: 1.1rem;
}

.about-collection__slider .nav-next {
  background: hsla(0, 0%, 100%, 0.2);
  border-radius: 50%;
  height: 6.3rem;
  position: absolute;
  right: 2.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6.3rem;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.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.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;
}

.doors-slider__slide-title {
  display: block;
  font-size: 2.3rem;
  line-height: 1.195;
  margin-top: 2rem;
  text-align: center;
}

.cart {
  padding-bottom: 12.5rem;
}

.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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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;
}

.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.6rem;
  -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: 10rem;
}

.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 {
  background: #b5191e;
  border-radius: 5rem;
  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(181, 25, 30, 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: 400;
}

.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%;
}

.catalog-category {
  padding-bottom: 17.7rem;
}

.catalog-category .interior-catalog {
  padding-bottom: 6.2rem;
}

.catalog-category__header .h1 {
  margin-bottom: 2.7rem;
}

.catalog-category__header p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.38889;
  max-width: 100.7rem;
}

.catalog-category__content .h2,
.catalog-category__content h2 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.13636;
  margin-bottom: 2.2rem;
}

.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 li,
.catalog-category__content p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.38889;
}

.catalog-category__content img {
  border-radius: 0.9rem;
}

.catalog-category__content ol,
.catalog-category__content ul {
  margin: 0;
  padding: 0;
}

.catalog-category__content ul {
  list-style: none;
}

.catalog-category__content ul li {
  margin-bottom: 1.5rem;
  padding-left: 2.9rem;
  position: relative;
}

.catalog-category__content ul li:last-of-type {
  margin-bottom: 0;
}

.catalog-category__content ul li:after {
  background: #1f2229;
  border-radius: 50%;
  content: "";
  height: 1.2rem;
  left: 0;
  position: absolute;
  top: 0.7rem;
  width: 1.2rem;
}

.catalog-category__gray {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background: #f6f6f6;
  border-radius: 0.9rem;
  justify-content: space-between;
  margin: 5rem 0;
  padding: 3.8rem 4.3rem 4rem 5.9rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog-category__gray-text {
  max-width: 72.3rem;
  width: 100%;
}

.catalog-category__gray-text h2,
.catalog-category__gray-text h3,
.catalog-category__gray-text h4 {
  margin-top: 2rem;
}

.catalog-category__gray-text h2:first-of-type,
.catalog-category__gray-text h3:first-of-type,
.catalog-category__gray-text h4:first-of-type {
  margin-top: 0;
}

.catalog-category__gray.no--photo .catalog-category__gray-text {
  max-width: 85%;
}

.catalog-category__gray-image {
  max-width: 44rem;
  width: 100%;
}

.catalog-category__gray-image img {
  height: 58.4rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.catalog-category__models-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;
  margin-bottom: 5.8rem;
  margin-top: 10rem;
}

.catalog-category__models-header .h2 {
  margin-bottom: 0;
}

.catalog-category__models-sort {
  max-width: 28rem;
  width: 100%;
}

.catalog-category__test-content {
  border: 1px solid #ccc;
  border-radius: 0.9rem;
  height: 40rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog-category__bl,
.catalog-category__test-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog-category__bl {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin: 6rem 0;
}

.catalog-category__bl h2,
.catalog-category__bl h3,
.catalog-category__bl h4 {
  margin-top: 2rem;
}

.catalog-category__bl h2:first-of-type,
.catalog-category__bl h3:first-of-type,
.catalog-category__bl h4:first-of-type {
  margin-top: 0;
}

.catalog-category__bl-images,
.catalog-category__bl-text {
  max-width: 50%;
  width: 100%;
}

.catalog-category__bl-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6rem;
}

.catalog-category__bl-images img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.catalog-category__bl.reverse .catalog-category__bl-text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.catalog-category__bl.text .catalog-category__bl-text {
  max-width: 85%;
}

.catalog-category__bl.text--column {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.catalog__grid.catalog__grid--doorhandle .catalog-item__content {
  margin-top: 1.5rem;
}

.catalog__grid.catalog__grid--doorhandle .catalog-item {
  padding: 1.9rem 3.2rem 4.1rem;
}

.catalog__grid.catalog__grid--doorhandle .catalog-item__image img {
  height: 10.6rem;
  -o-object-position: center;
  object-position: center;
}

.catalog__grid.catalog__grid--doorhandle .catalog-item__title {
  color: #63656a;
  font-weight: 400;
  opacity: 1;
}

.catalog__grid.catalog__grid--doorhandle .catalog-item__title span {
  color: #1f2229;
  font-weight: 500;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.doorhandle-modal__header .h2 {
  font-weight: 600;
  margin-bottom: 3rem;
}

.doorhandle-modal__header .h2 span {
  color: #b5191e;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.doorhandle-modal__image {
  margin-bottom: 4.4rem;
}

.doorhandle-modal__image img {
  max-height: 13.2rem;
}

.doorhandle-modal__area {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.doorhandle-modal__area,
.doorhandle-modal__params {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.doorhandle-modal__params {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.3rem;
}

.doorhandle-modal__param {
  font-size: 2rem;
  font-weight: 300;
}

.doorhandle-modal__param a {
  font-weight: 500;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.doorhandle-modal__param a:hover {
  text-decoration: none;
}

.doorhandle-modal__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 27.1rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem;
}

.doorhandle-modal__buttons .btn {
  font-size: 1.8rem;
  font-weight: 600;
  height: 5.2rem;
  width: 100%;
}

.doorhandle-modal__button-to-card {
  gap: 1.9rem;
}

.doorhandle-modal__button-to-card .icon {
  height: 2.3rem;
  width: 2.3rem;
}

.doorhandle-modal__button-to-fav {
  gap: 0.6rem;
}

.doorhandle-modal__button-to-fav:hover .icon {
  stroke: #fff;
}

.doorhandle-modal__button-to-fav .icon {
  height: 2.3rem;
  width: 2.7rem;
  fill: transparent;
  stroke: #b52025;
}

.doorhandle-modal__button-to-fav.is-fill:hover {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

.doorhandle-modal__button-to-fav.is-fill .icon {
  fill: #b52025;
  stroke: #b52025;
}

.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__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__grid {
  display: grid;
  gap: 2.8rem 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.5rem;
}

.catalog__grid .catalog-item:nth-of-type(4n) {
  border-color: transparent;
}

.catalog__grid .catalog-item:after {
  left: -3px;
  width: 3px;
}

.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: #b5191e;
  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%;
}

.ws-contact {
  padding-bottom: 32.5rem;
}

.ws-contact__regions-title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: center;
}

.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.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);
  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;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 0.7rem;
  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);
}

.ws-contact__opts-values li.is--active {
  background: #b52025;
  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: 2.5rem;
}

.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 {
  background: #fafafa;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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: #b52025;
  font-size: 1.2rem;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.ws-contact__header {
  background: #e2e2e2;
  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;
  font-weight: 600;
  padding: 0.9rem 0;
  -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);
}

.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 {
  height: 100% !important;
}

.ws-contact__list-title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 3.5rem;
  text-align: center;
}

.ws-contact__list-content {
  display: grid;
  gap: 1.4rem 0.5rem;
  grid-template-columns: repeat(4, 1fr);
}

.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-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;
}

.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-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: #b52025;
  display: block;
  font-size: 1.2rem;
  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;
}

.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%;
}

.entrance-doors__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.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%;
}

.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;
}

.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;
  padding-top: 1.8rem;
  width: 100%;
}

.entrance-doors-desc__bl1-text .h2 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.195;
  margin-bottom: 2.5rem;
}

.entrance-doors-desc__bl1-text li,
.entrance-doors-desc__bl1-text p {
  color: #31363d;
  font-size: 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: #eaeaea;
  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: #31363d;
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.entrance-doors-desc__bl2-text {
  max-width: 68.9rem;
  width: 100%;
}

.entrance-doors-desc__bl2-text p {
  color: #31363d;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.625;
}

.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 {
  color: #31363d;
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.625;
  margin-top: 1.1rem;
}

.entrance-doors-desc__bl3 {
  background: #fafafa;
  border-radius: 0.9rem;
  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: #31363d;
  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;
}

.favorites-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 16.5rem 10rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.favorites-empty__text {
  max-width: 54.3rem;
  padding-top: 5.2rem;
  width: 100%;
}

.favorites-empty__text .h1 {
  margin-bottom: 3.5rem;
}

.favorites-empty__text .h2 {
  margin-bottom: 1.8rem;
}

.favorites-empty__text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
}

.favorites-empty__text p a {
  color: #b5191e;
}

.favorites-empty__image {
  height: 44.6rem;
  left: 2rem;
  max-width: 44.6rem;
  top: -4rem;
  width: 100%;
}

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

.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;
  font-weight: 300;
  line-height: 1.195;
}

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

.hidden-doors__hero {
  display: grid;
  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: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__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.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;
}

.hidden-doors__vantages {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-bottom: 1px solid rgba(31, 34, 41, 0.3);
  border-top: 1px solid rgba(31, 34, 41, 0.3);
  gap: 4rem;
  justify-content: space-between;
  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 {
  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: 17.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: 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;
  margin-bottom: 1.5rem;
}

.hidden-doors__vantages-item-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
  opacity: 0.7;
}

.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 0 0 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: 1.6rem;
  font-weight: 300;
  line-height: 1.4375;
  margin-bottom: 1.1rem;
}

.hidden-doors__tabs-outer-text p:last-of-type {
  margin-bottom: 0;
}

.hidden-doors__tabs-outer-header .h2 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 2.8rem;
}

.hidden-doors__tabs-outer-body {
  margin-top: auto;
}

.hidden-doors__tabs-outer-price {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.hidden-doors__tabs-outer-price span {
  color: var(--red);
  font-size: 3.5rem;
  font-weight: 700;
  padding: 0 0.5rem;
}

.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 {
  font-size: 1.6rem;
  font-weight: 400;
  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;
  font-weight: 400;
}

.hidden-doors__tabs-outer-btn-callback:hover {
  border-color: transparent;
}

.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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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: 3.5rem;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}

.video-slider {
  margin-top: 5.3rem;
}

.video-slider .swiper-slide .video-slide {
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  -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);
  -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: 3.5rem;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}

.designers-reviews__area {
  background: #f6f8f9;
  border-radius: 1.3rem;
  margin: 2rem auto 0;
  max-width: 116.4rem;
  padding: 4.6rem 10rem;
  position: relative;
}

.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: 28.9rem;
  max-width: 29rem;
  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 {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4375;
  margin-bottom: 2.4rem;
}

.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: 1.3rem;
  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-play.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%);
  width: 4.9rem;
  z-index: 2;
}

.video-slide__title {
  font-size: 2.5rem;
  font-weight: 600;
}

.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: 6.1rem 4.5rem 0;
  -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;
}

.hero {
  padding: 4.3rem 0;
}

.hero__slider {
  position: relative;
}

.hero__slide {
  height: 58.7rem;
  position: relative;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  border-radius: 1.3rem;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__slide,
.hero__slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.hero__slide-content {
  background: #edebe8;
  height: 100%;
  max-width: 54.9rem;
  padding: 0 9.9rem 0 5.1rem;
  -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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 2;
}

.hero__slide-content p,
.hero__slide-subtitle {
  font-weight: 300;
  opacity: 0.7;
}

.hero__slide-subtitle {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.2rem;
}

.hero__slide-title {
  display: block;
  font-size: 7rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  margin-bottom: 1.3rem;
  text-transform: uppercase;
}

.hero__slide-link {
  margin-top: 1.5rem;
}

.hero__slide-link span {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.hero__slide-bg {
  height: 100%;
  left: 0;
  max-width: 85.3rem;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero__slide-bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.collection-category__title-mobile {
  display: none;
}

.collection-category__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 26.9rem 14rem 26.9rem;
}

.collection-category__item {
  border-radius: 0.9rem;
  overflow: hidden;
  position: relative;
}

.collection-category__item:first-of-type {
  grid-area: 1/1/3/2;
}

.collection-category__item:nth-of-type(2) {
  grid-area: 1/2/3/3;
}

.collection-category__item:nth-of-type(3) {
  grid-area: 1/3/2/4;
}

.collection-category__item:nth-of-type(4) {
  grid-area: 1/4/2/5;
}

.collection-category__item:nth-of-type(5) {
  grid-area: 3/1/4/2;
}

.collection-category__item:nth-of-type(6) {
  grid-area: 3/2/4/3;
}

.collection-category__item:nth-of-type(7) {
  grid-area: 2/3/4/4;
}

.collection-category__item:nth-of-type(8) {
  grid-area: 2/4/4/5;
}

.collection-category__item-title {
  bottom: 2.3rem;
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.195;
  padding: 0 3.7rem;
}

.collection-category__item-hover,
.collection-category__item-title {
  color: #fff;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.collection-category__item-hover {
  background: rgba(49, 54, 61, 0.95);
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 5rem;
  top: 0;
}

.collection-category__item-hover,
.collection-category__item-hover p {
  opacity: 0;
  -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);
}

.collection-category__item-hover p {
  -webkit-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  transform: translateY(1rem);
  -webkit-transition-property: none;
  transition-property: none;
}

.collection-category__item-hover .collection-category__item-title {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  margin-bottom: 2.6rem;
  padding: 0;
  position: static;
}

.collection-category__item-bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -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__item-bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  width: 100%;
}

.doors-type {
  padding: 5rem 0 6.7rem;
}

.doors-type .h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.doors-type__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 0 3.7rem;
}

.doors-type__grid--mobile {
  display: none;
}

.doors-type__item {
  background: #fff;
  border-radius: 0.4rem;
  -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 5.9rem;
  text-align: center;
}

.doors-type__item:hover {
  background: var(--red);
  color: #fff;
}

.best-offers .catalog-slider__header {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.promotional__title-mobile {
  display: none;
  margin-bottom: 13px;
}

.promotional__slider .swiper-slide {
  height: auto;
}

.promotional__slider .swiper-slide .promotional-item {
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  -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);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.promotional__slider .swiper-slide-visible .promotional-item {
  opacity: 1;
  pointer-events: auto;
}

.promotional__slider .slider-pagination {
  margin-top: 2rem;
}

.promotional-item {
  border-radius: 1.3rem;
  display: block;
  height: 25.8rem;
  overflow: hidden;
  padding: 6.9rem 2.7rem 3.6rem;
  position: relative;
  width: 100%;
}

.promotional-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.promotional-item__content,
.promotional-item__title {
  -webkit-box-orient: vertical;
  -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);
}

.promotional-item__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  margin-bottom: 0.7rem;
  min-height: 4.8rem;
  text-transform: uppercase;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  display: -moz-box;
  -moz-line-clamp: 2;
  overflow: hidden;
}

.promotional-item__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 3.6rem;
  max-width: 28.9rem;
  width: 100%;
}

.promotional-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.7rem;
}

.promotional-item__price-main {
  font-size: 1.4rem;
  font-weight: 300;
}

.promotional-item__price-main span {
  font-size: 2rem;
  font-weight: 400;
}

.promotional-item__price-old {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  text-decoration: line-through;
}

.promotional-item__price-sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.9rem;
  font-weight: 300;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 1.1rem;
  margin-top: -0.8rem;
}

.promotional-item__price-sale span {
  display: block;
  font-size: 2.7rem;
  font-weight: 400;
  margin-right: -0.3rem;
}

.promotional-item__steaker {
  background: hsla(0, 0%, 100%, 0.8);
  border-radius: 0 0 0 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  height: 4.4rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
  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;
  line-height: 1;
  padding-bottom: 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);
}

.promotional-item__steaker--sale {
  font-size: 2.2rem;
}

.promotional-item__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.promotional-item__bg:after {
  background: rgba(49, 54, 61, 0.95);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -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%;
}

.promotional-item__bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  -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;
}

.promotional-item--white-text,
.promotional-item--white-text:hover {
  color: #fff;
}

.promotional-item--white-text .promotional-item__steaker {
  color: var(--black);
}

.home-about {
  padding: 4.3rem 0;
}

.home-about__area {
  padding: 0 10.6rem;
}

.home-about__area .h2 {
  margin: 0 auto;
  max-width: 76.5rem;
  text-align: center;
}

.home-about__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin-top: 4.7rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.home-about__item {
  width: 100%;
}

.home-about__item:first-of-type {
  max-width: 27.3rem;
}

.home-about__item:first-of-type .home-about__item-icon img {
  height: 12.8rem;
  width: 12.3rem;
}

.home-about__item:nth-of-type(2) {
  max-width: 26.1rem;
}

.home-about__item:nth-of-type(2) .home-about__item-icon img {
  height: 13.5rem;
  width: 6.4rem;
}

.home-about__item:nth-of-type(3) {
  max-width: 31.7rem;
}

.home-about__item:nth-of-type(3) .home-about__item-icon img {
  height: 9.8rem;
  width: 16.4rem;
}

.home-about__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 13.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.4rem;
}

.home-about__item-icon img {
  -o-object-fit: contain;
  object-fit: contain;
}

.home-about__item-text .h3 {
  margin-bottom: 2.4rem;
}

.home-about__item-text p {
  font-size: 1.6rem;
  line-height: 1.375;
}

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

.featured-links {
  padding: 3.5rem 0 2rem;
}

.featured-links__grid {
  display: grid;
  gap: 1.8rem 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.featured-links__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  background: #fafafa;
  border: 1px solid rgba(31, 34, 41, 0.25);
  border-radius: 0.9rem;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 19.9rem;
  overflow: hidden;
  padding: 4rem 2.8rem 0;
  position: relative;
}

.featured-links__item:hover {
  background: var(--black);
  border: 1px solid rgba(31, 34, 41, 0.5);
  color: #fff;
}

.featured-links__item:hover .icon {
  color: #fff;
}

.featured-links__item:hover .featured-links__item-icon-phantom {
  opacity: 0.15;
  -webkit-transform: translate(110%, -50%) scale(1.5);
  -ms-transform: translate(110%, -50%) scale(1.5);
  transform: translate(110%, -50%) scale(1.5);
}

.featured-links__item:first-of-type .icon {
  height: 8rem;
  width: 8rem;
}

.featured-links__item:nth-of-type(2) .icon {
  height: 8rem;
  width: 8rem;
}

.featured-links__item:nth-of-type(3) .icon {
  height: 7.5rem;
  width: 8rem;
}

.featured-links__item:nth-of-type(4) .icon {
  height: 7.8rem;
  width: 7.8rem;
}

.featured-links__item:nth-of-type(5) .icon {
  height: 6.5rem;
  width: 7.5rem;
}

.featured-links__item:nth-of-type(6) .icon {
  height: 7.3rem;
  width: 7.3rem;
}

.featured-links__item span {
  font-size: 2rem;
  font-weight: 500;
}

.featured-links__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 8rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 1.7rem;
}

.featured-links__item-icon .icon {
  color: #1f2229;
  max-height: 8rem;
  max-width: 8rem;
}

.featured-links__item-icon-phantom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  min-height: 8rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.5);
  -ms-transform: translate(-50%, -50%) scale(1.5);
  transform: translate(-50%, -50%) scale(1.5);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -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);
}

.featured-links__item-icon-phantom .icon {
  color: #b52025;
  max-height: 8rem;
  max-width: 8rem;
}

.news {
  padding: 6.1rem 0 8.5rem;
}

.news .h2 {
  margin-bottom: 0;
  text-align: center;
}

.news__grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 20.14% 14.21% 20.14% 20.14% 20.14%;
  grid-template-rows: repeat(2, 29.3rem);
  margin-top: 2.9rem;
}

.news__item {
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 3.2rem 2.2rem;
}

.news__item .news__item-link {
  color: #ee0c13;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 7.2rem;
  -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);
}

.news__item:hover .news__item-content {
  -webkit-transform: translateY(-1rem);
  -ms-transform: translateY(-1rem);
  transform: translateY(-1rem);
}

.news__item:hover .news__item-bg img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.news__item:hover .news__item-bg:after {
  opacity: 1;
}

.news__item:hover .news__item-link {
  color: #fff;
}

.news__item:hover .news__item-link:after {
  width: 0;
}

.news__item:hover .news__item-link .icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.news__item:nth-of-type(2) {
  grid-area: 1/3/2/4;
}

.news__item:nth-of-type(3) {
  grid-area: 1/4/2/5;
}

.news__item:nth-of-type(4) {
  grid-area: 1/5/2/6;
}

.news__item:nth-of-type(5) {
  grid-area: 2/3/3/4;
}

.news__item:nth-of-type(6) {
  grid-area: 2/4/3/5;
}

.news__item:nth-of-type(7) {
  grid-area: 2/5/3/6;
}

.news__item-content {
  color: #fff;
  position: relative;
  -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);
  z-index: 2;
}

.news__item-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0;
}

.news__item-bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.news__item-bg:after {
  background: rgba(49, 54, 61, 0.95);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -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%;
}

.news__item-bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  -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;
}

.news__link-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  font-size: 1.8rem;
  justify-content: center;
  margin-top: 1.7rem;
}

.news__item-bg:before {
  background: rgba(49, 54, 61, 0.55);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.news__item-bg:after {
  background: rgba(49, 54, 61, 0.6);
}

.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.6rem;
  font-weight: 300;
  line-height: 1.195;
}

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

.interior-catalog__nav {
  margin-top: 3.4rem;
  -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.6rem;
  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 rgba(31, 34, 41, 0.4);
  gap: 1.6rem;
  padding: 0 0 0.4rem;
}

.interior-catalog__nav-menu-item {
  font-size: 1.6rem;
  line-height: 1.195;
  position: relative;
}

.interior-catalog__nav-menu-item:hover a {
  color: #b5191e;
}

.interior-catalog__nav-menu-item:after {
  background: #b5191e;
  content: "";
  height: 0.4rem;
  left: 0;
  opacity: 0;
  position: absolute;
  top: calc(100% + 1px);
  -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%;
}

.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: 6.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.6rem;
  font-weight: 500;
  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: 1.5px solid #1f2229;
  border-radius: 6.6rem;
  height: 4.4rem;
  width: 21.5rem;
  -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.4rem;
  font-weight: 600;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7rem;
  -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);
}

.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 {
  border-color: #b5191e;
}

.interior-catalog__section-grid {
  display: grid;
  gap: 2.2rem 2rem;
  grid-template-columns: repeat(4, 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 .interior-item__image:after {
  opacity: 1;
}

.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 {
  border-radius: 0.9rem;
  height: 33.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.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.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%;
}

.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.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;
}

.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: 1.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: 112.2rem;
}

.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.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 {
  gap: 5.4rem;
  margin-bottom: 2.8rem;
}

.interior-catalog__popular-title {
  font-size: 1.6rem;
  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-radius: 0.4rem;
  -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);
  -ms-flex: 1;
  flex: 1;
  padding: 2rem 0;
  text-align: center;
}

.interior-catalog__popular-item.is--active,
.interior-catalog__popular-item:hover {
  background: var(--red);
  color: #fff;
}

.materials-downloading {
  padding-bottom: 15rem;
}

.materials-downloading__tabs {
  margin-top: 6.8rem;
}

.materials-downloading__tabs-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.materials-downloading__tabs-header-item {
  -webkit-box-flex: 1;
  background: #eaeaeb;
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  height: 5.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #292d32;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}

.materials-downloading__tabs-header-item:hover {
  background: #e5e5e6;
}

.materials-downloading__tabs-header-item.btn-active {
  background: #292d32;
  color: #fff;
  height: 6.2rem;
}

.materials-downloading-tab {
  display: none;
}

.materials-downloading-tab.tab-active {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  display: block;
}

.materials-downloading__grid {
  display: grid;
  gap: 4.5rem 9.2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 7rem;
  padding: 0 7.5rem;
}

.materials-downloading__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;
}

.materials-downloading__item:hover .materials-downloading__item-btn {
  background: #313540;
}

.materials-downloading__item-image {
  height: 34.3rem;
  max-width: 24.3rem;
  width: 100%;
}

.materials-downloading__item-image img {
  border-radius: 0.9rem;
  -webkit-box-shadow: 0 0 19px 0 rgba(41, 45, 50, 0.15);
  box-shadow: 0 0 19px 0 rgba(41, 45, 50, 0.15);
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.materials-downloading__item-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1.9rem;
}

.materials-downloading__item-btn {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  height: 3.9rem;
  margin-top: 1.5rem;
  max-width: 16.9rem;
  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;
}

.metalcard__design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6.3rem;
  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-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: 10rem;
  max-width: 15.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  cursor: pointer;
  -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);
}

.metalcard__design-item:hover {
  background: #f0f0f0;
}

.metalcard__design-item:first-of-type .icon {
  height: 5.7rem;
  width: 2.7rem;
}

.metalcard__design-item:nth-of-type(2) .icon {
  height: 6.6rem;
  width: 2.7rem;
}

.metalcard__design-item:nth-of-type(3) .icon {
  height: 5.7rem;
  width: 4.2rem;
}

.metalcard__design-item:nth-of-type(4) .icon {
  height: 6.6rem;
  width: 4.6rem;
}

.metalcard__design-item:nth-of-type(5) .icon {
  height: 6.6rem;
  width: 5.4rem;
}

.metalcard__design-item:nth-of-type(6) .icon {
  height: 5.7rem;
  width: 5.4rem;
}

.metalcard__design-item:nth-of-type(7) .icon {
  height: 6.6rem;
  width: 5.6rem;
}

.metalcard__design-item .icon {
  max-height: 6.6rem;
  max-width: 5.6rem;
}

.metalcard__design-item.is-active {
  background: #b5191e;
}

.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/download.svg) 50% / contain no-repeat;
  bottom: 1.4rem;
  cursor: pointer;
  height: 3.8rem;
  position: absolute;
  right: 1.3rem;
  -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: 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: 0.5rem;
  text-align: center;
}

.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 {
  font-size: 1.8rem;
}

.metalcard__content li,
.metalcard__content p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.3;
}

.metalcard__content .card-actions {
  margin-bottom: 2.1rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.metalcard__description {
  border-bottom: 1px solid rgba(31, 34, 41, 0.2);
  padding-bottom: 1rem;
}

.metalcard__title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
}

.metalcard__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-top: 2.6rem;
}

.metalcard__price span {
  font-size: 2rem;
  font-weight: 500;
}

.metalcard__price span:nth-of-type(2) {
  font-size: 3.5rem;
}

.metalcard__price span:nth-of-type(2) span {
  font-size: 3.5rem;
}

.metalcard__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.4rem;
  margin-top: 1.1rem;
}

.metalcard__btn {
  background: #31363d;
  border-radius: 6.6rem;
  height: 5rem;
  max-width: 24.2rem;
  width: 100%;
}

.metalcard__content-flex {
  gap: 5.6rem;
}

.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/date.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/guarantee.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 2.3rem;
  width: 2.2rem;
}

.metalcard__copy {
  margin-top: 1.6rem;
  max-width: 43rem;
}

.metalcard__copy p {
  font-size: 1.2rem;
  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: 0.4rem;
  margin-bottom: 4.6rem;
}

.metalcard__tabs-header,
.metalcard__tabs-header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.metalcard__tabs-header-item {
  background: #f4f4f4;
  border-radius: 0.9rem 0.9rem 0 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 5.3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 600;
  justify-content: center;
  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);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.metalcard__tabs-header-item:hover {
  background: #ececec;
}

.metalcard__tabs-header-item.btn-active {
  background: #1f2229;
  color: #fff;
}

.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: 7.6rem;
  -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;
  gap: 7.6rem;
  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: 1.8rem;
  font-weight: 500;
  line-height: 1.33333;
  margin-bottom: 2.4rem;
}

.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: 8.8rem;
}

.metalcard.design--ds .metalcard__content,
.metalcard.design--dsf .metalcard__content,
.metalcard.design--dsfbb .metalcard__content,
.metalcard__holder.design--ds .metalcard__content,
.metalcard__holder.design--dsf .metalcard__content,
.metalcard__holder.design--dsfbb .metalcard__content {
  padding-left: 3.7rem;
}

.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.6rem;
  font-weight: 500;
  line-height: 1.195;
  margin-bottom: 0.7rem;
}

.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: #000;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.195;
  margin: 1.2rem -1rem 0;
  opacity: 0.65;
  text-align: center;
}

.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-icon.svg) 50% / contain no-repeat;
  height: 1.7rem;
  left: -3rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -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: 1.7rem;
}

.resume-modal {
  background: hsla(0, 0%, 100%, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--zIndexModalv100);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.resume-modal.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.resume-modal__area {
  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: 11.2rem 8.2rem;
  position: relative;
  width: 100%;
}

.resume-modal__close {
  background: url(../img/icons/modal-close.svg) 50%/1.8rem no-repeat;
  cursor: pointer;
  height: 4rem;
  position: absolute;
  right: 1.1rem;
  top: 1.3rem;
  -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: 4rem;
  will-change: transform;
}

.resume-modal__close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.resume-modal__content .h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 4.7rem;
  text-align: center;
}

.resume-modal__inputs .input {
  background: #fff;
  border: 1px solid rgba(31, 34, 41, 0.2);
  border-radius: 5rem;
  color: #1f2229;
  font-size: 2rem;
  height: 8.6rem;
  text-align: center;
}

.resume-modal__inputs .input::-webkit-input-placeholder {
  color: #1f2229;
  opacity: 0.5;
}

.resume-modal__inputs .input::-moz-placeholder {
  color: #1f2229;
  opacity: 0.5;
}

.resume-modal__inputs .input:-ms-input-placeholder {
  color: #1f2229;
  opacity: 0.5;
}

.resume-modal__inputs .input::-ms-input-placeholder {
  color: #1f2229;
  opacity: 0.5;
}

.resume-modal__inputs .input::placeholder {
  color: #1f2229;
  opacity: 0.5;
}

.resume-modal__inputs .input:focus {
  border-color: #1f2229;
}

.resume-modal__inputs .input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.resume-modal__inputs .input:focus::-moz-placeholder {
  opacity: 0;
}

.resume-modal__inputs .input:focus:-ms-input-placeholder {
  opacity: 0;
}

.resume-modal__inputs .input:focus::-ms-input-placeholder {
  opacity: 0;
}

.resume-modal__inputs .input:focus::placeholder {
  opacity: 0;
}

.resume-modal__error {
  color: #b5191e;
  display: none;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 1rem 0;
  text-align: center;
}

.resume-modal__error.is-active {
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
  display: block;
}

.resume-modal__input {
  margin-bottom: 2.1rem;
}

.resume-modal__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.resume-modal__input-file {
  max-width: 22.6rem;
  width: 100%;
}

.resume-modal__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 8.6rem;
  width: 100%;
  -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.2);
  border-radius: 5rem;
  color: #1f2229;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 0 2rem;
  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);
}

.resume-modal__file:hover {
  border-color: #1f2229;
}

.resume-modal__file .input {
  display: none;
}

.file-name {
  overflow: hidden;
  padding: 0.3rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload-name {
  max-width: 100%;
}

.resume-modal__bottom-right p {
  color: #707070;
  font-size: 1.4rem;
  font-weight: 300;
  padding-left: 3.7rem;
}

.resume-modal__bottom-right p .link {
  color: #000;
}

.resume-modal__bottom-right p .link:after {
  bottom: 0;
  content: "";
  height: 1px;
}

.resume-modal__submit {
  border-radius: 5rem;
  font-size: 2rem;
  font-weight: 400;
  height: 8.6rem;
  margin-bottom: 1.7rem;
  max-width: 40.5rem;
  width: 100%;
}

.opening-systems__header {
  max-width: 107.3rem;
}

.opening-systems__header .h1 {
  margin-bottom: 0.5rem;
}

.opening-systems__header p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
}

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

.opening-systems__nav {
  margin: 4rem 0 0.4rem;
}

.opening-systems__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}

.opening-systems__nav a,
.opening-systems__nav li {
  font-size: 1.6rem;
  font-weight: 500;
}

.opening-systems__nav a:after {
  bottom: -1px;
  height: 1px;
}

.opening-options__header p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
}

.opening-systems__main .opening-options {
  padding: 0 0 3.8rem;
}

.opening-systems__main .opening-options .h3 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.opening-systems__main .opening-options .opening-systems__section-title {
  margin-bottom: 1.5rem;
}

.opening-systems__main .opening-options__btn-more.is-expanded {
  background: #ebebeb;
  color: #1f2229;
  max-width: 20.2rem;
}

.opening-systems__main .opening-options__btn-more {
  height: 4.6rem;
  max-width: 22.1rem;
}

.swing-doors .opening-options:first-of-type .opening-options__header {
  max-width: 70.9rem;
}

.swing-doors .opening-options:nth-of-type(2) .opening-options__header {
  max-width: 58rem;
}

.swing-doors .opening-options:nth-of-type(3) .opening-options__header {
  max-width: 66.8rem;
}

.sliding-doors .opening-options:first-of-type .opening-options__header {
  max-width: 93.5rem;
}

.sliding-doors .opening-options:nth-of-type(2) .opening-options__header {
  max-width: 93.5rem;
}

.sliding-doors .opening-options:nth-of-type(3) .opening-options__header {
  max-width: 103.4rem;
}

.sliding-partitions .opening-options:first-of-type .opening-options__header {
  max-width: 103.4rem;
}

.opening-systems__section {
  border-bottom: 1px solid rgba(49, 54, 61, 0.3);
  padding-bottom: 6rem;
  padding-top: 4.3rem;
}

.opening-systems__section:last-of-type {
  border-color: transparent;
  padding-bottom: 14rem;
}

.opening-systems__section-title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 3.2rem;
}

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

.partners__header-content {
  max-width: 72.8rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.partners__header-content .h1 {
  margin-bottom: 3.5rem;
}

.partners__header-content p {
  color: #000;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  max-width: 57.5rem;
}

.partners__header-image {
  max-width: 63.6rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 45.1rem;
}

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

.partners__we {
  padding: 5.3rem 0;
}

.partners__we .h2 {
  margin-bottom: 4.2rem;
}

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

.partners__we-item {
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 36px 0 rgba(31, 34, 41, 0.1);
  box-shadow: 0 0 36px 0 rgba(31, 34, 41, 0.1);
  padding: 2.2rem 2.6rem 2.7rem;
}

.partners__we-item:nth-of-type(4) p {
  max-width: 26.1rem;
}

.partners__we-item .h4 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.partners__we-item p {
  color: #000;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.375;
}

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

.partners__we-item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 1.3rem;
}

.partners__we-item-icon img {
  max-height: 6rem;
  max-width: 6.4rem;
}

.partners__we-btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.partners__we-btn {
  background: #1f2229;
  font-size: 2.1rem;
  font-weight: 400;
  height: 6.6rem;
  max-width: 26.7rem;
  width: 100%;
}

.partners__benefits {
  background: #fafafa;
  margin-left: -13.4rem;
  margin-right: -13.4rem;
  padding: 6rem 13.4rem 5.1rem;
}

.partners__benefits .h2 {
  margin-bottom: 5.6rem;
}

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

.partners__benefits-item {
  background: hsla(0, 0%, 100%, 0.5);
  border: 1px solid rgba(31, 34, 41, 0.2);
  border-radius: 1.5rem;
  min-height: 27.8rem;
  padding: 4rem 2.5rem 0;
}

.partners__benefits-item:first-of-type .h4 {
  max-width: 17.9rem;
}

.partners__benefits-item:first-of-type p {
  max-width: 39.7rem;
}

.partners__benefits-item:nth-of-type(2) .h4 {
  max-width: 25.6rem;
}

.partners__benefits-item:nth-of-type(2) p {
  max-width: 39.2rem;
}

.partners__benefits-item:nth-of-type(3) .h4 {
  max-width: 20.7rem;
}

.partners__benefits-item:nth-of-type(3) p {
  max-width: 41.4rem;
}

.partners__benefits-item:nth-of-type(4) .partners__benefits-item-header {
  margin-bottom: 2rem;
}

.partners__benefits-item:nth-of-type(4) .h4 {
  max-width: 26.7rem;
}

.partners__benefits-item:nth-of-type(4) p {
  max-width: 39.7rem;
}

.partners__benefits-item:nth-of-type(5) .partners__benefits-item-header {
  margin-bottom: 2rem;
}

.partners__benefits-item:nth-of-type(5) .h4 {
  max-width: 32.1rem;
}

.partners__benefits-item:nth-of-type(5) p {
  max-width: 41.5rem;
}

.partners__benefits-item:nth-of-type(6) .partners__benefits-item-header {
  margin-bottom: 2rem;
}

.partners__benefits-item:nth-of-type(6) .h4 {
  max-width: 32.1rem;
}

.partners__benefits-item:nth-of-type(6) p {
  max-width: 28.3rem;
}

.partners__benefits-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 0.9rem;
}

.partners__benefits-item-header .h4 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0;
}

.partners__benefits-item-icon {
  max-width: 6.7rem;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.partners__benefits-item-icon img {
  max-height: 5.6rem;
  max-width: 6.7rem;
}

.partners__benefits-item-body p {
  font-size: 1.8rem;
  line-height: 1.33333;
  opacity: 0.7;
}

.partners__benefits-item-body .link {
  color: #b5191e;
  font-weight: 600;
}

.partners__benefits-item-body .link:after {
  bottom: 0;
  content: "";
  height: 1px;
}

.partners__benefits-btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 4.2rem;
}

.partners__benefits-btn {
  background: #1f2229;
  font-size: 2.1rem;
  font-weight: 400;
  height: 6.6rem;
  max-width: 31.5rem;
  width: 100%;
}

.partners-work {
  padding: 5.4rem 0 7.7rem;
}

.partners-work .h2 {
  margin-bottom: 4.6rem;
}

.partners-work__card {
  gap: 4rem;
}

.partners-work__card,
.partners-work__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.partners-work__content {
  gap: 3.5rem;
  max-width: 62rem;
  padding-top: 5rem;
  width: 100%;
}

.partners-work__author {
  max-width: 19.1rem;
  width: 100%;
}

.partners-work__author-avatar {
  height: 19.1rem;
  margin-bottom: 1.1rem;
  width: 19.1rem;
}

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

.partners-work__author-name {
  color: #1f2229;
  font-size: 1.8rem;
  line-height: 1.33333;
  padding-left: 0.8rem;
}

.partners-work__author-name span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.partners-work__description {
  max-width: 39.4rem;
  width: 100%;
}

.partners-work__description .h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}

.partners-work__description p {
  color: #1f2229;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.55556;
  opacity: 0.7;
}

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

.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: 1rem;
  grid-template-columns: 39.4rem 15.8rem 15.8rem;
  grid-template-rows: 15.3rem 15.3rem;
  max-width: 73.2rem;
  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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.7rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3.1rem;
}

.partners-work__btn {
  background: #1f2229;
  font-size: 2.1rem;
  font-weight: 400;
  height: 5rem;
  max-width: 19.9rem;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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;
}

.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 {
  margin-bottom: 0.3rem;
}

.penta-bio__bl1-header p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
}

.penta-bio__bl1-header p:last-of-type {
  margin-bottom: 0;
}

.penta-bio__bl1-content p {
  font-size: 1.6rem;
  line-height: 1.75;
  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: 46.9rem;
  -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-item {
  border-radius: 0.9rem;
  height: 36.3rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.penta-bio__bl2-video-item:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.penta-bio__bl2-video-item:hover .penta-bio__bl2-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);
}

.penta-bio__bl2-video-item 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;
}

.penta-bio__bl2-video-item img,
.penta-bio__bl2-video-play {
  -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);
}

.penta-bio__bl2-video-play {
  background: url(../img/icons/youtube-play.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;
}

.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 {
  margin-bottom: 2.7rem;
}

.penta-bio__bl2-top-text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  margin-bottom: 0;
}

.penta-bio__bl2-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.9rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 1.8rem;
  justify-content: space-between;
}

.penta-bio__bl2-middle-text {
  max-width: 57.7rem;
  width: 100%;
}

.penta-bio__bl2-middle-text .h3 {
  margin-bottom: 2.4rem;
}

.penta-bio__bl2-middle-text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  margin-bottom: 0;
}

.penta-bio__bl2-middle-text-warn {
  margin-top: 4rem;
}

.penta-bio__bl2-middle-text-warn span {
  color: #b5191e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.5;
  position: relative;
  -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: 73.5rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 3.4rem;
  justify-content: space-between;
}

.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;
  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;
  padding-left: 4.6rem;
  padding-top: 2.1rem;
  width: 100%;
}

.penta-bio__bl2-bottom-text .h3 {
  margin-bottom: 2.3rem;
}

.penta-bio__bl2-bottom-text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  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: 82rem;
  padding-top: 1rem;
  width: 100%;
}

.penta-bio__bl4-text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  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 {
  margin-bottom: 3.8rem;
}

.penta-bio__bl5-text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  margin-bottom: 1.2rem;
}

.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: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
  max-width: 59.2rem;
}

.penta-itec-touch__bl1-text .h1 {
  margin-bottom: 0.6rem;
  max-width: 53.2rem;
}

.penta-itec-touch__bl1-text .custom-ul {
  margin: 4.6rem 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: 46.9rem;
  -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;
  margin-top: -1rem;
  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: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  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: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  margin-bottom: 1.1rem;
}

.penta-itec-touch__bl2-bottom-text .custom-ul li:after {
  background: rgba(31, 34, 41, 0.4);
  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: 1.8rem;
  font-weight: 500;
  line-height: 1.66667;
  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-size: 1.8rem;
  font-weight: 300;
  line-height: 1.38889;
  margin-bottom: 1.2rem;
  padding-left: 3.4rem;
}

.penta-itec-touch__bl3-text .custom-ul li:after {
  background: rgba(31, 34, 41, 0.4);
  border-radius: 50%;
  height: 1.4rem;
  top: 0.6rem;
  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: 1.8rem;
  font-weight: 500;
  margin: 3rem 0 2rem;
}

.penta-itec-touch__bl5 li,
.penta-itec-touch__bl5 p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.38889;
  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 {
  margin: 3.5rem 0 1.4rem;
}

.penta-itec-touch__bl7 li,
.penta-itec-touch__bl7 p {
  font-size: 1.8rem;
  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-itec__header {
  margin-bottom: 4.4rem;
}

.penta-itec__header .h1 {
  margin-bottom: 0.5rem;
}

.penta-itec__header p {
  font-size: 1.6rem;
  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: 1.8rem;
  font-weight: 600;
  line-height: 1.55556;
  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;
  padding-top: 1.9rem;
  width: 100%;
}

.penta-itec__bl2-left .h2 {
  margin-bottom: 1.6rem;
}

.penta-itec__bl2-left p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  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 {
  padding-top: 4rem;
}

.penta-itec__bl2-text .custom-ul {
  margin: 2.7rem 0;
}

.penta-itec__bl2-text .custom-ul li {
  font-size: 1.8rem;
  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: 1.8rem;
  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: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  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: 1.8rem;
  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;
}

.portfolio-main {
  padding-bottom: 21.5rem;
}

.portfolio-main__grid {
  display: grid;
  gap: 4.6rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 5rem;
}

.portfolio-main__item:nth-of-type(2) .portfolio-main__item-image:after {
  background: url(../img/icons/portfolio-play.svg) 50% / contain no-repeat;
  content: "";
}

.portfolio-main__item:hover .portfolio-main__item-image img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.portfolio-main__item:hover .portfolio-main__item-image:after {
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -ms-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
}

.portfolio-main__item-title {
  display: block;
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.portfolio-main__item-image {
  border-radius: 0.9rem;
  height: 41rem;
  overflow: hidden;
  position: relative;
}

.portfolio-main__item-image:after {
  background: url(../img/icons/portfolio-plus.svg) 50% / contain no-repeat;
  content: "";
  height: 8.5rem;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 8.5rem;
  will-change: transform;
}

.portfolio-main__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.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;
}

.portfolio-photo {
  padding-bottom: 11rem;
}

.portfolio-photo .h1 {
  font-size: 5rem;
  margin-bottom: 5rem;
}

.portfolio-photo__section {
  margin-bottom: 4.9rem;
}

.portfolio-photo__section .h2 {
  margin-bottom: 2.4rem;
}

.portfolio-photo__grid {
  display: grid;
  gap: 3.3rem 9.4rem;
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-photo__item:hover .portfolio-photo__item-image img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.portfolio-photo__item:hover .portfolio-photo__item-image:after {
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -ms-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
}

.portfolio-photo__item-image {
  border-radius: 0.9rem;
  height: 40.4rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.portfolio-photo__item-image img {
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  will-change: transform;
}

.portfolio-photo__item-image:after {
  background: url(../img/icons/portfolio-plus.svg) 50% / contain no-repeat;
  content: "";
  height: 9.2rem;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 9.2rem;
  will-change: transform;
}

.portfolio-photo__item-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -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%;
}

.portfolio-photo__item-title {
  font-size: 2.2rem;
  font-weight: 500;
}

.portfolio-photo-detail {
  padding-bottom: 12.6rem;
}

.portfolio-photo-detail .h1 {
  font-size: 5rem;
  margin-bottom: 5rem;
}

.portfolio-photo-detail__section .h2 {
  margin-bottom: 2.4rem;
}

.portfolio-photo-detail__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 6.1rem;
}

.portfolio-photo-detail__item {
  border-radius: 0.9rem;
  height: 34.3rem;
  overflow: hidden;
  position: relative;
}

.portfolio-photo-detail__item:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -ms-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
}

.portfolio-photo-detail__item:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.portfolio-photo-detail__item:after {
  background: url(../img/icons/portfolio-plus.svg) 50% / contain no-repeat;
  content: "";
  height: 7.8rem;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 7.8rem;
  will-change: transform;
}

.portfolio-photo-detail__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.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;
}

.portfolio-photo-detail__item.is-hidden {
  display: none;
}

.portfolio-photo-detail-more {
  height: 5rem;
  margin: 0 auto;
  max-width: 22.6rem;
  width: 100%;
}

.portfolio-video {
  padding-bottom: 15rem;
}

.portfolio-video .h1 {
  font-size: 5rem;
  margin-bottom: 5.6rem;
}

.portfolio-video__grid {
  display: grid;
  gap: 2.7rem;
  grid-template-columns: repeat(3, 1fr);
}

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

.portfolio-video__item-image {
  border-radius: 0.9rem;
  height: 30.9rem;
  margin-bottom: 1.3rem;
  overflow: hidden;
  position: relative;
}

.portfolio-video__item-image:after {
  background: url(../img/icons/play-youtube.svg) 50% / contain no-repeat;
  content: "";
  height: 4.1rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 5.4rem;
}

.portfolio-video__item-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.portfolio-video__item-description {
  font-size: 1.8rem;
  padding-right: 1.7rem;
}

.rail {
  padding-bottom: 5rem;
}

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

.rail__bl1 {
  margin: 5.4rem 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rail__bl1,
.rail__bl1-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.rail__bl1-left {
  max-width: 96.2rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rail__bl1-left .rail__bl1-image {
  height: 42.9rem;
  max-width: 35.9rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

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

.rail__bl1-text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.195;
  margin-bottom: 2.3rem;
}

.rail__bl1-text p:last-of-type {
  margin-bottom: 0;
  padding-right: 1.4rem;
}

.rail__bl1-right {
  max-width: 38.2rem;
  width: 100%;
}

.rail__bl1-right .rail__bl1-image {
  height: 42.9rem;
  width: 100%;
}

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

.rail__bl2 .h2 {
  margin-bottom: 3.1rem;
}

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

.rail__bl2-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 11.8rem;
  width: 100%;
}

.rail__bl2-item img {
  height: 6.9rem;
  margin-bottom: 0.7rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 6.8rem;
}

.rail__bl2-item span {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
}

.rail__bl3 {
  margin-top: 3.8rem;
}

.rail__bl3 .h2 {
  margin-bottom: 2rem;
}

.rail__bl3-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(14, 1fr);
  max-width: 133.3rem;
  width: 100%;
}

.rail__bl3-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;
  text-align: center;
}

.rail__bl3-item img {
  height: 6.8rem;
  margin-bottom: 0.8rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 6.8rem;
}

.rail__bl3-item span {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
}

.rail__bl4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.8rem;
  margin-top: 6.4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rail__bl4-text {
  max-width: 62.5rem;
  width: 100%;
}

.rail__bl4-text .h2,
.rail__bl4-text p {
  margin-bottom: 2.2rem;
}

.rail__bl4-text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.195;
}

.rail__bl4-image {
  height: 17.9rem;
  margin-top: 5.4rem;
  max-width: 74.3rem;
  width: 100%;
}

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

.rail__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
}

.rail__gallery-left {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 41.4rem;
  width: 100%;
}

.rail__gallery-image img {
  border-radius: 1.3rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.rail__gallery-center {
  max-width: 41.9rem;
  width: 100%;
}

.rail__gallery-right {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 41.4rem;
  width: 100%;
}

.rail__gallery-area {
  background: #fafafa;
  border-radius: 0.9rem;
  margin: 4rem -1.3rem 6rem;
  padding: 4.4rem 6.8rem 4.1rem;
}

.rail__gallery-area .h2 {
  margin-bottom: 3.5rem;
}

.secret-new {
  padding-bottom: 6.5rem;
}

.secret-new__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.4rem;
  -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 {
  margin-bottom: 0.3rem;
}

.secret-new__bl1-text-header p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
  margin-bottom: 0;
}

.secret-new__bl1-text-content {
  margin-top: 8.3rem;
}

.secret-new__bl1-text-content p {
  font-size: 1.6rem;
  line-height: 1.75;
}

.secret-new__bl1-text-content p b {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  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__bl2 {
  background: #fafafa;
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.4rem;
  margin-top: 5.3rem;
  padding: 3.5rem 3.1rem 2rem;
}

.secret-new__bl2-left {
  max-width: 52.8rem;
  width: 100%;
}

.secret-new__bl2-image {
  margin-bottom: 2.8rem;
}

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

.secret-new__bl2-warn span {
  color: #b5191e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.5;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.6rem;
}

.secret-new__bl2-warn span:before {
  background: url(../img/icons/secret-warn.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;
}

.secret-new__bl2-right {
  max-width: 65.8rem;
  padding-top: 3rem;
  width: 100%;
}

.secret-new__bl2-right li,
.secret-new__bl2-right p {
  font-size: 1.8rem;
  font-weight: 300;
}

.secret-new__bl2-right p b {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.secret-new__bl2-right .custom-ul {
  margin: 2.9rem 0 5.8rem;
}

.secret-new__bl2-right .custom-ul li {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  padding-left: 4.6rem;
}

.secret-new__bl2-right .custom-ul li:after {
  background: rgba(31, 34, 41, 0.4);
  border-radius: 50%;
  content: "";
  height: 1.4rem;
  top: 0.5rem;
  width: 1.4rem;
}

.secret-new__bl3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.2rem;
  margin-top: 7.3rem;
  padding-left: 12.1rem;
}

.secret-new__bl3-image {
  max-width: 42rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.secret-new__bl3-image img {
  height: 55rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.secret-new__bl3-text {
  max-width: 66.3rem;
  padding-top: 5rem;
  width: 100%;
}

.secret-new__bl3-text .h2 {
  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: 1.8rem;
  font-weight: 300;
  margin-bottom: 3rem;
  padding-left: 6rem;
  position: relative;
}

.secret-new__bl3-text ol li:before {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ed1947;
  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: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  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: 3.6rem;
}

.secret-new__bl4-top-left p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
}

.secret-new__bl4-top-right {
  max-width: 66.7rem;
  padding-top: 1.6rem;
  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: 8.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-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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 8.1rem;
}

.sky {
  padding-bottom: 5rem;
}

.sky p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.195;
}

.sky p b {
  font-weight: 500;
}

.sky__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.sky__bl1-text {
  max-width: 64.3rem;
  width: 100%;
}

.sky__bl1-text .h1 {
  margin-bottom: 2.6rem;
}

.sky__bl1-text .h2 {
  margin-bottom: 1.4rem;
}

.sky__bl1-text p {
  margin-bottom: 2.5rem;
}

.sky__bl1-video {
  height: 44.5rem;
  max-width: 63.3rem;
  width: 100%;
  -webkit-box-flex: 0;
  cursor: pointer;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-top: 1.6rem;
  position: relative;
}

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

.sky__bl1-video-play {
  background: url(../img/icons/youtube-play.svg) 50% / contain no-repeat;
  height: 6.1rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 8.1rem;
}

.sky__bl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1.8rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.sky__bl2-image {
  height: 34.3rem;
  max-width: 63.3rem;
  width: 100%;
}

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

.sky__bl2-text {
  max-width: 65.2rem;
  width: 100%;
}

.sky__bl2-text p {
  margin-bottom: 2.5rem;
}

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

.sky__bl3 {
  background: #fafafa;
  border-radius: 0.9rem;
  margin-top: 6rem;
  padding: 5.9rem 5.2rem 6.1rem 4.8rem;
}

.sky__bl3-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.sky__bl3-text {
  max-width: 65.2rem;
  width: 100%;
}

.sky__bl3-text .h2 {
  margin-bottom: 2.4rem;
}

.sky__bl3-text .h2:nth-of-type(2) {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.sky__bl3-text p {
  margin-bottom: 2.2rem;
}

.sky__bl3-text p:first-of-type {
  margin-bottom: 3.9rem;
}

.sky__bl3-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 52.8rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4.4rem;
  padding-top: 1rem;
}

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

.sky__bl4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7rem;
  margin-top: 4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12rem;
}

.sky__bl4-image {
  height: 51.2rem;
  max-width: 61.2rem;
  width: 100%;
}

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

.sky__bl4-text {
  max-width: 62.2rem;
  width: 100%;
}

.sky__bl4-text .h2 {
  margin-bottom: 2.3rem;
}

.sky__bl4-text p {
  margin-bottom: 2.4rem;
}

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

.sliding-doors__hero .h1 {
  margin-bottom: 0.4rem;
}

.sliding-doors__hero-area {
  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;
}

.sliding-doors__hero-text {
  max-width: 65.1rem;
  width: 100%;
}

.sliding-doors__hero-text li,
.sliding-doors__hero-text p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.195;
}

.sliding-doors__hero-text p:first-of-type {
  margin-bottom: 2rem;
}

.sliding-doors__hero-text ol,
.sliding-doors__hero-text ul {
  padding-left: 1.9rem;
}

.sliding-doors__hero-video {
  max-width: 60.8rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.sliding-doors__hero-video .video-item__preview {
  height: 35.1rem;
}

.sliding-doors__hero-video .video-item__preview img {
  height: 100%;
}

.sliding-doors__types {
  padding: 6.8rem 0 6.1rem;
}

.sliding-doors__types .h2 {
  font-size: 3.5rem;
  font-weight: 400;
  text-align: center;
}

.sliding-doors__types-grid {
  display: grid;
  gap: 3.8rem 2.2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.8rem;
}

.sliding-doors__types-item {
  text-align: center;
}

.sliding-doors__types-item:hover .sliding-doors__types-item-image img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.sliding-doors__types-item span {
  font-size: 2.5rem;
}

.sliding-doors__types-item-image {
  border-radius: 0.9rem;
  height: 45rem;
  margin-bottom: 1.1rem;
  overflow: hidden;
  width: 100%;
}

.sliding-doors__types-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.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;
}

.sliding-doors__variants {
  background: #fafafa;
  border-radius: 0.9rem;
  padding: 3.3rem 7.5rem 7.3rem;
}

.sliding-doors__variants .h2 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 4.9rem;
  text-align: center;
}

.sliding-doors__variants-grid {
  display: grid;
  gap: 6rem 4.3rem;
  grid-template-columns: repeat(4, 1fr);
}

.sliding-doors__variants-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;
}

.sliding-doors__variants-item span {
  font-size: 1.6rem;
  font-weight: 300;
}

.sliding-doors__variants-item:nth-of-type(5),
.sliding-doors__variants-item:nth-of-type(6),
.sliding-doors__variants-item:nth-of-type(7),
.sliding-doors__variants-item:nth-of-type(8) {
  margin-bottom: -1rem;
}

.sliding-doors__variants-item:nth-of-type(5)
  .sliding-doors__variants-item-image,
.sliding-doors__variants-item:nth-of-type(6)
  .sliding-doors__variants-item-image,
.sliding-doors__variants-item:nth-of-type(7)
  .sliding-doors__variants-item-image,
.sliding-doors__variants-item:nth-of-type(8)
  .sliding-doors__variants-item-image {
  margin-bottom: 2rem;
}

.sliding-doors__variants-item-image {
  height: 8.6rem;
  margin-bottom: 1rem;
  max-width: 28rem;
  mix-blend-mode: darken;
  width: 100%;
}

.sliding-doors__variants-item-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.sliding-partitions__header {
  margin-bottom: 4.4rem;
  max-width: 77rem;
}

.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-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 {
  background: #f6f8f9;
  border-radius: 0.9rem;
  margin-top: 2.6rem;
  padding: 2rem;
}

.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--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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.4rem;
  padding: 3rem 2.6rem;
  -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: 48.1rem;
  text-align: right;
  width: 100%;
}

.sliding-partitions__tab-outer-text p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.375;
  margin-bottom: 0.7rem;
}

.sliding-partitions__tab-outer-text p:last-of-type {
  margin-bottom: 0;
}

.sliding-partitions__tab-outer-title {
  font-size: 2.5rem;
  font-weight: 400;
  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: 2rem;
}

.sliding-partitions__tab-outer-price span span {
  font-size: 2.5rem;
  font-weight: 600;
  padding: 0 0.4rem;
}

.sliding-partitions__tab-outer-btn {
  font-weight: 600;
  gap: 1rem;
  height: 4.6rem;
  margin-top: 2.3rem;
  max-width: 19.8rem;
  width: 100%;
}

.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;
}

.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: 54.5rem;
  padding-top: 10.2rem;
  width: 100%;
}

.smart-lock__bl1-text .h1 {
  margin-bottom: 5.6rem;
}

.smart-lock__bl1-text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
}

.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: 1.8rem;
  font-weight: 300;
}

.smart-lock__bl2-text-flex p b {
  display: block;
  font-size: 1.8rem;
  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: 1.8rem;
  font-weight: 600;
  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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s 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: #adadad;
}

.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 {
  margin-bottom: 3.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: 3.6rem;
}

.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.6rem;
  font-weight: 300;
  margin-bottom: 0;
}

.smart-lock__section-description-item .h3 {
  font-size: 1.8rem;
  font-weight: 600;
  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.6rem;
  font-weight: 300;
  margin-bottom: 2.8rem;
  max-width: 62.7rem;
}

.smart-lock__section-bottom .h3 {
  font-size: 2.5rem;
  font-weight: 600;
  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.6rem;
  margin-bottom: 0;
}

.smart-lock__section-bottom-features-item p b {
  display: block;
  font-weight: 600;
  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.6rem;
  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: 23.7rem;
  width: 100%;
}

.smart-lock__section--1 .smart-lock__section-description-col:nth-of-type(2) {
  max-width: 31.1rem;
  width: 100%;
}

.smart-lock__section--1 .smart-lock__section-description {
  padding-right: 3rem;
}

.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: 24.7rem;
  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-description-item {
  margin-bottom: 4.7rem;
}

.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-description-item .h3 {
  margin-bottom: 0.8rem;
}

.smart-lock__section--3 .smart-lock__section-description-item {
  margin-bottom: 1.3rem;
}

.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-description-item .h3 {
  margin-bottom: 0.8rem;
}

.smart-lock__section--4 .smart-lock__section-description-item {
  margin-bottom: 1.3rem;
}

.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-p {
  margin-bottom: 2.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-description-item .h3 {
  margin-bottom: 0.8rem;
}

.smart-lock__section--5 .smart-lock__section-description-item {
  margin-bottom: 1.3rem;
}

.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-col:nth-of-type(2)
  .smart-lock__section-description-item {
  margin-bottom: 0.8rem;
}

.smart-lock__section--6 .smart-lock__section-description {
  padding-right: 2rem;
  padding-top: 0;
}

.smart-lock__section--6 .smart-lock__section-description-item .h3 {
  margin-bottom: 0.8rem;
}

.smart-lock__section--6 .smart-lock__section-description-item {
  margin-bottom: 0;
}

.smart-lock__section--6 .smart-lock__section-bottom {
  margin-bottom: 2rem;
}

.smart-solutions .h1 {
  margin-bottom: 5.5rem;
}

.smart-solutions__grid {
  display: grid;
  gap: 3.8rem 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}

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

.smart-solutions__item:hover .smart-solutions__item-image img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.smart-solutions__item-image {
  border-radius: 1.2rem;
  height: 45rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  width: 100%;
}

.smart-solutions__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.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;
}

.smart-solutions__item-title {
  font-size: 2.5rem;
  line-height: 0.88;
  padding: 0 2rem;
  text-align: center;
}

.smart-solutions__content {
  padding-top: 7.8rem;
}

.smart-solutions__content li,
.smart-solutions__content p {
  font-size: 1.6rem;
  line-height: 1.4375;
}

.smart-solutions__content .custom-ul li:after {
  top: 0.5rem;
}

.smart-solutions__content .custom-ul li {
  margin-bottom: 1rem;
}

.smart-solutions__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7rem;
  margin-bottom: 5.8rem;
  padding-left: 4.8rem;
  padding-right: 11.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.smart-solutions__content-top-image {
  border-radius: 0.9rem;
  height: 36.8rem;
  max-width: 58.2rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

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

.smart-solutions__content-top-text .custom-ul {
  margin-bottom: 0;
  margin-top: 2.5rem;
}

.smart-solutions__content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.2rem;
  padding-left: 4.8rem;
  padding-right: 7.8rem;
}

.smart-solutions__content-bottom .custom-ul {
  margin: 1.5rem 0;
}

.smart-solutions__content-bottom-text p:first-of-type {
  max-width: 59.7rem;
}

.smart-solutions__content-bottom-image {
  height: 36.8rem;
  max-width: 58.2rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

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

.stock__header {
  margin-bottom: 3.5rem;
  max-width: 79.7rem;
}

.stock__header .h1 {
  margin-bottom: 2.8rem;
}

.stock__header p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
}

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

.stock__grid {
  display: grid;
  gap: 5.8rem 2.9rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 13rem;
}

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

.stock__item-image {
  border-radius: 0.9rem;
  height: 44.7rem;
  margin-bottom: 2.3rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.stock__item-image img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  -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;
}

.stock__item-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  bottom: 1.2rem;
  color: #fff;
  font-size: 6rem;
  font-weight: 700;
  gap: 1.5rem;
  line-height: 1.15;
  right: 3rem;
}

.stock__item-num span {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
}

.stock__item-title {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  left: 2.3rem;
  line-height: 1.15;
  max-width: 36.4rem;
  position: absolute;
  top: 4.3rem;
}

.stock__item-description {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 3;
  overflow: hidden;
}

.stock__item-description p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
}

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

.stock-detail {
  padding-bottom: 5rem;
}

.stock-detail__content {
  border-bottom: 1px solid rgba(31, 34, 41, 0.2);
  margin-bottom: 7.3rem;
  padding-bottom: 18rem;
}

.stock-detail__content b {
  font-weight: 500;
}

.stock-detail__content .h1,
.stock-detail__content h1 {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.15;
  max-width: 112.4rem;
}

.stock-detail__content img {
  display: block;
}

.stock-detail__content li,
.stock-detail__content p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
  margin-bottom: 1.7rem;
}

.stock-detail__content .h2,
.stock-detail__content h2 {
  font-size: 2.8rem;
  font-weight: 500;
  margin: 2rem 0;
}

.stock-detail__content .h3,
.stock-detail__content h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 2rem 0;
}

.stock-detail__content .h4,
.stock-detail__content h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 2rem 0;
}

.stock-detail__content ol,
.stock-detail__content ul {
  margin: 2rem 0;
  padding: 0 2rem;
}

.stock-detail__content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5.2rem;
  margin-top: 4.2rem;
  padding-right: 2.6rem;
}

.stock-detail__image {
  max-width: 71.2rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

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

.stock-detail__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 3.5rem;
  padding-top: 1rem;
  width: 100%;
}

.stock-detail__text .mb-30 {
  margin-bottom: 3rem;
}

.stock-detail__footer {
  gap: 6rem;
}

.stock-detail__footer,
.stock-detail__price-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stock-detail__price-main {
  font-size: 3.5rem;
  line-height: 1.15;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 1.5rem;
}

.stock-detail__price-main span {
  font-size: 6rem;
  font-weight: 700;
}

.stock-detail__footer-btn {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 400;
  height: 7.2rem;
  max-width: 32.6rem;
  width: 100%;
}

.stock-detail__footer-back {
  font-size: 1.6rem;
  height: 5rem;
  margin-top: 4.1rem;
  max-width: 26.5rem;
  width: 100%;
}

.stock-detail__footer-back:hover span:before {
  content: "";
  -webkit-transform: translateX(-1rem);
  -ms-transform: translateX(-1rem);
  transform: translateX(-1rem);
}

.stock-detail__footer-back span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.stock-detail__footer-back span:before {
  background: url(../img/icons/back-icon.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 0.8rem;
  -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: 1.7rem;
}

.sky_page {
  margin: 0 auto;
  max-width: 1170px;
}

.sky-page h1 {
  margin-bottom: 1.6rem;
  text-align: center;
}

.sky-page {
  padding-bottom: 7.6rem;
}

.about-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;
  -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: 30px;
}

.about-content-row .col-md-6 {
  padding: 0 10px;
  width: 48%;
}

.about-item__image {
  position: relative;
}

.about-item__image.videobl {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  padding-right: 30px;
  position: relative;
  width: 100%;
}

.about-item__image.videobl img {
  border-radius: 10px;
  -o-object-fit: fill;
  object-fit: fill;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.about-item__image.videobl .play {
  background-size: contain;
  background: url(../img/sky-play.png) no-repeat 50%;
  border-radius: 10px;
  height: 45px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 44%;
  -webkit-transition: all 0.35s ease-out;
  width: 65px;
}

.about-item__image.videobl a {
  display: block;
  height: 100%;
  position: relative;
}

.about-item__image.videobl a:before {
  background: hsla(0, 0%, 100%, 0);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

.about-item__image.videobl a:hover:before {
  background: hsla(0, 0%, 100%, 0.196);
}

.about-item__image.videobl a:hover .play {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.about-item__image.videobl a p {
  color: #fff;
  font-family: Roboto;
  font-size: 24px;
  font-weight: 100;
  left: 6%;
  line-height: 1.2;
  margin: 0;
  position: absolute;
  top: 40%;
}

.about-item__image.videobl:hover img {
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.49);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.49);
}

.about-content__title {
  color: #171716;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sky_page p {
  color: #171717;
  display: block;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}

.about-cooperation__title {
  color: #171717;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 50px;
  position: relative;
}

.about-cooperation__title span {
  background: #fff;
  padding-right: 40px;
  position: relative;
  z-index: 10;
}

.about-cooperation__title:after {
  background-color: #eee;
  content: "";
  display: block;
  height: 8px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  width: 100%;
}

.mid_title_sky_page {
  color: #171717;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 0 10px;
  text-transform: uppercase;
}

.desc_page_sky {
  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;
}

.desc_page_sky .col-md-6 {
  width: 49%;
}

.left_side_sky p {
  color: #171717;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4;
}

.pictures_row_sky {
  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;
}

.pictures_row_sky .col-md-6 {
  width: 49%;
}

.sky_block_sky {
  margin: 0 96px 30px;
}

.title_sky_block_sky {
  color: #171717;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
}

.descript_sky_block_sky p {
  color: #171717;
}

.disigne_feat {
  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: 30px;
}

.disigne_feat .col-md-7 {
  width: 55%;
}

.disigne_feat .col-md-5 {
  width: 43%;
}

.about-item__image-shape {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  bottom: 35px;
  position: absolute;
  right: -9px;
  top: 30px;
  width: 1px;
}

.about-item__image-shape:after {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 50px;
  width: 35px;
}

.about-item__image-shape span {
  background-color: #c4161c;
  border: 6px solid #fff;
  border-radius: 50%;
  height: 19px;
  left: -9px;
  position: absolute;
  top: 41px;
  width: 19px;
  z-index: 10;
}

.about-item__image-shape_2 {
  left: -22px;
  right: auto;
}

.about-item__image-shape_2:after {
  right: 100%;
}

.block_slat-doors h2 {
  color: #000;
  font-family: Gilroy, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}

.slat-doors-text {
  list-style: none;
  margin: 0;
  padding: 0;
}

.slat-doors-text .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -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: 0 0 30px;
  text-align: justify;
}

.slat-doors-text .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.slat-doors-text .item .image,
.slat-doors-text .item .text {
  width: 47%;
}

.slat-doors-text .item h1 {
  color: #000;
  font-family: Gilroy, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
}

.slat-doors-text .item p {
  color: #292d32;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.option-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  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;
  margin: 0 0 30px;
}

.option-list .item {
  list-style: none;
  margin: 0 10px 15px 0;
  padding: 0;
  text-align: center;
  width: 87px;
}

.option-list .item .image {
  margin-bottom: 3px;
}

.option-list .item .image img {
  margin: 0 auto;
}

.option-list .item .name {
  color: #292d32;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}

.slat-doors-slider {
  background: #f5f5f5;
  padding: 40px 69px 50px;
  position: relative;
}

.slat-doors-slider ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.slat-doors-slider .slider-nav,
.slat-doors-slider h2 {
  text-align: center;
}

.slat-doors-slider .slider-nav .slider-pager {
  display: none;
}

.slat-doors-slider .slider-nav .slider-prev {
  background-image: url(../img/designers_arrow_left.svg);
}

.slat-doors-slider .slider-nav .slider-next,
.slat-doors-slider .slider-nav .slider-prev {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  width: 20px;
  z-index: 100;
}

.slat-doors-slider .slider-nav .slider-next {
  background-image: url(../img/designers_arrow_right.svg);
  display: none;
}

.slat-doors-slider .slider-nav .slider-prev {
  display: none;
}

.slat-doors-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: 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;
}

.slat-doors-item .left {
  margin-right: 0.5%;
  width: 32.9%;
}

.slat-doors-item .center {
  margin-right: 0.5%;
  width: 33.2%;
}

.slat-doors-item .right {
  width: 32.9%;
}

.slat-doors-item .image {
  border-radius: 13px;
  display: block;
  margin-bottom: 8px;
  overflow: hidden;
}

.slat-doors-item .left {
  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;
}

.slat-doors-item .left .image {
  width: 49%;
}

.slat-doors-item .right {
  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;
}

.slat-doors-item .right .image {
  width: 49%;
}

.vancancies {
  padding-bottom: 22.8rem;
}

.vancancies__header {
  margin-bottom: 3.8rem;
}

.vancancies__header .h1 {
  font-size: 5rem;
  margin-bottom: 5rem;
}

.vancancies__header p {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 0;
}

.vancancies__grid {
  display: grid;
  gap: 4.4rem 4rem;
  grid-template-columns: repeat(2, 1fr);
}

.vancancies__item {
  background: #fff;
  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);
  height: 39.6rem;
  padding: 6.1rem 8.2rem 4.4rem 5rem;
}

.vancancies__item:nth-of-type(3) .h2,
.vancancies__item:nth-of-type(4) .h2 {
  margin-bottom: 1.4rem;
}

.vancancies__item:nth-of-type(3) .vancancies__item-phone,
.vancancies__item:nth-of-type(4) .vancancies__item-phone {
  margin-top: 3rem;
}

.vancancies__item .h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
}

.vancancies__item-description p {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.vancancies__item-description p span {
  font-size: 3.1rem;
}

.vancancies__item-phone {
  margin-top: 4.2rem;
}

.vancancies__item-phone p {
  font-size: 2rem;
}

.vancancies__item-btn {
  border-radius: 6.6rem;
  font-size: 2.1rem;
  font-weight: 400;
  gap: 0.6rem;
  height: 6.6rem;
  margin-top: 2.7rem;
  max-width: 54.8rem;
  width: 100%;
}

.vancancies__item-btn span {
  font-weight: 500;
}

.vantages {
  padding-bottom: 11rem;
}

.vantages li,
.vantages p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.66667;
}

.vantages__bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.7rem;
  margin-top: 5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.vantages__bl1-text {
  max-width: 81.7rem;
  width: 100%;
}

.vantages__bl1-text .h2 {
  margin-bottom: 2.9rem;
  max-width: 50.7rem;
}

.vantages__bl1-image {
  max-width: 54.4rem;
  width: 100%;
}

.vantages__bl1-image img {
  width: 100%;
}

.vantages__bl2 {
  background: #fafafa;
  border-radius: 0.9rem;
  margin-top: 5rem;
  padding: 3.8rem 3.2rem 4rem 4rem;
}

.vantages__bl2-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.9rem;
  margin-bottom: 4.7rem;
}

.vantages__bl2-header .h2 {
  margin-bottom: 0;
  max-width: 50.7rem;
  width: 100%;
}

.vantages__bl2-header p {
  margin-bottom: 0;
  max-width: 72rem;
}

.vantages__bl2-body {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.vantages__bl2-body,
.vantages__bl2-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vantages__bl2-left {
  gap: 2.5rem;
  margin-right: 3.1rem;
  max-width: 24.7rem;
  padding-top: 2.4rem;
  width: 100%;
}

.vantages__bl2-left-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.7rem 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.vantages__bl2-left-items span {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
}

.vantages__bl2-image {
  margin-right: 1.4rem;
  max-width: 69.7rem;
  width: 100%;
}

.vantages__bl2-text {
  max-width: 33.9rem;
  width: 100%;
}

.vantages__bl2-text ul {
  margin: 0;
  padding: 1rem 2.9rem;
}

.vantages__bl2-text li {
  line-height: 1.44444;
  margin-bottom: 1.6rem;
}

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

.vantages__bl2-footer {
  margin-top: 3rem;
}

.vantages__bl2-footer p {
  line-height: 1.44444;
  margin-bottom: 0;
  max-width: 117.9rem;
}

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

.vantages__bl3-text {
  max-width: 92.7rem;
  width: 100%;
}

.vantages__bl3-text p {
  line-height: 1.44444;
}

.vantages__bl3-text .h2 {
  margin-bottom: 2.5rem;
  max-width: 48.1rem;
}

.vantages__bl3-image {
  max-width: 34.4rem;
  width: 100%;
}

.vantages__bl3-image img {
  border-radius: 0.9rem;
  width: 100%;
}

.vantages__bl4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3.3rem;
}

.vantages__bl4-image {
  max-width: 67.7rem;
  width: 100%;
}

.vantages__bl4-image img {
  border-radius: 0.9rem;
  width: 100%;
}

.vantages__bl4-text {
  max-width: 63.5rem;
  padding-bottom: 3rem;
  width: 100%;
}

.vantages__bl4-text .h2 {
  margin-bottom: 3.1rem;
}

.vantages__bl4-text p {
  line-height: 1.44444;
}

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

.vantages__bl5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin-top: 3.3rem;
}

.vantages__bl5-text {
  width: 100%;
}

.vantages__bl5-text:first-of-type {
  max-width: 62.4rem;
}

.vantages__bl5-text:nth-of-type(2) {
  max-width: 70rem;
}

.vantages__bl5-text .h2 {
  margin-bottom: 3.1rem;
}

.vantages__bl5-text p {
  line-height: 1.44444;
}

.vantages__bl6 {
  background: #fafafa;
  border-radius: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3.6rem 12.7rem 3.6rem 4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
  margin-top: 4.8rem;
}

.vantages__bl6-text {
  max-width: 82.5rem;
  padding-top: 1rem;
  width: 100%;
}

.vantages__bl6-text .h2 {
  margin-bottom: 2rem;
  max-width: 62.9rem;
}

.vantages__bl6-text ul {
  margin: 2.3rem 0 0;
  padding: 0 2.6rem;
}

.vantages__bl6-text li {
  margin-bottom: 1rem;
}

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

.vantages__bl6-text p {
  max-width: 72rem;
}

.vantages__bl6-image {
  max-width: 29.2rem;
  mix-blend-mode: darken;
  width: 100%;
}

.vantages__bl6-image img {
  width: 100%;
}

.vantages__bl7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2rem;
}

.vantages__bl7-text {
  max-width: 69.2rem;
  width: 100%;
}

.vantages__bl7-text .h2 {
  margin-bottom: 2.3rem;
  margin-top: 3.1rem;
}

.vantages__bl7-image {
  max-width: 68.9rem;
  width: 100%;
}

.vantages__bl7-image img {
  border-radius: 0.9rem;
  width: 100%;
}

.vantages__bl8 {
  background: #fafafa;
  border-radius: 0.9rem;
  display: grid;
  gap: 8.7rem 4.3rem;
  grid-template-columns: 59.8rem 67.7rem;
  margin-top: 5.1rem;
  padding: 6rem 4.2rem 5.3rem 4rem;
}

.vantages__bl8-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.vantages__bl8-item:nth-of-type(4) p {
  margin-top: 4.3rem;
}

.vantages__bl8-item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 8.1rem;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-top: 0.5rem;
}

.vantages__bl8-item-text .h2 {
  margin-bottom: 1.9rem;
}

.vantages__bl8-item-text p {
  line-height: 1.55556;
  margin-bottom: 0;
}

.vantages__bl9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.3rem;
  padding-right: 14.7rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 4rem;
  justify-content: space-between;
}

.vantages__bl9-text {
  max-width: 74.2rem;
  width: 100%;
}

.vantages__bl9-text .h2 {
  margin-bottom: 3.1rem;
}

.vantages__bl9-image {
  max-width: 40.6rem;
  width: 100%;
}

.ws-wnd .fancybox-bg {
  background: hsla(0, 0%, 100%, 0.8);
}

.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: 5rem;
  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;
}

.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 h3 {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 500;
}

.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;
}

@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;
  }

  .catalog-item:hover {
    background: #fff;
    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);
  }

  .catalog-item:hover:after,
  .catalog-item:hover:before {
    opacity: 1;
  }

  .custom-checkbox:hover span {
    color: #000;
  }

  .catalog-section .catalog__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .catalog-section .catalog-item__description {
    display: none;
  }

  .catalog-section .catalog__grid .catalog-item:nth-of-type(4n) {
    border-color: #d6d7d8;
  }

  .catalog-section .catalog__grid .catalog-item:nth-of-type(5n) {
    border-color: transparent;
  }

  .catalog-section .catalog__grid .catalog-item:after {
    left: -6px;
    width: 6px;
  }

  .catalog-item .catalog-item__to-favorites .icon,
  .ed-catalog-item .catalog-item__to-favorites .icon {
    height: 2rem;
    width: 2.5rem;
  }

  .catalog-item .catalog-item__to-favorites.ws-waiting,
  .ed-catalog-item .catalog-item__to-favorites.ws-waiting {
    position: absolute;
  }

  .catalog-item .catalog-item__to-favorites .ws-waiter,
  .ed-catalog-item .catalog-item__to-favorites .ws-waiter {
    display: none;
  }

  .header-bottom__nav {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
  }

  .header-bottom__nav ul {
    gap: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .card__offers-grid {
    margin: 0 -0.5rem;
  }

  .card__aside {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .header-top-nav a:hover:after {
    width: 100%;
  }

  .footer__left {
    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: 1rem;
  }

  .footer__bottom,
  .footer__left .footer__links,
  .footer__left .footer__phone {
    display: none;
  }

  .footer__bottom ~ .footer__year {
    display: none;
  }

  .about .h2 {
    font-weight: 400;
  }

  .about .h2,
  .about__me .h1 {
    font-size: 5rem;
    line-height: 1.15;
  }

  .about__me .h1 {
    margin-bottom: 6.7rem;
  }

  .articles-lvl2 .articles__content-section ul a {
    padding: 0.92rem 0;
  }

  .articles-lvl2 .articles__content {
    padding-top: 2rem;
  }

  .secret-card .card__aside {
    max-width: 47.6rem;
  }

  .secret-card .card__content {
    padding-left: 3.7rem;
  }

  .secret-card .card__area {
    padding-left: 0;
  }

  .secret-card .card__image {
    border-radius: 0.9rem;
    height: 47.6rem;
  }

  .secret-card .card__title {
    margin-top: 3.7rem;
  }

  .secret-card .card__buttons {
    padding: 0 8.7rem;
  }

  .secret-card .card__info {
    margin-left: 7rem;
    margin-top: 4.5rem;
    max-width: 34rem;
  }

  .secret-card .card__info-p {
    color: rgba(31, 34, 41, 0.5);
    font-size: 1.6rem;
    font-weight: 300;
    margin-left: 0;
  }

  .secret-card .card__info-item {
    display: inline-block;
  }

  .secret-card .card__info-item span {
    max-width: 100%;
  }

  .card__color:hover {
    outline: 1px solid rgba(49, 54, 61, 0.1);
    outline-offset: 0.3rem;
  }

  .card__offer:hover .card__offer-image {
    outline: 1px solid rgba(49, 54, 61, 0.1);
    outline-offset: 0.4rem;
  }

  .card__offer:hover .card__offer-title {
    color: #000;
  }

  .catalog__grid.catalog__grid--doorhandle .catalog-item__order {
    height: 3.5rem;
    margin: 0 auto;
    max-width: 15.1rem;
    width: 100%;
  }

  .ws-wnd.ws-wnd--doorhandle .ws-modal__window {
    padding: 5rem 6.2rem;
  }

  .catalog__grid .catalog-item__image img {
    height: 29.7rem;
  }

  .ws-contact__data-btns,
  .ws-contact__regions select,
  .ws-contact__regions-content select {
    display: none;
  }

  .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;
  }

  .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;
  }

  .collection-category__item:hover .collection-category__item-hover {
    opacity: 1;
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }

  .collection-category__item:hover .collection-category__item-hover p {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property:
      transform,
      -webkit-transform;
  }

  .collection-category__item:hover .collection-category__item-bg {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
  }

  .promotional-item:hover .promotional-item__bg:after {
    opacity: 1;
  }

  .promotional-item:hover .promotional-item__bg img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
  }

  .promotional-item:hover .promotional-item__content {
    color: #fff;
  }

  .promotional-item:hover .promotional-item__title {
    color: #fff;
    -webkit-transform: translateY(-1rem);
    -ms-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }

  .news__item:first-of-type {
    grid-area: 1/1/3/3;
    padding: 3.8rem 5.2rem;
  }

  .news__item:first-of-type .news__item-content {
    max-width: 38rem;
  }

  .news__item:first-of-type .news__item-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    max-width: 30.5rem;
  }

  .news__item:first-of-type p {
    font-size: 1.5rem;
  }

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

  .news__item-title {
    font-size: 1.6rem;
  }

  .interior-catalog--v2 .interior-catalog__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .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--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: -4.3rem;
  }

  .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.7rem;
  }

  .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: 4.5rem;
  }

  .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: -3.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;
  }

  .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;
  }

  .metalcard.design--dsf .metalcard__reverse-actions,
  .metalcard__holder.design--dsf .metalcard__reverse-actions {
    max-width: 45.7rem;
    padding: 0 2.7rem;
  }

  .partners .h1,
  .partners .h2 {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.2;
  }

  .portfolio-main .h1 {
    font-size: 5rem;
  }

  .rail .h2,
  .sky .h2 {
    font-size: 3rem;
    font-weight: 400;
  }

  .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;
  }

  .smart-solutions .where-buy {
    margin-top: 5.1rem;
  }

  .stock__header .h1,
  .vantages .h1 {
    font-size: 5rem;
  }

  .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%;
  }
}

@media (min-width: 1930px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1700px) {
  html {
    font-size: 9px;
  }
}

@media (max-width: 1600px) {
  .gipermenu.is-scroll .gipermenu__area {
    height: 63rem;
  }

  .gipermenu__area {
    height: 56rem;
  }

  .cart-fixed__body {
    max-height: 47.5rem;
  }
}

@media (max-width: 1500px) {
  .control {
    font-size: 1.5rem;
  }

  .gipermenu.is-scroll .gipermenu__area {
    height: 66rem;
  }

  .gipermenu__area {
    height: 59rem;
  }
}

@media (max-width: 1430px) {
  html {
    font-size: 8.6px;
  }
}

@media (max-width: 1400px) {
  .h1 {
    font-size: 3.3rem;
  }

  .catalog-item__order {
    font-size: 1.3rem;
  }

  .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;
  }

  .header-top-nav a:after {
    height: 1px;
  }

  .gipermenu.is-scroll .gipermenu__area {
    height: 58rem;
  }

  .gipermenu__area {
    height: 50rem;
  }

  .cart-fixed__body {
    max-height: 42.5rem;
  }

  .catalog-filter__show-more {
    font-size: 1.4rem;
  }
}

@media (max-width: 1320px) {
  html {
    font-size: 8.4px;
  }
}

@media (max-width: 1200px) {
  .cart-fixed__body {
    max-height: 40vh;
  }
}

@media (max-width: 1100px) {
  body.is-lock {
    padding-right: 0;
  }
  .about-item__image-shape {
    display: none;
  }

  .about-content-row .col-md-6 {
    margin-bottom: 20px;
    padding: 0 10px;
    width: 100%;
  }

  .about-item__image.videobl img {
    height: 340px;
  }

  .about-item__image img,
  .about-item__image.videobl img {
    -o-object-fit: fill;
    object-fit: fill;
    width: 100%;
  }

  .about-item__image img {
    height: auto;
  }

  .desc_page_sky .col-md-6,
  .pictures_row_sky .col-md-6 {
    margin-bottom: 20px;
    width: 100%;
  }

  .pictures_row_sky img {
    height: auto;
    margin-bottom: 10px;
    width: 100%;
  }

  .disigne_feat {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .disigne_feat .col-md-5,
  .disigne_feat .col-md-7 {
    margin-bottom: 20px;
    width: 100%;
  }

  .disigne_feat .col-md-5 {
    text-align: center;
  }

  .disigne_feat .col-md-5 img {
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .cart-fixed__body {
    max-height: 38.8vh;
  }
}

@media (max-width: 900px) {
  .slat-doors-slider {
    padding: 20px;
    position: relative;
  }
}

@media (max-width: 776px) {
  .control {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
  }

  .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: 12px;
    font-weight: 500;
    width: 100%;
  }

  .select-box__current {
    border: 0.62px solid rgba(31, 34, 41, 0.3);
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    height: 34px;
    padding: 0 10px;
  }

  .select-box__current:after {
    background: url(../img/icons/sort-icon.svg) 50% / contain no-repeat;
    content: "";
    display: inline-block;
    height: 1.5rem;
    margin-left: auto;
    width: 1.7rem;
  }

  .select-box__icon {
    display: none;
    right: 25px;
    width: 10px;
  }

  .select-box__input-text {
    font-weight: 500;
  }

  .select-box__list {
    border-radius: 12px;
    font-size: 12px;
    margin-top: 4px;
  }

  .select-box__option {
    padding: 6px 7px;
  }

  .h1 {
    font-size: 23px;
  }

  .h2 {
    font-size: 16px;
    font-weight: 700;
  }

  .h3 {
    font-size: 15px;
  }

  .container,
  .container-1542 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .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-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;
  }

  .catalog__grid {
    gap: 24px 0;
  }

  .catalog__grid .catalog-item {
    padding: 26px 11px 14px;
  }

  .catalog__grid .catalog-item__image img {
    height: 185px;
  }

  .catalog__grid .catalog-item__article {
    font-size: 10px;
    left: 9px;
    top: 8px;
  }

  .catalog__grid .catalog-item__to-favorites {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 25px;
    right: 6px;
    top: 1px;
    width: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .catalog__grid .catalog-item__to-favorites .icon {
    height: 14px;
    width: 17px;
  }

  .catalog__grid .catalog-item__title {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .catalog__grid .catalog-item__description {
    display: none;
  }

  .catalog__grid .catalog-item__price-main {
    font-size: 15px;
  }

  .catalog__grid .catalog-item__price-old {
    font-size: 8px;
  }

  .catalog__grid .catalog-item__to-cart {
    height: 22px;
    max-width: 44px;
    width: 100%;
  }

  .catalog__grid .catalog-item__to-cart .icon {
    height: 13px;
    width: 14px;
  }

  .catalog__grid .catalog-item__order {
    font-size: 7px;
    height: 22px;
  }

  .catalog__grid .catalog-item__buttons {
    gap: 5px;
    margin-top: 4px;
  }

  .catalog__grid .catalog-item__stickers {
    gap: 2px;
    top: 28px;
  }

  .catalog__grid .catalog-item__sticker {
    font-size: 14px;
    height: 27px;
    padding-top: 2px;
    width: 27px;
  }

  .catalog__grid .catalog-item__sticker--hit {
    font-size: 11px;
  }

  .catalog__grid .catalog-item__content {
    margin-top: 8px;
  }

  .slider-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
  }

  .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;
  }

  .catalog-slider__header {
    margin-bottom: 20px;
  }

  .catalog-slider__nav {
    display: none;
  }

  .catalog-slider {
    padding-bottom: 30px;
  }

  .catalog-slider .h2 {
    margin-bottom: 0;
    text-align: left;
  }

  .catalog-slider__slider {
    margin-top: 12px;
  }

  .catalog-slider__slider .swiper-slide .catalog-item,
  .catalog-slider__slider .swiper-slide .ed-catalog-item {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: initial;
    transition: initial;
  }

  .catalog-slider__slider .catalog-item__image img {
    height: 153px;
  }

  .catalog-slider__slider .catalog-item__article {
    font-size: 9px;
    left: 14px;
    top: 3px;
  }

  .catalog-slider__slider .catalog-item__to-favorites {
    right: 4px;
    top: -2px;
  }

  .catalog-slider__slider .catalog-item__to-favorites .icon {
    height: 13px;
    width: 19px;
  }

  .catalog-slider__slider .catalog-item__sticker {
    border-radius: 2px;
    font-size: 12px;
    height: 23px;
    padding-top: 2px;
    width: 23px;
  }

  .catalog-slider__slider .catalog-item__sticker--hit {
    font-size: 8px;
  }

  .catalog-slider__slider .catalog-item__stickers {
    gap: 2px;
    right: 2px;
    top: 21px;
  }

  .catalog-slider__slider .catalog-item {
    height: 100%;
    padding: 22px 14px 11px;
  }

  .catalog-slider__slider .catalog-item__title {
    font-size: 9px;
    margin-bottom: 5px;
  }

  .catalog-slider__slider .catalog-item__description {
    display: none;
    font-size: 8px;
  }

  .catalog-slider__slider .catalog-item__price {
    gap: 3px;
  }

  .catalog-slider__slider .catalog-item__price-main {
    font-size: 12px;
  }

  .catalog-slider__slider .catalog-item__price-old {
    font-size: 7px;
  }

  .catalog-slider__slider .catalog-item__content {
    margin-top: 5px;
  }

  .catalog-slider__slider .slider-pagination {
    display: none;
  }

  .catalog-slider__slider .catalog-item__buttons {
    gap: 4px;
    margin-top: 3px;
  }

  .catalog-slider__slider .catalog-item__order {
    border: 0.53px solid #1f2229;
    border-radius: 27px;
    font-size: 6px;
    height: 18px;
  }

  .catalog-slider__slider .catalog-item__to-cart {
    border-radius: 27px;
    height: 18px;
    width: 37px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .catalog-slider__slider .catalog-item__to-cart .icon {
    height: 12px;
    width: 12px;
  }

  .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;
  }

  .ed-catalog-item.design--osf .ed-catalog-item__images {
    gap: 8px;
    margin-bottom: 5px;
  }

  .ed-catalog-item.design--osfb .ed-catalog-item__images--slider {
    max-width: calc(var(--indexSize) * 34.3);
    padding: 0;
  }

  .ed-catalog-item.design--osfbv .ed-catalog-item__images--slider {
    max-width: calc(var(--indexSize) * 32.4);
  }

  .ed-catalog-item.design--dsfbb .ed-catalog-item__images--slider {
    max-width: calc(var(--indexSize) * 36.4);
  }

  .ed-catalog-item.design--ds .ed-catalog-item__images--slider {
    margin-left: -3px;
    max-width: calc(var(--indexSize) * 39.4);
    width: calc(100% + 3px);
  }

  .ed-catalog-item.design--dsf .ed-catalog-item__images--slider {
    max-width: calc(var(--indexSize) * 36.2);
  }

  body .ed-catalog-item__images--slider {
    gap: 0;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    width: 100%;
  }

  .ed-catalog-item__images-pagination {
    margin-top: 4px;
  }

  .ed-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;
  }

  .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;
  }

  .custom-ul {
    margin-bottom: 20px;
  }

  .custom-ul li {
    font-size: 12px;
    line-height: 1.5;
    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;
  }

  .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: 0;
    margin-left: -15px;
    margin-right: -15px;
    padding: 20px 34px 27px;
  }

  .download-catalog__area .h2 {
    font-size: 20px;
  }

  .download-catalog__grid {
    display: grid;
    gap: 33px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
  }

  .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));
  }

  .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/pause.svg) 50% / contain no-repeat;
    background: url(../img/icons/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/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;
  }

  .where-buy {
    border: none;
    margin: 30px 0 50px;
    padding: 0;
    -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: 300;
    line-height: 1.5;
  }

  .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;
  }

  .mark:after {
    height: 41%;
  }

  .catalog-section {
    margin-top: 40px;
  }

  .catalog-section .h2 {
    font-size: 18px;
    font-weight: 600;
  }

  .catalog-section__link {
    margin: 40px auto 0;
    max-width: 100%;
  }

  .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;
  }

  .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;
    -webkit-box-shadow: 0 0 4px 0 rgba(49, 54, 61, 0.1);
    box-shadow: 0 0 4px 0 rgba(49, 54, 61, 0.1);
    -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;
  }

  .static-products .h1,
  .static-products h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .static-products .h2,
  .static-products h2 {
    font-size: 20px;
  }

  .static-products .h3,
  .static-products h3 {
    font-size: 16px;
  }

  .static-products .custom-ul {
    margin: 20px 0;
  }

  .static-products .custom-ul li {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .static-products .custom-ul li br {
    display: none;
  }

  .static-products .custom-ul li:after {
    height: 13px;
    top: 3px;
    width: 15px;
  }

  .static-products .footer-form .h2 {
    font-size: 20px;
  }

  .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;
  }

  .ed-catalog-item .catalog-item__to-favorites {
    right: 8px;
    top: 2px;
  }

  .ed-catalog-item .catalog-item__to-favorites .icon {
    height: 13px;
    width: 19px;
  }

  .card__info-item span:first-of-type {
    max-width: 30%;
  }

  .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%;
  }

  .subscribe {
    margin: 30px 0 0;
  }

  .subscribe .container {
    background: transparent;
    padding: 0;
  }

  .subscribe__area:after {
    display: none;
  }

  .subscribe__area {
    background: url(../img/subscribe-bg-mobile.jpg) 50% / cover no-repeat;
    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;
  }

  .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;
  }

  .header {
    display: none;
  }

  .header__wa {
    margin-left: 0;
  }

  .header__tg {
    margin-left: 4px;
  }

  .header-top-nav {
    display: block;
    margin: 0;
  }

  .header-top-nav 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: 0;
  }

  .header-top-nav a,
  .header-top-nav li {
    font-size: 18px;
  }

  .header-top-nav a {
    display: block;
    padding: 4.1px 0;
  }

  .header-bottom__nav ul {
    gap: 6px;
    height: auto;
    overflow-x: scroll;
    padding: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .header-bottom__nav ul::-webkit-scrollbar {
    display: none;
  }

  .header-bottom__nav a,
  .header-bottom__nav li {
    font-size: 14px;
  }

  .header-bottom__nav li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .header-bottom__nav a {
    background: hsla(26, 3%, 41%, 0.65);
    border-radius: 0.9rem;
    padding: 12px 6px;
  }

  .header-bottom__nav a:hover {
    background: #6b6764;
    color: #fff;
  }

  .gipermenu__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    height: calc(100dvh - 106px);
    overflow-y: auto;
    padding: 0 19px 20px;
  }

  .gipermenu__col {
    display: contents;
    max-width: 100%;
  }

  .gipermenu__item {
    margin: 0;
    padding: 13.6px 0;
  }

  .gipermenu__item-header {
    gap: 32px;
    margin-bottom: 0;
  }

  .gipermenu__item-header:after {
    background: url(../img/icons/catalog-arrow-more.svg) 50% / contain no-repeat;
    content: "";
    display: inline-block;
    height: 9px;
    width: 6px;
  }

  .gipermenu__item-header span {
    font-size: 18px;
    max-width: 154px;
    width: 100%;
  }

  .gipermenu__item-header-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 30px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .gipermenu__item-list {
    display: none;
  }

  .gipermenu__item-list a,
  .gipermenu__item-list li {
    color: var(--black);
    font-size: 17px;
  }

  .gipermenu__item-list a {
    display: block;
    padding: 5px 0;
  }

  .gipermenu__item-show-more {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  .header-mobile__menu-social .social-block a:nth-of-type(2) img {
    width: 17px;
  }

  .bottom-nav-mobile {
    display: block;
  }

  .cart-fixed,
  .cart-fixed__overlay,
  .cart-fixed__overlay.is-active {
    display: none;
  }

  .breadcrumbs {
    padding: 0 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;
    gap: 15px;
  }

  .breadcrumbs__area li {
    border: none;
  }

  .breadcrumbs__area li:not(:last-of-type):hover {
    background: transparent;
  }

  .breadcrumbs__area li:last-of-type {
    background: transparent;
  }

  .breadcrumbs__area a,
  .breadcrumbs__area span {
    padding: 0;
  }

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

  .header-mobile-categories {
    display: block;
  }

  .gipermenu__item.is-hidden {
    display: none;
  }

  .gipermenu__item.is-active {
    display: block;
  }

  .gipermenu__item.is-active .gipermenu__item-list {
    padding: 0 6px;
  }

  .catalog-menu-mobile__back.is-hidden,
  .gipermenu__item-header.is-hidden,
  .gipermenu__item-list.is-hidden {
    display: none;
  }

  .gipermenu__item.is-active .gipermenu__item-list {
    display: block;
  }

  .footer {
    margin-bottom: 50px;
    padding: 22px 0 11px;
  }

  .footer__top .footer__right {
    display: none;
  }

  .footer__left {
    max-width: 100%;
  }

  .footer__logo {
    display: none;
  }

  .footer__phone {
    margin-bottom: 19px;
    text-align: center;
  }

  .footer__phone span {
    margin-bottom: 4px;
  }

  .footer__phone a {
    font-size: 20px;
  }

  .footer__links {
    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;
    gap: 19px;
    justify-content: center;
    margin: 0;
  }

  .footer__links a {
    font-size: 10px;
    margin-bottom: 0;
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 25px;
  }

  .footer__copyright {
    margin: 0 auto 13px;
    max-width: 219px;
    text-align: center;
  }

  .footer__copyright a,
  .footer__copyright p {
    font-size: 12px;
  }

  .footer__btn {
    font-size: 14px;
    height: 50px;
    margin: 0 auto;
  }

  .footer__btn-mobile {
    margin: 30px 0;
  }

  .footer__social {
    margin: 0;
  }

  .footer__social:first-of-type {
    left: 0;
    margin-bottom: 20px;
  }

  .footer__social:first-of-type .social-block {
    gap: 25px;
    margin: 0;
  }

  .footer__social:nth-of-type(2) {
    margin-bottom: 0;
    max-width: 100%;
  }

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

  .footer__social .social-block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    gap: 25px;
    justify-content: center;
    left: 0;
  }

  .footer__social-mail {
    margin-left: 0;
  }

  .footer__year {
    margin-top: 0;
  }

  .footer__year span {
    font-size: 11px;
  }

  .footer__year span span {
    font-size: 15px;
  }

  .footer-only-desktop {
    display: none;
  }

  .page-404__area {
    padding: 10px 0 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .page-404__text {
    max-width: 100%;
  }

  .page-404__text .h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .page-404__text p {
    font-size: 16px;
  }

  .page-404__text p br {
    display: none;
  }

  .page-404__btn {
    font-size: 16px;
    height: 54px;
    margin-top: 30px;
    max-width: 100%;
  }

  .page-404__image {
    height: auto;
    left: 0;
    margin: 10px auto;
    max-width: 70%;
    top: 0;
  }

  .about .h2 {
    font-size: 30px;
    font-weight: 400;
  }

  .about__me {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .about__me p {
    font-size: 14px;
  }

  .about__me .h1 {
    font-size: 30px;
    margin-bottom: 15px;
    padding-right: 10px;
  }

  .about__me-col--1 {
    max-width: 100%;
    padding: 0;
  }

  .about__me-items img {
    max-width: 35px;
  }

  .about__me-col--2 {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
  }

  .about__me-col--2 .about__me-image {
    height: 200px;
  }

  .about__goal {
    padding: 30px 0;
  }

  .about__goal-grid {
    gap: 8px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }

  .about__goal-item {
    min-height: auto;
    min-height: 211px;
    padding: 24px 56px 24px 24px !important;
  }

  .about__goal-item:after {
    height: 30px;
    right: 15px;
    top: 15px;
    width: 30px;
  }

  .about__goal-item p {
    font-size: 14px;
    line-height: 1.5;
  }

  .about__motto {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .about__motto-content {
    max-width: 100%;
    padding: 0;
  }

  .about__motto-content .h2 {
    margin-bottom: 20px;
  }

  .about__motto-content li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 45px;
  }

  .about__motto-content .custom-ul li:after {
    font-size: 26px;
    height: 26px;
    top: 1px;
  }

  .about__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
  }

  .about__image {
    height: 200px;
  }

  .about__cooperation {
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about__cooperation p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .about__cooperation-col1 {
    max-width: 100%;
    padding: 0;
  }

  .about__cooperation-col1 .h2 {
    margin-bottom: 20px;
  }

  .about__cooperation-col2 {
    display: none;
    left: 0;
  }

  .about__cooperation-col2 img {
    height: 200px;
  }

  .about__cooperation-col3 {
    left: 0;
    padding-top: 0;
  }

  .about__cooperation-col3 p {
    margin-bottom: 10px;
  }

  .about__cooperation-btn {
    font-size: 16px;
    height: 50px;
    margin-top: 10px;
    max-width: 100%;
  }

  .about__cooperation-icon {
    display: none;
  }

  .about__mission {
    padding: 0 0 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .about__mission-content .h2 {
    margin-bottom: 20px;
  }

  .about__mission-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .about__mission-social {
    margin-top: 20px;
  }

  .about__mission-social span {
    font-size: 14px;
  }

  .articles {
    padding-bottom: 30px;
  }

  .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 10px;
    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__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 {
    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 {
    font-size: 10px;
    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;
  }

  .secret-card .card-main {
    padding-bottom: 40px;
  }

  .secret-card .card__area-mobile-fixed .card__area-mobile-image {
    max-width: 45%;
  }

  .secret-card .card__area-mobile-fixed .card__image {
    aspect-ratio: 1;
    border-radius: 9px;
    height: auto;
  }

  .secret-card .card__area-mobile-fixed {
    gap: 12px;
  }

  .secret-card .secret-card__offer-image {
    aspect-ratio: 1;
    height: auto;
  }

  .secret-card .card__info-item {
    display: inline-block;
  }

  .secret-card .card__info-item span {
    max-width: 100%;
  }

  .secret-card .card__area-mobile-fixed {
    padding: 20px 10px;
  }

  .secret-card__offers {
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
  }

  .secret-card__offer-image {
    height: 120px;
  }

  .secret-card__offer-title {
    font-size: 12px;
  }

  .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.45s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.45s 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 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 {
    border-radius: 42px;
    font-size: 1.2rem;
    font-weight: 600;
    height: 30px;
  }

  .card__buttons .catalog-item__to-cart {
    border-radius: 42px;
    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: 13px;
    width: 42px;
  }

  .about-collection__slider .nav-prev .icon {
    height: 13px;
    width: 7px;
  }

  .about-collection__slider .nav-next {
    height: 42px;
    right: 13px;
    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;
  }

  .cart {
    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;
  }

  .catalog-category {
    padding-bottom: 40px;
  }

  .catalog-category .interior-catalog {
    padding-bottom: 0;
  }

  .catalog-category__header .h1 {
    margin-bottom: 14px;
  }

  .catalog-category__header p {
    font-size: 14px;
  }

  .catalog-category__content .h2,
  .catalog-category__content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .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 li,
  .catalog-category__content p {
    font-size: 14px;
  }

  .catalog-category__content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
  }

  .catalog-category__content ul li:after {
    height: 8px;
    top: 5px;
    width: 8px;
  }

  .catalog-category__gray {
    margin: 30px 0;
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .catalog-category__gray-text {
    max-width: 100%;
  }

  .catalog-category__gray-text h2,
  .catalog-category__gray-text h3,
  .catalog-category__gray-text h4 {
    margin-top: 15px;
  }

  .catalog-category__gray.no--photo .catalog-category__gray-text {
    max-width: 100%;
  }

  .catalog-category__gray-image {
    margin-top: 15px;
    max-width: 100%;
  }

  .catalog-category__gray-image img {
    height: auto;
  }

  .catalog-category__models-header {
    margin: 40px 0 30px;
  }

  .catalog-category__models-sort {
    max-width: 50%;
  }

  .catalog-category__bl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .catalog-category__bl h2,
  .catalog-category__bl h3,
  .catalog-category__bl h4 {
    margin-top: 15px;
  }

  .catalog-category__bl-text {
    max-width: 100%;
  }

  .catalog-category__bl-images {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .catalog-category__bl-images img {
    height: 100%;
  }

  .catalog-category__bl.reverse .catalog-category__bl-text {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .catalog-category__bl.text .catalog-category__bl-text {
    max-width: 100%;
  }

  .catalog__grid.catalog__grid--doorhandle .catalog-item {
    padding: 11px 11px 14px;
  }

  .doorhandle-modal__header .h2 {
    font-size: 20px;
  }

  .doorhandle-modal__image img {
    max-width: 60%;
  }

  .doorhandle-modal__area {
    -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;
  }

  .doorhandle-modal__params {
    gap: 6px;
  }

  .doorhandle-modal__param {
    font-size: 16px;
  }

  .doorhandle-modal__buttons {
    margin-top: 40px;
    max-width: 65%;
  }

  .doorhandle-modal__buttons .btn {
    font-size: 14px;
    height: 44px;
  }

  .doorhandle-modal__button-to-card {
    gap: 10px;
  }

  .doorhandle-modal__button-to-card .icon {
    height: 18px;
    width: 18px;
  }

  .doorhandle-modal__button-to-fav {
    gap: 10px;
  }

  .doorhandle-modal__button-to-fav .icon {
    width: 18px;
  }

  .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__header {
    padding: 0;
  }

  .catalog__header .h1 {
    font-size: 25px;
    margin-bottom: 0;
  }

  .catalog__active-filters,
  .catalog__header p {
    display: none;
  }

  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
  }

  .catalog__grid .catalog-item:nth-of-type(2n) {
    border-color: transparent;
  }

  .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;
  }

  .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);
    margin: 0 -15px;
  }

  .ws-contact__list-item {
    border-radius: 9px;
    -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);
    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;
    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;
  }

  .ws-contact__data-btns span.btn-active {
    border-color: #1f2229;
  }

  .ws-contact__header {
    font-size: 16px;
    height: 50px;
  }

  .ws-contact__menu {
    height: 250px;
  }

  .entrance-doors {
    padding-bottom: 50px;
  }

  .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;
  }

  .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;
  }

  .favorites-empty {
    padding: 0 0 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .favorites-empty__text {
    max-width: 100%;
    padding: 0;
  }

  .favorites-empty__text .h1 {
    margin-bottom: 20px;
  }

  .favorites-empty__text .h2 {
    margin-bottom: 15px;
  }

  .favorites-empty__text p {
    font-size: 14px;
  }

  .favorites-empty__image {
    height: auto;
    left: 0;
    margin: 0 auto;
    max-width: 70%;
    top: 0;
  }

  .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: 8px;
    width: 13px;
  }

  .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-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-area .slider-nav {
    display: none;
  }

  .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-left: -15px;
    margin-right: -15px;
    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 {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .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: 24px;
    width: 32px;
  }

  .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;
  }

  .hero {
    padding: 0 0 29px;
  }

  .hero__slider .slider-nav {
    display: none;
  }

  .hero__slide {
    border-radius: 9px;
    height: 206px;
  }

  .hero__slide-content {
    background: transparent;
    max-width: 100%;
    padding: 28px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .hero__slide-content p {
    display: none;
  }

  .hero__slide-subtitle {
    color: #fff;
    font-size: 8px;
    font-weight: 500;
    margin-bottom: 1px;
  }

  .hero__slide-title {
    color: #fff;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 0;
  }

  .hero__slide-link {
    display: none;
  }

  .hero__slide-bg {
    max-width: 100%;
  }

  .collection-category__title-mobile {
    display: block;
  }

  .collection-category__grid {
    display: block;
    margin-top: 7px;
  }

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

  .collection-category__item-title {
    color: var(--black);
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 5px;
    padding: 0;
    position: static;
    text-align: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .collection-category__item-hover {
    display: none;
  }

  .collection-category__item-bg {
    border-radius: 6px;
    height: 138px;
    overflow: hidden;
    position: relative;
  }

  .doors-type {
    padding: 25px 0 30px;
  }

  .doors-type .h2 {
    margin-bottom: 12px;
    text-align: left;
  }

  .doors-type__grid {
    display: none;
    gap: 8px 11px;
    padding: 0;
  }

  .doors-type__grid--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .doors-type__item {
    font-size: 14px;
    padding: 11px 9px;
  }

  .best-offers .catalog-slider__header {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .promotional__title-mobile {
    display: block;
  }

  .promotional__slider .swiper-slide .promotional-item {
    opacity: 1;
    -webkit-transition: initial;
    transition: initial;
  }

  .promotional__slider .slider-pagination {
    display: none;
  }

  .promotional-item {
    border-radius: 8px;
    height: 171px;
    padding: 45px 17px 23px;
  }

  .promotional-item__content {
    max-width: 200px;
  }

  .promotional-item__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
    min-height: 36px;
  }

  .promotional-item__subtitle {
    font-size: 10px;
    font-weight: 600;
  }

  .promotional-item__price-main {
    font-size: 9px;
    font-weight: 500;
  }

  .promotional-item__price-main span {
    font-size: 13px;
  }

  .promotional-item__steaker {
    background: #b5191e;
    border-radius: 0 0 0 8px;
    color: #fff;
    font-size: 10px;
    height: 29px;
    width: 29px;
  }

  .promotional-item__steaker--sale {
    font-size: 13px;
  }

  .promotional-item--white-text .promotional-item__steaker {
    color: #fff;
  }

  .home-about {
    display: none;
  }

  .featured-links {
    padding: 30px 0 0;
  }

  .featured-links__grid {
    gap: 7px;
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-links__item {
    height: auto;
    padding: 12px;
  }

  .featured-links__item span {
    font-size: 11px;
  }

  .featured-links__item-icon {
    margin-bottom: 10px;
    min-height: 44px;
  }

  .featured-links__item-icon .icon,
  .featured-links__item-icon-phantom .icon {
    max-height: 44px;
    max-width: 44px;
  }

  .news {
    padding: 30px 0;
  }

  .news .h2 {
    text-align: left;
  }

  .news__grid {
    display: block;
    margin-top: 12px;
  }

  .news__grid .swiper-slide:first-of-type {
    display: none;
  }

  .news__item {
    height: 164px;
    padding: 20px 12px;
  }

  .news__item-title {
    font-size: 12px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    display: -moz-box;
    -moz-line-clamp: 2;
    overflow: hidden;
  }

  .news__link-area {
    display: none;
  }

  .news__item-bg:before {
    background: rgba(49, 54, 61, 0.35);
  }

  .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: 8px;
  }

  .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: 6px;
    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;
  }

  .materials-downloading {
    padding-bottom: 40px;
  }

  .materials-downloading__tabs {
    margin-top: 20px;
  }

  .materials-downloading__tabs-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;
    gap: 5px;
  }

  .materials-downloading__tabs-header-item {
    font-size: 12px;
    height: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .materials-downloading__tabs-header-item.btn-active {
    height: 40px;
  }

  .materials-downloading__grid {
    gap: 20px 10px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
    padding: 0;
  }

  .materials-downloading__item-image {
    height: calc(var(--indexSize) * 61.3);
    max-width: 100%;
  }

  .materials-downloading__item-title {
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 10px;
    text-align: center;
  }

  .materials-downloading__item-btn {
    font-size: 12px;
    height: 32px;
    margin-top: auto;
    max-width: 100%;
  }

  .metalcard {
    padding-bottom: 40px;
  }

  .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__description {
    padding-top: 20px;
  }

  .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 {
    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 {
    font-size: 14px;
    padding-top: 0;
  }

  .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;
  }

  .resume-modal__area {
    padding: 72px 24px;
  }

  .resume-modal__content .h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .resume-modal__inputs .input {
    font-size: 16px;
    height: 60px;
  }

  .resume-modal__error {
    font-size: 12px;
    text-align: center;
  }

  .resume-modal__input {
    margin-bottom: 10px;
  }

  .resume-modal__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .resume-modal__input-file {
    max-width: 100%;
  }

  .resume-modal__file {
    font-size: 16px;
    height: 60px;
    padding-bottom: 0;
  }

  .resume-modal__bottom-right p {
    font-size: 12px;
    padding: 0;
    text-align: center;
  }

  .resume-modal__submit {
    font-size: 16px;
    height: 70px;
    max-width: 100%;
  }

  .opening-systems__header .h1,
  .resume-modal__submit {
    margin-bottom: 10px;
  }

  .opening-systems__header p {
    font-size: 12px;
  }

  .opening-systems__nav {
    margin: 20px 0 0;
  }

  .opening-systems__nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .opening-options__header p {
    font-size: 14px;
  }

  .opening-systems__main .opening-options__footer {
    display: none;
  }

  .opening-systems__main .opening-options {
    padding-bottom: 20px;
  }

  .opening-systems__main .opening-options .h3 {
    font-size: 20px;
  }

  .opening-systems__section {
    padding: 25px 0 10px;
  }

  .opening-systems__section:last-of-type {
    padding-bottom: 40px;
  }

  .opening-systems__section-title {
    font-size: 23px;
    margin-bottom: 10px;
  }

  .partners .h1 {
    font-size: 26px;
    font-weight: 400;
  }

  .partners .h2 {
    font-size: 30px;
    font-weight: 400;
  }

  .partners__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .partners__header-content .h1 {
    margin-bottom: 15px;
  }

  .partners__header-content p {
    font-size: 14px;
  }

  .partners__header-image {
    height: 200px;
    max-width: 100%;
  }

  .partners__we {
    padding: 30px 0;
  }

  .partners__we .h2 {
    margin-bottom: 25px;
  }

  .partners__we-grid {
    gap: 8px;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 30px;
  }

  .partners__we-item {
    padding: 24px;
  }

  .partners__we-item .h4 {
    font-size: 16px;
  }

  .partners__we-item p {
    font-size: 14px;
  }

  .partners__we-item-icon {
    height: 50px;
  }

  .partners__we-item-icon img {
    max-height: 50px;
    max-width: 50px;
  }

  .partners__we-btn {
    font-size: 16px;
    height: 50px;
    max-width: 100%;
  }

  .partners__benefits {
    margin-left: -15px;
    margin-right: -15px;
    padding: 30px 15px;
  }

  .partners__benefits .h2 {
    margin-bottom: 20px;
  }

  .partners__benefits-grid {
    gap: 8px;
    grid-template-columns: repeat(1, 1fr);
  }

  .partners__benefits-item {
    min-height: auto;
    padding: 24px;
  }

  .partners__benefits-item-header {
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .partners__benefits-item-header .h4 {
    font-size: 16px;
  }

  .partners__benefits-item-icon {
    max-width: 50px;
  }

  .partners__benefits-item-icon img {
    max-height: 50px;
    max-width: 50px;
  }

  .partners__benefits-item-body p {
    font-size: 14px;
  }

  .partners__benefits-item-body p br {
    display: none;
  }

  .partners__benefits-btn-area {
    margin-top: 20px;
  }

  .partners__benefits-btn {
    font-size: 16px;
    height: 50px;
    max-width: 100%;
  }

  .partners-work {
    padding: 30px 0 50px;
  }

  .partners-work .h2 {
    margin-bottom: 30px;
  }

  .partners-work__card,
  .partners-work__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .partners-work__content {
    max-width: 100%;
    padding: 0;
  }

  .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: 20px;
  }

  .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 {
    max-width: 100%;
  }

  .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 162px 162px;
  }

  .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 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 0;
    order: -1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .partners-work__btn {
    font-size: 16px;
    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;
  }

  .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 {
    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-item {
    height: auto;
  }

  .penta-bio__bl2-top-text {
    padding: 0;
  }

  .penta-bio__bl2-top-text .h3 {
    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 {
    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;
    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-top: 20px;
    padding: 0;
  }

  .penta-bio__bl2-bottom-text .h3 {
    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: 30px;
    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 {
    margin-bottom: 15px;
  }

  .penta-bio__bl5-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .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 {
    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-itec__header {
    margin-bottom: 20px;
  }

  .penta-itec__header .h1 {
    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;
  }

  .portfolio-main {
    padding-bottom: 70px;
  }

  .portfolio-main .h1 {
    font-size: 30px;
  }

  .portfolio-main__grid {
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }

  .portfolio-main__item-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .portfolio-main__item-image:after {
    height: 60px;
    width: 60px;
  }

  .portfolio-main__item-image {
    height: auto;
  }

  .portfolio-photo {
    padding-bottom: 40px;
  }

  .portfolio-photo .h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .portfolio-photo__section {
    margin-bottom: 30px;
  }

  .portfolio-photo__section .h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .portfolio-photo__grid {
    gap: 16px 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-photo__item-image {
    aspect-ratio: 1;
    height: auto;
    margin-bottom: 5px;
  }

  .portfolio-photo__item-image:after {
    height: 50px;
    width: 50px;
  }

  .portfolio-photo__item-title {
    font-size: 14px;
  }

  .portfolio-photo-detail {
    padding-bottom: 50px;
  }

  .portfolio-photo-detail .h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .portfolio-photo-detail__section .h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .portfolio-photo-detail__grid {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }

  .portfolio-photo-detail__item {
    aspect-ratio: 1;
    height: auto;
  }

  .portfolio-photo-detail__item:after {
    height: 50px;
    width: 50px;
  }

  .portfolio-photo-detail-more {
    max-width: 100%;
  }

  .portfolio-video {
    padding-bottom: 40px;
  }

  .portfolio-video .h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .portfolio-video__grid {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  .portfolio-video__item-image {
    aspect-ratio: 16/9;
    height: auto;
    margin-bottom: 8px;
  }

  .portfolio-video__item-description {
    font-size: 14px;
    padding-right: 0;
  }

  .rail {
    padding-bottom: 20px;
  }

  .rail__bl1 {
    margin: 20px 0;
  }

  .rail__bl1,
  .rail__bl1-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .rail__bl1-left {
    max-width: 100;
  }

  .rail__bl1-left .rail__bl1-image {
    height: auto;
    max-width: 100%;
  }

  .rail__bl1-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .rail__bl1-text p:last-of-type {
    padding: 0;
  }

  .rail__bl1-right {
    max-width: 100%;
  }

  .rail__bl1-right .rail__bl1-image {
    height: auto;
  }

  .rail__bl2 .h2 {
    margin-bottom: 15px;
  }

  .rail__bl2-item {
    max-width: 80px;
  }

  .rail__bl2-item img {
    height: 50px;
    margin-bottom: 5px;
    width: 50px;
  }

  .rail__bl2-item span {
    font-size: 11px;
  }

  .rail__bl3 {
    margin-top: 25px;
  }

  .rail__bl3 .h2 {
    margin-bottom: 15px;
  }

  .rail__bl3-grid {
    gap: 10px;
    grid-template-columns: repeat(6, 1fr);
  }

  .rail__bl3-item img {
    height: auto;
    margin-bottom: 5px;
    width: 100%;
  }

  .rail__bl3-item span {
    font-size: 11px;
  }

  .rail__bl4 {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .rail__bl4-text {
    max-width: 100%;
  }

  .rail__bl4-text .h2 {
    margin-bottom: 20px;
  }

  .rail__bl4-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .rail__bl4-image {
    height: auto;
    margin-top: 0;
    max-width: 100%;
  }

  .rail__gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .rail__gallery-center,
  .rail__gallery-left,
  .rail__gallery-right {
    max-width: 100%;
  }

  .rail__gallery-area {
    margin: 30px 0 50px;
    padding: 24px;
  }

  .rail__gallery-area .h2 {
    margin-bottom: 20px;
  }

  .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 {
    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: 14px;
    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 span {
    font-size: 12px;
    gap: 20px;
  }

  .secret-new__bl2-warn span:before {
    height: 30px;
    width: 30px;
  }

  .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 b {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .secret-new__bl2-right .custom-ul {
    margin: 20px 0;
  }

  .secret-new__bl2-right .custom-ul li {
    font-size: 14px;
    margin-bottom: 10px;
    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 {
    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 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 {
    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-video-preview img {
    aspect-ratio: 16/9;
    height: auto;
  }

  .secret-new__bl5-video-play {
    height: 41px;
    width: 62px;
  }

  .sky {
    padding-bottom: 20px;
  }

  .sky p {
    font-size: 14px;
  }

  .sky__bl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sky__bl1-text .h1 {
    margin-bottom: 20px;
  }

  .sky__bl1-text .h2 {
    margin-bottom: 15px;
  }

  .sky__bl1-text p {
    margin-bottom: 10px;
  }

  .sky__bl1-video {
    height: auto;
    margin-top: 10px;
    max-width: 100%;
  }

  .sky__bl1-video-play {
    height: 61px;
    width: 61px;
  }

  .sky__bl2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .sky__bl2-image {
    height: auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .sky__bl2-image,
  .sky__bl2-text {
    max-width: 100%;
  }

  .sky__bl2-text p {
    margin-bottom: 10px;
  }

  .sky__bl3 {
    margin-top: 30px;
    padding: 24px;
  }

  .sky__bl3-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .sky__bl3-text {
    max-width: 100%;
  }

  .sky__bl3-text .h2 {
    margin-bottom: 15px;
  }

  .sky__bl3-text p {
    margin-bottom: 10px;
  }

  .sky__bl3-text p:first-of-type {
    margin-bottom: 10px;
  }

  .sky__bl3-images {
    gap: 10px;
    max-width: 100%;
    padding: 0;
  }

  .sky__bl3-images img {
    height: auto;
  }

  .sky__bl4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
  }

  .sky__bl4-image {
    height: auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .sky__bl4-image,
  .sky__bl4-text {
    max-width: 100%;
  }

  .sky__bl4-text .h2 {
    margin-bottom: 15px;
  }

  .sky__bl4-text p {
    margin-bottom: 10px;
  }

  .sliding-doors .footer-form {
    padding-bottom: 76px;
  }

  .sliding-doors__hero .h1 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .sliding-doors__hero-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .sliding-doors__hero-text li,
  .sliding-doors__hero-text p {
    font-size: 12px;
  }

  .sliding-doors__hero-text li br,
  .sliding-doors__hero-text p br {
    display: none;
  }

  .sliding-doors__hero-text p:first-of-type {
    margin-bottom: 15px;
  }

  .sliding-doors__hero-text ol,
  .sliding-doors__hero-text ul {
    padding-left: 11px;
  }

  .sliding-doors__hero-video .video-item__preview {
    height: 199px;
  }

  .sliding-doors__hero-video .video-item__preview img {
    border-radius: 5px;
  }

  .sliding-doors__hero-video .video-item__play {
    height: 27px;
    width: 37px;
  }

  .sliding-doors__types {
    padding: 29px 0 42px;
  }

  .sliding-doors__types .h2 {
    font-size: 20px;
    text-align: left;
  }

  .sliding-doors__types-grid {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 23px;
  }

  .sliding-doors__types-item span {
    font-size: 1.2rem;
    font-weight: 500;
  }

  .sliding-doors__types-item-image {
    aspect-ratio: 1;
    height: auto;
    margin-bottom: 9px;
  }

  .sliding-doors__variants {
    border-radius: 0;
    margin-left: -15px;
    margin-right: -15px;
    padding: 27px 0 33px;
  }

  .sliding-doors__variants .h2 {
    font-size: 20px;
    margin-bottom: 32px;
    padding: 0 15px;
    text-align: left;
  }

  .sliding-doors__variants-grid {
    gap: 16px 0;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 5px;
  }

  .sliding-doors__variants-item span {
    font-size: 12px;
  }

  .sliding-doors__variants-item:nth-of-type(5),
  .sliding-doors__variants-item:nth-of-type(6),
  .sliding-doors__variants-item:nth-of-type(7),
  .sliding-doors__variants-item:nth-of-type(8) {
    margin-bottom: 0;
  }

  .sliding-doors__variants-item:nth-of-type(5)
    .sliding-doors__variants-item-image,
  .sliding-doors__variants-item:nth-of-type(6)
    .sliding-doors__variants-item-image,
  .sliding-doors__variants-item:nth-of-type(7)
    .sliding-doors__variants-item-image,
  .sliding-doors__variants-item:nth-of-type(8)
    .sliding-doors__variants-item-image {
    margin-bottom: 3px;
  }

  .sliding-doors__variants-item:last-of-type {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 100%;
  }

  .sliding-doors__variants-item-image {
    height: 61px;
    margin-bottom: 3px;
  }

  .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--reverse .sliding-partitions__tab-outer-flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -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;
  }

  .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 {
    margin-bottom: 10px;
  }

  .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 {
    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;
    padding: 0;
  }

  .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-solutions .h1 {
    margin-bottom: 24px;
  }

  .smart-solutions__grid {
    gap: 11px;
    grid-template-columns: repeat(2, 1fr);
  }

  .smart-solutions__item {
    width: 100%;
  }

  .smart-solutions__item-image {
    aspect-ratio: 1;
    height: auto;
    margin-bottom: 10px;
  }

  .smart-solutions__item-title {
    font-size: 12px;
    line-height: 1;
    padding: 0 4px;
  }

  .smart-solutions__content {
    padding-top: 22px;
  }

  .smart-solutions__content li,
  .smart-solutions__content p {
    font-size: 1.2rem;
    line-height: 1.66667;
  }

  .smart-solutions__content li br,
  .smart-solutions__content p br {
    display: none;
  }

  .smart-solutions__content .custom-ul li:after {
    top: 2px;
  }

  .smart-solutions__content .custom-ul li {
    margin-bottom: 7px;
    padding-left: 32px;
  }

  .smart-solutions__content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
    padding: 0;
  }

  .smart-solutions__content-top-image {
    border-radius: 12px;
    height: auto;
    max-width: 100%;
  }

  .smart-solutions__content-top-image img {
    border-radius: 12px;
  }

  .smart-solutions__content-top-text .custom-ul {
    margin: 17px;
  }

  .smart-solutions__content-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 13px;
    padding: 0;
  }

  .smart-solutions__content-bottom .custom-ul {
    margin: 17px;
  }

  .smart-solutions__content-bottom-image {
    height: auto;
    max-width: 100%;
  }

  .stock__header {
    margin-bottom: 20px;
  }

  .stock__header .h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .stock__header p {
    font-size: 14px;
  }

  .stock__grid {
    gap: 16px 8px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 80px;
  }

  .stock__item-image {
    height: 160px;
    margin-bottom: 8px;
  }

  .stock__item-num {
    bottom: 15px;
    font-size: 20px;
    gap: 5px;
    right: 15px;
  }

  .stock__item-num span,
  .stock__item-title {
    font-size: 16px;
  }

  .stock__item-title {
    left: 15px;
    max-width: 80%;
    top: 15px;
  }

  .stock__item-description {
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
  }

  .stock__item-description p {
    font-size: 12px;
    line-height: 1.4;
  }

  .stock-detail {
    padding-bottom: 30px;
  }

  .stock-detail__content {
    margin-bottom: 35px;
    max-width: 100%;
    padding-bottom: 35px;
  }

  .stock-detail__content .h1,
  .stock-detail__content h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .stock-detail__content .h1 br,
  .stock-detail__content h1 br {
    display: none;
  }

  .stock-detail__content img {
    margin: 15px 0;
  }

  .stock-detail__content li,
  .stock-detail__content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .stock-detail__content .h2,
  .stock-detail__content h2 {
    font-size: 20px;
    margin: 10px 0;
  }

  .stock-detail__content .h3,
  .stock-detail__content h3 {
    font-size: 18px;
    margin: 10px 0;
  }

  .stock-detail__content .h4,
  .stock-detail__content h4 {
    font-size: 16px;
    margin: 10px 0;
  }

  .stock-detail__content ol,
  .stock-detail__content ul {
    margin: 10px 0;
    padding: 0 18px;
  }

  .stock-detail__content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0;
  }

  .stock-detail__image {
    max-width: 100%;
  }

  .stock-detail__text {
    padding: 0;
  }

  .stock-detail__text .mb-30 {
    margin-bottom: 20px;
  }

  .stock-detail__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
  }

  .stock-detail__price-main {
    font-size: 18px;
    gap: 5px;
  }

  .stock-detail__price-main span {
    font-size: 35px;
  }

  .stock-detail__footer-back,
  .stock-detail__footer-btn {
    font-size: 14px;
    height: 52px;
    max-width: 90%;
  }

  .stock-detail__footer-back {
    margin: 0 auto;
  }

  .vancancies {
    padding-bottom: 40px;
  }

  .vancancies__header {
    margin-bottom: 25px;
  }

  .vancancies__header .h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .vancancies__header p {
    font-size: 16px;
  }

  .vancancies__grid {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  .vancancies__item {
    border-radius: 9px;
    height: auto;
    padding: 24px;
  }

  .vancancies__item:nth-of-type(3) .h2,
  .vancancies__item:nth-of-type(4) .h2 {
    margin-bottom: 15px;
  }

  .vancancies__item:nth-of-type(3) .vancancies__item-phone,
  .vancancies__item:nth-of-type(4) .vancancies__item-phone {
    margin-top: 15px;
  }

  .vancancies__item .h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .vancancies__item-description {
    margin-bottom: 20px;
  }

  .vancancies__item-description p {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .vancancies__item-description p span {
    font-size: 18px;
  }

  .vancancies__item-phone {
    margin-top: 15px;
  }

  .vancancies__item-phone p {
    font-size: 14px;
  }

  .vancancies__item-phone p a {
    white-space: nowrap;
  }

  .vancancies__item-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    gap: 5px;
    margin-top: 20px;
    max-width: 100%;
  }

  .vantages {
    padding-bottom: 40px;
  }

  .vantages .h1 {
    font-size: 30px;
  }

  .vantages .h2 {
    font-weight: 600;
  }

  .vantages li,
  .vantages p {
    font-size: 14px;
    line-height: 1.4;
  }

  .vantages__bl1 {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .vantages__bl1-text .h2 {
    margin-bottom: 15px;
  }

  .vantages__bl2 {
    margin-top: 20px;
    padding: 24px;
  }

  .vantages__bl2-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }

  .vantages__bl2-header .h2 {
    max-width: 100%;
  }

  .vantages__bl2-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .vantages__bl2-left {
    gap: 15px;
    margin: 0 0 15px;
    padding-top: 0;
  }

  .vantages__bl2-left-items {
    padding: 11px 0 14px;
  }

  .vantages__bl2-left-items span {
    font-size: 14px;
    line-height: 1;
  }

  .vantages__bl2-image {
    margin: 0 0 15px;
  }

  .vantages__bl2-text ul {
    padding: 5px 0 5px 12px;
  }

  .vantages__bl2-text li {
    margin-bottom: 10px;
  }

  .vantages__bl2-footer {
    margin-top: 10px;
  }

  .vantages__bl2-footer p {
    line-height: 1.4;
  }

  .vantages__bl3 {
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .vantages__bl3-text p {
    line-height: 1.4;
  }

  .vantages__bl3-text .h2 {
    margin-bottom: 15px;
  }

  .vantages__bl3-image {
    max-width: 100%;
  }

  .vantages__bl4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
  }

  .vantages__bl4-text {
    padding-bottom: 0;
  }

  .vantages__bl4-text .h2 {
    margin-bottom: 15px;
  }

  .vantages__bl4-text p {
    line-height: 1.4;
  }

  .vantages__bl5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }

  .vantages__bl5-text:first-of-type {
    max-width: 100%;
  }

  .vantages__bl5-text:nth-of-type(2) {
    max-width: 100%;
  }

  .vantages__bl5-text .h2 {
    margin-bottom: 15px;
  }

  .vantages__bl6 {
    margin-top: 20px;
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }

  .vantages__bl6-text {
    max-width: 100%;
  }

  .vantages__bl6-text .h2 {
    margin-bottom: 15px;
  }

  .vantages__bl6-text ul {
    margin: 15px 0;
    padding: 0 16px;
  }

  .vantages__bl6-image {
    margin: 0 auto;
    max-width: 50%;
  }

  .vantages__bl7 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .vantages__bl7-text .h2 {
    margin-bottom: 15px;
    margin-top: 20px;
  }

  .vantages__bl8 {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 25px;
    padding: 24px;
  }

  .vantages__bl8-item {
    gap: 20px;
  }

  .vantages__bl8-item:nth-of-type(4) p {
    margin-top: 0;
  }

  .vantages__bl8-item-icon {
    max-width: 50px;
    padding: 0;
  }

  .vantages__bl8-item-text .h2 {
    margin-bottom: 15px;
  }

  .vantages__bl8-item-text p {
    line-height: 1.4;
  }

  .vantages__bl9 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
    padding: 0;
  }

  .vantages__bl9-text .h2 {
    margin-bottom: 15px;
  }

  .vantages__bl9-image {
    margin: 0 auto;
    max-width: 80%;
  }

  .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: 30px;
    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%;
  }

  .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;
  }

  .catalog-category__content h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .content-row__text ol,
  .content-row__text ul {
    margin-bottom: 15px;
  }

  .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;
  }

  .card__header-text {
    height: 118px;
    overflow-y: auto;
    -webkit-line-clamp: unset;
    -moz-line-clamp: unset;
    margin-right: -6px;
    padding-right: 6px;
  }

  .opening-systems-page .opening-options__item.is-hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@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: 767px) {
  .slat-doors-text .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .slat-doors-text .item .image {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }

  .slat-doors-text .item .image img {
    margin: 0 auto;
  }

  .slat-doors-text .item .text {
    width: 100%;
  }
}

@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);
  }

  .slat-doors-item .center,
  .slat-doors-item .left {
    margin-right: 0;
    width: 100%;
  }

  .slat-doors-item .right {
    width: 100%;
  }
}

@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);
  }

  .panels-filter__section.section--fav sup {
    right: calc(var(--indexSize) * 4.7);
  }
}

@media (max-width: 370px) {
  .catalog-slider__slider .catalog-item {
    padding: 22px 10px 11px;
  }

  .subscribe__area .h2 {
    font-size: 23px;
  }

  .subscribe__link span {
    font-size: 20px;
  }

  .subscribe__text p {
    font-size: 16px;
  }

  .opening-schemes__grid {
    grid-template-columns: 32% 38% 31.7%;
  }

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

  .catalog-category__models-sort {
    max-width: 55%;
  }

  .entrance-doors .doors-type__item {
    font-size: 12px;
  }

  .doors-type__item {
    font-size: 13px;
    padding: 11px 9px;
  }

  .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;
  }

  .header-mobile__menu-phone a {
    letter-spacing: 0.05em;
  }
}

@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;
  }

  .ws-contact__prop-name,
  .ws-contact__prop-value {
    font-size: 11px;
  }

  .interior-item__footer,
  .interior-item__price {
    gap: 4px;
  }

  .penta-bio__bl2-middle-text-warn span {
    font-size: 10px;
  }

  .portfolio-photo__item-image:after {
    height: 44px;
    width: 44px;
  }

  .portfolio-photo-detail__item:after {
    height: 44px;
    width: 44px;
  }

  .vancancies__item {
    padding: 16px;
  }

  .panels-filter__section.section--fav sup {
    right: calc(var(--indexSize) * 4.4);
  }
}

@media (max-width: 350px) {
  .catalog-slider__slider .catalog-item__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .catalog-slider__slider .catalog-item__price-old {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 340px) {
  .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;
  }

  .card-action--download,
  .card-action--share,
  .card-action--to-favorites,
  .card-actions {
    gap: 4px;
  }

  .subscribe__area .h2 {
    font-size: 20px;
  }

  .subscribe__link span {
    font-size: 18px;
  }

  .subscribe__text {
    padding: 0;
  }

  .subscribe__text p {
    font-size: 15px;
  }

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

  .header-mobile__menu {
    padding: 30px;
  }

  .bottom-nav-mobile__item--catalog {
    height: calc(var(--indexSize) * 13);
    width: calc(var(--indexSize) * 14);
  }

  .page-404__text p {
    font-size: 14px;
  }

  .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: 11px;
  }

  .cart-empty__header p {
    font-size: 16px;
  }

  .cart-empty__body p {
    font-size: 14px;
  }

  .doorhandle-modal__buttons {
    max-width: 80%;
  }

  .ed-catalog-item__price-main span {
    font-size: 14px;
  }

  .designers-reviews__slide-avatar {
    gap: 12px;
  }

  .designers-reviews__slide-avatar img {
    height: 115px;
    width: 116px;
  }

  .designers-reviews__slide-name {
    font-size: 18px;
  }

  .interior-item__title {
    font-size: 10px;
  }

  .interior-item__price-old {
    font-size: 8px;
  }

  .interior-item__price-main {
    font-size: 10px;
  }

  .resume-modal__file,
  .resume-modal__inputs .input {
    height: 50px;
  }

  .resume-modal__submit {
    height: 60px;
  }

  .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);
  }

  .stock__item-num {
    font-size: 16px;
  }

  body .ws-sys__massage-text {
    font-size: 12px;
  }

  .header-mobile__menu-phone a {
    letter-spacing: 0;
  }
}

@media (max-width: 320px) {
  .smart-lock__section-slider .slider__thumbs .slider__image {
    height: 60px;
  }
}
