@charset "UTF-8";

@font-face {
  font-family: "Geist";
  src: local("Geist-Bold"), url("../fonts/Geist-Bold.woff2") format("woff2"), url("../fonts/Geist-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: local("Geist-SemiBold"), url("../fonts/Geist-SemiBold.woff2") format("woff2"), url("../fonts/Geist-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: local("Geist-Medium"), url("../fonts/Geist-Medium.woff2") format("woff2"), url("../fonts/Geist-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: local("Geist-Regular"), url("../fonts/Geist-Regular.woff2") format("woff2"), url("../fonts/Geist-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GolosText";
  src: local("GolosText-Regular"), url("../fonts/GolosText-Regular.woff2") format("woff2"), url("../fonts/GolosText-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/** {
  outline: 2px solid red;
}*/

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

button {
  -webkit-transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: none;
}

h1,
h2,
h3,
h4,
p {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-width: 360px;
  font-family: var(--font-family);
  background-color: var(--white, #FFF);
}

picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.overlay {
  position: fixed;
  z-index: 3;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background-color: rgba(51, 51, 51, 0.8);
  -webkit-transition: visibility 0.4s ease-in-out, bottom 0.4s ease-in-out, opacity 0.4s ease-in-out, z-index 0.4s ease-in-out;
  transition: visibility 0.4s ease-in-out, bottom 0.4s ease-in-out, opacity 0.4s ease-in-out, z-index 0.4s ease-in-out;
}

.overlay--active {
  visibility: visible;
  bottom: 0px;
}

.overflow-hidden {
  overflow: hidden;
}

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

.btn-reset {
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  border: none;
}

.container {
  max-width: 1392px;
  padding: 0 60px;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

:root {
  --font-family: "Geist", sans-serif;
  --second-family: "GolosText", sans-serif;
}

:root {
  --red: #f60114;
  --blue: #506bb2;
  --white: #fff;
  --black: #000;
  --gray-20: #f1f1f1;
  --gray-10: #f6f6f6;
  --blue-2: #0022b2;
  --blue-3: #3c2a98;
}

.background-gray-10 {
  padding: 68px 0;
  border-radius: 24px;
  background: var(--gray-10, #F6F6F6);
}

.uppercase {
  text-transform: uppercase;
}

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

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

.swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
}

.swiper-slide article {
  height: 100%;
}

.mobile {
  display: none;
}

/* Стили для модалки */

.modal {
  display: none;
  /* Скрыта по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* Прозрачный фон */
  z-index: 9999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
  padding: 60px 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal__body {
  position: relative;
  max-width: 100%;
  margin: auto 0;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  background-color: var(--white);
  color: var(--black);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

/* Анимация для появления модалки */

.modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn 0.3s ease-out;
          animation: fadeIn 0.3s ease-out;
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

.cookie {
  display: none;
  pointer-events: none;
  position: fixed;
  z-index: 20;
  left: 0;
  bottom: 56px;
  width: 100%;
}

.cookie__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.cookie__window {
  padding: 24px;
  max-width: 100%;
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  border-radius: 20px;
  background: rgba(19, 19, 19, 0.6);
  backdrop-filter: blur(28.3040008545px);
}

.cookie__message {
  pointer-events: auto;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.cookie__message a {
  color: var(--green, #00CB62);
  text-decoration: underline;
}

.cookie__box-btn {
  pointer-events: auto;
}

.cookie__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  width: 100%;
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  border-radius: 14px;
  background-color: var(--gray-500, #232323);
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#preloader .loader {
  width: 60px;
  height: 60px;
  border: 5px solid var(--gray-20, #EDEDED);
  border-top-color: var(--red, #f60114);
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

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

.header__top {
  padding: 6px 0;
  background-color: var(--gray-10, #F6F6F6);
}

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

.header__middle {
  padding: 24px 0;
  border-bottom: 1px solid #F1F1F1;
}

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

.header__middle_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 48px;
}

.header__bottom {
  padding: 16px 0 40px;
}

.header__bottom_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

@-moz-document url-prefix()  {
  .drop-down-catalog__content-wrapp-2.active {
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--gray-10);
  }
}

.link-write {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  color: var(--black);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.link-write .svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 19px;
  height: 19px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.link-network {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.link-network .svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 32px;
  min-height: 32px;
}

.link-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  gap: 12px;
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.link-phone .svg {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--white);
  border-radius: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--blue-2, #0022B2);
  outline: 4px solid rgba(0, 34, 178, 0.24);
}

.link-phone .svg svg {
  width: 16px;
  height: 16px;
}

.link-main-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 4px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.link-main-group .count {
  min-width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  position: absolute;
  top: -7px;
  right: 4px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  background-color: var(--red, #F60114);
}

.link-main-group .svg {
  width: 28px;
  height: 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.link-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: var(--black);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.link-nav .svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 21px;
  height: 21px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.link-footer-nav {
  color: var(--white, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.link-all {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  height: 21px;
  color: var(--black);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.link-all .svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--red);
}

.link-catalog-all {
  padding: 20px 12px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  border-radius: 20px;
  color: var(--white, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  outline: 4px solid var(--blue-2);
  border: 4px solid #D9D9D9;
  background-color: var(--red);
}

.link-reviews {
  width: 296px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 52px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 26px;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  border-radius: 16px;
  background-color: var(--gray-10, #F6F6F6);
}

.link-instruct {
  padding: 28px 36px;
  margin: 32px 0 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 24px;
  background-color: var(--gray-10, #F6F6F6);
}

.link-instruct .text {
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
}

.link-instruct .svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--white);
  border-radius: 12px;
  background-color: var(--red);
}

.link-show-more {
  width: 193px;
  max-width: 100%;
  padding: 5px 16px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  gap: 10px;
  border-radius: 16px;
  background-color: var(--gray-10, #F6F6F6);
}

.link-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  border-radius: 16px;
  background-color: var(--gray-10, #F6F6F6);
}

.link-remove {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  background-color: var(--gray-20, #F1F1F1);
}

.network-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.logo img {
  max-width: 193px;
  max-height: 52px;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 8px;
  opacity: 0;
  border: 1px solid var(--blue-3);
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.logo-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
}

.logo-footer__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.logo-footer__link img {
  max-width: 252px;
  max-height: 68px;
}

.logo-footer__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.box-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 44px;
}

.box-order__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 44px;
}

.box-order__btn {
  display: none;
}

.btn-order {
  position: relative;
  padding: 5px 16px;
  height: 50px;
  width: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  border-radius: 100px;
  color: var(--white, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  border: 3px solid var(--blue-2, #0022B2);
  background-color: #A9B1BC;
}

.btn-order::after {
  content: "";
  position: absolute;
  inset: 3px;
  background-color: var(--red, #F60114);
  border-radius: 100px;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.btn-order .text {
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.btn-transparent {
  padding: 5px 12px;
  height: 56px;
  border-radius: 50px;
  border: 1px solid var(--red, #F60114);
  color: var(--white, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.btn-submit-type-1 {
  margin-top: 12px;
  width: 100%;
  height: 56px;
  font-size: 17px;
  border-radius: 16px;
}

.btn-submit-type-1::after {
  border-radius: 16px;
}

.btn-one-click {
  padding: 5px 16px;
  margin: 0 4px;
  height: 56px;
  width: calc(100% - 8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--black, #000);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  border-radius: 10000px;
  background-color: rgba(0, 0, 0, 0.08);
}

.group-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.list-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
}

.list-nav li:last-child {
  display: none;
}

.burger {
  display: none;
}

.mailing-intut {
  width: 100%;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 224px;
  overflow: hidden;
  border-radius: 1000px;
  border: 1.2px solid var(--gray-20, #F1F1F1);
  background-color: var(--white, #FFF);
}

.mailing-intut__input {
  width: 100%;
  height: 100%;
  padding: 22px 23px;
  background-color: transparent;
  border: none;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.mailing-intut__input::-webkit-input-placeholder {
  color: var(--black, #000);
}

.mailing-intut__input::-moz-placeholder {
  color: var(--black, #000);
}

.mailing-intut__input:-ms-input-placeholder {
  color: var(--black, #000);
}

.mailing-intut__input::-ms-input-placeholder {
  color: var(--black, #000);
}

.mailing-intut__input::placeholder {
  color: var(--black, #000);
}

.mailing-submit {
  padding: 5px 12px;
  width: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  height: 68px;
  border-radius: 1000px;
  color: var(--white, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  background-color: var(--red, #F60114);
}

.checkbox-type-1 {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.checkbox-type-1__input {
  cursor: pointer;
  position: absolute;
  inset: 0;
  opacity: 0;
}

.checkbox-type-1__input:checked + .castom svg {
  opacity: 1;
}

.checkbox-type-1__input:focus-visible .castom {
  border-color: var(--blue);
}

.checkbox-type-1__input.error + .castom {
  border-color: var(--red);
}

.checkbox-type-1 .castom {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--gray-20, #F1F1F1);
  background-color: var(--white, #FFF);
  -webkit-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
}

.checkbox-type-1 .castom svg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.checkbox-type-1__desc {
  color: var(--white, #FFF);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.checkbox-type-1 a {
  position: relative;
  color: var(--red, #F60114);
  text-decoration: underline;
}

.card-hero {
  position: relative;
  padding: 40px 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 516px;
  border-radius: 24px;
  overflow: hidden;
}

.card-hero picture {
  position: absolute;
  inset: 0;
}

.card-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 516px;
}

.card-hero__content {
  max-width: 480px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.card-hero__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.card-hero__title {
  color: var(--white);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
}

.card-hero__desc {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.card-hero .btn-order {
  height: 74px;
  width: 315px;
  font-size: 18px;
}

.swiper-btn-type-1 {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--black);
  border-radius: 16px;
  border: 4px solid var(--white);
  background: var(--gray-10, #F6F6F6);
  -webkit-transition: opacity 0.4s ease-in-out, color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

.swiper-btn-type-1.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.card-advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.card-advantage__bpx-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.card-advantage__bpx-img img {
  width: 52px;
  height: 52px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.card-advantage__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.card-advantage__title {
  color: var(--black, #000);
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
}

.card-advantage__desc {
  color: var(--black, #000);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.card-products {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.card-products .swiper-fade .swiper-slide-active {
  pointer-events: none;
}

.card-products .swiper-card-products-pagination {
  pointer-events: auto;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.card-products__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.card-products__link .text {
  display: none;
}

.card-products__hover {
  opacity: 0;
  position: absolute;
  z-index: -1;
  inset: -12px;
  border-radius: 20px;
  background-color: var(--gray-10, #F6F6F6);
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.card-products__img {
  pointer-events: none;
  width: 100%;
  height: 224px;
}

.card-products__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 224px;
  min-height: 224px;
}

.card-products__top {
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.card-products__info {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.card-products__title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-products__group-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.card-products__group-price .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.card-products__group-price .available {
  color: #ACACAC;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.card-products__group-price .available i {
  font-style: normal;
}

.card-products__group-price .available.none .stock {
  display: none;
}

.card-products__group-price .available.stock .none {
  display: none;
}

.card-products__bottom {
  width: 100%;
}

.card-products__detail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 56px;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  border-radius: 16px;
  border: 3px solid var(--gray-10, #F6F6F6);
  background-color: var(--gray-10, #F6F6F6);
  -webkit-transition: border-color 0.4s ease-in-out, background-color 0.4s ease-in-out, color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out, background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

.card-products__detail .text {
  position: absolute;
  z-index: 1;
}

.card-products__detail::after {
  content: "";
  position: absolute;
  opacity: 0;
  inset: 3px;
  background-color: var(--red, #F60114);
  border-radius: 16px;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.card-choice {
  padding: 20px;
  width: 100%;
  height: 172px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 24px;
  background-color: var(--white, #FFF);
}

.card-choice__box-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.card-choice__box-img img {
  width: 52px;
  height: 52px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.card-choice__title {
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
}

.card-order {
  position: relative;
  height: 100%;
  min-height: 173px;
  padding: 32px;
  border-radius: 24px;
  border: 1.2px solid var(--gray-20, #F1F1F1);
  background-repeat: no-repeat;
  background-position: top 20px right 20px;
}

.card-order .count {
  position: absolute;
  display: none;
}

.card-order__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.card-order__info .step {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 12px;
  border-radius: 1000px;
  color: var(--white, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  background-color: var(--red);
}

.card-order__title {
  color: var(--black, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

.card-reviews {
  cursor: pointer;
  padding: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 20px;
  min-height: 358.44px;
  gap: 20px;
  border: 1px solid var(--gray-20, #F1F1F1);
  background-color: transparent;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.card-reviews .box-stars {
  pointer-events: none;
}

.card-reviews__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.card-reviews__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.card-reviews__person_avatar {
  position: relative;
  width: 56px;
  height: 56px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  background-color: var(--gray-10, #F6F6F6);
  background-image: url("../img/card-reviews/bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.card-reviews__person_avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-reviews__person_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.card-reviews__person_info .name {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-reviews__person_info .time {
  color: #ACACAC;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.card-reviews__estimation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.card-reviews__name {
  color: var(--black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-reviews__bottom {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-reviews__bottom .desc {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-reviews__bottom .desc.hidden-desc {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-reviews__btn {
  position: relative;
  color: #ACACAC;
  font-family: Geist;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.card-reviews__btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #ACACAC;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.card-modal-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 20px;
  min-height: 358.44px;
  gap: 20px;
  background-color: transparent;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.card-modal-reviews .box-stars {
  pointer-events: none;
}

.card-modal-reviews__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.card-modal-reviews__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.card-modal-reviews__person_avatar {
  position: relative;
  width: 56px;
  height: 56px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  background-color: var(--gray-10, #F6F6F6);
  background-image: url("../img/card-reviews/bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.card-modal-reviews__person_avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-modal-reviews__person_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.card-modal-reviews__person_info .name {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.card-modal-reviews__person_info .time {
  color: #ACACAC;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.card-modal-reviews__estimation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.card-modal-reviews__name {
  color: var(--black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-modal-reviews__bottom .desc {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.card-modal-reviews__btn {
  display: none;
}

.card-gallery {
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-gallery__bottom {
  display: none;
}

.card-img {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 524px;
  max-height: 524px;
}

.card-img img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-gallery-preview {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.card-gallery-preview__top {
  position: relative;
  width: 100%;
  min-height: 274px;
  max-height: 274px;
  border-radius: 20px;
  overflow: hidden;
}

.card-gallery-preview__top .tag {
  position: absolute;
  top: 28px;
  left: 28px;
}

.card-gallery-preview__top img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 274px;
  max-height: 274px;
}

.card-gallery-preview__name {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-main-detail {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  max-height: 380px;
}

.card-main-detail__link {
  width: 100%;
  min-height: 380px;
  max-height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card-main-detail__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 380px;
  max-height: 380px;
}

.card-preview-detail {
  position: relative;
  cursor: pointer;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  min-height: 120px;
  max-height: 120px;
}

.card-preview-detail::before {
  content: "";
  border-radius: 20px;
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  -webkit-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
}

.card-preview-detail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 120px;
  max-height: 120px;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 200px;
}

.section-title.padding-none {
  padding: 0;
}

.section-title__text {
  color: var(--black, #000);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.card-catalog {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 156px;
}

.card-catalog__link {
  padding: 16px;
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-20, #F1F1F1);
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.card-catalog__link picture {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card-catalog__link img {
  max-width: 190px;
  max-height: 112px;
}

.card-catalog__title {
  display: none;
}

.box-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  color: #F6F6F6;
}

.box-stars svg {
  cursor: pointer;
}

.box-stars svg.yellow {
  color: #FFCC00;
}

.input-type-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.input-type-1:has(.error) .message-error {
  display: inline-block;
}

.input-type-1__input {
  padding: 16px 20px;
  border-radius: 16px;
  color: var(--black, #000);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  border: 1px solid var(--gray-20, #F1F1F1);
  -webkit-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
}

.input-type-1__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.input-type-1__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  -moz-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.input-type-1__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  -ms-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.input-type-1__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  -ms-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.input-type-1__input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.input-type-1__input.error {
  border-color: var(--red);
}

.input-type-1__input.error::-webkit-input-placeholder {
  color: var(--red);
}

.input-type-1__input.error::-moz-placeholder {
  color: var(--red);
}

.input-type-1__input.error:-ms-input-placeholder {
  color: var(--red);
}

.input-type-1__input.error::-ms-input-placeholder {
  color: var(--red);
}

.input-type-1__input.error::placeholder {
  color: var(--red);
}

.input-type-1 .message-error {
  display: none;
  color: var(--red, #F60114);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.textarea-type-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.textarea-type-1:has(.error) .message-error {
  display: inline-block;
}

.textarea-type-1__text {
  padding: 16px 20px;
  min-height: 128px;
  border-radius: 16px;
  color: var(--black, #000);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  border: 1px solid var(--gray-20, #F1F1F1);
  -webkit-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
  -ms-overflow-style: none;
  /* IE и Edge */
  scrollbar-width: none;
  /* Firefox */
}

.textarea-type-1__text::-webkit-scrollbar {
  display: none;
}

.textarea-type-1__text::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.textarea-type-1__text::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  -moz-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.textarea-type-1__text:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  -ms-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.textarea-type-1__text::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  -ms-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.textarea-type-1__text::placeholder {
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.textarea-type-1__text.error {
  border-color: var(--red);
}

.textarea-type-1__text.error::-webkit-input-placeholder {
  color: var(--red);
}

.textarea-type-1__text.error::-moz-placeholder {
  color: var(--red);
}

.textarea-type-1__text.error:-ms-input-placeholder {
  color: var(--red);
}

.textarea-type-1__text.error::-ms-input-placeholder {
  color: var(--red);
}

.textarea-type-1__text.error::placeholder {
  color: var(--red);
}

.textarea-type-1 .message-error {
  display: none;
  color: var(--red, #F60114);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.drop-down-type-1 {
  position: relative;
  width: 100%;
}

.drop-down-type-1.detail .drop-down-type-1__input {
  font-size: 16px;
  padding: 13px 20px;
  border: 1.6px solid var(--gray-20, #F1F1F1);
}

.drop-down-type-1.detail .drop-down-type-1__btn {
  padding: 11px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drop-down-type-1.detail .drop-down-type-1__btn svg {
  width: 22px;
  height: 22px;
}

.drop-down-type-1.detail .drop-down-type-1__choice {
  top: 48px;
  border: 1.6px solid var(--gray-20, #F1F1F1);
  border-top: none;
}

.drop-down-type-1.detail .drop-down-type-1__item {
  padding: 13px 20px;
  font-size: 16px;
}

.drop-down-type-1.detail .drop-down-type-1__item.selected {
  opacity: 1;
  background: var(--gray-20, #F1F1F1);
  background-image: url(../img/drop-down-type-1/check.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
}

.drop-down-type-1.disabled {
  pointer-events: none;
}

.drop-down-type-1.disabled .drop-down-type-1__input {
  background: var(--gray-10, #F6F6F6);
}

.drop-down-type-1.disabled .drop-down-type-1__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2588235294);
}

.drop-down-type-1.disabled .drop-down-type-1__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2588235294);
}

.drop-down-type-1.disabled .drop-down-type-1__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2588235294);
}

.drop-down-type-1.disabled .drop-down-type-1__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2588235294);
}

.drop-down-type-1.disabled .drop-down-type-1__input::placeholder {
  color: rgba(0, 0, 0, 0.2588235294);
}

.drop-down-type-1.disabled .drop-down-type-1__btn {
  color: rgba(0, 0, 0, 0.2588235294);
}

.drop-down-type-1.active .drop-down-type-1__input {
  border-radius: 16px 16px 0 0;
}

.drop-down-type-1.active .drop-down-type-1__choice {
  opacity: 1;
  visibility: visible;
}

.drop-down-type-1.active .drop-down-type-1__btn svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.drop-down-type-1__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.drop-down-type-1__label:has(.error) .message-error {
  display: inline-block;
}

.drop-down-type-1__label .message-error {
  display: none;
  color: var(--red, #F60114);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.drop-down-type-1__input {
  position: relative;
  width: 100%;
  padding: 22px 24px;
  border-radius: 16px;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  background: var(--white, #FFF);
  border: none;
  -webkit-transition: border-radius 0.4s ease-in-out;
  transition: border-radius 0.4s ease-in-out;
}

.drop-down-type-1__input::-webkit-input-placeholder {
  color: var(--black, #000);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.drop-down-type-1__input::-moz-placeholder {
  color: var(--black, #000);
  -moz-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.drop-down-type-1__input:-ms-input-placeholder {
  color: var(--black, #000);
  -ms-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.drop-down-type-1__input::-ms-input-placeholder {
  color: var(--black, #000);
  -ms-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.drop-down-type-1__input::placeholder {
  color: var(--black, #000);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.drop-down-type-1__input.error {
  border-color: var(--red);
}

.drop-down-type-1__input.error::-webkit-input-placeholder {
  color: var(--red);
}

.drop-down-type-1__input.error::-moz-placeholder {
  color: var(--red);
}

.drop-down-type-1__input.error:-ms-input-placeholder {
  color: var(--red);
}

.drop-down-type-1__input.error::-ms-input-placeholder {
  color: var(--red);
}

.drop-down-type-1__input.error::placeholder {
  color: var(--red);
}

.drop-down-type-1__btn {
  padding: 22px 24px;
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  color: var(--black);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.drop-down-type-1__btn svg {
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.drop-down-type-1__choice {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  position: absolute;
  top: 68px;
  z-index: 2;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  background-color: var(--white, #FFF);
  -webkit-box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.12);
  -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.drop-down-type-1__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 416px;
  overflow: auto;
  -ms-overflow-style: none;
  /* IE и Edge */
  scrollbar-width: none;
  /* Firefox */
}

.drop-down-type-1__list::-webkit-scrollbar {
  display: none;
}

.drop-down-type-1__item {
  cursor: pointer;
  padding: 22px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-align: start;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.drop-down-type-1__item.active {
  background-color: var(--gray-10, #F6F6F6);
}

.drop-down-type-1__item.selected {
  pointer-events: none;
  opacity: 0.3;
  background-color: var(--gray-10, #F6F6F6);
}

.min-search {
  padding: 12px 24px;
}

.min-search__line {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.min-search__input {
  padding: 12px 24px;
  width: 100%;
  border-radius: 16px;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  border: 1px solid var(--gray-20, #F1F1F1);
}

.min-search__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.min-search__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.min-search__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.min-search__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.min-search__input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.min-search__subnit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 50px;
  color: var(--blue, #0022B2);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.tag {
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border-radius: 12px;
  color: var(--black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  background-color: var(--gray-10, #F6F6F6);
}

.path {
  padding-bottom: 32px;
}

.path__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.path__list::-webkit-scrollbar {
  display: none;
}

.path__list li {
  position: relative;
  padding-left: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.path__list li:first-child {
  padding: 0;
}

.path__list li:first-child::before {
  display: none;
}

.path__list li::before {
  content: "-";
  position: absolute;
  left: 8px;
  width: 6px;
  color: var(--blue, #0022B2);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.path__link {
  color: var(--gray-text, #ACACAC);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

span.path__link {
  pointer-events: none;
}

.page-title {
  margin-bottom: 36px;
}

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

.page-title__text {
  color: var(--black, #000);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.info-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.info-banner__info-wrapp {
  width: 74.5283018868%;
}

.info-banner__banner-wrapp {
  width: 23.5849056604%;
}

.static-text {
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.static-text *:not(:last-child) {
  margin-bottom: 20px;
}

.static-text h2 {
  margin-bottom: 24px !important;
  color: var(--black, #000);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.static-text h3 {
  margin-bottom: 24px !important;
  color: var(--black, #000);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.static-text h4 {
  margin-bottom: 24px !important;
  color: var(--black, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.static-text h5 {
  margin-bottom: 20px !important;
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.static-text h6 {
  margin-bottom: 20px !important;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.static-text a {
  color: var(--red, #F60114);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-decoration: underline;
}

.static-text ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.static-text ul li {
  margin: 0 !important;
}

.static-text ul li::marker {
  color: var(--red);
}

.static-text .checkbox-type-1 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.static-text .checkbox-type-1__input {
  margin-bottom: 0 !important;
}

.static-text .checkbox-type-1 .castom {
  margin-bottom: 0 !important;
}

.static-text .checkbox-type-1__desc {
  color: var(--black);
  font-size: 18px;
}

.static-text.city ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.static-text.city ul li {
  min-height: 24px;
  padding-left: 32px;
  margin: 0 !important;
  background-image: url(../img/city/geo.svg);
  background-repeat: no-repeat;
  background-position: left center;
}

.card-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: sticky;
  top: 30px;
  width: 100%;
  min-height: 388px;
}

.card-banner__box-img {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.card-banner__box-img .picture {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card-banner__box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-banner__link {
  height: auto;
  padding: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-banner__link .top-text {
  color: var(--white, #FFF);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-banner__link .top-text i {
  margin-left: 4px;
  padding: 0 4px;
  font-style: normal;
  background-color: var(--red);
}

.card-banner__link .bottom-text {
  color: var(--white, #FFF);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.card-choice-line {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.card-choice-line .title {
  display: none;
}

.card-choice-line__box-img {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-choice-line__box-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(49.77%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.72)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 49.77%, rgba(0, 0, 0, 0.72) 100%);
}

.card-choice-line__box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-choice-line__link {
  height: 100%;
  min-height: 137px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 16px;
  color: var(--white, #FFF);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

.filter-type-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.filter-type-1 .drop-down-type-1__input {
  padding: 16px 20px;
  border-radius: 16px !important;
  border: 1.6px solid var(--gray-20, #F1F1F1);
}

.filter-type-1 .drop-down-type-1__btn {
  padding: 16px 20px;
}

.filter-type-1 .drop-down-type-1__choice {
  border-radius: 16px;
  border: 1.6px solid var(--gray-20, #F1F1F1);
}

.card-calalog-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
}

.card-calalog-gallery .title {
  display: none;
}

.card-calalog-gallery__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-20, #F1F1F1);
  height: 200px;
  max-height: 200px;
  min-height: 200px;
}

.card-calalog-gallery__link picture {
  position: absolute;
  inset: 0;
}

.card-calalog-gallery__link img {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 200px;
  min-height: 200px;
}

.card-calalog-gallery__hover {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 12px;
  max-height: 200px;
  min-height: 200px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(11.3129997253px);
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.card-calalog-gallery__hover .text {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.pagination__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.card-contacts {
  padding: 32px;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  background-color: var(--gray-10, #F6F6F6);
}

.card-contacts__title {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.card-contacts__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

.search {
  width: 100%;
}

.search__line {
  width: 100%;
  position: relative;
}

.search__label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search__input {
  width: 100%;
  height: 64px;
  padding: 15px 64px 15px 28px;
  border-radius: 16px;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  background-color: var(--gray-10, #F6F6F6);
  border: none;
}

.search__input::-webkit-input-placeholder {
  color: var(--black, #000);
}

.search__input::-moz-placeholder {
  color: var(--black, #000);
}

.search__input:-ms-input-placeholder {
  color: var(--black, #000);
}

.search__input::-ms-input-placeholder {
  color: var(--black, #000);
}

.search__input::placeholder {
  color: var(--black, #000);
}

.search__submit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--blue-2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.main-catalog-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-main-catalog {
  height: 100%;
}

.card-main-catalog .title {
  display: none;
}

.card-main-catalog__link {
  width: 100%;
  padding: 31px;
  min-height: 215px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 20px;
  border: 1px solid var(--gray-20, #F1F1F1);
}

.card-main-catalog__box-img {
  max-width: 190px;
  min-height: 112px;
  max-height: 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card-main-catalog__box-img img {
  max-width: 190px;
  max-height: 112px;
}

.card-main-catalog__name {
  color: var(--black, #000);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.card-second-catalog {
  height: 100%;
}

.card-second-catalog .title {
  display: none;
}

.card-second-catalog__link {
  padding: 31px 16px 10px 16px;
  width: 100%;
  height: 100%;
  min-height: 215px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-radius: 20px;
  border: 1px solid var(--gray-20, #F1F1F1);
}

.no-webp .card-second-catalog__box-img{
  background-image: url("../img/card-second-catalog/none.png"); }

.card-second-catalog__box-img {
  min-width: 100px;
  max-width: 177px;
  min-height: 112px;
  max-height: 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
}

.card-second-catalog__box-img:has(img) {
  background-image: none !important;
}

.card-second-catalog__box-img img {
  max-width: 177px;
  max-height: 112px;
  max-height: 112px;
}

.card-second-catalog__name {
  color: var(--black, #000);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.parameter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.parameter .name {
  color: var(--black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.radio-type-color {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.radio-type-color__input {
  cursor: pointer;
  position: absolute;
  inset: 0;
  opacity: 0;
}

.radio-type-color__input:checked + .radio-type-color__color {
  outline: 2px solid var(--red, #F60114);
}

.radio-type-color__color {
  width: 28px;
  height: 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card-buy {
  min-height: 292px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 34px;
  padding: 32px 26px;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--gray-10, #F6F6F6);
}

.card-buy__top {
  padding: 0 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}

.card-buy__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.card-buy__bottom .btn-order {
  font-size: 17px;
  width: 100%;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.price .old-price {
  color: var(--gray-text, #ACACAC);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-decoration: line-through;
}

.price .actual-price {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.price .benefit-price {
  padding: 7px 8px;
  background-color: var(--red);
  border-radius: 100px;
  color: var(--white, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

.status {
  color: var(--black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.card-basket {
  min-height: 128px;
  position: relative;
  padding: 24px 88px 28px 123px;
  border-radius: 24px;
  border: 1px solid var(--gray-20, #F1F1F1);
}

.card-basket .link-remove {
  position: absolute;
  top: 24px;
  right: 24px;
}

.card-basket__top {
  margin-bottom: 14px;
}

.card-basket__box-img {
  position: absolute;
  top: 24px;
  left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.card-basket__box-img img {
  width: 80px;
  max-height: 80px;
  min-height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-basket__title {
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.card-basket__middle {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-20, #F1F1F1);
}

.card-basket__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
}

.card-basket .price_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.list-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.list-points .point {
  padding: 8px 12px;
  border-radius: 12px;
  background-color: var(--gray-10, #F6F6F6);
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.list-points .point i {
  color: var(--black, #000);
  font-style: normal;
}

.list-points .point.color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: var(--black, #000);
}

.list-points .point__color {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.counter__btn {
  margin: 2px;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--red);
  border-radius: 100%;
}

.counter__input {
  pointer-events: none;
  border: none;
  width: 32px;
  height: 100%;
  text-align: center;
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.card-your-order {
  width: 100%;
  padding: 28px;
  border-radius: 24px;
  background-color: var(--gray-10, #F6F6F6);
}

.card-your-order__title {
  margin-bottom: 16px;
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.card-your-order__price-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.card-your-order .price-info__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-your-order .price-info__line .name {
  color: var(--main-text_gray, #929495);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.card-your-order .price-info__line .between {
  margin: 0 8px;
  min-width: 26px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-image: -webkit-gradient(linear, left top, right top, from(#A1A1A2), color-stop(60%, #A1A1A2), color-stop(40%, transparent), to(transparent));
  background-image: linear-gradient(to right, #A1A1A2 0%, #A1A1A2 60%, transparent 40%, transparent 100%);
  background-size: 10px 0.9px;
  background-position: left bottom 4px;
  background-repeat: repeat-x;
}

.card-your-order .price-info__line .info {
  color: var(--black, #000);
  text-align: right;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.card-your-order__total {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.card-your-order .total-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.card-your-order .total-line .name {
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.card-your-order .total-line .between {
  margin: 0 8px;
  min-width: 26px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.card-your-order .total-line .info {
  color: var(--black, #000);
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.card-your-order .btn-order {
  width: 100%;
}

.input-group-type-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.input-type-2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-type-2__input {
  padding: 21px 23px;
  width: 100%;
  border-radius: 16px;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  background-color: transparent;
  border: 1px solid var(--gray-20, #F1F1F1);
}

.input-type-2__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-type-2__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-type-2__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-type-2__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-type-2__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-type-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  background-image: url(../img/geo/geo.svg);
  background-repeat: no-repeat;
  background-position: top 22px left 24px;
}

.input-type-3__input {
  padding: 21px 23px 21px 55px;
  width: 100%;
  border-radius: 16px;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  background-color: transparent;
  border: 1px solid var(--gray-20, #F1F1F1);
}

.input-type-3__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-type-3__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-type-3__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-type-3__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-type-3__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-type-3__desc {
  color: var(--black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.textarea-type-2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.textarea-type-2__text {
  resize: none;
  padding: 21px 23px;
  width: 100%;
  min-height: 196px;
  border-radius: 16px;
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  background-color: transparent;
  border: 1px solid var(--gray-20, #F1F1F1);
}

.textarea-type-2__text::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.textarea-type-2__text::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.textarea-type-2__text:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.textarea-type-2__text::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.textarea-type-2__text::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.card-instruct {
  width: 100%;
  height: 100%;
  background-image: url("../img/card-instruct/bg.svg");
  background-repeat: no-repeat;
  background-position: top 22px left 25px;
  border-radius: 20px;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.card-instruct__link {
  width: 100%;
  height: 100%;
  padding: 54px 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  min-height: 146px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  border-radius: 20px;
  border: 1px solid var(--gray-20, #F1F1F1);
}

.tabs-type-1 {
  padding-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.tabs-type-1__btn-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  overflow: auto;
  -ms-overflow-style: none;
  /* IE и старый Edge */
  scrollbar-width: none;
  /* Firefox */
}

.tabs-type-1__btn-line::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.tabs-type-1__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 16px 24px;
  color: var(--black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  border-radius: 1000px;
  background-color: var(--gray-20, #F1F1F1);
}

.tabs-type-1__btn.active {
  background-color: var(--red);
  color: var(--white);
}

.tabs-type-1__box {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.tabs-type-1__box.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-tab-material {
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  border-radius: 24px;
  border: 1px solid var(--gray-20, #F1F1F1);
}

.card-tab-material__demonstration {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.card-tab-material .demonstration {
  width: 100%;
  height: 137px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 137px;
  border-radius: 8px;
}

.castom-table {
  overflow: auto;
  -ms-overflow-style: none;
  /* IE и Edge */
  scrollbar-width: none;
  /* Firefox */
}

.castom-table.scroll-start {
  position: relative;
}

.castom-table.scroll-start::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0 0 0 auto;
  width: 72px;
  background: -webkit-gradient(linear, right top, left top, from(#F5F5F5), to(rgba(245, 245, 245, 0)));
  background: linear-gradient(270deg, #F5F5F5 0%, rgba(245, 245, 245, 0) 100%);
}

.castom-table.scroll-start.scroll-end::after {
  display: none;
}

.castom-table::-webkit-scrollbar {
  display: none;
}

.castom-table-body {
  min-width: 1200px;
  margin: 0 !important;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--black, #252423);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.castom-table-body_line {
  margin: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 64px;
  border-bottom: 2px solid var(--white);
  background-color: var(--gray-10, #F6F6F6);
}

.castom-table-body_line.head {
  border-radius: 24px 24px 0 0;
  font-weight: 500;
  border: none;
  color: var(--white);
  background-color: var(--blue-2);
}

.castom-table-body_column {
  margin: 0 !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 20px;
}

.radio-type-1 {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.radio-type-1__input {
  position: absolute;
  opacity: 0;
}

.radio-type-1__input:checked + .castom {
  border-color: var(--red);
}

.radio-type-1__input:checked + .castom i {
  opacity: 1;
}

.radio-type-1 .castom {
  margin: 2px;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100%;
  border: 2px solid #E5E5E5;
  -webkit-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
}

.radio-type-1 .castom i {
  opacity: 0;
  width: 10px;
  height: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100%;
  background-color: var(--red);
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.radio-type-1__desc {
  color: var(--black, #252423);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.instruct-list__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mailing {
  padding: 65px 0 29px;
  border-radius: 28px 28px 0 0;
  background-color: var(--blue-2, #0022B2);
  background-image: url("../img/mailing/bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.mailing__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5031446541%;
}

.mailing__left {
  width: 37.6572327044%;
}

.mailing__title {
  color: var(--white, #FFF);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.mailing__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mailing-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.mailing-form .mailing-submit {
  position: absolute;
  top: 0;
  right: 0;
}

.footer {
  padding: 72px 0 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  border-radius: 28px 28px 0 0;
  background-color: var(--black, #000);
  color: var(--white);
}

.footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background-color: var(--blue-2, #0022B2);
}

.footer__top_wrapper {
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__top_wrapper .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.footer__bottom {
  padding-top: 28px;
}

.footer__bottom_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.footer__bottom_wrapper a {
  text-decoration: underline;
}

.footer__group-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer__list li:first-child .link-footer-nav {
  font-weight: 600;
}

.footer__group-order {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.box-info .name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.box-info .mail {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.box-info .mail::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background-color: var(--red);
}

.box-network {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.box-network .name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.hero__box-img {
  position: relative;
}

.hero__box-img .swiper-btn-type-1 {
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.hero__box-img .swiper-btn-type-1.--prev {
  right: calc(100% + 8px);
}

.hero__box-img .swiper-btn-type-1.--next {
  left: calc(100% + 8px);
}

.swiper-hero-pagination {
  bottom: 24px !important;
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}

.swiper-hero .swiper-pagination-bullet {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  background: var(--white);
  -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}

.swiper-hero .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: var(--white);
  border-radius: 100%;
  z-index: 0;
}

.swiper-hero .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
}

.swiper-hero .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--blue-2);
}

.swiper-nav {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.swiper-nav__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-nav-1 {
  position: absolute;
  bottom: 48px;
  left: -12px;
  right: -12px;
  z-index: 2;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.swiper-products {
  margin: -12px -12px 0 -12px;
  padding: 12px 12px 0 12px;
}

.swiper-card-products {
  border-radius: 20px;
  overflow: hidden;
}

.swiper-card-products-pagination {
  padding: 0 16px;
  position: absolute;
  z-index: 2;
  bottom: 12px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

.swiper-card-products-pagination .swiper-pagination-bullet {
  position: relative;
  margin: 0 !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4px;
  border-radius: 100px;
  opacity: 0.5;
  background: var(--white, #FFF);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.swiper-card-products-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
}

.swiper-card-products-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-reviews {
  overflow: visible;
}

.swiper-modal-reviews-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 12px;
  border-radius: 16px;
  background-color: var(--gray-10, #F6F6F6);
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.swiper-gallery-item .swiper-nav {
  padding: 0;
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  border-color: var(--gray-10, #F6F6F6);
}

.swiper-gallery-item .swiper-nav__group {
  gap: 8px;
}

.swiper-gallery-item .swiper-btn-type-1 {
  border-color: var(--gray-10, #F6F6F6);
}

.swiper-gallery__swiper-nav {
  display: none;
}

.swiper-nav-type-2 {
  padding-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.swiper-nav-type-2:has(.swiper-button-lock) {
  display: none;
}

.swiper-nav-type-2__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.swiper-btn-type-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 36px;
  height: 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  background-color: var(--gray-20, #F1F1F1);
  -webkit-transition: background-color 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.swiper-btn-type-2.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.3;
}

.swiper-main-detail {
  overflow: hidden;
}

.swiper-main-detail .swiper-slide {
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.swiper-preview-detail {
  overflow: hidden;
}

.swiper-preview-detail .swiper-slide.swiper-slide-thumb-active .card-preview-detail::before {
  border-color: var(--red);
}

.swiper-btn-type-3 {
  pointer-events: auto;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  background-color: var(--white);
}

.swiper-btn-type-3.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.advantage__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.list-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}

.list-products__box-swiper {
  position: relative;
}

.list-products__box-swiper .link-all {
  position: absolute;
  z-index: 2;
  bottom: calc(100% + 40px);
  right: 0;
}

.section-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.section-info__title {
  width: 49.0566037736%;
  color: var(--black, #000);
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

.section-info__title span {
  color: var(--red, #F60114);
}

.section-info__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--black, #000);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.section-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}

.section-catalog__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.choice {
  padding: 48px;
  border-radius: 20px;
  background-color: #F6F6F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.choice__left {
  width: 36.8197278912%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.choice__desc {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.choice__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.choice__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.section-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.section-order__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.section-order__list li:nth-child(1) .card-order {
  background-image: url("../img/card-order/1.svg");
}

.section-order__list li:nth-child(2) .card-order {
  background-image: url("../img/card-order/2.svg");
}

.section-order__list li:nth-child(3) .card-order {
  background-image: url("../img/card-order/3.svg");
}

.section-order__list li:nth-child(4) .card-order {
  background-image: url("../img/card-order/4.svg");
}

.section-order__list li:nth-child(5) .card-order {
  background-image: url("../img/card-order/5.svg");
}

.section-order__list li:nth-child(6) .card-order {
  background-image: url("../img/card-order/6.svg");
}

.bottom-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 14px 6px 14px;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04), 0 -8px 16px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04), 0 -8px 16px 0 rgba(0, 0, 0, 0.08);
}

.bottom-menu__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.list-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}

.modal-reviews__window {
  padding: 32px;
  width: 749px;
  max-width: 100%;
  border-radius: 20px;
  border: 1px solid var(--gray-20, #F1F1F1);
  background-color: var(--white);
}

.modal-feedback__window {
  width: 400px;
  max-width: 100%;
  padding: 32px;
  border-radius: 24px;
  background-color: var(--white);
}

.form-type-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.form-type-1__title {
  padding-bottom: 12px;
  color: var(--black, #000);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
}

.form-type-1__desc {
  margin-bottom: 20px;
  color: var(--black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.form-type-1 .checkbox-type-1 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.form-type-1 .checkbox-type-1__desc {
  color: var(--black);
}

.form-type-1 .checkbox-type-1 a {
  color: var(--blue);
}

.form-type-1 .checkbox-type-1 a:focus-visible,
.form-type-1 .checkbox-type-1 a:hover {
  color: var(--black);
}

.write-us {
  position: relative;
}

.write-us .btn-order {
  height: 62px;
  border-radius: 1000px;
}

.write-us .btn-order::after {
  border-radius: 1000px;
}

.write-us__box-img {
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 57.0754716981%;
}

.write-us__box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
}

.write-us__wrapper {
  width: 38.8364779874%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.write-us .input-type-1__input {
  padding: 22px 24px;
  font-size: 18px;
}

.our-work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}

.our-work .link-all {
  position: absolute;
  right: 0;
  bottom: calc(100% + 41px);
}

.our-work__content {
  position: relative;
}

.our-work__box-bottom-swiper {
  padding-top: 24px;
}

.our-work__box-top-swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 524px;
  max-height: 524px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--gray-10, #F6F6F6);
}

.our-work__info {
  height: auto;
  width: 33.9622641509%;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.our-work__info {
  gap: 20px;
}

.our-work__info-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.our-work__title {
  color: var(--black, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  text-align: start;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-work__desc {
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-align: start;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-work .btn-order {
  width: 100%;
  height: 62px;
  font-size: 18px;
}

.our-work__top-swiper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66.0377358491%;
}

.choice-line {
  width: 100%;
}

.filter-list {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.calalog-list__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.main:has(.error-page) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.error-page {
  height: 100%;
}

.error-page .container {
  height: 100%;
}

.error-page__contents {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.error-page__box-img {
  width: 513px;
  height: 513px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.error-page__desc {
  max-width: 623px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black, #000);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.error-page__desc a {
  color: var(--red, #F60114);
  text-decoration: underline;
}

.box-map {
  width: 100%;
}

.box-map .map-contacts {
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  min-height: 489px;
}

.contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.box-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.box-contacts.time .name {
  background-image: url(../img/box-contacts/time.svg);
}

.box-contacts.phone .name {
  background-image: url(../img/box-contacts/phone.svg);
}

.box-contacts.mail .name {
  background-image: url(../img/box-contacts/mail.svg);
}

.box-contacts.manager .name {
  background-image: url(../img/box-contacts/manager.svg);
}

.box-contacts .name {
  min-height: 23px;
  padding-left: 31px;
  color: var(--red, #F60114);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  background-repeat: no-repeat;
  background-position: left center;
}

.box-contacts .text {
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.box-contacts .mail {
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-decoration: underline;
}

.tabs-type-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.tabs-type-5__tab {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--gray-20, #F1F1F1);
}

.tabs-type-5__btn {
  width: 100%;
  padding: 26px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--black, #000);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  gap: 15px;
}

.tabs-type-5__btn.active {
  background-color: var(--gray-20);
}

.tabs-type-5__btn.active .svg {
  background-color: var(--red);
}

.tabs-type-5__btn.active svg {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.tabs-type-5__btn .text {
  text-align: start;
}

.tabs-type-5__btn .svg {
  width: 35px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  background-color: var(--blue-2);
}

.tabs-type-5__btn svg {
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.tabs-type-5__info {
  padding: 0 32px 32px 32px;
  display: none;
  background-color: var(--gray-20);
}

.tabs-type-5__info.active {
  display: block;
}

.box-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.box-catalog .card-choice-line__link {
  min-height: 215px;
  padding: 28px;
  font-size: 18px;
}

.box-catalog .card-choice-line.img-none {
  border: 1px solid var(--gray-20, #F1F1F1);
}

.no-webp .box-catalog .card-choice-line.img-none .card-choice-line__box-img{
  background-image: url("../img/card-choice-line/bg.png"); }

.box-catalog .card-choice-line.img-none .card-choice-line__box-img {
  background-repeat: no-repeat;
  background-position: center top 32px;
}

.box-catalog .card-choice-line.img-none .card-choice-line__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black);
}

.box-catalog .card-choice-line.img-none .card-choice-line__link .text {
  text-align: center;
}

.second-catalog-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.color-choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2px;
}

.detail-card {
  position: relative;
}

.detail-card__box-swiper {
  position: absolute;
  max-width: 100%;
  width: 516px;
}

.detail-card__box-swiper .swiper-preview-detail {
  margin-top: 12px;
}

.detail-card__parameter {
  padding-left: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.detail-card__parameter_left {
  width: 46.7696629213%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-right: 23px;
  min-height: 512px;
  max-height: 512px;
  overflow: auto;
}

.detail-card__parameter_left.scroll-start {
  position: relative;
}

.detail-card__parameter_left.scroll-start::before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: auto 22px 0 0;
  height: 136px;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFF));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}

.detail-card__parameter_left::-webkit-scrollbar {
  width: 3px;
}

.detail-card__parameter_left::-webkit-scrollbar-track {
  background: var(--gray-20);
  border-radius: 10px;
}

.detail-card__parameter_left::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 10px;
}

.detail-card__parameter_left-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.detail-card__parameter_left-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.detail-card__parameter_left .parameter {
  margin-right: 34px;
}

.detail-card__parameter_right {
  width: 50%;
}

.detail-card__desc {
  margin-top: 54px;
}

.detail-card .static-text a {
  color: var(--blue-2);
}

@-moz-document url-prefix()  {
  .detail-card__parameter_left {
    scrollbar-width: thin;
    scrollbar-color: var(--green) var(--gray-10, #F5F5F5);
  }
}

.box-stocks__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 300px));
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-order__title {
  padding-left: 50px;
  margin-bottom: 36px;
  color: var(--black, #000);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  background-image: url(../img/page-order/icon.svg);
  background-repeat: no-repeat;
  background-position: left top;
}

.page-order__desc {
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.box-basket {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 116px;
}

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

.box-basket__card-your-order {
  width: 300px;
  position: absolute;
  top: 0;
  right: 0;
}

.box-basket__left {
  padding-right: 324px;
}

.box-basket__title {
  margin-bottom: 24px;
  color: var(--black, #000);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.box-basket__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.box-basket__person {
  width: 474px;
  max-width: 100%;
}

@media (min-width: 1001px) {
  .modal__close:focus-visible,
  .modal__close:hover {
    color: var(--blue);
  }

  .link-write:focus-visible,
  .link-write:hover {
    color: var(--blue);
  }

  .link-phone:focus-visible,
  .link-phone:hover {
    color: var(--blue);
  }

  .link-main-group:focus-visible,
  .link-main-group:hover {
    color: var(--blue);
  }

  .link-nav:focus-visible,
  .link-nav:hover {
    color: var(--blue);
  }

  .link-footer-nav:focus-visible,
  .link-footer-nav:hover {
    color: var(--blue);
  }

  .link-all:focus-visible,
  .link-all:hover {
    color: var(--blue);
  }

  .link-catalog-all:focus-visible,
  .link-catalog-all:hover {
    background-color: #D9D9D9;
    color: var(--black);
  }

  .link-reviews:focus-visible,
  .link-reviews:hover {
    background-color: var(--blue);
    color: var(--white);
  }

  .link-instruct:focus-visible,
  .link-instruct:hover {
    background-color: var(--gray-20);
  }

  .link-show-more:focus-visible,
  .link-show-more:hover {
    background-color: var(--gray-20);
  }

  .link-pagination:focus-visible,
  .link-pagination:hover {
    background-color: var(--gray-20);
  }

  .link-remove:focus-visible,
  .link-remove:hover {
    background-color: var(--gray-10);
  }

  .logo:focus-visible::after,
  .logo:focus::after {
    opacity: 1;
  }

  .logo-footer__link:focus-visible::after,
  .logo-footer__link:focus::after {
    opacity: 1;
  }

  .btn-order:focus-visible::after,
  .btn-order:hover::after {
    opacity: 0;
  }

  .btn-transparent:focus-visible,
  .btn-transparent:hover {
    background-color: var(--red, #F60114);
  }

  .btn-one-click:focus-visible,
  .btn-one-click:hover {
    background-color: var(--gray-20);
  }

  .mailing-submit:focus-visible,
  .mailing-submit:hover {
    background-color: var(--blue);
  }

  .checkbox-type-1 a:focus-visible,
  .checkbox-type-1 a:hover {
    color: var(--white);
  }

  .swiper-btn-type-1:focus-visible,
  .swiper-btn-type-1:hover {
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
  }

  .card-products:has(.swiper-card-products-pagination:focus-visible, .swiper-card-products-pagination:hover) .card-products__hover {
    opacity: 1;
  }

  .card-products:has(.swiper-card-products-pagination:focus-visible, .swiper-card-products-pagination:hover) .card-products__detail {
    background-color: #A9B1BC;
    border-color: var(--blue-2, #0022B2);
    color: var(--white);
  }

  .card-products:has(.swiper-card-products-pagination:focus-visible, .swiper-card-products-pagination:hover) .card-products__detail::after {
    opacity: 1;
  }

  .card-products .swiper-card-products-pagination:focus-visible,
  .card-products .swiper-card-products-pagination:hover {
    opacity: 1;
    visibility: visible;
  }

  .card-products__link:focus-visible + .card-products__hover,
  .card-products__link:hover + .card-products__hover {
    opacity: 1;
  }

  .card-products__link:focus-visible + .card-products__hover + .card-products__top .swiper-card-products-pagination,
  .card-products__link:hover + .card-products__hover + .card-products__top .swiper-card-products-pagination {
    opacity: 1;
    visibility: visible;
  }

  .card-products__link:focus-visible + .card-products__hover + .card-products__top + .card-products__bottom .card-products__detail,
  .card-products__link:hover + .card-products__hover + .card-products__top + .card-products__bottom .card-products__detail {
    background-color: #A9B1BC;
    border-color: var(--blue-2, #0022B2);
    color: var(--white);
  }

  .card-products__link:focus-visible + .card-products__hover + .card-products__top + .card-products__bottom .card-products__detail::after,
  .card-products__link:hover + .card-products__hover + .card-products__top + .card-products__bottom .card-products__detail::after {
    opacity: 1;
  }

  .card-catalog__link:focus-visible,
  .card-catalog__link:hover {
    background-color: var(--gray-10, #F6F6F6);
  }

  .drop-down-type-1__btn:focus-visible,
  .drop-down-type-1__btn:hover {
    color: var(--blue);
  }

  .drop-down-type-1__item:focus-visible,
  .drop-down-type-1__item:hover {
    background-color: var(--gray-10, #F6F6F6);
  }

  .min-search__subnit:focus-visible,
  .min-search__subnit:hover {
    color: var(--black, #000);
  }

  .path__link:focus-visible,
  .path__link:hover {
    color: var(--blue);
  }

  .static-text a:focus-visible,
  .static-text a:hover {
    color: var(--black);
  }

  .card-choice-line__link:focus-visible,
  .card-choice-line__link:hover {
    color: var(--gray-20);
  }

  .card-calalog-gallery__link:focus-visible .card-calalog-gallery__hover,
  .card-calalog-gallery__link:hover .card-calalog-gallery__hover {
    opacity: 1;
  }

  .search__submit:focus-visible,
  .search__submit:hover {
    color: var(--blue);
  }

  .card-main-catalog__link:focus-visible,
  .card-main-catalog__link:hover {
    background-color: var(--gray-10);
  }

  .counter__btn:focus-visible,
  .counter__btn:hover {
    background-color: var(--blue);
  }

  .card-instruct:has(.card-instruct__link:focus-visible, .card-instruct__link:hover):focus-visible,
  .card-instruct:has(.card-instruct__link:focus-visible, .card-instruct__link:hover):hover {
    background-color: var(--gray-10, #F6F6F6);
  }

  .tabs-type-1__btn:focus-visible,
  .tabs-type-1__btn:hover {
    background-color: var(--red);
    color: var(--white);
  }

  .footer__bottom_wrapper a:focus-visible,
  .footer__bottom_wrapper a:hover {
    color: var(--white);
  }

  .box-info .phone:focus-visible,
  .box-info .phone:hover {
    color: var(--blue);
  }

  .box-info .mail:focus-visible,
  .box-info .mail:hover {
    color: var(--blue);
  }

  .swiper-btn-type-2:focus-visible,
  .swiper-btn-type-2:hover {
    background-color: var(--gray-10);
  }

  .swiper-btn-type-3:focus-visible,
  .swiper-btn-type-3:hover {
    background-color: var(--gray-20);
  }

  .error-page__desc a:focus-visible,
  .error-page__desc a:hover {
    color: var(--black, #000);
  }

  .box-contacts .text a:focus-visible,
  .box-contacts .text a:hover {
    color: var(--red);
  }

  .box-contacts .mail:focus-visible,
  .box-contacts .mail:hover {
    color: var(--red);
  }

  .tabs-type-5__btn:focus-visible,
  .tabs-type-5__btn:hover {
    background-color: var(--gray-20);
  }
}

@media (min-width: 1201px) {
  .cookie__message a:focus-visible,
  .cookie__message a:hover {
    color: var(--white);
  }

  .cookie__btn:focus-visible,
  .cookie__btn:hover {
    background-color: var(--green);
  }

  .card-reviews:focus-visible,
  .card-reviews:hover {
    background-color: var(--gray-10, #F6F6F6);
  }

  .card-reviews:focus-visible .card-reviews__btn,
  .card-reviews:hover .card-reviews__btn {
    color: var(--blue-2, #0022b2);
  }

  .card-reviews:focus-visible .card-reviews__btn::after,
  .card-reviews:hover .card-reviews__btn::after {
    background-color: var(--blue-2);
  }

  .card-reviews:focus-visible .card-reviews__person_avatar,
  .card-reviews:hover .card-reviews__person_avatar {
    background-color: var(--white, #fff);
  }

  .card-reviews__btn:focus-visible,
  .card-reviews__btn:hover {
    color: var(--blue-2, #0022b2);
  }

  .card-reviews__btn:focus-visible::after,
  .card-reviews__btn:hover::after {
    background-color: var(--blue-2);
  }
}

@media (max-width: 1300px) {
  .container {
    padding: 0 24px;
  }

  .path {
    padding-bottom: 20px;
  }

  .page-title {
    margin-bottom: 28px;
  }

  .page-title__text {
    font-size: 32px;
  }

  .info-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }

  .info-banner__info-wrapp {
    width: 100%;
  }

  .info-banner__banner-wrapp {
    width: 100%;
  }

  .card-banner {
    min-height: 250px;
    position: relative;
    top: auto;
  }

  .card-tab-material__demonstration {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .hero__box-img .swiper-btn-type-1 {
    display: none;
  }

  .swiper-choice {
    padding: 0 24px;
  }

  .choice-line {
    width: calc(100% + 24px + 24px);
    margin: 0 -24px;
  }

  .detail-card__parameter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .detail-card__parameter_left {
    width: 100%;
    margin-right: 0;
  }

  .detail-card__parameter_right {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .mt-124 {
    margin-top: 100px;
  }

  .mt-156 {
    margin-top: 120px;
  }

  .cookie {
    bottom: 24px;
  }

  .header__middle_right {
    gap: 20px;
  }

  .link-phone .svg {
    width: 36px;
    height: 36px;
    outline: none;
  }

  .link-phone .svg svg {
    width: 16px;
    height: 16px;
  }

  .link-footer-nav {
    font-size: 17px;
  }

  .box-order {
    position: relative;
  }

  .box-order__box {
    position: absolute;
    right: -7px;
    top: calc(100% + 12px);
    z-index: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 13px;
    opacity: 0;
    visibility: hidden;
    padding: 16px 21px 13px;
    background-color: var(--white);
    border-radius: 16px;
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  }

  .box-order__box::before {
    content: "";
    position: absolute;
    bottom: 100%;
    width: 100%;
    height: 12px;
    background-image: url("../img/box-order/arrow.svg");
    background-repeat: no-repeat;
    background-position: bottom right 24px;
  }

  .box-order__box.active {
    opacity: 1;
    visibility: visible;
  }

  .box-order__btn {
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 48px;
    height: 48px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    color: var(--white);
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--blue-2);
    border-radius: 8px;
  }

  .btn-order {
    width: 100%;
  }

  .card-your-order .price-info__line .name {
    font-size: 16px;
  }

  .card-your-order .price-info__line .info {
    font-size: 16px;
  }

  .card-your-order .total-line .name {
    font-size: 17px;
  }

  .card-your-order .total-line .info {
    font-size: 22px;
  }

  .tabs-type-1__btn-line {
    margin: 0 -24px;
    padding: 0 24px;
  }

  .castom-table {
    margin: 0 -32px;
  }

  .castom-table-body {
    padding: 0 32px;
  }

  .instruct-list__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .mailing {
    background-image: none;
  }

  .mailing__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }

  .mailing__left {
    width: 100%;
  }

  .footer__top_wrapper {
    padding-bottom: 32px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 19px;
       -moz-column-gap: 19px;
            column-gap: 19px;
    row-gap: 32px;
  }

  .footer__top_wrapper .column:first-child {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
  }

  .footer__top_wrapper .column:last-child {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
  }

  .footer__bottom {
    padding-top: 32px;
  }

  .footer__bottom_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .footer__list {
    gap: 16px;
  }

  .footer__list li:first-child .link-footer-nav {
    font-size: 18px;
  }

  .box-network {
    gap: 8px;
  }

  .box-network .network-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .advantage__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .section-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .section-info__title {
    width: 70.7547169811%;
  }

  .section-catalog__list {
    gap: 16px;
  }

  .choice {
    padding: 24px 16px;
  }

  .list-reviews {
    gap: 28px;
  }

  .write-us__box-img {
    width: 38.8364779874%;
  }

  .write-us__wrapper {
    width: 57.0754716981%;
  }

  .our-work__info {
    padding: 16px;
  }

  .box-basket {
    gap: 56px;
  }

  .box-basket__card-your-order {
    position: static;
    width: 100%;
  }

  .box-basket__left {
    padding-right: 0;
  }
}

@media (max-width: 1000px) {
  .container {
    padding: 0 16px;
  }

  .background-gray-10 {
    padding: 24px 0;
  }

  .container {
    padding: 0 16px;
  }

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

  .modal {
    padding: 30px 16px;
  }

  .cookie__window {
    width: 330px;
  }

  .header {
    margin-bottom: 20px;
  }

  .header__top {
    display: none;
  }

  .header__middle {
    padding: 16px 0;
  }

  .header__middle_right {
    gap: 8px;
  }

  .header__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 3;
    padding: 72px 0 40px;
    background-color: var(--white);
    -webkit-transform: translateX(-120%);
        -ms-transform: translateX(-120%);
            transform: translateX(-120%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  }

  .header__bottom.active {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .header__bottom .container {
    width: 100%;
  }

  .header__bottom_line {
    gap: 60px;
    height: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .header__bottom_line__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .header__bottom_line__close .svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__bottom_line__order-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 17px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .header__bottom_line__order-group .link-phone {
    font-size: 24px;
  }

  .header__nav {
    overflow: auto;
    max-height: 100%;
  }

  .header__nav::-webkit-scrollbar {
    width: 4px;
  }

  .header__nav::-webkit-scrollbar-track {
    border-radius: 1000px;
    background-color: var(--gray-10);
  }

  .header__nav::-webkit-scrollbar-thumb {
    border-radius: 1000px;
    background-color: var(--red);
  }

  .link-nav {
    font-size: 18px;
  }

  .link-all {
    font-size: 16px;
  }

  .link-catalog-all {
    font-size: 17px;
  }

  .link-reviews {
    height: 48px;
    font-size: 16px;
    width: auto;
  }

  .link-instruct {
    padding: 24px;
    margin: 28px 0 36px;
  }

  .link-instruct .text {
    font-size: 18px;
  }

  .link-instruct .svg {
    width: 32px;
    height: 32px;
  }

  .link-remove {
    width: 36px;
    height: 36px;
  }

  .logo img {
    max-width: 178px;
    max-height: 48px;
  }

  .btn-one-click {
    height: 44px;
    font-size: 16px;
  }

  .group-btn {
    display: none;
  }

  .list-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 24px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    /*overflow: auto;
    max-height: 100%;
    min-height: 150px;*/
  }

  .list-nav li:last-child {
    display: list-item;
  }

  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 48px;
    height: 48px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--blue-2);
    border-radius: 8px;
  }

  .burger .svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .mailing-intut {
    padding-right: 135px;
    height: 60px;
  }

  .mailing-intut__input {
    font-size: 16px;
    padding: 18px 23px;
  }

  .mailing-submit {
    font-size: 16px;
    width: 131px;
    height: 52px;
  }

  .card-hero {
    padding: 40px 24px;
    min-height: 492px;
  }

  .card-hero img {
    min-height: 492px;
  }

  .card-hero__content {
    width: 100%;
    max-width: 100%;
  }

  .card-hero__title {
    font-size: 28px;
  }

  .card-hero__desc {
    font-size: 17px;
  }

  .card-hero .btn-order {
    width: 100%;
    height: 64px;
    font-size: 16px;
  }

  .card-advantage__bpx-img img {
    width: 44px;
    height: 44px;
  }

  .card-advantage__title {
    font-size: 18px;
  }

  .card-advantage__desc {
    font-size: 16px;
  }

  .card-products {
    gap: 20px;
  }

  .card-products .swiper-card-products-pagination {
    opacity: 1;
    visibility: visible;
  }

  .card-products__hover {
    display: none;
  }

  .card-products__img {
    height: 160px;
  }

  .card-products__img img {
    max-height: 160px;
    min-height: 160px;
  }

  .card-products__info {
    gap: 8px;
  }

  .card-products__title {
    font-size: 17px;
  }

  .card-products__group-price {
    gap: 0px;
  }

  .card-products__group-price .price {
    font-size: 16px;
  }

  .card-products__group-price .available {
    font-size: 13px;
  }

  .card-products__detail {
    height: 50px;
    border: 3px solid var(--blue-2, #F6F6F6);
    background-color: #A9B1BC;
    color: var(--white);
  }

  .card-products__detail::after {
    opacity: 1;
  }

  .card-choice {
    height: 158px;
  }

  .card-choice__box-img img {
    width: 44px;
    height: 44px;
  }

  .card-choice__title {
    font-size: 18px;
  }

  .card-order {
    padding: 16px;
    min-height: 150px;
    background-image: none !important;
  }

  .card-order__title {
    font-size: 17px;
  }

  .card-reviews {
    padding: 24px;
    gap: 12px;
    min-height: 322px;
  }

  .card-reviews__person_info .name {
    font-size: 18px;
  }

  .card-reviews__bottom .desc {
    font-size: 16px;
  }

  .card-reviews__btn {
    font-size: 16px;
  }

  .card-gallery {
    background-color: var(--gray-10, #F6F6F6);
  }

  .card-gallery__bottom {
    height: 100%;
    padding: 13px 24px 30px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .card-gallery__bottom_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }

  .card-img {
    min-height: 323px;
    max-height: 323px;
  }

  .card-main-detail {
    min-height: 300px;
    max-height: 300px;
  }

  .card-main-detail__link {
    min-height: 300px;
    max-height: 300px;
  }

  .card-main-detail__link img {
    min-height: 300px;
    max-height: 300px;
  }

  .card-preview-detail {
    min-height: auto;
    max-height: 88px;
  }

  .card-preview-detail img {
    min-height: auto;
    max-height: 88px;
  }

  .section-title {
    padding-right: 0;
  }

  .section-title__text {
    font-size: 28px;
  }

  .card-catalog {
    height: 126px;
  }

  .page-title {
    margin-bottom: 20px;
  }

  .page-title__text {
    font-size: 28px;
  }

  .static-text {
    font-size: 16px;
  }

  .static-text h2 {
    font-size: 28px;
    margin-bottom: 20px !important;
  }

  .static-text h3 {
    font-size: 24px;
    margin-bottom: 20px !important;
  }

  .static-text h4 {
    font-size: 22px;
    margin-bottom: 20px !important;
  }

  .static-text h5 {
    font-size: 18px;
    margin-bottom: 18px !important;
  }

  .static-text a {
    font-size: 16px;
  }

  .static-text ul {
    padding-left: 30px;
  }

  .card-banner {
    min-height: 172px;
  }

  .card-banner__link {
    padding: 20px;
  }

  .card-banner__link .top-text {
    font-size: 20px;
  }

  .filter-type-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-calalog-gallery__link {
    height: 186px;
    max-height: 186px;
    min-height: 186px;
  }

  .card-calalog-gallery__link img {
    max-height: 186px;
    min-height: 186px;
  }

  .card-calalog-gallery__hover {
    max-height: 186px;
    min-height: 186px;
  }

  .card-contacts {
    padding: 24px;
    gap: 16px;
  }

  .card-contacts__title {
    font-size: 20px;
  }

  .card-contacts__info-list {
    gap: 20px;
  }

  .search__input {
    padding: 15px 60px 15px 24px;
    font-size: 16px;
    height: 56px;
  }

  .search__submit {
    width: 48px;
  }

  .main-catalog-list {
    gap: 16px;
  }

  .card-main-catalog__link {
    padding: 16px;
    min-height: 126px;
  }

  .card-main-catalog__box-img img {
    max-width: 100%;
  }

  .card-main-catalog__name {
    display: none;
  }

  .card-second-catalog__link {
    padding: 23px 23px 10px 23px;
  }

  .card-second-catalog__box-img {
    width: auto;
    max-width: 100%;
  }

  .card-second-catalog__box-img img {
    width: auto;
    max-width: 100%;
  }

  .card-second-catalog__name {
    font-size: 14px;
  }

  .card-buy {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 70px;
    z-index: 2;
    min-height: 221px;
    gap: 21px;
    padding: 23px 22px;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04), 0 -8px 16px 0 rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04), 0 -8px 16px 0 rgba(0, 0, 0, 0.08);
  }

  .card-buy__top {
    gap: 6px;
  }

  .card-buy__bottom {
    gap: 6px;
  }

  .card-buy__bottom .btn-order {
    font-size: 16px;
  }

  .price .old-price {
    font-size: 16px;
  }

  .price .actual-price {
    font-size: 25px;
  }

  .status {
    font-size: 14px;
  }

  .card-basket {
    padding: 24px;
  }

  .card-basket .link-remove {
    top: 16px;
    right: 16px;
  }

  .card-basket__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-bottom: 13px;
  }

  .card-basket__box-img {
    position: static;
    width: 68px;
    height: 68px;
  }

  .card-basket__box-img img {
    width: 68px;
    max-height: 68px;
    min-height: 68px;
  }

  .card-basket__title {
    padding-right: 36px;
  }

  .card-basket__middle {
    margin-bottom: 17px;
  }

  .card-basket .price_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .card-basket .price .actual-price {
    font-size: 20px;
  }

  .list-points .point {
    font-size: 13px;
    padding: 4px 12px;
  }

  .input-type-2__input {
    font-size: 17px;
  }

  .input-type-3__input {
    font-size: 17px;
  }

  .input-type-3__desc {
    font-size: 15px;
  }

  .textarea-type-2__text {
    font-size: 17px;
  }

  .card-instruct__link {
    min-height: 136px;
  }

  .tabs-type-1 {
    padding-top: 32px;
  }

  .tabs-type-1__btn-line {
    margin: 0 -16px;
    padding: 0 16px;
  }

  .tabs-type-1__btn {
    font-size: 15px;
    padding: 14px 20px;
  }

  .card-tab-material {
    padding: 24px;
  }

  .card-tab-material__demonstration {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .card-tab-material .demonstration {
    height: 108px;
    min-height: 108px;
  }

  .castom-table {
    margin: 0 -16px;
  }

  .castom-table-body {
    padding: 0 16px;
    font-size: 16px;
  }

  .castom-table-body_line {
    min-height: 56px;
  }

  .instruct-list__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .mailing {
    padding: 28px 0;
  }

  .mailing__title {
    font-size: 24px;
  }

  .mailing-form .mailing-submit {
    top: 4px;
    right: 4px;
  }

  .footer {
    padding: 36px 0 80px;
  }

  .footer__group-order {
    gap: 16px;
  }

  .box-info {
    font-size: 17px;
  }

  .box-info .name {
    font-size: 14px;
  }

  .swiper-nav {
    padding-top: 29px;
  }

  .swiper-nav-1 {
    bottom: 32px;
  }

  .swiper-products {
    margin: 0;
    padding: 0;
  }

  .swiper-card-products-pagination {
    bottom: 16px !important;
  }

  .swiper-reviews .swiper-nav {
    padding-top: 20px;
  }

  .swiper-gallery-item .swiper-nav {
    display: none;
  }

  .swiper-gallery__swiper-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 22px;
  }

  .swiper-choice {
    padding: 0 16px;
  }

  .list-products {
    gap: 28px;
  }

  .list-products__box-swiper .link-all {
    bottom: 0;
    width: 180px;
    height: 48px;
    border-radius: 16px;
    background-color: var(--gray-10, #F6F6F6);
  }

  .section-info__title {
    width: 100%;
    font-size: 36px;
  }

  .section-info__desc {
    font-size: 24px;
  }

  .section-catalog {
    gap: 28px;
  }

  .section-catalog__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .choice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }

  .choice__left {
    width: 100%;
    gap: 28px;
  }

  .choice__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .section-order__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .bottom-menu {
    display: block;
  }

  .write-us .btn-order {
    height: 60px;
  }

  .write-us__box-img {
    display: none;
  }

  .write-us__wrapper {
    margin: 0 auto;
    width: 450px;
    max-width: 100%;
  }

  .write-us .input-type-1__input {
    padding: 18px 24px;
  }

  .our-work .link-all {
    bottom: 0;
    z-index: 2;
    padding: 14px 28px;
    border-radius: 16px;
    height: 48px;
    background-color: var(--gray-10, #F6F6F6);
  }

  .our-work__content {
    width: 450px;
    max-width: 100%;
    margin: 0 auto;
  }

  .our-work__box-bottom-swiper {
    display: none;
  }

  .our-work__box-top-swiper {
    border-radius: 0;
    min-height: auto;
    max-height: 100%;
    background-color: transparent;
  }

  .our-work__info {
    display: none;
  }

  .our-work__title {
    font-size: 20px;
  }

  .our-work__desc {
    font-size: 17px;
  }

  .our-work__top-swiper {
    position: static;
    width: 450px;
    max-width: 100%;
    margin: 0 auto;
  }

  .choice-line {
    width: calc(100% + 16px + 16px);
    margin: 0 -16px;
  }

  .calalog-list__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .main:has(.error-page) {
    padding: 76px 0 96px 0;
  }

  .error-page__box-img {
    width: 209px;
    height: 209px;
  }

  .error-page__desc {
    font-size: 17px;
  }

  .error-page__desc br {
    display: none;
  }

  .box-map .map-contacts {
    min-height: 296px;
  }

  .box-contacts .name {
    font-size: 16px;
  }

  .box-contacts .text {
    font-size: 17px;
  }

  .tabs-type-5__btn {
    font-size: 18px;
    padding: 26px 24px;
  }

  .tabs-type-5__btn .svg {
    width: 31px;
    height: 31px;
  }

  .tabs-type-5__info {
    padding: 0 24px 24px 24px;
  }

  .box-catalog {
    gap: 24px;
  }

  .box-catalog .card-choice-line__link {
    padding: 20px;
    font-size: 16px;
  }

  .box-catalog .card-choice-line.img-none .card-choice-line__link {
    font-size: 14px;
  }

  .second-catalog-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .detail-card__box-swiper {
    position: relative;
    margin: 0 auto 43px;
  }

  .detail-card__parameter {
    padding-left: 0;
    gap: 0;
  }

  .detail-card__parameter_left .parameter {
    margin-right: 22px;
  }

  .box-stocks__list {
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(156px, 250px));
  }

  .page-order__title {
    margin-bottom: 28px;
    padding-left: 40px;
    font-size: 28px;
    background-size: 34px 34px;
  }

  .page-order__desc {
    font-size: 18px;
  }

  .page-order__desc br {
    display: none;
  }

  .box-basket__title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

@media (max-width: 550px) {
  .mt-124 {
    margin-top: 96px;
  }

  .mt-156 {
    margin-top: 96px;
  }

  .modal {
    padding: 20px 10px;
  }

  .link-show-more {
    width: 100%;
  }

  .link-pagination {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .pagination {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .pagination__nav {
    width: 100%;
  }

  .calalog-list__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .box-stocks__list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 156px));
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.webp .card-second-catalog__box-img{ background-image: url(../img/card-second-catalog/none.webp); }

.webp .box-catalog .card-choice-line.img-none .card-choice-line__box-img{ background-image: url(../img/card-choice-line/bg.webp); }