@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

section.content ul {
  padding-left: 12px;
}
section.content ul li::before {
  content: "— ";
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
}
.wrapper footer {
  margin-top: auto;
}

.container {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 500px) {
  .container {
    padding: 0 16px;
  }
}

:root {
  --gray: #f3f4f5;
  --red: #B7182E;
  --black: #010203;
  --black2: #202122;
  --black3: #000;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  line-height: 90%;
  font-weight: 500;
  letter-spacing: -0.05em;
}
h1 span, .h1 span, h2 span, .h2 span, h3 span, .h3 span, h4 span, .h4 span, h5 span, .h5 span, h6 span, .h6 span {
  color: var(--color, var(--red));
}

h1, .h1, h2, .h2 {
  font-size: 50px;
  font-weight: 500;
}
@media (max-width: 768px) {
  h1, .h1, h2, .h2 {
    font-size: 25px;
  }
}

section, .section, footer {
  padding: var(--pt, 75px) 0 var(--pb, 75px);
}
@media (max-width: 500px) {
  section, .section, footer {
    padding: 35px 0;
  }
}

.white-back {
  background: #fff;
  --color: #fff;
}

:is(section, .section).border {
  position: relative;
}
@media (min-width: 769px) {
  :is(section, .section).border {
    padding-top: var(--pt, 95px);
  }
}
:is(section, .section).border::after {
  content: "";
  height: 20px;
  width: 100%;
  background: var(--color, var(--gray));
  position: absolute;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  top: -20px;
}

.header + .container:has(.breadcrumbs) {
  padding-top: 95px;
}
@media (max-width: 768px) {
  .header + .container:has(.breadcrumbs) {
    padding-top: 40px;
  }
}

.container:has(.breadcrumbs) + :is(section, .section) {
  padding-top: 36px;
}

.btn {
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 570px) {
  .btn {
    font-size: 12px;
  }
}
.btn.btn-primary {
  color: #fff;
  background: var(--red);
  transition: all 0.3s ease;
}
.btn.btn-primary:hover {
  background: #fff;
  color: var(--black);
}
.btn.btn-primary.black:hover {
  background: var(--black);
  color: #fff;
}
.btn.btn-black {
  background: var(--black);
  color: #fff;
}
.btn.border {
  border-radius: 5px;
}

body {
  background: var(--gray);
  color: var(--black);
}

* {
  font-family: "Inter";
}

/* заставка */
.intro {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* логотип — скрыт в начале */
.intro-logo {
  opacity: 0;
  width: 360px;
  max-width: calc(100vw - 100px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* сразу после загрузки DOM — запускаем fade-in */
html.dom-ready .intro-logo {
  opacity: 1;
}

/* после полной загрузки — уезжает экран */
html.loaded .intro {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Chromium / WebKit */
body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 3px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: var(--red);
}

/* убрать уголок у двойной прокрутки (Chrome на Windows) */
body::-webkit-scrollbar-corner {
  background: transparent;
}

.breadcrumbs ul {
  display: flex;
  font-size: 13px;
  letter-spacing: -0.03em;
}
.breadcrumbs ul a {
  color: inherit;
  font-weight: 500;
}
.breadcrumbs ul span {
  color: rgba(1, 2, 3, 0.2);
}
.breadcrumbs + :is(h1, .h1, h2, .h2) {
  padding-top: 17px;
}

.breadcrumb-item:has(a)::after {
  content: "/";
  color: rgba(1, 2, 3, 0.2);
  margin: 0 4px;
}

.hover_undeline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.hover_undeline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hover_undeline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hover_undeline:not(:hover)::after {
  transform-origin: right;
}

.mt-36 {
  margin-top: 36px;
}

.pt-36 {
  padding-top: 36px;
}

.pb-36 {
  padding-bottom: 36px;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

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

.align-end {
  align-items: flex-end;
}

.row-reverse {
  flex-direction: row-reverse;
}

.element-animation {
  opacity: 0;
  transform: translateY(20px);
}

.element-animation.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateY(0%);
}

section.content {
  line-height: 1.55;
  font-weight: 300;
}
section.content .container {
  font-size: 20px;
}
section.content .container *:first-child {
  padding-top: 0;
}
section.content .container :is(h3, h4, h5, h6) {
  font-size: 25px;
}
@media (max-width: 430px) {
  section.content .container :is(h3, h4, h5, h6) {
    font-size: 16px;
  }
}
section.content .container :is(h3, h4, h5, h6) + * {
  padding-top: 12px;
}
@media (max-width: 430px) {
  section.content .container :is(h3, h4, h5, h6) + * {
    padding-top: 8px;
  }
}
section.content .container > * {
  padding-top: 18px;
}
@media (max-width: 430px) {
  section.content .container > * {
    padding-top: 14px;
  }
}
section.content .container :is(p + p, li + li) {
  padding-top: 18px;
}
@media (max-width: 430px) {
  section.content .container :is(p + p, li + li) {
    padding-top: 12px;
  }
}

.content {
  font-weight: 300;
}
.content a {
  color: var(--red);
}
.content a:hover {
  text-decoration: none;
  box-shadow: inset 0 0 0 currentColor, 0 3px 0 currentColor;
}
.content img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1100px) {
  .content img {
    float: none !important;
    width: 100%;
  }
}

.content h1 {
  font-size: 36px;
}

.content h2, .h2 {
  font-size: 30px;
}

.content h3 {
  font-size: 26px;
}

.content h4 {
  font-size: 22px;
}

.content h5 {
  font-size: 20px;
}

.content h6 {
  font-size: 20px;
}

.pagination:has(li) {
  padding: 50px 0 25px;
  display: flex;
  justify-content: center;
}

.pagination li {
  display: inline-block;
}

.pagination > li > a, .pagination > li > span {
  color: var(--black);
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.4;
  text-decoration: none;
  border: 1px solid #ddd;
  font-size: 16px;
  font-weight: normal;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 2;
  color: #000;
  background-color: #eee;
  border-color: #ddd;
}

.accordion {
  color: var(--black);
}
.accordion .btn {
  max-width: 300px;
  margin-top: 20px;
}
@media (max-width: 425px) {
  .accordion .btn {
    max-width: 100%;
  }
}
.accordion__item {
  background: #fff;
  cursor: pointer;
  padding: 25px 20px 32px;
  border-radius: 7px;
  position: relative;
}
.accordion__item + .accordion__item {
  margin-top: 10px;
}
@media (max-width: 430px) {
  .accordion__item {
    padding: 20px;
  }
}
.accordion__header {
  padding-right: 60px;
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: -0.03em;
}
@media (max-width: 430px) {
  .accordion__header {
    font-size: 16px;
    padding-right: 45px;
  }
}
.accordion__header::before {
  content: "+";
  position: absolute;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #fff;
  border-radius: 5px;
  height: 40px;
  width: 40px;
  background: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20px;
  right: 20px;
  transition: all 0.5s 0s;
}
@media (max-width: 430px) {
  .accordion__header::before {
    width: 36px;
    height: 36px;
    top: 11px;
  }
}
.accordion__header.active::before {
  background: var(--black);
  transform: rotate(90deg);
}
.accordion__content {
  padding-top: 16px;
  display: none;
  line-height: 140%;
}
.accordion__content *:first-child {
  padding-top: 0;
}
.accordion__content :is(h1, h2, h3, h4, h5, h6) {
  font-size: 18px;
}
@media (max-width: 430px) {
  .accordion__content :is(h1, h2, h3, h4, h5, h6) {
    font-size: 16px;
  }
}
.accordion__content :is(h1, h2, h3, h4, h5, h6) + * {
  padding-top: 12px;
}
@media (max-width: 430px) {
  .accordion__content :is(h1, h2, h3, h4, h5, h6) + * {
    padding-top: 8px;
  }
}
.accordion__content > * {
  padding-top: 18px;
}
@media (max-width: 430px) {
  .accordion__content > * {
    padding-top: 14px;
  }
}
.accordion__content :is(p + p, li + li) {
  padding-top: 6px;
}
@media (max-width: 430px) {
  .accordion__content :is(p + p, li + li) {
    padding-top: 4px;
  }
}

.interactive-map .map-container {
  width: 100%;
  height: 600px;
}
@media (max-width: 768px) {
  .interactive-map .map-container {
    height: 320px;
  }
}

.balloon-content {
  width: 240px;
}

.balloon-img {
  width: 240px;
  height: 120px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}

.balloon-details {
  margin: 8px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.balloon-link {
  font-weight: 500;
  align-self: flex-end;
  color: var(--red);
}

.callback__heading {
  padding-bottom: 15px;
  font-size: 32px;
}
.callback__input-wrapper {
  position: relative;
}
.callback__input-wrapper + .callback__input-wrapper {
  margin-top: 15px;
}
.callback__input-wrapper label {
  font-size: 16px;
  display: inline-block;
  padding-bottom: 5px;
}
.callback__input-wrapper input {
  padding: 24px 24px;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}
.callback__input-wrapper::before {
  content: "";
  background: var(--gray);
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.callback__input-wrapper::after {
  content: "";
  background: var(--black);
  height: 1px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.2s ease-in-out;
}
.callback__input-wrapper:focus-within:after {
  width: 100%;
}
.callback__privacy {
  font-size: 12px;
  text-align: center;
}
.callback__privacy a {
  color: var(--red);
}
.callback .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.5s 0s;
  padding: 24px 35px;
  text-decoration: none;
  text-align: center;
  width: 100%;
  margin: 30px 0 15px;
}

.is-compact .f-button.is-close-btn {
  background: transparent;
}
.is-compact .f-button.is-close-btn path {
  fill: var(--black);
  stroke: var(--black);
}

[data-tab-content] {
  display: none;
}

.active[data-tab-content] {
  display: block;
}

.tabs {
  display: flex;
  gap: 20px;
}
@media (max-width: 900px) {
  .tabs {
    flex-direction: column;
    gap: 10px;
  }
}

.tab {
  flex: 1 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  padding: 18px 24px;
  background: #FFFFFF;
  transition: all 0.5s;
}
.tab:is(:hover, .active) {
  color: #fff;
  background: var(--red);
}
@media (max-width: 1000px) {
  .tab {
    font-size: 16px;
    padding: 16px 20px;
  }
}

.tab-content {
  margin-top: 20px;
  border-radius: 5px;
  background: #fff;
  padding: 32px 24px 40px;
}
@media (max-width: 768px) {
  .tab-content {
    padding: 18px 24px;
  }
}
.tab-content .content {
  display: flex;
  gap: 20px;
}
@media (max-width: 700px) {
  .tab-content .content {
    flex-direction: column;
  }
}
.tab-content .content > * {
  flex: 1 1;
}
.tab-content .content .tab-contant__col {
  line-height: 140%;
  font-size: 18px;
}
@media (max-width: 992px) {
  .tab-content .content .tab-contant__col {
    font-size: 14px;
  }
}
.tab-content .content .tab-contant__col * + ul {
  padding-top: 12px;
}
.tab-content .content .tab-contant__col :is(ul, ol) {
  padding-left: 30px;
}
.tab-content .content .tab-contant__col ul li {
  list-style: disc;
}
.tab-content .content .tab-contant__col h1, .tab-content .content .tab-contant__col h2, .tab-content .content .tab-contant__col h3, .tab-content .content .tab-contant__col h4, .tab-content .content .tab-contant__col h5, .tab-content .content .tab-contant__col h6, .tab-content .content .tab-contant__col a {
  color: var(--red);
}
.tab-content .content .tab-contant__col *:first-child {
  padding-top: 0;
}
.tab-content .content .tab-contant__col :is(h3, h4, h5, h6) {
  font-size: 25px;
}
@media (max-width: 430px) {
  .tab-content .content .tab-contant__col :is(h3, h4, h5, h6) {
    font-size: 16px;
  }
}
.tab-content .content .tab-contant__col :is(h3, h4, h5, h6) + * {
  padding-top: 12px;
}
@media (max-width: 430px) {
  .tab-content .content .tab-contant__col :is(h3, h4, h5, h6) + * {
    padding-top: 8px;
  }
}
.tab-content .content .tab-contant__col * + h3, .tab-content .content .tab-contant__col h4, .tab-content .content .tab-contant__col h5, .tab-content .content .tab-contant__col h6 {
  padding-top: 20px;
}
.tab-content .content .tab-contant__col > * {
  padding-top: 18px;
}
@media (max-width: 430px) {
  .tab-content .content .tab-contant__col > * {
    padding-top: 14px;
  }
}
.tab-content .content .tab-contant__col :is(p + p, li + li) {
  padding-top: 8px;
}
@media (max-width: 430px) {
  .tab-content .content .tab-contant__col :is(p + p, li + li) {
    padding-top: 12px;
  }
}

.product-hero + .tabs-section {
  padding-top: 20px;
}

.wrapper:has(.product-hero + .tabs-section) .product-hero {
  padding-bottom: 0;
}

.fancybox__container:has(.basket) {
  --fancybox-bg: rgba(243, 244, 245, 0.3);
}

.basket > div {
  /* Chromium / WebKit */
  /* убрать уголок у двойной прокрутки (Chrome на Windows) */
  max-height: 600px;
  overflow-y: auto;
  padding-right: 10px;
}
.basket > div::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  scroll-margin-top: 20px;
}
.basket > div::-webkit-scrollbar-track {
  background-color: transparent;
}
.basket > div::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 3px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.basket > div::-webkit-scrollbar-thumb:hover {
  background-color: var(--red);
}
.basket > div::-webkit-scrollbar-corner {
  background: transparent;
}
@media (max-width: 768px) {
  .basket > div {
    max-height: 66vh;
  }
}

.basket {
  border-radius: 5px;
  padding: 45px 20px 62px 40px;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 50px), calc(100% - 20px) 100%, 0 100%, 0 50px);
}
.basket .callback__heading {
  font-weight: 500;
  font-size: 40px;
  line-height: 90%;
  letter-spacing: -0.05em;
  padding-bottom: 42px;
}
.basket .f-button.is-close-btn {
  top: 24px;
  right: 24px;
  color: #494949;
}
.basket__body {
  margin-bottom: 48px;
}
.basket__body > p {
  padding-top: 21px;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  opacity: 0.6;
}
.basket__btn-wr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 630px) {
  .basket__btn-wr {
    flex-direction: column;
  }
}
.basket__btn-wr .btn {
  margin: 0;
  padding: 17px 24px;
  max-width: 186px;
  font-size: 15px;
  border-radius: 5px;
}
@media (max-width: 630px) {
  .basket__btn-wr .btn {
    max-width: 100%;
  }
}
.basket__privacy {
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  opacity: 0.6;
}
.basket__privacy a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #0053a6;
  transition: all 0.4s;
}
.basket__privacy a:hover {
  color: var(--red);
}
@media (max-width: 768px) {
  .basket {
    padding: 32px 20px 36px;
  }
  .basket .callback__heading {
    padding-bottom: 28px;
    font-size: 20px;
  }
  .basket .basket__body {
    margin-bottom: 28px;
  }
}

.item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (max-width: 480px) {
  .item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.item img {
  width: 100px;
  height: 83px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .item img {
    width: 80%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
.item__desc {
  flex: 1;
}
.item__heading {
  font-weight: 500;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: -0.05em;
  color: inherit;
}
.item__chars {
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  row-gap: 15px;
}
@media (max-width: 768px) {
  .item__chars {
    flex-direction: column;
    align-items: flex-start;
  }
  .item__chars .item__price {
    margin-left: 0;
    font-size: 18px;
  }
}
.item__unit {
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.05em;
  width: 100%;
}
.item__unit span {
  font-weight: 500;
}
.item__count {
  display: flex;
  align-items: center;
  gap: 12px;
}
.item__count span {
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.05em;
}
.item__count-wr {
  display: flex;
  align-items: center;
  gap: 6px;
}
.item__count-wr input::-webkit-outer-spin-button,
.item__count-wr input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.item__count-wr input {
  background: #eee;
  border-radius: 2px;
  padding: 4px 12px;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.05em;
  max-width: 42px;
  text-align: center;
}
.item__count-wr button {
  background: transparent;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.item__price {
  font-size: 22px;
  line-height: 90%;
  letter-spacing: -0.05em;
  margin-left: auto;
}
.item__price span {
  font-weight: 500;
}
.item .remove-icon {
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 0;
}

.basket__form {
  display: flex;
  flex-direction: column;
}
.basket__form input, .basket__form textarea {
  background: #f3f4f5;
  border-radius: 5px;
  padding: 16px 12px;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  width: 100%;
}
.basket__form input::-moz-placeholder, .basket__form textarea::-moz-placeholder {
  color: #b7b7b7;
}
.basket__form input::placeholder, .basket__form textarea::placeholder {
  color: #b7b7b7;
}
.basket__form textarea {
  resize: none;
  margin-top: 12px;
  height: 106px;
}
.basket__form input:not(:first-child), .basket__form .input-wr {
  margin-top: 12px;
}

input:-moz-placeholder-shown + .placeholder {
  opacity: 1;
  transform: translateX(0);
}

input:-moz-placeholder + .placeholder {
  opacity: 1;
  transform: translateX(0);
}

input:placeholder-shown + .placeholder {
  opacity: 1;
  transform: translateX(0);
}

input:active + .placeholder,
input:focus + .placeholder {
  opacity: 0;
  transform: translateX(20px);
}

.input-wr {
  display: inline;
  position: relative;
  width: 100%;
}

.placeholder {
  position: absolute;
  left: 1em;
  top: 18px;
  transition: 200ms all;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  color: #b7b7b7;
}

.placeholder span {
  color: var(--red);
  font-weight: 700;
}

.header {
  color: var(--black);
}
.header .container {
  max-width: none;
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(1, 2, 3, 0.1);
}
.header__body > a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.03em;
  text-align: center;
  color: inherit;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.header__logo .logo-light {
  display: none;
}
@media (max-width: 580px) {
  .header__logo img {
    width: 189px;
  }
}
@media (max-width: 360px) {
  .header__logo img {
    width: 160px;
  }
}
.header__menu-wrapp {
  flex: 0 1 40%;
  margin-left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1361px) {
  .header__menu-wrapp > :not(.header__menu):not(.search-btn) {
    display: none;
  }
}
@media (min-width: 1540px) {
  .header__menu-wrapp {
    margin-left: 100px;
  }
}
@media (min-width: 1600px) {
  .header__menu-wrapp {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media (max-width: 1360px) {
  .header__menu-wrapp {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -140%;
    width: 100%;
    max-width: 280px;
    height: -webkit-fill-available;
    transition: all 0.3s ease 0s;
    z-index: 10;
    background-color: var(--black);
    overflow: scroll;
    padding: 48px 40px 38px;
    align-items: flex-start;
  }
}
@media (max-width: 1400px) {
  .header__menu-wrapp {
    margin-left: 25px;
  }
}
.header__menu-wrapp .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}
.header__menu-social {
  margin-top: auto;
  display: flex;
  gap: 8px;
}
.header__menu-social a {
  width: 30px;
  height: 30px;
  padding: 6px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__menu-social a svg path {
  fill: var(--black);
  stroke: var(--black);
}
.header__callback {
  padding: 12px 20px;
}
@media (max-width: 992px) {
  .header__callback {
    display: none;
  }
}
.header__menu-logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__order {
  max-width: 167px;
  padding: 12px 20px;
  margin-top: 25px;
}
.header__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1361px) {
  .header__menu {
    flex: 1;
  }
}
@media (min-width: 1600px) {
  .header__menu {
    gap: 30px;
  }
}
@media (max-width: 1360px) {
  .header__menu {
    margin-top: 25px;
    margin-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    gap: 15px;
  }
}
.header__menu li {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.03em;
}
.header__menu li.has-submenu::after {
  content: "+";
  display: inline-block;
  margin-left: 6px;
}
.header__menu li a {
  color: inherit;
}
.header__link-wrapper {
  margin: 0 125px;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0 10px;
  flex: 1 1 auto;
  justify-content: end;
}
@media (max-width: 1366px) {
  .header__link-wrapper {
    gap: 20px;
  }
}
@media (max-width: 1280px) {
  .header__link-wrapper {
    flex: 1 1 25%;
  }
}
@media (max-width: 900px) {
  .header__link-wrapper {
    justify-content: flex-end;
  }
}
.header__link-wrapper a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.03em;
  color: inherit;
}
@media (max-width: 820px) {
  .header__link-wrapper a:first-child {
    display: none;
  }
}
@media (max-width: 520px) {
  .header__link-wrapper a {
    display: none;
  }
}
.header__basket {
  margin-right: 12px;
  position: relative;
}
.header__basket span {
  display: none;
}
.header__basket:not(.empty) span {
  position: absolute;
  top: 5px;
  right: 3px;
  font-size: 0;
  display: inline-block;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background: var(--red);
}

.header.absolute .header__basket path {
  stroke: #fff;
}

body.menu-active {
  overflow: hidden;
}
body.menu-active .header__menu-wrapp {
  right: 0;
}
body.menu-active .menu-overlay {
  position: fixed;
  background: var(--black);
  opacity: 0.6;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

:is(.header__menu, footer .footer__col:not(:last-child), .hero__list) a:not(.btn):not(:has(img, svg)) {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

:is(.header__menu, footer .footer__col:not(:last-child), .hero__list) a:not(.btn):not(:has(img, svg))::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

:is(.header__menu, footer .footer__col:not(:last-child), .hero__list) a:not(.btn):not(:has(img, svg)):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

:is(.header__menu, footer .footer__col:not(:last-child), .hero__list) a:not(.btn):not(:has(img, svg)):not(:hover)::after {
  transform-origin: right;
}

.header.absolute {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  color: #fff;
}
.header.absolute .header__body {
  border-color: rgba(255, 255, 255, 0.1);
}
.header__logo .logo-dark, .header__logo .logo-light {
      max-width: 250px;
}
.header.absolute .header__logo .logo-dark {
  display: none;
}
.header.absolute .header__logo .logo-light {
  display: block;
}
.header.absolute .header__link-wrapper a path, .header.absolute .header__link-wrapper a rect {
  fill: #fff;
}

.menu-burger {
  padding: 12px 20px;
  font-size: 14px;
}
@media (min-width: 1361px) {
  .menu-burger {
    display: none;
  }
}
@media (min-width: 901px) {
  .menu-burger {
    margin-left: 20px;
  }
}

.header.absolute .menu-burger {
  color: var(--black);
  background: #fff;
}

/* search */
header .search-btn {
  cursor: pointer;
}
@media (max-width: 1366px) {
  header .search-btn path {
    fill: #fff;
  }
}
header.absolute .search-btn path {
  fill: #fff;
}

.search {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  width: 100%;
  max-height: 150px;
  background-color: rgb(255, 255, 255);
  padding: 45px 20px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: translateY(-100%);
}

.search__body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.search-form {
  flex: 0 1 760px;
  position: relative;
}

.search-form button {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 55px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-form input {
  border: 1px solid rgb(196, 196, 196);
  height: 60px;
  width: 100%;
  padding: 0 55px;
}

.search-close {
  cursor: pointer;
}

@media (max-width: 768px) {
  .search-form input {
    border: none;
  }
}
.search-overlay.active {
  position: fixed;
  background-color: rgba(1, 2, 3, 0.4);
  width: 100%;
  height: 100%;
  z-index: 10;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.search.active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .search {
    padding: 0 20px;
  }
  .search-close {
    width: 30px;
  }
}
.footer {
  padding-bottom: 20px;
}
.footer .container {
  max-width: none;
}
.footer__body {
  display: grid;
  grid-template-columns: 365px auto;
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 10px;
  background-size: cover;
  padding: 80px 30px 0;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 15px;
}
@media (max-width: 1300px) {
  .footer__body {
    grid-template-columns: 25% auto;
    padding: 60px 20px 0;
  }
}
@media (max-width: 920px) {
  .footer__body {
    display: flex;
    flex-direction: column;
  }
}
.footer__body a {
  color: inherit;
}
.footer__col:nth-child(1) {
  grid-area: 1/1/3/2;
}
.footer__col:nth-child(1) img {
  max-width: 100%;
  padding-right: 20px;
}
@media (max-width: 920px) {
  .footer__col:nth-child(1) {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 921px) {
  .footer__col:nth-child(1) .btn {
    display: none;
  }
}
.footer__col:nth-child(2) {
  grid-area: 1/2/2/3;
  padding: 0 40px 47px;
}
@media (max-width: 1200px) {
  .footer__col:nth-child(2) {
    padding: 0 20px 20px;
  }
}
@media (max-width: 920px) {
  .footer__col:nth-child(2) {
    padding: 20px 0;
  }
}
.footer__col:nth-child(2) > a {
  justify-self: end;
}
@media (max-width: 1200px) {
  .footer__col:nth-child(2) > a {
    font-size: 12px;
  }
}
.footer__col:nth-child(3) {
  grid-area: 2/2/3/3;
  padding: 48px 38px 60px;
}
@media (max-width: 1200px) {
  .footer__col:nth-child(3) {
    padding: 20px;
  }
}
@media (max-width: 920px) {
  .footer__col:nth-child(3) {
    padding: 20px 0;
  }
}
.footer__col:nth-child(4) {
  grid-area: 3/1/4/2;
  padding: 28px 28px;
  opacity: 0.4;
}
@media (max-width: 1300px) {
  .footer__col:nth-child(4) {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .footer__col:nth-child(4) {
    padding: 20px;
    padding-left: 0;
    font-size: 12px;
  }
}
@media (max-width: 920px) {
  .footer__col:nth-child(4) {
    display: none;
  }
}
.footer__col:nth-child(5) {
  grid-area: 3/2/4/3;
  padding: 28px 38px;
  opacity: 0.4;
}
@media (min-width: 921px) {
  .footer__col:nth-child(5) .copyright {
    display: none;
  }
}
@media (max-width: 1200px) {
  .footer__col:nth-child(5) {
    padding: 20px;
    font-size: 12px;
  }
}
@media (max-width: 920px) {
  .footer__col:nth-child(5) {
    padding-left: 0;
    padding-right: 0;
  }
}
.footer__col:nth-child(5) a:last-child {
  grid-area: 1/3/2/4;
}
.footer__col:is(:not(:first-child, :nth-child(4))) {
  display: grid;
  align-items: flex-start;
  grid-template: auto/repeat(3, 1fr);
  gap: 45px;
}
@media (max-width: 1300px) {
  .footer__col:is(:not(:first-child, :nth-child(4))) {
    gap: 20px;
  }
}
.footer__col:is(:nth-child(2), :nth-child(3), :nth-child(5)) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 920px) {
  .footer__col:is(:nth-child(2), :nth-child(3), :nth-child(5)) {
    border-left: none;
  }
}
.footer__col:nth-child(3) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__col:is(:nth-child(4), :nth-child(5)) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__col .politics {
  width: -moz-fit-content;
  width: fit-content;
}
.footer__col .politics:hover {
  opacity: 0.7;
}
.footer__item span {
  opacity: 0.4;
}
.footer__item span + * {
  margin-top: 24px;
}
@media (max-width: 1200px) {
  .footer__item span + * {
    margin-top: 12px;
  }
}
.footer__item :is(li + li) {
  margin-top: 14px;
}
.footer__links {
  font-size: 25px;
  line-height: 115%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__links :is(a + a) {
  margin-top: 10px;
}
@media (max-width: 1200px) {
  .footer__links {
    font-size: 18px;
  }
}
.footer__links + .footer__social {
  margin-top: 24px;
}
@media (max-width: 1200px) {
  .footer__links + .footer__social {
    margin-top: 10px;
  }
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 5px;
}
.footer__social a:hover {
  background: var(--red);
}
.footer__social a:hover path {
  fill: #fff;
  stroke: #fff;
}
.footer__address {
  line-height: 140%;
}
.footer__address span + div {
  margin-top: 10px;
}
.footer__timetable {
  margin-top: 20px;
}
.footer__timetable div {
  line-height: 140%;
}

.footer__col > .footer__social {
  justify-content: flex-end;
  margin-top: 27px;
}
@media (min-width: 921px) {
  .footer__col > .footer__social {
    display: none;
  }
}

@media (max-width: 921px) {
  .footer__item .footer__social {
    display: none;
  }
  .footer__col:nth-child(2) > a {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer__col:first-child {
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer__col:nth-child(2) {
    grid-template: auto/repeat(2, 1fr);
  }
  .footer__col:nth-child(3) {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border: none;
  }
  .footer__col:nth-child(3) .footer__item {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
  }
  .footer__col:nth-child(5) {
    display: flex;
    flex-direction: column;
  }
  .footer__col > .footer__social {
    display: none;
  }
  .footer__item .footer__social {
    display: flex;
  }
}
@media (max-width: 600px) {
  .footer__body, .footer__links {
    font-size: 14px;
  }
  .footer__body {
    padding: 40px 16px;
  }
  .footer__social a {
    width: 40px;
    height: 40px;
  }
  .footer__col:nth-child(1) .btn {
    display: none;
  }
  .footer__col:nth-child(2) > a {
    display: flex;
    width: 100%;
    margin-top: 20px;
    grid-area: 2/1/3/3;
    position: relative;
  }
  .footer__col:nth-child(2) > a::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    top: -20px;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 500px) {
  .footer__item span + * {
    margin-top: 8px;
  }
  .footer__timetable {
    margin-top: 16px;
  }
}
.hero {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100 + 20px);
  min-height: 465px;
  display: flex;
  align-items: flex-end;
}
.hero__video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black3);
  opacity: calc(var(--opacity) / 100);
  pointer-events: none;
}
.hero video, .hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__body {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero__list {
  color: #fff;
}
.hero__list span {
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: -0.05em;
}
.hero__list ul, .hero__list p {
  margin-top: 12px;
  padding-left: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.05em;
}
.hero__list ul li, .hero__list p li {
  position: relative;
}
.hero__list ul li::before, .hero__list p li::before {
  content: "+";
  position: absolute;
  left: -16px;
  bottom: 1px;
  opacity: 0.6;
}
.hero__list ul :is(li + li), .hero__list p :is(li + li) {
  margin-top: 13px;
}
.hero__list ul a, .hero__list p a {
  color: inherit;
}
.hero__control {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero__control a:first-child {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
}
.hero__control a:last-child {
  min-width: 200px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 365px;
  }
  .hero__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero__body > * {
    width: 100%;
  }
  .hero__list span {
    font-size: 25px;
  }
  .hero__list ul {
    font-size: 13px;
  }
  .hero__list ul :is(li + li) {
    margin-top: 8px;
  }
  .hero__control {
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .hero__control a:first-child {
    font-size: 12px;
    flex: 1;
  }
  .hero__control a:last-child {
    min-width: 140px;
    padding: 12px 20px;
  }
}
.catalog__wrapp {
  padding-top: 36px;
  display: grid;
  grid-template: auto/repeat(var(--cols, 5), 1fr);
  gap: 20px;
}
@media (max-width: 1366px) {
  .catalog__wrapp {
    grid-template: auto/repeat(4, 1fr);
  }
}
@media (max-width: 1200px) {
  .catalog__wrapp {
    grid-template: auto/repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .catalog__wrapp {
    grid-template: auto/repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .catalog__wrapp {
    grid-template: auto/repeat(1, 1fr);
  }
}
.catalog__wrapp.catalog__inner .catalog__item {
  padding: 40px 30px;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .catalog__wrapp.catalog__inner .catalog__item {
    padding: 20px;
  }
}
.catalog__wrapp.catalog__inner .catalog__plus {
  right: 30px;
  bottom: 30px;
}
.catalog__item {
  background-size: cover;
  background-position: center;
  border-radius: 7px;
  min-height: var(--minh, 340px);
  padding: 17px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .catalog__item {
    min-height: 240px;
  }
}
.catalog__item a {
  color: inherit;
}
.catalog__item:hover {
  transform: scale(1.05);
}
.catalog__item:hover .catalog__plus {
  background: var(--black2);
  transition: all 0.3s ease;
}
.catalog__item:hover .catalog__plus span {
  transform: rotate(45deg);
}
.catalog__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.catalog__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: -0.03em;
  padding-right: 50px;
  display: inline-block;
}
.catalog__links {
  padding-right: 45px;
}
.catalog__links :is(li + li) {
  margin-top: 9px;
}
.catalog__links a {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.03em;
}
.catalog__plus {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.03em;
  border-radius: 5px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--red);
}
.catalog__plus span {
  margin-top: -2px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.catalog__links a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.catalog__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.catalog__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.catalog__links a:not(:hover)::after {
  transform-origin: right;
}

.why__body {
  display: grid;
  grid-template: auto/repeat(3, 1fr);
  gap: 20px;
  padding-top: 36px;
  counter-reset: item;
}
@media (max-width: 1366px) {
  .why__body {
    grid-template: auto/repeat(2, 1fr);
    justify-items: center;
  }
}
@media (max-width: 950px) {
  .why__body {
    grid-template: auto/repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .why__body {
    padding-top: 20px;
  }
}
.why__item {
  height: 100%;
  padding: 23px 28px 20px 21px;
}
.why__item span {
  max-width: 85%;
  display: inline-block;
  font-weight: 500;
  font-size: 27px;
  line-height: 115%;
  letter-spacing: -0.03em;
  color: var(--red);
}
@media (max-width: 500px) {
  .why__item span {
    font-size: 16px;
  }
}
.why__item div {
  margin-top: 10px;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #010203;
  opacity: 0.6;
}
@media (max-width: 500px) {
  .why__item div {
    font-size: 12px;
    margin-top: 40px;
    opacity: 0.8;
  }
}

.heading-row {
  gap: 20px;
}
@media (max-width: 768px) {
  .heading-row {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.heading-row > :is(span, a) {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.03em;
  color: var(--black);
  opacity: 0.4;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.corner-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 7px;
    clip-path: polygon(0% 0%, 87.4% 0%, 99.5% 17%, 100% 18.7%, 100% 100%, 0% 100%);
}

.number-wr {
  max-width: 500px;
  width: 100%;
  position: relative;
}
.number-wr::after {
  counter-increment: item;
  content: "0" counter(item);
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: var(--black3);
  opacity: 0.2;
  position: absolute;
  right: 5px;
  top: 0;
}
@media (max-width: 500px) {
  .number-wr::after {
    font-size: 12px;
  }
}

.eco__wrapp {
  border-radius: 10px;
  min-height: 700px;
  background-position: center center;
  background-size: cover;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}
@media (max-width: 570px) {
  .eco__wrapp {
    min-height: 260px;
  }
}
.eco__wrapp .eco__card {
  position: absolute;
  right: 30px;
  bottom: 30px;
  max-width: 469px;
}
@media (max-width: 570px) {
  .eco__wrapp .eco__card {
    display: none;
  }
}
.eco__card {
  padding: 25px 37px 30px 28px;
  border-radius: 7px;
  background: #fff;
}
.eco__card.mob {
  margin-top: 20px;
}
@media (min-width: 571px) {
  .eco__card.mob {
    display: none;
  }
}
@media (max-width: 570px) {
  .eco__card {
    padding: 20px;
  }
}
.eco__card span {
  font-weight: 500;
  font-size: 27px;
  line-height: 110%;
  letter-spacing: -0.05em;
  color: #010203;
}
@media (max-width: 570px) {
  .eco__card span {
    font-size: 20px;
  }
}
.eco__card div {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #010203;
  opacity: 0.6;
  margin-top: 11px;
}
@media (max-width: 570px) {
  .eco__card div {
    font-size: 13px;
  }
}
.eco__card div :is(p + p) {
  margin-top: 8px;
}
.eco__card a {
  margin-top: 25px;
}
@media (max-width: 570px) {
  .eco__card a {
    margin-top: 11px;
  }
}

.supplies-slider {
  margin-top: 33px;
  position: relative;
}
.supplies-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 1403/650;
}
@media (max-width: 500px) {
  .supplies-slider .swiper-slide img {
    border-radius: 5px;
    aspect-ratio: 1403/850;
  }
}
.supplies-slider__prev, .supplies-slider__next {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-weight: 300;
  font-size: 23px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--red);
  cursor: pointer;
  position: absolute;
  top: calc(50% - 20px);
  z-index: 1;
}
@media (max-width: 500px) {
  .supplies-slider__prev, .supplies-slider__next {
    transform: scale(0.7);
  }
}
.supplies-slider__prev:hover, .supplies-slider__next:hover {
  background: var(--red);
  color: #fff;
  transition: all 0.3s ease;
}
.supplies-slider__prev:hover path, .supplies-slider__next:hover path {
  stroke: #fff;
}
.supplies-slider__prev {
  left: 20px;
}
@media (max-width: 500px) {
  .supplies-slider__prev {
    left: 0;
  }
}
.supplies-slider__next {
  right: 20px;
}
@media (max-width: 500px) {
  .supplies-slider__next {
    right: 0;
  }
}

.section-form-hor {
  color: #fff;
}
.section-form-hor__wrapper {
  background: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 7px;
  clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%);
  padding: 95px 30px 100px;
}
@media (max-width: 425px) {
  .section-form-hor__wrapper {
    background-size: 300% 100%;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
  }
}
.section-form-hor__wrapper > p {
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0.6;
  padding-top: 10px;
}
.section-form-hor__wrapper > p a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.section-form-hor__wrapper > p a:hover {
  opacity: 0.5;
}
.section-form-hor a {
  color: inherit;
}
.section-form-hor h2 {
  line-height: 100%;
  letter-spacing: -0.05em;
  color: #fff;
}
.section-form-hor form {
  margin-top: 36px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 950px) {
  .section-form-hor form {
    flex-direction: column;
  }
}
.section-form-hor form input {
  width: 100%;
  height: 100%;
  padding: 20px;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  border-radius: 5px;
}
.section-form-hor form input::-moz-placeholder {
  color: #b7b7b7;
}
.section-form-hor form input::placeholder {
  color: #b7b7b7;
}
.section-form-hor form > * {
  flex: 1 1;
}

@media (max-width: 768px) {
  .section-form-hor__wrapper {
    text-align: center;
  }
}
@media (max-width: 570px) {
  .section-form-hor__wrapper {
    padding: 40px 20px;
  }
  .section-form-hor form {
    margin-top: 20px;
    gap: 12px;
  }
  .section-form-hor p {
    font-size: 14px;
  }
}
.news h2 {
  padding: 15px 0;
  font-weight: 600;
}
.news .container > p {
  font-size: 18px;
  line-height: 1.3;
}
.news :is(h2, p) + .news__wrapp {
  padding: 70px 0;
  border-bottom: 1px solid var(--red);
}
.news__wrapp {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1030px) {
  .news__wrapp {
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .news__wrapp {
    padding: 40px 0;
  }
}
.news__item {
  position: relative;
  max-height: 256px;
  box-shadow: 0 25px 20px #DADADA;
  flex: 0 1 calc(33.3% - 20px);
}
.news__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1030px) {
  .news__item {
    flex: 0 1 calc(50% - 15px);
  }
}
@media (max-width: 660px) {
  .news__item {
    flex: 1 1 100%;
  }
}
.news__title {
  font-size: 18px;
  line-height: 1.3;
}
.news__link {
  position: absolute;
  top: 0;
  left: 0;
  right: -1px;
  bottom: 0;
  background: rgba(62, 62, 62, 0.62);
  padding: 22px 28px;
  color: #fbfbfb;
  display: flex;
  flex-direction: column;
}
.news__link:hover {
  color: #fbfbfb;
  background: linear-gradient(to right, rgba(183, 24, 46, 0.9) 0%, rgba(128, 12, 30, 0.9) 100%);
}
.news__date {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 15px;
}
.news__date span {
  font-size: 18px;
  line-height: 1.3;
}

.section-form-ver {
  color: #fff;
}
.section-form-ver__wrapper {
  padding: 65px 78px 65px 60px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  clip-path: polygon(50px 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 50px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 425px) {
  .section-form-ver__wrapper {
    clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
  }
}
.section-form-ver__wrapper form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-form-ver__wrapper form input {
  width: 100%;
  height: 100%;
  padding: 20px;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  border-radius: 5px;
}
.section-form-ver__wrapper form input::-moz-placeholder {
  color: #b7b7b7;
}
.section-form-ver__wrapper form input::placeholder {
  color: #b7b7b7;
}
.section-form-ver__wrapper form + * {
  margin: 8px auto 0;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: -0.03em;
  text-align: center;
  opacity: 0.6;
  max-width: 303px;
}
.section-form-ver__wrapper form + * a {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.section-form-ver__col:first-child {
  padding-top: 32px;
}
@media (min-width: 901px) {
  .section-form-ver__col:first-child {
    flex: 0 1 364px;
  }
}
.section-form-ver__col:first-child p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  opacity: 0.6;
}
.section-form-ver__col:last-child {
  padding: 30px;
  position: relative;
}
@media (min-width: 901px) {
  .section-form-ver__col:last-child {
    flex: 0 1 524px;
  }
}
.section-form-ver__col:last-child > * {
  position: relative;
  z-index: 2;
}
.section-form-ver__col:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.6;
  z-index: 1;
}

@media (max-width: 1120px) {
  .section-form-ver__wrapper {
    padding: 65px 60px;
  }
}
@media (max-width: 900px) {
  .section-form-ver__wrapper {
    flex-direction: column;
  }
  .section-form-ver__col:first-child {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .section-form-ver__wrapper {
    padding: 27px 20px 59px;
    background-position: 15% 20%;
  }
  .section-form-ver__col:last-child {
    padding: 0;
  }
  .section-form-ver__col:last-child::after {
    display: none;
  }
}
.cat__body {
  display: grid;
  grid-template: auto/repeat(2, 1fr);
  gap: 36px 20px;
}
@media (max-width: 768px) {
  .cat__body {
    gap: 20px;
  }
}
@media (max-width: 550px) {
  .cat__body {
    grid-template: auto/repeat(1, 1fr);
  }
}
.cat__body a {
  display: block;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 10px;
}
.cat__body a:hover img {
  transform: scale(1.05);
}
.cat__body img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.cat__item span {
  display: block;
  margin-top: 16px;
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .cat__item span {
    font-size: 16px;
    margin-top: 8px;
  }
}

.about__body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 425px) {
  .about__body {
    gap: 10px;
  }
}
.about__item {
  flex: 1 0 315px;
  background: #fff;
  padding: 25px 30px 40px;
  min-height: 180px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
}
.about__item p {
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  opacity: 0.6;
}
.about__item div {
  font-weight: 500;
  font-size: 50px;
  line-height: 90%;
  letter-spacing: -0.05em;
  color: var(--red);
}

.text-section__wrapper {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 1100px) {
  .text-section__wrapper {
    flex-direction: column !important;
    align-items: stretch;
  }
}
@media (min-width: 1101px) {
  .text-section__col:first-child {
    flex: 0 1 58%;
  }
  .text-section__col:last-child {
    flex: 1 1;
  }
}
.text-section__col img, .text-section__col video {
  border-radius: 10px;
  max-height: 520px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.text-section__col .btn {
  margin-top: 35px;
  max-width: 245px;
}
@media (max-width: 425px) {
  .text-section__col .btn {
    margin-top: 15px;
  }
}
.text-section__text {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.03em;
}
.text-section__text > :not(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
  opacity: 0.6;
}
@media (max-width: 550px) {
  .text-section__text h1 span, .text-section__text .h1 span, .text-section__text h2 span, .text-section__text .h2 span, .text-section__text h3 span, .text-section__text .h3 span, .text-section__text h4 span, .text-section__text .h4 span, .text-section__text h5 span, .text-section__text .h5 span, .text-section__text h6 span, .text-section__text .h6 span {
    font-size: unset !important;
  }
}
.text-section__text :is(* + *) {
  margin-top: 12px;
}

.certs__body .swiper {
  margin-top: 36px;
}
@media (max-width: 1200px) {
  .certs__body .swiper {
    margin-right: -16px;
  }
}
.certs__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.certs .swiper-slide {
  width: 260px;
  height: 340px;
}
.certs .swiper-slide a {
  cursor: zoom-in;
}
.certs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.certs__slider-control {
  display: flex;
  gap: 10px;
}
.certs__slider-btn {
  background: var(--red);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.certs__slider-btn:hover {
  background: var(--black);
}

.contacts__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contacts__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 1;
  padding: 25px 30px;
  min-height: 150px;
  min-width: 340px;
  background: #fff;
  border-radius: 7px;
  clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%);
}
@media (max-width: 370px) {
  .contacts__item {
    padding: 20px;
  }
}
@media (max-width: 360px) {
  .contacts__item {
    min-width: auto;
  }
}
.contacts__item p {
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  opacity: 0.6;
}
.contacts__item > a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-weight: 500;
  font-size: 27px;
  line-height: 115%;
  letter-spacing: -0.03em;
}
@media (max-width: 360px) {
  .contacts__item > a {
    font-size: 20px;
  }
}
.contacts__social {
  display: flex;
  gap: 10px;
}
.contacts__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--red);
  transition: all 0.3s ease;
}
.contacts__social a:hover {
  background: var(--black);
}
.contacts__maps {
  margin-top: 20px;
  display: grid;
  grid-template: auto/repeat(2, calc(50% - 10px));
  gap: 56px 20px;
}
@media (max-width: 768px) {
  .contacts__maps {
    grid-template: auto/100%;
    gap: 30px;
  }
}

@media (min-width: 769px) {
  .map:first-child {
    grid-area: 1/1/3/3;
  }
}
.map .map-container {
  width: 100%;
  height: 500px;
}
@media (max-width: 768px) {
  .map .map-container {
    height: 420px;
  }
}
@media (max-width: 468px) {
  .map .map-container {
    aspect-ratio: 1/1;
    height: auto;
  }
}
.map__text {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .map__text {
    margin-top: 10px;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .map__text {
    flex-direction: column;
  }
}
.map__col {
  flex: 1;
}
.map__col span {
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  opacity: 0.6;
}
.map__col p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .map__col p {
    font-size: 15px;
    margin-top: 6px;
  }
}
.map:not(:first-child) .map-container {
  height: 420px;
}
@media (max-width: 468px) {
  .map:not(:first-child) .map-container {
    aspect-ratio: 1/1;
    height: auto;
  }
}
.map:not(:first-child) .map__col p {
  font-size: 15px;
}

.product-hero__body {
  display: flex;
  min-width: 0;
  background: #fff;
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
  gap: 20px;
  border-radius: 10px;
}
.product-hero__body:has(.swiper) {
  min-height: 650px;
}
@media (max-width: 1400px) {
  .product-hero__body:has(.swiper) {
    min-height: calc(50vw - 60px);
  }
}
@media (max-width: 1150px) {
  .product-hero__body {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .product-hero__body {
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
  }
}
.product-hero__body .prod-slider {
  margin-top: 0;
}
@media (min-width: 1151px) {
  .product-hero__body .prod-slider {
    flex: 1 1 690px;
  }
}
@media (max-width: 1150px) {
  .product-hero__body .prod-slider {
    min-height: 0;
    max-width: 100%;
  }
}
.product-hero__col {
  padding: 28px 30px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1151px) {
  .product-hero__col {
    flex: 1 1 690px;
  }
}
@media (max-width: 768px) {
  .product-hero__col {
    padding: 28px 20px 10px;
  }
}
@media (min-width: 769px) {
  .product-hero__col .breadcrumbs {
    padding-left: 10px;
  }
}
.product-hero__col h1, .product-hero__col .h1, .product-hero__col h2, .product-hero__col .h2 {
  margin-top: auto;
}
.product-hero__col .btn {
  margin-top: 25px;
  min-width: 197px;
}
.product-hero__text {
  margin-top: 12px;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.03em;
  opacity: 0.6;
}

.breadcrumbs ul {
  flex-wrap: wrap;
  row-gap: 6px;
}
.breadcrumbs ul li {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.product-card__body {
  display: flex;
  justify-content: space-between;
  background: #fff;
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
  gap: 20px;
  border-radius: 10px;
  padding: 30px 35px 35px;
}
@media (max-width: 1100px) {
  .product-card__body {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .product-card__body {
    padding: 28px 20px 10px;
  }
}
.product-card__col:nth-child(2) {
  display: flex;
  justify-content: end;
  align-items: end;
}
.product-card__col:nth-child(2) img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1100px) {
  .product-card__col:nth-child(2) {
    justify-content: center;
  }
}
.product-card__price {
  padding-top: 44px;
  font-size: 24px;
  line-height: 90%;
  letter-spacing: -0.05em;
}
.product-card__price span {
  font-weight: 500;
}
@media (max-width: 768px) {
  .product-card__price {
    padding-top: 28px;
    font-size: 18px;
  }
}
.product-card__chars {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px 60px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: 18px;
  line-height: 90%;
  letter-spacing: -0.05em;
  position: relative;
}
@media (min-width: 551px) {
  .product-card__chars {
    max-height: calc(var(--rows) * 1em + 16px * var(--rows));
  }
  .product-card__chars::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    background: rgba(1, 2, 3, 0.2);
    left: calc(var(--first-col-width) + 30px);
  }
}
.product-card__chars.single:after {
  display: none;
}
@media (max-width: 768px) {
  .product-card__chars {
    margin-top: 25px;
  }
}
.product-card__chars span {
  font-weight: 500;
}
.product-card__tech-passport {
  padding-top: 34px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--red);
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.05em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.product-card__text {
  padding-top: 56px;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  opacity: 0.6;
  max-width: 560px;
}
@media (max-width: 768px) {
  .product-card__text {
    padding-top: 25px;
  }
}
.product-card__btns {
  padding-top: 25px;
  display: flex;
  gap: 24px;
}
.product-card__btns .btn {
  height: 60px;
}
.product-card__btns .btn:first-child {
  min-width: 200px;
}
@media (max-width: 450px) {
  .product-card__btns .btn:first-child {
    flex: 1;
  }
}
.product-card__btns .btn:last-child {
  width: 60px;
  padding: 12px;
}
.product-card__btns .btn.in-basket {
  background: var(--black);
}
.product-card__btns .btn.in-basket:hover {
  background: var(--red);
}

.add-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.add-to-card-btn .remove-icon {
  display: none;
}

.add-to-card-btn.in-basket .add-icon {
  display: none;
}

.add-to-card-btn.in-basket .remove-icon {
  display: inline-flex;
}

.cases__wrapp {
  display: grid;
  grid-template: auto/repeat(3, 1fr);
  gap: 42px 20px;
  --padding: 24px;
}
@media (max-width: 1280px) {
  .cases__wrapp {
    grid-template: auto/repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cases__wrapp {
    --padding: 18px;
    gap: 32px 20px;
  }
}
@media (max-width: 600px) {
  .cases__wrapp {
    grid-template: auto/1fr;
    gap: 20px;
  }
}
.cases__item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  padding: 0 var(--padding) 30px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 60px) 100%, 0 100%);
}
@media (max-width: 768px) {
  .cases__item {
    padding-bottom: 20px;
  }
}
.cases__item div {
  overflow: hidden;
  margin: 0 calc(var(--padding) * -1) 24px;
  width: calc(100% + var(--padding) * 2);
}
@media (max-width: 900px) {
  .cases__item div {
    margin-bottom: 16px;
  }
}
.cases__item img {
  width: 100%;
  height: 284px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .cases__item img {
    height: 200px;
  }
}
.cases__item p, .cases__item span {
  font-weight: 500;
  font-size: 27px;
  line-height: 115%;
  letter-spacing: -0.03em;
  color: var(--red);
}
@media (max-width: 768px) {
  .cases__item p, .cases__item span {
    font-size: 20px;
  }
}
.cases__item:hover img {
  scale: 1.1;
}

.gallery__wrapper {
  display: grid;
  grid-template: auto/repeat(3, 1fr);
  gap: 30px;
}
.gallery__wrapper img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__wrapper > a {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.gallery__wrapper > a img {
  transition: all 0.3s;
}
.gallery__wrapper > a:after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(1, 2, 3, 0.7);
  background-image: url('data:image/svg+xml,<svg width="64px" height="64px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="%23000000" stroke="%23000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:%23ffffff;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><circle class="cls-1" cx="9.14" cy="9.14" r="7.64"></circle><line class="cls-1" x1="22.5" y1="22.5" x2="14.39" y2="14.39"></line></g></svg>');
}
.gallery__wrapper > a:hover img {
  scale: 1.2;
}
.gallery__wrapper > a:hover::after {
  content: "";
}

@media (max-width: 1100px) {
  .gallery__wrapper {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .gallery__wrapper {
    grid-template: auto/repeat(2, 1fr);
    gap: 10px;
  }
}
.table-section__heading + .table-section__wrapper {
  padding-top: 36px;
}
.table-section__wrapper {
  display: grid;
  grid-template: auto/345px 1fr;
}
@media (min-width: 901px) {
  .table-section__wrapper {
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .table-section__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .table-section__wrapper {
    gap: 10px;
  }
}
.table-section__body {
  overflow: auto;
}
.table-section__body::-webkit-scrollbar {
  height: 4px;
  background-color: #f9f9fd;
}
.table-section__body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--red);
}
.table-section__body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #f9f9fd;
}

.table {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: var(--black);
  background: #fff;
  text-align: center;
  border-radius: 0 10px 10px 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  .table {
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .table {
    border-radius: 5px;
  }
}
.table span {
  padding: 20px 20px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.table__head span, .table__body span {
  flex: 1 1;
}
.table__head span:nth-child(1), .table__body span:nth-child(1) {
  min-width: 354px;
}
@media (max-width: 768px) {
  .table__head span:nth-child(1), .table__body span:nth-child(1) {
    min-width: 235px;
  }
}
.table__head span:nth-child(2), .table__body span:nth-child(2) {
  min-width: 236px;
}
@media (max-width: 768px) {
  .table__head span:nth-child(2), .table__body span:nth-child(2) {
    min-width: 180px;
  }
}
.table__head span:nth-child(3), .table__body span:nth-child(3) {
  min-width: 236px;
}
@media (max-width: 768px) {
  .table__head span:nth-child(3), .table__body span:nth-child(3) {
    min-width: 150px;
  }
}
.table__head span:nth-child(4), .table__body span:nth-child(4) {
  min-width: 110px;
}
.table__head span:not(:first-child), .table__body span:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.table__head span:last-child, .table__body span:last-child {
  max-width: 110px;
  min-width: 110px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .table__head span:last-child, .table__body span:last-child {
    min-width: 70px;
    max-width: 70px;
  }
}
.table__head {
  display: flex;
}
.table__body {
  display: flex;
  flex-direction: column;
  min-width: -moz-min-content;
  min-width: min-content;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.table__body span:not(:has(.link)) {
  opacity: 0.4;
}
.table__row {
  width: 100%;
  cursor: pointer;
  display: flex;
  min-height: 88px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.table__row:nth-child(even) {
  background: #f6f6f6;
}
.table__row span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.table__row:hover span {
  opacity: 1;
}
.table__row:hover .link {
  background: var(--red);
}
.table__row .link {
  background: #ccc;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .table__row .link {
    height: 28px;
    width: 28px;
    padding: 11px;
  }
}

.filter {
  background: #fff;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 900px) {
  .filter {
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .filter {
    background-repeat: 5px;
  }
}
.filter__head {
  padding: 20px 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 901px) {
  .filter__head {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 768px) {
  .filter__head {
    padding: 16px 0;
  }
}
@media (max-width: 900px) {
  .filter.open .filter__head {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.filter__body {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.filter__body form {
  padding: 12px 12px 16px;
}
.filter__search-wrapp input {
  background: #f3f4f5;
  border-radius: 5px;
  width: 100%;
  padding: 16px 12px;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
}
.filter__search-wrapp input::-moz-placeholder {
  color: #b7b7b7;
}
.filter__search-wrapp input::placeholder {
  color: #b7b7b7;
}
.filter__item {
  margin-top: 12px;
}
.filter__checkbox-wrapper {
  display: flex;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
}
.filter__checkbox-wrapper label {;
  padding-left: 12px;
}
.filter__checkbox-wrapper + .filter__checkbox-wrapper {
  margin-top: 8px;
}
.filter__checkbox-wrapper:first-child {
  padding-top: 16px;
}
.filter .btn {
  margin-top: 23px;
  max-height: 53px;
}

@media (max-width: 900px) {
  .filter__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .filter.open .filter__body {
    max-height: 1000px; /* с запасом */
  }
  .filter__head {
    cursor: pointer;
  }
}
.filter__inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.filter__item.active .filter__inner {
  max-height: 500px; /* должно быть больше предполагаемой высоты блока */
}

.filter__item span {
  cursor: pointer;
  display: flex;
  padding: 16px 12px;
  background: #f3f4f5;
  border-radius: 5px;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.03em;
  position: relative;
}
.filter__item span::after {
  content: "+";
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.03em;
  position: absolute;
  right: 12px;
  transition: all 0.3s;
}

.filter__item.active span::after {
  transform: rotate(45deg);
}

.filter {
  /* Без перекрывающего background */
  /* Галочка поверх */
}
.filter [type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--red);
  border-radius: 5px;
  /* круглый */
  background: #fff;
  cursor: pointer;
  position: relative;
}
.filter [type=checkbox]:checked {
  /* делаем цвет круга через тень, а не через background */
  box-shadow: inset 0 0 0 6px var(--red);
}
.filter [type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  pointer-events: none;
}

input.si-error {
  border: 2px solid var(--red);
}

.search-result {
  background: #fff;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: 105px;
  right: calc((100vw - 760px) / 2 + 21px);
  left: calc((100vw - 760px) / 2 - 24px);
  z-index: 12;
  max-height: 60vh;
  overflow: auto;
  padding: 0;
  transition: all 0.3s ease;
  transform: translateY(-20px);
}
@media (max-width: 850px) {
  .search-result {
    left: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .search-result {
    top: 60px;
  }
}
.search-result > a {
  padding: 0 20px;
  color: var(--red);
  font-size: 18px;
}
.search-result:not(:has(.simplesearch-results-list)) {
  padding: 20px;
}

._result-show .search-result {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: inherit;
  padding: 25px 20px;
  border-bottom: 1px solid rgba(1, 2, 3, 0.2);
}
.search-item span:first-child {
  color: var(--red);
}
.search-item:hover {
  background: var(--gray);
}

.simplesearch-results {
  margin: 5px 0 15px;
  padding: 16px 20px 0;
}

.product-card__text h2 {
    font-size: 31px;
    line-height: 120%;
}

.product-card__text h3 {
    font-size: 25px;
    line-height: 120%;
}

.product-card__text p {
    line-height: 120%;
    padding-top: 5px;
    padding-bottom: 5px;
}

.product-card__text ul, .product-card__text ol {
    padding-left: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.product-card__text ul>li {
    list-style: disc;
}

.accordion__content img {
    max-width: 100%;
    height: 100%;
}

.catalog__links-more {
    padding-top: 10px;
}

/* слайдер */

.hero__slider-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero__slider-image.is-active {
    opacity: 1;
}