@import url(https://fonts.googleapis.com/css?family=Open+Sans:600&display=swap);
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}
.splide__arrow:disabled {
  opacity: 0.3;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}
.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: transparent;
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
@font-face {
  font-family: "Helvetica Neue";
  font-display: swap;
  src: url(fonts/HelveticaNeueMedium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  font-display: swap;
  src: url(fonts/HelveticaNeueBold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  font-display: swap;
  src: url(fonts/HelveticaNeueLight.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: icons;
  font-display: swap;
  src: url(fonts/icons.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  font-display: swap;
  src: url(fonts/HelveticaNeueRoman.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
[class*="_icon-"]:before {
  font-family: icons;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
}
._icon-s-ln:before {
  content: "";
}
._icon-location:before {
  content: "";
}
._icon-mail:before {
  content: "";
}
._icon-call:before {
  content: "";
}
._icon-ch-down:before {
  content: "";
}
._icon-s-twr:before {
  content: "";
}
._icon-s-yt:before {
  content: "";
}
._icon-s-fb:before {
  content: "";
}
._icon-s-email:before {
  content: "";
}
._icon-ch-right:before {
  content: "";
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
*::after,
*::before {
  display: inline-block;
}
* {
  -webkit-tap-highlight-color: transparent;
}
body,
html {
  height: 100%;
  min-width: 320px;
}
body {
  color: #333;
  line-height: 1;
  font-family: "Helvetica Neue";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button,
input,
textarea {
  font-family: "Helvetica Neue";
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
}
input,
textarea {
  width: 100%;
}
button,
option,
select {
  cursor: pointer;
}
a {
  display: inline-block;
  color: inherit;
  text-decoration: none
}
ul li,
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit
}
img {
  vertical-align: top;
}
summary {
  list-style: none;
}
summary::-webkit-details-marker,
summary::marker {
  display: none;
}
.lock body {
  overflow: hidden;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
}
@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}
[class*="__container"] {
  max-width: 73.125rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}
.icon-menu {
  display: none;
}
body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}
.popup-show body::after {
  opacity: 1;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}
.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}
.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.popup__wrapper {
  flex-direction: column;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #eee;
  padding: 20px;
  border-radius: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.lock .popup__content {
  visibility: visible;
}
.popup__text {
  text-align: center;
  line-height: 1.2;
}
.popup__close {
  overflow: hidden;
  position: relative;
  border: none;
  align-self: flex-end;
  padding: 0;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
  color: #000;
  font: inherit;
  text-indent: 100%;
  cursor: pointer;
}
.popup__close:focus {
  outline: solid 0 transparent;
}
.popup__close:after,
.popup__close:before {
  position: absolute;
  top: 15%;
  left: calc(50% - 0.0625em);
  transition: background-color 0.3s;
  width: 0.125em;
  height: 70%;
  border-radius: 0.125em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #000;
  content: "";
}
.popup__close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ibg--top {
  -o-object-position: top;
  object-position: top;
}
.ibg--bottom {
  -o-object-position: bottom;
  object-position: bottom;
}
.ibg--left {
  -o-object-position: left;
  object-position: left;
}
.ibg--right {
  -o-object-position: right;
  object-position: right;
}
.ibg--contain {
  -o-object-fit: contain;
  object-fit: contain;
}
.info-contacts__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumbs__link,
.info-contacts__link {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s;
}
.product-item__link--underline {
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: text-decoration-color 0.3s;
}
.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.input::placeholder,
.textarea::placeholder {
  transition: all 0.3s;
}
.input:focus-visible,
.textarea:focus-visible {
  outline: 0;
}
.input:focus-visible::-webkit-input-placeholder,
.textarea:focus-visible::-webkit-input-placeholder {
  -webkit-transform: translateX(10%);
  transform: translateX(10%);
  opacity: 0;
}
.input:focus-visible:-ms-input-placeholder,
.textarea:focus-visible:-ms-input-placeholder {
  transform: translateX(10%);
  opacity: 0;
}
.input:focus-visible::-ms-input-placeholder,
.textarea:focus-visible::-ms-input-placeholder {
  transform: translateX(10%);
  opacity: 0;
}
.input:focus-visible::placeholder,
.textarea:focus-visible::placeholder {
  -webkit-transform: translateX(10%);
  transform: translateX(10%);
  opacity: 0;
}
.breadcrumbs__list {
  display: flex;
  gap: 0.3125rem;
}
.breadcrumbs__item {
  color: #fff;
  line-height: 1.14;
  font-size: 0.875rem;
  font-weight: 700;
}
.breadcrumbs--dark .breadcrumbs__item {
  color: #333;
}
.breadcrumbs__item:not(:last-child) {
  display: flex;
  gap: 0.3125rem;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  font-weight: 400;
}
.breadcrumbs__link {
  font-weight: 400;
}
.slider-section {
  display: grid;
  min-width: 0;
  grid-template-columns: 0.9375rem 1fr minmax(auto, 71.25rem) 1fr 0.9375rem;
}
.slider-section > * {
  min-width: 0;
  grid-column: 3/6;
}
.slider-section__header {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  grid-column: 3/4;
}
.slider-section__title {
  flex-grow: 1;
}
.slider-section__text {
  max-width: 28.5625rem;
}
.slider-section__arrows {
  display: flex;
  gap: 2.5rem;
}
.slider-section__arrow {
  font-size: 2.5rem;
  transition: all 0.3s;
}
.slider-section__arrow:disabled {
  opacity: 0;
}
.slider-section__arrow--prev {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.slider-section__slider {
  position: relative;
}
.slider-section__slider .product-item {
  width: 100%;
}
.slider-section__slider .product-item__image:not(:last-child) {
  margin-bottom: 1.5rem;
}
.text {
  line-height: 1.2;
}
.text p:not(:last-child) {
  margin-bottom: 1.3125rem;
}
.text span {
  font-weight: 500;
}
.text ul {
  padding-left: 1.875rem;
}
.text ul li {
  list-style: disc;
}
.text ul li:not(:last-child) {
  margin-bottom: 0.75rem;
}
.hero {
  padding-top: 2.0625rem;
  min-height: 25rem;
  background: no-repeat center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero--main {
  min-height: calc(100svh - 4.9375rem);
}
.hero--main .hero__container {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__container {
  position: relative;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.hero__body {
  flex-grow: 1;
  display: flex;
  align-items: end;
}
.hero__title {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.21;
}
.hero__title:not(:last-child) {
  margin-bottom: 0.8125rem;
}
.hero__title--small-center {
  text-align: center;
}
.hero__deco-title {
  background-color: #fecc00;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.hero__text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}
.hero__text:not(:last-child) {
  margin-bottom: 0.8125rem;
}
.title {
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
}
.title--decor {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.title--decor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fecc00;
  z-index: -1;
}
.product-item {
  display: flex;
  flex-direction: column;
}
.product-item__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  padding-bottom: 1.5rem;
  background: #f4f4f4;
  box-shadow: 0 0.3125rem 1.875rem 0 rgba(0, 0, 0, 0.05);
}
.product-slider--systems .product-item__body {
  padding-bottom: 1.1875rem;
}
.product-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
}
.product-item__image {
  display: block;
  background-color: #fff;
  border-radius: 0.3125rem;
  overflow: hidden;
  aspect-ratio: 275/230;
}
ma .product-item__image--padding {
  padding: 0.4375rem 1.875rem;
}
.product-slider--systems .product-item__image {
  aspect-ratio: 487/260;
}
.product-item__link {
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  flex-grow: 1;
  font-size: 1.125rem;
}
.product-item__link:not(:last-child) {
  margin-bottom: 1.5rem;
}
.product-item__link--underline {
  color: #707070;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
}
.product-item__bottom {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  background: #f4f4f4;
  padding: 0 1.25rem 1.625rem;
}
.product-item__button-link {
  display: block;
}
.product-item__button-link:not(:last-child) {
  margin-bottom: 1.5rem;
}
.button {
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.3125rem;
  background-color: #fecc00;
  border: 0.125rem solid #fecc00;
  padding: 1rem;
  transition: all 0.3s;
}
.product-slider .splide__slide {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.product-slider--destroy .splide__slide {
  position: relative;
}
.product-slider--systems .splide__slide {
  position: relative;
}
.tabs-block .splide {
  background-color: #fecc00;
  padding: 0 3.125rem;
}
.tabs-block .splide:not(:last-child) {
  margin-bottom: 1rem;
}
.tabs-block .splide__slide {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 0.9375rem 0;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.tabs-block .splide__arrow {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
}
.tabs-block .splide__arrow::before {
  font-size: 0.9375rem;
  color: #fff;
}
.tabs-block .splide__arrow--prev {
  left: 1.5rem;
}
.tabs-block .splide__arrow--prev::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.tabs-block .splide__arrow--next {
  right: 1.5rem;
}
.tabs-block .splide__arrow svg {
  display: none;
}
.tabs-block__wrapper {
  position: relative;
}
.tabs-block__wrapper::before {
  content: "";
  background-color: #fecc00;
  width: 100%;
  height: 0.625rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tabs-block__wrapper:not(:last-child) {
  margin-bottom: 1.25rem;
}
.tabs-block__navigation {
  display: flex;
  gap: 0.625rem;
  padding-bottom: 0.625rem;
  padding-top: 1rem;
  align-items: stretch;
  width: 100%;
  overflow: auto;
}
.tabs-block__title {
  padding: 0.75rem 2.8125rem;
  transition: all 0.3s;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  flex-shrink: 1;
  min-width: 13.75rem;
}
.tabs-block__title::before {
  content: "";
  background-color: #f4f4f4;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.tabs-block__title._tab-active {
  color: #fff;
}
.tabs-block__title._tab-active::before {
  background-color: #fecc00;
  height: calc(100% + 1rem);
}
.tabs-block__text:not(:last-child) {
  margin-bottom: 1.875rem;
}
.tabs-block__specs {
  max-width: 50rem;
}
.map {
  width: 100%;
}
.map span {
  font-weight: 700;
  color: #0071ca;
}
.header {
  background-color: #fecc00;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.9375rem;
  position: relative;
}
.header__container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  box-shadow: -1.875rem 0.1875rem 1.875rem rgba(0, 0, 0, 0.07);
  background-color: #fff;
  width: 100vw;
  height: calc(100% + 1.4375rem);
  z-index: 2;
}
.header__logo {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: calc(100% + 1.4375rem);
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
  padding-left: 0.9375rem;
}
.header__logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  z-index: 3;
  background-color: #fff;
}
.header__logo::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 85.6%;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
}
.header__logo img {
  position: relative;
  z-index: 4;
  aspect-ratio: 48/47.2;
}
.header__menu {
  flex-grow: 1;
}
.header__lang {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.5625rem;
  align-items: center;
}
.header__lang a {
  text-transform: uppercase;
  padding: 0.1875rem 0.3125rem;
  border: 0.0625rem transparent solid;
  border-radius: 0.125rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}
.header__lang a {
  transition: color 0.3s;
}
.header__lang .current-lang a {
  border-color: #fff;
  pointer-events: none;
}
.menu__item {
  transition: all 0.2s;
}
.menu__item:has(.menu__sublist) {
  position: relative;
  cursor: pointer;
}
.menu__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -webkit-column-gap: 1.5625rem;
  -moz-column-gap: 1.5625rem;
  column-gap: 1.5625rem;
  row-gap: 0.3125rem;
}
.menu__title {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 2rem 0;
}
.menu__title._spoiler-active::before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.menu__title::before {
  display: none;
  font-size: 0.25rem;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.menu__title:has(+ .menu__sublist) {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  flex-direction: row-reverse;
}
.menu__title:has(+ .menu__sublist)::before {
  display: block;
}
.subitem__block {
  position: relative;
}
.subitem__title {
  transition: all 0.3s;
}
.subitem__link {
  display: block;
}
.subitem__title::before {
  display: none;
  font-size: 0.25rem;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.footer {
  background-color: #333;
}
.footer__logos {
  display: flex;
  gap: 3.4375rem;
  justify-content: center;
  align-items: center;
}
.footer__logo {
  max-height: 3.5rem;
  max-width: 8.75rem;
}
.footer__list {
  display: flex;
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem;
  row-gap: 1.125rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__list li {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}
.footer__list li a {
  transition: color 0.3s;
}
.footer__bottom {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: #fff 0.0625rem solid;
}
.footer__bottom .footer__container {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.footer__copy {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  flex-grow: 1;
}
.social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
.social__item {
  border: 0.0625rem #fff solid;
  height: 1.5625rem;
  width: 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s;
}
.tabs-slider__navigation {
  display: inline-flex;
  padding-bottom: 0.625rem;
  padding-right: 0.9375rem;
  width: 100%;
  overflow-x: auto;
}
.tabs-slider__navigation:not(:last-child) {
  margin-bottom: 1.8125rem;
}
.tabs-slider__title {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: uppercase;
  border-radius: 0.3125rem;
  border: 0.125rem solid #fecc00;
  transition: all 0.3s;
  flex-shrink: 0;
}
.tabs-slider__title._tab-active {
  background-color: #fecc00;
  color: #fff;
}
.benefits-section__top {
  background-color: #fecc00;
}
.benefits-section__bottom {
  background-color: #f4f4f4;
}
.benefits-section__block--left {
  padding: 4.666667% 9.5% 4.666667% 0;
}
.benefits-section__block--right {
  padding: 6.682578% 0 6.682578% 4.77327%;
}
.benefits-section__block--center {
  padding: 6.682578% 12.887828% 14.797136% 8.837209%;
}
.benefits-section__image {
  width: 100%;
  height: 100%;
  position: relative;
}
.benefits-section__image img {
  position: absolute;
  top: 0;
  left: 0;
}
.benefits-section__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.125rem;
}
.benefits-section__title:not(:last-child) {
  margin-bottom: 1rem;
}
.benefits-section__text {
  font-size: 0.875rem;
}
.item-news-section {
  background: #f4f4f4;
  box-shadow: 0 0.3125rem 1.875rem 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.item-news-section__wrapper {
  background-color: #fff;
  padding: 1.5625rem 1.875rem 3.1875rem 1.5625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}
.item-news-section__wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.item-news-section__wrapper:has(> img) {
  padding-bottom: 2.25rem;
}
.item-news-section__wrapper:has(> img)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}
.item-news-section__wrapper:has(> img) .item-news-section__title {
  flex-grow: 0;
  color: #fff;
}
.item-news-section__wrapper:has(> img) .item-news-section__text {
  color: #fff;
}
.item-news-section__wrapper:has(> img) .item-news-section__body {
  max-width: 24.25rem;
  gap: 1.0625rem;
}
.item-news-section__date {
  min-width: 4.375rem;
  min-height: 4.375rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  align-self: flex-start;
  text-transform: uppercase;
  color: #fff;
  background-color: #fecc00;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.3125rem;
  font-weight: 700;
  padding: 0.3125rem;
}
.item-news-section__date:not(:last-child) {
  margin-bottom: 3.1875rem;
}
.item-news-section__date span {
  font-size: 1rem;
}
.item-news-section__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 2.0625rem;
  position: relative;
  z-index: 2;
}
.item-news-section__title {
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  flex-grow: 1;
}
.item-news-section__text {
  color: #000;
  font-size: 0.9375rem;
  text-align: center;
}
.news-section__header {
  display: flex;
  align-items: center;
}
.news-section__title {
  flex-grow: 1;
}
.pietro {
  display: grid;
  min-width: 0;
  grid-template-columns: 0.9375rem 1fr minmax(auto, 71.25rem) 1fr 0.9375rem;
}
.pietro > * {
  min-width: 0;
  grid-column: 1/4;
}
.pietro__image {
  flex: 0 0 46.4756%;
}
.pietro__image img {
  aspect-ratio: 600/450;
  height: auto;
}
.pietro__body {
  padding-right: 0.9375rem;
  padding-bottom: 1.875rem;
  background: #f4f4f4;
  box-shadow: 0 0.3125rem 1.875rem 0 rgba(0, 0, 0, 0.05);
}
.pietro__logo {
  aspect-ratio: 227/60;
}
.pietro__logo:not(:last-child) {
  margin-bottom: 2.25rem;
}
.pietro__text:not(:last-child) {
  margin-bottom: 1.8125rem;
}
.pietro__actions {
  display: flex;
  gap: 2.25rem;
}
.info-section__title:not(:last-child) {
  margin-bottom: 1.25rem;
}
.products-catalog__header {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
}
.products-catalog__title {
  flex-grow: 1;
}
.products-catalog__button-link {
  font-weight: 500;
}
.products-catalog__item .product-item__link {
  margin-bottom: 0;
}
.product__breadcrumbs:not(:last-child) {
  margin-bottom: 1.25rem;
}
.hero-product__image {
  flex: 0 0 41.666667%;
  border-radius: 0.3125rem;
  overflow: hidden;
  aspect-ratio: 475/393;
}
.hero-product__body > * {
  margin-bottom: 1.25rem;
}
.hero-product__label {
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.875rem;
  background-color: #fecc00;
  border-radius: 0.3125rem;
  padding: 0.625rem;
  margin-bottom: 1.5rem;
}
.hero-product__title {
  margin-bottom: 2.125rem;
}
.hero-product__text {
  margin-bottom: 2.125rem;
}
.hero-product__button {
  padding: 1.125rem 1.5625rem;
}
.hero-product__body > *:last-child {
  margin-bottom: 0;
}
.specs {
  border-radius: 0.625rem;
  border: 0.0625rem #dedede solid;
  box-shadow: 0 0.1875rem 1.875rem 0 rgba(0, 0, 0, 0.07);
}
.specs dd,
.specs dt {
  font-weight: 500;
  padding: 1.125rem 1.25rem;
}
.contact-banner {
  width: 100%;
  background: no-repeat center/cover;
  position: relative;
}
.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.8);
}
.contact-banner__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-banner__title {
  color: #fff;
  text-align: center;
  font-weight: 500;
}
.contact-banner__title:not(:last-child) {
  margin-bottom: 2.5rem;
}
.contact-banner__title:not(:last-child):not(:last-child) {
  margin-bottom: 1.875rem;
}
.contact-banner__button {
  padding: 1.0625rem 1.5625rem;
}
.contact-banner__button:not(:last-child) {
  margin-bottom: 2.5rem;
}
.contact-banner__button:not(:last-child):not(:last-child) {
  margin-bottom: 1.875rem;
}
.services-tab__image {
  flex: 0 0 32.192982%;
  aspect-ratio: 367/307;
  border-radius: 0.3125rem;
  overflow: hidden;
  max-width: 22.9375rem;
}
.services-tab__item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.services-tab__item:not(:last-child) {
  margin-bottom: 1.5625rem;
}
.services-tab__link {
  flex-grow: 1;
  transition: color 0.3s;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.125rem;
}
.services-tab__button-link {
  flex-shrink: 0;
  padding: 0.875rem 2.125rem;
}
.hero-article__image {
  flex: 0 0 41.666667%;
  aspect-ratio: 475/393;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.hero-article__body > * {
  margin-bottom: 1.25rem;
}
.hero-article__link {
  padding: 1.125rem 1.875rem;
}
.hero-article__body > *:last-child {
  margin-bottom: 0;
}
.history__our-mission:not(:last-child) {
  margin-bottom: 2.5rem;
}
.history__benefits:not(:last-child) {
  margin-bottom: 2.5rem;
}
.info-history__image {
  aspect-ratio: 329/231;
  flex: 0 0 28.859649%;
}
.our-mission {
  background: #f4f4f4;
  box-shadow: 0 0.1875rem 1.875rem 0 rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}
.our-mission::before {
  content: "";
  width: 46.875%;
  aspect-ratio: 675/396;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(img/history/mission.svg) no-repeat top left/contain;
  mix-blend-mode: color-dodge;
  max-height: 100%;
  -webkit-transform: translateY(1.0625rem);
  transform: translateY(1.0625rem);
}
.our-mission__container {
  display: grid;
  position: relative;
}
.our-mission__text ul li:not(:last-child) {
  margin-bottom: 1.3125rem;
}
.offer-history__items {
  display: grid;
  row-gap: 0.9375rem;
  grid-template-columns: repeat(auto-fill, minmax(21.1875rem, 1fr));
}
.offer-history__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1rem 1.75rem;
  border-radius: 0.625rem;
  background: #fff;
  box-shadow: 0 0.1875rem 1.875rem 0 rgba(0, 0, 0, 0.05);
}
.offer-history__image {
  aspect-ratio: 45/50;
  width: 2.8125rem;
}
.offer-history__image:not(:last-child) {
  margin-bottom: 1rem;
}
.offer-history__label {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}
.offer-history__label:not(:last-child) {
  margin-bottom: 1.125rem;
}
.offer-history__text:not(:last-child) {
  margin-bottom: 0.875rem;
}
.tabs-underline__header {
  display: flex;
  gap: 1.5625rem;
  flex-wrap: wrap;
  align-items: center;
}
.tabs-underline__title {
  flex-grow: 1;
}
.tabs-underline__wrapper {
  max-width: 100%;
  display: flex;
  align-items: center;
}
.tabs-underline__navigation {
  display: flex;
  align-items: center;
  padding-bottom: 0.4375rem;
  overflow-x: auto;
}
.tabs-underline__button {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  position: relative;
  transition: color 0.3s;
  flex-shrink: 0;
}
.tabs-underline__button span {
  display: inline-block;
  position: relative;
  padding-bottom: 0.1875rem;
}
.tabs-underline__button:last-child {
  padding-right: 0;
}
.tabs-underline__button:last-child::before {
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}
.tabs-underline__button:first-child {
  padding-left: 0;
}
.tabs-underline__button:first-child::before {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}
.tabs-underline__button::before {
  content: "";
  position: absolute;
  height: 0.125rem;
  width: 100%;
  left: 0;
  bottom: 0.03125rem;
  background-color: #f4f4f4;
}
.tabs-underline__button span::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 0.1875rem;
  background-color: #fecc00;
  border-radius: 0.625rem;
  transition: width 0.3s;
}
.tabs-underline__button._tab-active span::after {
  width: 100%;
}
.items-certificates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  gap: 0.6875rem;
}
.items-certificates__item {
  display: block;
}
.items-certificates__item img {
  aspect-ratio: 195/280;
}
.news__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  row-gap: 1.25rem;
  -webkit-column-gap: 0.875rem;
  -moz-column-gap: 0.875rem;
  column-gap: 0.875rem;
}
.news__items:not(:last-child) {
  margin-bottom: 1.875rem;
}
.news__button {
  padding: 1.125rem 2.1875rem;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.item-news {
  border-radius: 10px;
  background-color: #fff;
  padding: 1.5625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}
.item-news img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.item-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}
.item-news__date {
  min-width: 4.375rem;
  min-height: 4.375rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  align-self: flex-start;
  text-transform: uppercase;
  color: #fff;
  background-color: #fecc00;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.3125rem;
  font-weight: 700;
  padding: 0.3125rem;
}
.item-news__date:not(:last-child) {
  margin-bottom: 3.1875rem;
}
.item-news__date span {
  font-size: 1rem;
}
.item-news__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.9375rem;
  position: relative;
  z-index: 2;
}
.item-news__title {
  text-align: center;
  font-weight: 700;
  flex-grow: 1;
  color: #fff;
  text-transform: uppercase;
}
.item-news__text {
  color: #fff;
  font-size: 0.9375rem;
  text-align: center;
}
.presentation__text {
  font-size: 0.9375rem;
  text-align: center;
}
.presentation__text:not(:last-child) {
  margin-bottom: 2.0625rem;
}
.presentation__video {
  aspect-ratio: 1138/636;
}
.presentation__video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.contacts__breadcrumbs:not(:last-child) {
  margin-bottom: 1.875rem;
}
.form-contacts {
  border-radius: 0.625rem;
  background: #f4f4f4;
  padding: 1.9375rem 1.25rem 1.5rem 1.25rem;
}
.form-contacts__title {
  font-size: 2rem;
}
.form-contacts__title:not(:last-child) {
  margin-bottom: 1.875rem;
}
.form-contacts__items {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
}
.form-contacts__items:not(:last-child) {
  margin-bottom: 1rem;
}
.form-contacts__field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.625rem;
  padding-left: 10px;
  padding-right: 10px;
  flex: 1 0 100%;
}
.form-contacts__field:has(.form-contacts__error) .input,
.form-contacts__field:has(.form-contacts__error) .textarea {
  border-color: #fe1500;
}
.form-contacts__error {
  font-size: 0.625rem;
  color: #fe1500;
}
.form-contacts__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.form-contacts__captcha {
  width: 16.9375rem;
  height: 4.125rem;
}
.form-contacts__button {
  font-weight: 500;
  font-size: 1.125rem;
}
.input,
.textarea {
  border: 0.0625rem solid transparent;
  padding: 1.0625rem 1.25rem;
  border-radius: 0.3125rem;
  background: #fff;
  box-shadow: 0 0.1875rem 1.875rem 0 rgba(0, 0, 0, 0.07);
  font-size: 0.8125rem;
  font-weight: 300;
}
.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #a0a0a0;
}
.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #a0a0a0;
}
.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #a0a0a0;
}
.input::placeholder,
.textarea::placeholder {
  color: #a0a0a0;
}
.textarea {
  padding-right: 1.1875rem 1.25rem;
  resize: none;
  overflow-x: hidden;
  height: 7.6875rem;
}
.info-contacts__item {
  display: flex;
  gap: 1rem;
}
.info-contacts__icon {
  border-radius: 50%;
  background-color: #0071ca;
  color: #fff;
}
.info-contacts__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.info-contacts__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page--padding {
  padding-top: 2.0625rem;
}
.page__hero.hero--presentation {
  margin-bottom: 1.875rem;
}
.page__benefits {
  font-size: 0;
}
.documentation .documentation--wrapper {
  display: flex;
  margin: 0 -1.875rem;
  flex-wrap: wrap;
}
.documentation .documentation--wrapper .documentation--item {
  flex: 0 0 calc(100% / 3);
  padding: 30px;
  min-width: 248px;
}
.documentation .documentation--wrapper .documentation--item h3 {
  font-size: 28px;
  margin: 0 0 40px;
  font-weight: 700;
}
.documentation .documentation--wrapper .documentation--item em {
  font-size: 18px;
}

.documentation
  .documentation--wrapper
  .documentation--item
  .list-documentation {
  margin: 10px -20px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.documentation
  .documentation--wrapper
  .documentation--item
  .list-documentation
  li:not(:last-child) {
  border-right: 1px solid #a8a8a8;
}

.documentation
  .documentation--wrapper
  .documentation--item
  .list-documentation
  li {
  padding: 0 20px;
  margin-top: 15px;
  list-style: none;
}
.documentation
  .documentation--wrapper
  .documentation--item
  .list-documentation
  li
  a {
  color: #fecc00;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline;
}

@media (min-width: 34.375em) {
  .slider-section__slider::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 19.6875rem;
    -webkit-transform: translateX(6.25rem);
    transform: translateX(6.25rem);
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(
      270deg,
      #fff 0,
      #fff 55.56%,
      rgba(244, 244, 244, 0) 100%
    );
  }
  .product-item__image:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .product-slider::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20%;
    -webkit-transform: translateX(40%);
    transform: translateX(40%);
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(
      270deg,
      #fff 0,
      #fff 55.56%,
      rgba(244, 244, 244, 0) 100%
    );
  }
  .products-catalog__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15.625rem, 1fr));
    gap: 1.0625rem;
  }
  .products-catalog__item .product-item__body {
    padding: 1rem 1rem 1.25rem;
  }
}
@media (min-width: 47.99875em) {
  .hero--main .hero__container {
    padding-left: 4.0625rem;
  }
  .tabs-block .splide {
    display: none;
  }
  .benefits-section__top .benefits-section__container {
    display: grid;
    grid-template-columns: 1fr 26.1875rem 1fr;
  }
  .benefits-section__bottom {
    display: grid;
    grid-template-columns: 1fr 26.1875rem 1fr;
  }
  .item-news-section {
    padding-top: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .pietro__wrapper {
    display: flex;
  }
  .pietro__body {
    -webkit-transform: translateY(3.125rem);
    transform: translateY(3.125rem);
    position: relative;
  }
  .pietro__body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100vw;
    background: #f4f4f4;
  }
  .hero-product__container {
    display: flex;
    align-items: center;
  }
  .specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .specs dd:not(:last-of-type),
  .specs dt:not(:last-of-type) {
    border-bottom: 0.0625rem #dedede solid;
  }
  .specs dt {
    border-right: 0.0625rem #dedede solid;
  }
  .services-tab {
    display: flex;
    align-items: start;
  }
  .services-tab__body {
    padding-left: 2.125rem;
  }
  .hero-article__container {
    display: flex;
    align-items: start;
  }
  .hero-article__body {
    padding-left: 2.1875rem;
  }
  .info-history__container {
    display: flex;
    align-items: center;
  }
  .info-history__text {
    padding-right: 0.6875rem;
  }
  .our-mission__container {
    grid-template-columns: 46.22807% 1fr;
  }
  .items-certificates__item {
    padding: 0.625rem 0.75rem;
    background-color: #fff;
    box-shadow: 0 0.1945625rem 1.94575rem 0 rgba(0, 0, 0, 0.07);
  }
  .form-contacts__field--small {
    flex-basis: 50%;
  }
}
@media (min-width: 47.99875em) and (min-width: 73.125em) {
  .hero-product__body {
    padding-left: 2.1875rem;
  }
}
@media (min-width: 61.99875em) {
  .news-section__items {
    display: grid;
    grid-template-columns: 45.175439% 1fr 1fr;
    gap: 1rem;
  }
  .contacts__body {
    display: flex;
    align-items: start;
  }
  .contacts__form {
    flex: 0 0 48.245614%;
  }
}
@media (min-width: 71.87375em) {
  .menu__sublist ul li,
  .subitem__link {
    padding: 0.5rem 1.25rem;
    text-wrap: nowrap;
    transition: color 0.3s;
  }
  .menu__sublist {
    transition: all 0.3s;
    position: absolute;
    left: 0;
    top: 100%;
    width: -webkit-max-content;
    width: max-content;
    background-color: #fff;
    border-top: 0.125rem #666 solid;
  }
  .subitem__title {
    padding: 0.5rem 1.25rem;
    text-wrap: nowrap;
  }
  .subitem__title._spoiler-active {
    background-color: #fecc00;
  }
  .subitem__block ul {
    padding-left: 1.25rem;
  }
}
@media (min-width: 71.87375em) and (any-hover: hover) {
  .subitem__title:not(._spoiler-active):hover {
    color: #fecc00;
  }
  .menu__sublist ul li:hover,
  .subitem__link:hover {
    color: #fecc00;
  }
}
@media (min-width: 73.125em) {
  .popup__text {
    font-size: 1.5rem;
  }
  .slider-section--margin:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .slider-section__header:not(:last-child) {
    margin-bottom: 1.875rem;
  }
  .hero--presentation {
    padding-bottom: 2.8125rem;
  }
  .hero__title {
    font-size: 3rem;
  }
  .hero__title--small-center {
    font-size: 2rem;
  }
  .hero__deco-title {
    padding-top: 1.75rem;
  }
  .hero__deco-title {
    padding-right: 4.375rem;
  }
  .hero__deco-title {
    padding-bottom: 1.75rem;
  }
  .hero__deco-title {
    padding-left: 4.375rem;
  }
  .hero__deco-title {
    font-size: 2.5rem;
  }
  .title {
    font-size: 2.5rem;
  }
  .title--decor::before {
    width: 5.9375rem;
  }
  .map {
    height: 31.25rem;
  }
  .header__logo {
    width: 14.375rem;
  }
  .header__logo img {
    width: 5rem;
  }
  .header__menu {
    padding-left: 15.3125rem;
  }
  .footer {
    padding-top: 3.375rem;
  }
  .footer__top:not(:last-child) {
    margin-bottom: 3.125rem;
  }
  .footer__logos:not(:last-child) {
    margin-bottom: 3.125rem;
  }
  .footer__list:not(:last-child) {
    margin-bottom: 1.875rem;
  }
  .tabs-slider__navigation {
    gap: 1.25rem;
  }
  .tabs-slider__title {
    font-size: 1.125rem;
  }
  .news-section__header:not(:last-child) {
    margin-bottom: 1.875rem;
  }
  .pietro__body {
    padding-top: 3.125rem;
  }
  .pietro__body {
    padding-left: 5.3125rem;
  }
  .pietro__logo {
    width: 14.1875rem;
  }
  .catalog__info:not(:last-child) {
    margin-bottom: 4rem;
  }
  .catalog__products:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .products-catalog__header:not(:last-child) {
    margin-bottom: 1.875rem;
  }
  .product__hero:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .product__tabs:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .product__contact-banner:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .product__news-section:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .contact-banner {
    padding-top: 4.25rem;
  }
  .contact-banner {
    padding-bottom: 4.25rem;
  }
  .contact-banner__title {
    font-size: 2rem;
  }
  .service__info:not(:last-child) {
    margin-bottom: 3.125rem;
  }
  .service__tabs:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .article__breadcrumbs:not(:last-child) {
    margin-bottom: 3.375rem;
  }
  .article__hero:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .hero-article__title {
    margin-bottom: 2.25rem;
  }
  .hero-article__text {
    margin-bottom: 3.125rem;
  }
  .history__info:not(:last-child) {
    margin-bottom: 2.9375rem;
  }
  .history__offer:not(:last-child) {
    margin-bottom: 3.5rem;
  }
  .our-mission {
    padding-top: 4.1875rem;
  }
  .our-mission {
    padding-bottom: 5.8125rem;
  }
  .our-mission__container {
    gap: 3.75rem;
  }
  .our-mission__title {
    font-size: 2rem;
  }
  .our-mission__title:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .offer-history__title:not(:last-child) {
    margin-bottom: 1.9375rem;
  }
  .offer-history__items {
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem;
  }
  .tabs-underline__header:not(:last-child) {
    margin-bottom: 2.6875rem;
  }
  .tabs-underline__button {
    padding-right: 1.5625rem;
  }
  .tabs-underline__button {
    padding-left: 1.5625rem;
  }
  .presentation__text {
    padding-left: 4.375rem;
  }
  .presentation__text {
    padding-right: 4.375rem;
  }
  .contacts__info {
    padding-left: 2.5rem;
  }
  .info-contacts__item:not(:last-child) {
    margin-bottom: 3rem;
  }
  .info-contacts__icon {
    width: 4rem;
  }
  .info-contacts__icon {
    height: 4rem;
  }
  .info-contacts__icon {
    font-size: 1.125rem;
  }
  .info-contacts__label {
    font-size: 1.5rem;
  }
  .page__hero--main {
    margin-bottom: 2.8125rem;
  }
  .page__hero {
    margin-bottom: 6.25rem;
  }
  .page__catalog-section {
    margin-bottom: 5rem;
  }
  .page__benefits {
    margin-bottom: 5rem;
  }
  .page__news-section {
    margin-bottom: 5.5rem;
  }
  .page__pietro {
    margin-bottom: 10.0625rem;
  }
  .page__catalog {
    margin-bottom: 6.875rem;
  }
  .page__product {
    margin-bottom: 6.875rem;
  }
  .page__service {
    margin-bottom: 6.875rem;
  }
  .page__article {
    margin-bottom: 6.875rem;
  }
  .page__history {
    margin-bottom: 6.25rem;
  }
  .page__news {
    margin-bottom: 5rem;
  }
  .page__presentation {
    margin-bottom: 9.6875rem;
  }
  .page__contacts {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 25em) {
  .footer__list:nth-child(1) {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    align-content: center;
  }
  .footer__list:nth-child(2) {
    flex-direction: column;
    align-items: center;
  }
  .contact-banner__button {
    width: 100%;
  }
}
@media (max-width: 20em) {
  .popup__text {
    font-size: 0.875rem;
  }
  .slider-section--margin:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .slider-section__header:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .hero--presentation {
    padding-bottom: 1.25rem;
  }
  .hero__title {
    font-size: 1.5rem;
  }
  .hero__title--small-center {
    font-size: 1rem;
  }
  .hero__deco-title {
    padding-top: 0.875rem;
  }
  .hero__deco-title {
    padding-right: 0.9375rem;
  }
  .hero__deco-title {
    padding-bottom: 0.875rem;
  }
  .hero__deco-title {
    padding-left: 0.9375rem;
  }
  .hero__deco-title {
    font-size: 1.25rem;
  }
  .title {
    font-size: 1.5rem;
  }
  .title--decor::before {
    width: 3.4375rem;
  }
  .map {
    height: 25rem;
  }
  .header__logo {
    width: 9.0625rem;
  }
  .header__logo img {
    width: 3rem;
  }
  .header__menu {
    padding-left: 10rem;
  }
  .footer {
    padding-top: 2.125rem;
  }
  .footer__top:not(:last-child) {
    margin-bottom: 2.1875rem;
  }
  .footer__logos:not(:last-child) {
    margin-bottom: 2.1875rem;
  }
  .footer__list:not(:last-child) {
    margin-bottom: 1.125rem;
  }
  .tabs-slider__navigation {
    gap: 0.625rem;
  }
  .tabs-slider__title {
    font-size: 0.8125rem;
  }
  .news-section__header:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .pietro__body {
    padding-top: 1.25rem;
  }
  .pietro__body {
    padding-left: 0.9375rem;
  }
  .pietro__logo {
    width: 6.25rem;
  }
  .catalog__info:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .catalog__products:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .products-catalog__header:not(:last-child) {
    margin-bottom: 1rem;
  }
  .product__hero:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .product__tabs:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .product__contact-banner:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .product__news-section:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .contact-banner {
    padding-top: 2.4375rem;
  }
  .contact-banner {
    padding-bottom: 2.1875rem;
  }
  .contact-banner__title {
    font-size: 1.25rem;
  }
  .service__info:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .service__tabs:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .article__breadcrumbs:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .article__hero:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .hero-article__title {
    margin-bottom: 1.25rem;
  }
  .hero-article__text {
    margin-bottom: 1.5rem;
  }
  .history__info:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .history__offer:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .our-mission {
    padding-top: 1.5rem;
  }
  .our-mission {
    padding-bottom: 1.5rem;
  }
  .our-mission__container {
    gap: 1rem;
  }
  .our-mission__title {
    font-size: 1.25rem;
  }
  .our-mission__title:not(:last-child) {
    margin-bottom: 1rem;
  }
  .offer-history__title:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .offer-history__items {
    -webkit-column-gap: 0.9375rem;
    -moz-column-gap: 0.9375rem;
    column-gap: 0.9375rem;
  }
  .tabs-underline__header:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .tabs-underline__button {
    padding-right: 0.46875rem;
  }
  .tabs-underline__button {
    padding-left: 0.46875rem;
  }
  .info-contacts__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .info-contacts__icon {
    width: 2.5rem;
  }
  .info-contacts__icon {
    height: 2.5rem;
  }
  .info-contacts__icon {
    font-size: 0.75rem;
  }
  .info-contacts__label {
    font-size: 0.875rem;
  }
  .page__hero--main {
    margin-bottom: 1.25rem;
  }
  .page__hero {
    margin-bottom: 3.1875rem;
  }
  .page__catalog-section {
    margin-bottom: 1.875rem;
  }
  .page__benefits {
    margin-bottom: 2.5rem;
  }
  .page__news-section {
    margin-bottom: 2.5rem;
  }
  .page__pietro {
    margin-bottom: 3.75rem;
  }
  .page__catalog {
    margin-bottom: 3.75rem;
  }
  .page__product {
    margin-bottom: 3.125rem;
  }
  .page__service {
    margin-bottom: 3.125rem;
  }
  .page__article {
    margin-bottom: 3.125rem;
  }
  .page__history {
    margin-bottom: 3.125rem;
  }
  .page__news {
    margin-bottom: 3.125rem;
  }
  .page__presentation {
    margin-bottom: 3.125rem;
  }
  .page__contacts {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 71.87375em) {
  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    overflow: auto;
    transition: right 0.3s;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 3.35rem;
    background-color: #fecc00;
    right: -100%;
    top: 0;
    transition: right 0.3s;
    z-index: 2;
  }
  .menu-open .menu__body {
    right: 0;
  }
  .menu-open .menu__body::before {
    right: 0;
  }
  .menu__sublist ul li,
  .subitem__link {
    padding: 0 1.875rem;
  }
  .menu__sublist ul li:not(:last-child),
  .subitem__link:not(:last-child) {
    margin-bottom: 0.3125rem;
  }
  .icon-menu {
    display: block;
    position: relative;
    width: 1.625rem;
    height: 1.1875rem;
    z-index: 5;
  }
  .icon-menu span,
  .icon-menu::after,
  .icon-menu::before {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.1875rem;
    border-radius: 0.125rem;
    background-color: #fff;
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }
  .menu-open .icon-menu span {
    width: 0;
  }
  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .hero {
    padding-top: 1.25rem;
  }
  .hero--main {
    min-height: calc(100svh - 3.35rem);
  }
  .header__container {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
  .header__container::before {
    height: calc(100% + 0.625rem);
  }
  .header__logo {
    height: calc(100% + 0.625rem);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    padding-left: 2.9375rem;
  }
  .menu__body {
    background-color: #f4f4f4;
    padding-top: 4.25rem;
  }
  .menu__item:has(.menu__sublist) {
    width: 100%;
  }
  .menu__item:has(.menu__sublist):not(:last-child) {
    border-bottom: 0.0625rem #fff solid;
  }
  .menu__list {
    flex-direction: column;
  }
  .menu__sublist {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding-bottom: 0.75rem;
  }
  .menu__title {
    padding: 0.625rem 1.875rem;
    justify-content: left;
  }
  .subitem__block {
    padding-left: 0.625rem;
  }
  .subitem__title {
    padding: 0.625rem 1.875rem;
    font-weight: 500;
  }
  .subitem__title._spoiler-active::before {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .subitem__title:has(+ .subitem__list) {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.3125rem;
    flex-direction: row-reverse;
  }
  .subitem__title:has(+ .subitem__list)::before {
    display: block;
  }
  .subitem__item {
    padding: 0 1.875rem;
  }
  .subitem__item:not(:last-child) {
    margin-bottom: 0.3125rem;
  }
  .page--padding {
    padding-top: 1.25rem;
  }
}
@media (max-width: 71.87375em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}
@media (max-width: 61.99875em) {
  .news-section__item:not(:first-child) {
    display: none;
  }
  .services-tab__item {
    flex-direction: column;
    align-items: stretch;
  }
  .contacts__form:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .contacts__info {
    padding-left: 1.25rem;
  }
  .info-contacts__item {
    flex-direction: column;
    align-items: center;
  }
  .info-contacts__title {
    display: none;
  }
  .info-contacts__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 0.3125rem;
  }
}
@media (max-width: 47.99875em) {
  .documentation .documentation--wrapper .documentation--item {
    flex: 0 0 calc(100% / 2);
  }
  .breadcrumbs__item {
    font-size: 0.75rem;
  }
  .slider-section__header {
    flex-direction: column;
    align-items: start;
  }
  .slider-section__arrows {
    display: none;
  }
  .text ul {
    padding-left: 1.5625rem;
  }
  .hero__title:not(:last-child) {
    margin-bottom: 1rem;
  }
  .hero__title {
    text-align: center;
  }
  .hero__title--small-center {
    font-weight: 500;
  }
  .hero__deco-title {
    margin-left: -0.9375rem;
  }
  .hero__text {
    font-size: 0.875rem;
    /* text-align: center; */
  }
  .hero__text:not(:last-child) {
    margin-bottom: 1rem;
  }
  .product-slider--systems .product-item__body {
    padding: 0.625rem;
  }
  .product-item__link--underline {
    font-size: 0.75rem;
  }
  .button {
    padding: 0.5625rem 0.9375rem;
    font-weight: 500;
    font-size: 0.8125rem;
  }
  .tabs-block__wrapper:not(:last-child) {
    margin-bottom: 1.125rem;
  }
  .service__tabs .tabs-block__wrapper {
    display: none;
  }
  .tabs-block__title {
    padding: 0.5rem 1.25rem;
  }
  .tabs-block__text:not(:last-child) {
    margin-bottom: 1.625rem;
  }
  .header__lang {
    gap: 0.25rem;
  }
  .footer__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__list li {
    font-size: 1rem;
  }
  .footer__bottom .footer__container {
    padding-top: 0.625rem;
    padding-bottom: 0.9375rem;
    flex-direction: column;
  }
  .footer__copy {
    font-size: 0.625rem;
    text-align: center;
    flex-grow: 0;
  }
  .social__item {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.5625rem;
  }
  .tabs-slider__navigation {
    margin-right: -0.9375rem;
  }
  .tabs-slider__navigation:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .tabs-slider__title {
    padding: 0.5625rem 0.9375rem;
  }
  .benefits-section__top .benefits-section__container .benefits-section__block {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
  .benefits-section__block--left {
    padding: 1.25rem 0.9375rem;
  }
  .benefits-section__block--right {
    padding: 1.25rem 0.9375rem;
  }
  .benefits-section__block--center {
    padding: 1.25rem 0.9375rem;
  }
  .benefits-section__image {
    aspect-ratio: 320/230;
  }
  .benefits-section__title:not(:last-child) {
    margin-bottom: 0.875rem;
  }
  .item-news-section__wrapper {
    padding: 0.625rem 0.5rem;
    padding-bottom: 1.125rem;
  }
  .item-news-section__date {
    min-width: 3.125rem;
    min-height: 3.125rem;
    font-size: 1.25rem;
  }
  .item-news-section__date span {
    font-size: 0.875rem;
  }
  .pietro__wrapper {
    grid-column: 1/6;
  }
  .pietro__logo {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .pietro__text {
    text-align: center;
  }
  .pietro__actions {
    gap: 0.75rem;
    flex-direction: column;
  }
  .info-section__title:not(:last-child) {
    margin-bottom: 0.875rem;
  }
  .products-catalog__header {
    flex-direction: column-reverse;
    gap: 2.75rem;
    align-items: stretch;
  }
  .hero-product__label {
    padding: 0.3125rem 0.625rem;
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .hero-product__title {
    margin-bottom: 1.25rem;
    text-align: center;
  }
  .hero-product__text {
    margin-bottom: 1.5rem;
  }
  .specs dd,
  .specs dt {
    text-align: center;
    padding: 0.75rem 1.125rem;
    font-size: 0.875rem;
  }
  .specs dd:not(:last-child),
  .specs dt:not(:last-child) {
    border-bottom: 0.0625rem #dedede solid;
  }
  .specs dd {
    font-weight: 400;
  }
  .services-tab__image:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .services-tab__link {
    font-size: 0.875rem;
  }
  .hero-article__image {
    margin-bottom: 0.875rem;
  }
  .hero-article__title {
    text-align: center;
  }
  .hero-article__link {
    padding: 0.5625rem 0.9375rem;
    font-weight: 500;
    font-size: 0.8125rem;
  }
  .info-history__text:not(:last-child) {
    margin-bottom: 0.625rem;
  }
  .our-mission::before {
    width: 135.625%;
    -webkit-transform: translateX(-43.317972%);
    transform: translateX(-43.317972%);
  }
  .our-mission__title {
    text-align: center;
  }
  .offer-history__item {
    align-items: center;
  }
  .offer-history__image {
    width: 1.9375rem;
  }
  .offer-history__image:not(:last-child) {
    margin-bottom: 0.625rem;
  }
  .offer-history__label {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
  }
  .offer-history__label:not(:last-child) {
    margin-bottom: 0.875rem;
  }
  .offer-history__text {
    text-align: center;
  }
  .tabs-underline__header {
    flex-direction: column;
    align-items: start;
  }
  .tabs-underline__navigation {
    max-width: 100%;
  }
  .tabs-underline__button {
    font-size: 1rem;
  }
  .items-certificates {
    gap: 0.5rem;
  }
  .news__items {
    row-gap: 0.875rem;
  }
  .news__items:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .item-news {
    padding: 0.625rem 0.5rem;
    padding-bottom: 1.125rem;
  }
  .item-news__date {
    min-width: 3.125rem;
    min-height: 3.125rem;
    font-size: 1.25rem;
  }
  .item-news__date span {
    font-size: 0.875rem;
  }
  .presentation__text {
    padding-left: 0.0000000625rem;
  }
  .presentation__text {
    padding-right: 0.0000000625rem;
  }
  .presentation__text {
    font-size: 0.875rem;
    text-align: left;
  }
  .presentation__text:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .form-contacts__title {
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
  }
  .form-contacts__title:not(:last-child) {
    margin-bottom: 1.125rem;
  }
  .form-contacts__items {
    row-gap: 0.625rem;
  }
  .form-contacts__items:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 34.375em) {
  .slider-section__slider .product-item__body {
    padding: 0.625rem;
  }
  .documentation .documentation--wrapper .documentation--item {
    flex: 0 0 100%;
  }
  .products-catalog .product-item,
  .tabs-slider .product-item {
    flex-grow: 1;
  }
  .products-catalog .product-item__body,
  .tabs-slider .product-item__body {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-direction: row;
    border-radius: 0.3125rem;
    padding: 0.625rem 0.625rem 0.625rem 0.9375rem;
    box-shadow: none;
    width: 100%;
  }
  .products-catalog .product-item__image,
  .tabs-slider .product-item__image {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    width: 6.4375rem;
  }
  .product-item__link {
    text-align: center;
    font-size: 0.875rem;
  }
  .product-item__bottom {
    display: none;
  }
  .product-slider--destroy .splide__slide:not(:last-child) {
    margin-bottom: 0.625rem;
  }
  .product-slider--systems {
    grid-column: 3/4;
  }
  .product-slider--systems .splide__slide:not(:last-child) {
    margin-bottom: 1rem;
  }
  .item-news-section__title {
    font-weight: 500;
  }
  .item-news-section__text {
    display: none;
  }
  .news-section__title {
    font-weight: 500;
  }
  .news-section__link {
    width: 100%;
  }
  .news-section__items:not(:last-child) {
    margin-bottom: 1rem;
  }
  .products-catalog__item:not(:last-child) {
    margin-bottom: 0.625rem;
  }
  .offer-history__items {
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  }
  .offer-history__item {
    padding: 0.875rem 0.3125rem;
  }
  .item-news__title {
    font-weight: 500;
  }
  .item-news__text {
    display: none;
  }
  .page__catalog-section > * {
    grid-column: 3/4;
  }
}
@media (max-width: 31.25em) {
  .news__button {
    width: 100%;
  }
  .form-contacts__captcha {
    width: 100%;
  }
  .form-contacts__button {
    width: 100%;
  }
}
@media (max-width: 28.125em) {
  .items-certificates {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 20em) and (max-width: 73.125em) {
  .popup__text {
    font-size: clamp(0.875rem, 0.6397058824rem + 1.1764705882vw, 1.5rem);
  }
  .slider-section--margin:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.0294117647rem + 2.3529411765vw, 3.75rem);
  }
  .slider-section__header:not(:last-child) {
    margin-bottom: clamp(1.25rem, 1.0147058824rem + 1.1764705882vw, 1.875rem);
  }
  .hero--presentation {
    padding-bottom: clamp(1.25rem, 0.6617647059rem + 2.9411764706vw, 2.8125rem);
  }
  .hero__title {
    font-size: clamp(1.5rem, 0.9352941176rem + 2.8235294118vw, 3rem);
  }
  .hero__title--small-center {
    font-size: clamp(1rem, 0.6235294118rem + 1.8823529412vw, 2rem);
  }
  .hero__deco-title {
    padding-top: clamp(0.875rem, 0.5455882353rem + 1.6470588235vw, 1.75rem);
  }
  .hero__deco-title {
    padding-right: clamp(
      0.9375rem,
      -0.3566176471rem + 6.4705882353vw,
      4.375rem
    );
  }
  .hero__deco-title {
    padding-bottom: clamp(0.875rem, 0.5455882353rem + 1.6470588235vw, 1.75rem);
  }
  .hero__deco-title {
    padding-left: clamp(0.9375rem, -0.3566176471rem + 6.4705882353vw, 4.375rem);
  }
  .hero__deco-title {
    font-size: clamp(1.25rem, 0.7794117647rem + 2.3529411765vw, 2.5rem);
  }
  .title {
    font-size: clamp(1.5rem, 1.1235294118rem + 1.8823529412vw, 2.5rem);
  }
  .title--decor::before {
    width: clamp(3.4375rem, 2.4963235294rem + 4.7058823529vw, 5.9375rem);
  }
  .map {
    height: clamp(25rem, 22.6470588235rem + 11.7647058824vw, 31.25rem);
  }
  .header__logo {
    width: clamp(9.0625rem, 7.0625rem + 10vw, 14.375rem);
  }
  .header__logo img {
    width: clamp(3rem, 2.2470588235rem + 3.7647058824vw, 5rem);
  }
  .header__menu {
    padding-left: clamp(10rem, 8rem + 10vw, 15.3125rem);
  }
  .footer {
    padding-top: clamp(2.125rem, 1.6544117647rem + 2.3529411765vw, 3.375rem);
  }
  .footer__top:not(:last-child) {
    margin-bottom: clamp(2.1875rem, 1.8345588235rem + 1.7647058824vw, 3.125rem);
  }
  .footer__logos:not(:last-child) {
    margin-bottom: clamp(2.1875rem, 1.8345588235rem + 1.7647058824vw, 3.125rem);
  }
  .footer__list:not(:last-child) {
    margin-bottom: clamp(1.125rem, 0.8426470588rem + 1.4117647059vw, 1.875rem);
  }
  .tabs-slider__navigation {
    gap: clamp(0.625rem, 0.3897058824rem + 1.1764705882vw, 1.25rem);
  }
  .tabs-slider__title {
    font-size: clamp(0.8125rem, 0.6948529412rem + 0.5882352941vw, 1.125rem);
  }
  .news-section__header:not(:last-child) {
    margin-bottom: clamp(1.25rem, 1.0147058824rem + 1.1764705882vw, 1.875rem);
  }
  .pietro__body {
    padding-top: clamp(1.25rem, 0.5441176471rem + 3.5294117647vw, 3.125rem);
  }
  .pietro__body {
    padding-left: clamp(
      0.9375rem,
      -0.7095588235rem + 8.2352941176vw,
      5.3125rem
    );
  }
  .pietro__logo {
    width: clamp(6.25rem, 3.2617647059rem + 14.9411764706vw, 14.1875rem);
  }
  .catalog__info:not(:last-child) {
    margin-bottom: clamp(1.5rem, 0.5588235294rem + 4.7058823529vw, 4rem);
  }
  .catalog__products:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.0294117647rem + 2.3529411765vw, 3.75rem);
  }
  .products-catalog__header:not(:last-child) {
    margin-bottom: clamp(1rem, 0.6705882353rem + 1.6470588235vw, 1.875rem);
  }
  .product__hero:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.0294117647rem + 2.3529411765vw, 3.75rem);
  }
  .product__tabs:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.0294117647rem + 2.3529411765vw, 3.75rem);
  }
  .product__contact-banner:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.0294117647rem + 2.3529411765vw, 3.75rem);
  }
  .product__news-section:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.0294117647rem + 2.3529411765vw, 3.75rem);
  }
  .contact-banner {
    padding-top: clamp(2.4375rem, 1.7551470588rem + 3.4117647059vw, 4.25rem);
  }
  .contact-banner {
    padding-bottom: clamp(2.1875rem, 1.4110294118rem + 3.8823529412vw, 4.25rem);
  }
  .contact-banner__title {
    font-size: clamp(1.25rem, 0.9676470588rem + 1.4117647059vw, 2rem);
  }
  .service__info:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.2647058824rem + 1.1764705882vw, 3.125rem);
  }
  .service__tabs:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.0294117647rem + 2.3529411765vw, 3.75rem);
  }
  .article__breadcrumbs:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.45rem + 4vw, 3.375rem);
  }
  .article__hero:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.0294117647rem + 2.3529411765vw, 3.75rem);
  }
  .hero-article__title {
    margin-bottom: clamp(1.25rem, 0.8735294118rem + 1.8823529412vw, 2.25rem);
  }
  .hero-article__text {
    margin-bottom: clamp(1.5rem, 0.8882352941rem + 3.0588235294vw, 3.125rem);
  }
  .history__info:not(:last-child) {
    margin-bottom: clamp(1.5rem, 0.9588235294rem + 2.7058823529vw, 2.9375rem);
  }
  .history__offer:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.1235294118rem + 1.8823529412vw, 3.5rem);
  }
  .our-mission {
    padding-top: clamp(1.5rem, 0.4882352941rem + 5.0588235294vw, 4.1875rem);
  }
  .our-mission {
    padding-bottom: clamp(1.5rem, -0.1235294118rem + 8.1176470588vw, 5.8125rem);
  }
  .our-mission__container {
    gap: clamp(1rem, -0.0352941176rem + 5.1764705882vw, 3.75rem);
  }
  .our-mission__title {
    font-size: clamp(1.25rem, 0.9676470588rem + 1.4117647059vw, 2rem);
  }
  .our-mission__title:not(:last-child) {
    margin-bottom: clamp(1rem, 0.9058823529rem + 0.4705882353vw, 1.25rem);
  }
  .offer-history__title:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.9911764706rem + 1.2941176471vw, 1.9375rem);
  }
  .offer-history__items {
    -webkit-column-gap: clamp(
      0.9375rem,
      -0.1213235294rem + 5.2941176471vw,
      3.75rem
    );
    -moz-column-gap: clamp(
      0.9375rem,
      -0.1213235294rem + 5.2941176471vw,
      3.75rem
    );
    column-gap: clamp(0.9375rem, -0.1213235294rem + 5.2941176471vw, 3.75rem);
  }
  .tabs-underline__header:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.7088235294rem + 2.7058823529vw, 2.6875rem);
  }
  .tabs-underline__button {
    padding-right: clamp(
      0.46875rem,
      0.0569852941rem + 2.0588235294vw,
      1.5625rem
    );
  }
  .tabs-underline__button {
    padding-left: clamp(
      0.46875rem,
      0.0569852941rem + 2.0588235294vw,
      1.5625rem
    );
  }
  .info-contacts__item:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.5911764706rem + 3.2941176471vw, 3rem);
  }
  .info-contacts__icon {
    width: clamp(2.5rem, 1.9352941176rem + 2.8235294118vw, 4rem);
  }
  .info-contacts__icon {
    height: clamp(2.5rem, 1.9352941176rem + 2.8235294118vw, 4rem);
  }
  .info-contacts__icon {
    font-size: clamp(0.75rem, 0.6088235294rem + 0.7058823529vw, 1.125rem);
  }
  .info-contacts__label {
    font-size: clamp(0.875rem, 0.6397058824rem + 1.1764705882vw, 1.5rem);
  }
  .page__hero--main {
    margin-bottom: clamp(1.25rem, 0.6617647059rem + 2.9411764706vw, 2.8125rem);
  }
  .page__hero {
    margin-bottom: clamp(3.1875rem, 2.0345588235rem + 5.7647058824vw, 6.25rem);
  }
  .page__catalog-section {
    margin-bottom: clamp(1.875rem, 0.6985294118rem + 5.8823529412vw, 5rem);
  }
  .page__benefits {
    margin-bottom: clamp(2.5rem, 1.5588235294rem + 4.7058823529vw, 5rem);
  }
  .page__news-section {
    margin-bottom: clamp(2.5rem, 1.3705882353rem + 5.6470588235vw, 5.5rem);
  }
  .page__pietro {
    margin-bottom: clamp(
      3.75rem,
      1.3735294118rem + 11.8823529412vw,
      10.0625rem
    );
  }
  .page__catalog {
    margin-bottom: clamp(3.75rem, 2.5735294118rem + 5.8823529412vw, 6.875rem);
  }
  .page__product {
    margin-bottom: clamp(3.125rem, 1.7132352941rem + 7.0588235294vw, 6.875rem);
  }
  .page__service {
    margin-bottom: clamp(3.125rem, 1.7132352941rem + 7.0588235294vw, 6.875rem);
  }
  .page__article {
    margin-bottom: clamp(3.125rem, 1.7132352941rem + 7.0588235294vw, 6.875rem);
  }
  .page__history {
    margin-bottom: clamp(3.125rem, 1.9485294118rem + 5.8823529412vw, 6.25rem);
  }
  .page__news {
    margin-bottom: clamp(3.125rem, 2.4191176471rem + 3.5294117647vw, 5rem);
  }
  .page__presentation {
    margin-bottom: clamp(
      3.125rem,
      0.6544117647rem + 12.3529411765vw,
      9.6875rem
    );
  }
  .page__contacts {
    margin-bottom: clamp(2.5rem, 2.0294117647rem + 2.3529411765vw, 3.75rem);
  }
}
@media (max-width: 71.87375em) and (min-width: 47.99875em) {
  .menu__body {
    max-width: 20rem;
  }
}
@media (min-width: 47.99875em) and (max-width: 71.24875em) {
  .benefits-section__top .benefits-section__container {
    grid-template-columns: 1fr 36.754386% 1fr;
  }
  .benefits-section__bottom {
    grid-template-columns: 1fr 35.632% 1fr;
  }
}
@media (min-width: 47.99875em) and (min-width: 47.99875em) and (max-width: 73.125em) {
  .hero-product__body {
    padding-left: clamp(1rem, -1.2684847769rem + 4.7261330282vw, 2.1875rem);
  }
}
@media (min-width: 47.99875em) and (max-width: 73.125em) {
  .presentation__text {
    padding-left: clamp(
      0.0000000625rem,
      -8.3575753119rem + 17.4120688025vw,
      4.375rem
    );
  }
  .presentation__text {
    padding-right: clamp(
      0.0000000625rem,
      -8.3575753119rem + 17.4120688025vw,
      4.375rem
    );
  }
}
@media (min-width: 61.99875em) and (max-width: 73.125em) {
  .contacts__info {
    padding-left: clamp(1.25rem, -5.7153690597rem + 11.2346927312vw, 2.5rem);
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
@media (any-hover: hover) {
  .popup__close:hover:after,
  .popup__close:hover:before {
    background-color: #fecc00;
  }
  .breadcrumbs__link:hover,
  .info-contacts__link:hover {
    text-decoration-color: inherit;
  }
  .product-item__link--underline:hover {
    text-decoration-color: transparent;
  }
  .slider-section__arrow:hover {
    color: #fecc00;
  }
  .product-item:hover .product-item__bottom {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  .product-item__link:not(.product-item__link--underline):hover {
    color: #fecc00;
  }
  .button:hover {
    background-color: #fff;
    color: #fecc00;
  }
  .tabs-block__navigation {
    overflow: hidden;
  }
  .tabs-block__title:not(._tab-active):hover {
    color: #fecc00;
  }
  .header__lang a:hover {
    color: #fff;
  }
  .menu__item:has(.menu__sublist):hover .menu__sublist {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: all;
  }
  .menu__item:has(.menu__sublist):hover .menu__title::before {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .footer__list li a:hover {
    color: #fecc00;
  }
  .social__item:hover {
    background-color: #fff;
    color: #333;
  }
  .tabs-slider__navigation {
    overflow-x: hidden;
  }
  .tabs-slider__title:not(._tab-active):hover {
    color: #fecc00;
  }
  .item-news-section__wrapper:hover {
    background-color: #f4f4f4;
  }
  .item-news-section__wrapper:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  .services-tab__link:hover {
    color: #fecc00;
  }
  .tabs-underline__navigation {
    padding-bottom: 0;
    overflow-x: hidden;
  }
  .tabs-underline__button:not(._tab-active):hover {
    color: #fecc00;
  }
  .item-news:hover {
    background-color: #f4f4f4;
  }
  .item-news:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.menu__list-header {
  display: flex;
  width: 100%;
  gap: 20px;
}

.description-product {
  padding-top: 15px;
}


/* UGK MENU CONTRAST AND PIETRO REDESIGN START */
@media (min-width: 71.87375em) {
  .menu__sublist {
    padding: 8px 0;
    background: #fff;
    border-top: 3px solid #1b1b1b;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }

  .menu__sublist ul li,
  .menu__sublist .subitem__link,
  .menu__sublist .subitem__title {
    border-left: 4px solid transparent;
    color: #1b1b1b;
    font-weight: 600;
    line-height: 1.35;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  }

  .menu__sublist ul li:hover,
  .menu__sublist .subitem__link:hover,
  .menu__sublist .subitem__title:not(._spoiler-active):hover,
  .menu__sublist ul li:focus-within,
  .menu__sublist .subitem__link:focus-visible,
  .menu__sublist .subitem__title:focus-visible {
    background: #1b1b1b;
    border-left-color: #fecc00;
    color: #fff !important;
    outline: 0;
  }

  .menu__sublist .subitem__title._spoiler-active {
    background: #fecc00;
    border-left-color: #1b1b1b;
    color: #1b1b1b;
  }
}

@media (max-width: 71.87375em) {
  .menu__body,
  .menu__title,
  .subitem__title,
  .subitem__link {
    color: #1b1b1b;
  }

  .menu__title,
  .subitem__title,
  .subitem__link {
    border-left: 4px solid transparent;
  }

  .menu__title:focus-visible,
  .subitem__title:focus-visible,
  .subitem__link:focus-visible {
    background: #1b1b1b;
    border-left-color: #fecc00;
    color: #fff;
    outline: 0;
  }

  .subitem__title._spoiler-active {
    background: #fecc00;
    border-left-color: #1b1b1b;
    color: #1b1b1b;
  }
}

.pietro {
  display: block;
  padding: clamp(48px, 6vw, 84px) 15px;
  background: #fff;
}

.pietro > * {
  grid-column: auto;
}

.pietro__wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  align-items: stretch;
  width: min(100%, 1140px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.pietro__image {
  min-height: 520px;
  flex: none;
}

.pietro__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(34px, 4.5vw, 64px) !important;
  background: #f4f4f4;
  box-shadow: none;
  transform: none !important;
}

.pietro__body::before {
  content: none !important;
  display: none !important;
}

.pietro__logo {
  position: static !important;
  left: auto !important;
  width: min(227px, 100%) !important;
  aspect-ratio: auto;
  transform: none !important;
}

.pietro__text {
  max-width: 640px;
  text-align: left !important;
}

.pietro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pietro__button-link {
  flex: 1 1 210px;
  min-width: 0;
  text-align: center;
}

@media (max-width: 61.99875em) {
  .pietro__wrapper {
    grid-template-columns: 1fr;
  }

  .pietro__image {
    min-height: 380px;
  }

  .pietro__body {
    padding: 36px 28px !important;
  }
}

@media (max-width: 37.5em) {
  .pietro {
    padding: 42px 15px;
  }

  .pietro__image {
    min-height: 280px;
  }

  .pietro__body {
    padding: 28px 20px !important;
  }

  .pietro__actions {
    flex-direction: column;
  }

  .pietro__button-link {
    flex: none;
    width: 100%;
  }
}
/* UGK MENU CONTRAST AND PIETRO REDESIGN END */
