@charset "UTF-8";
/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

:root {
  --white: #fff;
  --primary: #c7322a;
  --primary-hover: #92201a;
  --accent: #163b68;
  --light-text: #5e5e5e;
  --main-text: #2d2d2d;
  --stroke-1: #c1c1c1;
  --stroke-2: #d1dce9;
  --stroke-3: #99acc3;
  --backgroung-light: #f1f7ff;
  --elements: #2a5180;
  --transition: all 0.3s ease-in;
}
/* 
:root {
  --white: #fff;
  --primary: #1d36fa;
  --primary-hover: #3245d6;
  --accent: #6ec7ff;
  --light-text: #5e5e5e;
  --main-text: #2d2d2d;
  --stroke-1: #c1c1c1;
  --stroke-2: #d1dce9;
  --stroke-3: #99acc3;
  --backgroung-light: #f1f7ff;
  --elements: rgb(64, 113, 173);
  --transition: all 0.3s ease-in;
} */

* {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--backgroung-light);
  overflow-x: hidden;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  transition: var(--transition);
}
@media (min-width: 992px) {
  a:hover {
    color: var(--primary);
  }
}

ul li {
  list-style-position: inside;
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
ul li::marker {
  color: var(--primary);
}

ol li {
  list-style-position: inside;
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input:focus-visible {
  outline: none;
}

h1.page-title {
  margin-bottom: clamp(20px, 0.01875 * 100vw + 14px, 50px);
}

.breadcrumbs {
  padding: clamp(10px, 0.0125 * 100vw + 6px, 30px) 0 clamp(10px, 0.00625 * 100vw + 8px, 20px);
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.breadcrumbs span {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.breadcrumbs .current-item span {
  color: var(--primary);
}
.breadcrumbs span.current-item {
  color: var(--primary);
}

.container {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.container-left {
  padding-left: calc(0.4930555556 * 100vw + -571.6666666667px);
}
@media (min-width: 1920px) {
  .container-left {
    padding-left: max(375 / 19.2 * 1vw, 15px);
  }
}
@media (max-width: 1200px) {
  .container-left {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }
}
.container-right {
  padding-right: calc(0.4930555556 * 100vw + -571.6666666667px);
}
@media (min-width: 1920px) {
  .container-right {
    padding-right: max(375 / 19.2 * 1vw, 15px);
  }
}
@media (max-width: 1200px) {
  .container-right {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }
}

svg {
  transition: var(--transition);
  width: var(--svgWidth, 20px);
  height: var(--svgHeight, 20px);
  color: var(--svgColor, var(--white));
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

h1,
.h1 {
  font-weight: 600;
  font-size: clamp(23px, 0.02625 * 100vw + 14.6px, 65px);
  line-height: 110%;
  color: var(--color, var(--main-text));
}

h2,
.h2 {
  font-weight: 600;
  font-size: clamp(21px, 0.019375 * 100vw + 14.8px, 52px);
  line-height: 110%;
  color: var(--color, var(--main-text));
}

h3,
.h3 {
  font-weight: 500;
  font-size: clamp(20px, 0.0125 * 100vw + 16px, 40px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

h4,
.h4 {
  font-weight: 500;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

h5,
.h5 {
  font-weight: 500;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

h6,
.h6 {
  font-weight: 500;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

p,
.p,
.p1 {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

.p2 {
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

.p3 {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color, var(--main-text));
}

.p4 {
  font-weight: 400;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

.p5 {
  font-weight: 500;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

.p6 {
  font-weight: 400;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

.p7 {
  font-weight: 700;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

.p8 {
  font-weight: 500;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

.p9 {
  font-weight: 500;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
}

.p10 {
  font-weight: 500;
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
}

.p11 {
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

.price1 {
  font-weight: 600;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 110%;
  color: var(--color, var(--main-text));
}

.price2 {
  font-weight: 700;
  font-size: clamp(20px, 0.015625 * 100vw + 15px, 45px);
  line-height: 110%;
  color: var(--color, var(--main-text));
}

.price3 {
  font-weight: 400;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-decoration: line-through;
}

.block-title {
  margin-bottom: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}
.block-title * {
  display: inline-flex;
  font-weight: 600;
  font-size: clamp(21px, 0.019375 * 100vw + 14.8px, 52px);
  line-height: 110%;
  color: var(--color, var(--main-text));
  --color: var(--accent);
  border-bottom: 2px dashed var(--stroke-3);
}

.compensate-for-scrollbar {
  margin-right: auto !important;
}

body.compensate-for-scrollbar {
  overflow: auto !important;
  overflow-x: hidden !important;
}

strong {
  font-weight: 700;
}

#header{
	   background-color: var(--backgroung-light);
	   position: sticky;
	   top: 0;
	    z-index: 999;
}

.block-head {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}
.block-head .block-title {
  margin-bottom: 0;
  flex: 1;
  max-width: 60%;
}
.block-head .block-name {
  margin-top: clamp(0px, 0.009375 * 100vw + -3px, 15px);
  background: var(--accent);
  border-radius: 100px;
  padding: 10px clamp(10px, 0.00625 * 100vw + 8px, 20px);
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color, var(--main-text));
  --color: var(--white);
  height: -moz-fit-content;
  height: fit-content;
}

.block-subtitle {
  margin-top: clamp(-20px, -0.00625 * 100vw + -8px, -10px);
  margin-bottom: clamp(20px, 0.0125 * 100vw + 16px, 40px);
  max-width: 720px;
  width: 100%;
  font-weight: 400;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
}

.m-100 {
  margin-top: clamp(60px, 0.025 * 100vw + 52px, 100px);
  margin-bottom: clamp(60px, 0.025 * 100vw + 52px, 100px);
}

@media (max-width: 575px) {
  .block-head {
    flex-direction: column;
    justify-content: flex-start;
  }
  .block-head .block-title {
    max-width: 100%;
  }
  .block-head .block-name {
    width: -moz-fit-content;
    width: fit-content;
  }
}
/*============ TEMPLATES ===============*/
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  padding: clamp(10px, 0.001875 * 100vw + 9.4px, 13px) clamp(15px, 0.00875 * 100vw + 12.2px, 29px);
  border: 1px solid var(--primary);
  background: transparent;
  font-weight: 400;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  color: var(--color, var(--main-text));
  --color: var(--main-text);
  text-align: center;
}
.btn svg {
  transition: var(--transition);
}
.btn svg path {
  transition: var(--transition);
}
@media (min-width: 992px) {
  .btn:hover {
    background: var(--primary);
    color: var(--white);
  }
}
.btn.btn--type-1 {
  padding: 4px 4px 4px clamp(15px, 0.00875 * 100vw + 12.2px, 29px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.btn.btn--type-1 .btn__arrow {
  width: clamp(25px, 0.009375 * 100vw + 22px, 40px);
  height: clamp(25px, 0.009375 * 100vw + 22px, 40px);
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  transition: var(--transition);
}
.btn.btn--type-1 .btn__arrow svg {
  width: 12px;
  height: 12px;
  --svgColor: var(--white);
  transition: var(--transition);
}
@media (min-width: 992px) {
  .btn.btn--type-1:hover .btn__arrow {
    background-color: var(--white);
  }
  .btn.btn--type-1:hover .btn__arrow svg {
    --svgColor: var(--primary);
  }
}
.btn.btn--type-2 {
  padding: 4px 4px 4px clamp(15px, 0.00875 * 100vw + 12.2px, 29px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  border-color: var(--main-text);
}
.btn.btn--type-2 .btn__arrow {
  width: clamp(25px, 0.009375 * 100vw + 22px, 40px);
  height: clamp(25px, 0.009375 * 100vw + 22px, 40px);
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  transition: var(--transition);
  transform: rotate(-90deg);
}
.btn.btn--type-2 .btn__arrow svg {
  width: 12px;
  height: 12px;
  --svgColor: var(--white);
  transition: var(--transition);
}
@media (min-width: 992px) {
  .btn.btn--type-2:hover {
    border-color: var(--primary);
  }
  .btn.btn--type-2:hover .btn__arrow {
    background-color: var(--primary);
  }
  .btn.btn--type-2:hover .btn__arrow svg {
    --svgColor: var(--white);
  }
}
.btn.btn--type-3 {
  padding: 4px 4px 4px clamp(15px, 0.00875 * 100vw + 12.2px, 29px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.btn.btn--type-3 .btn__arrow {
  width: clamp(25px, 0.009375 * 100vw + 22px, 40px);
  height: clamp(25px, 0.009375 * 100vw + 22px, 40px);
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  transition: var(--transition);
  transform: rotate(-90deg);
}
.btn.btn--type-3 .btn__arrow svg {
  width: 12px;
  height: 12px;
  --svgColor: var(--white);
  transition: var(--transition);
}
@media (min-width: 992px) {
  .btn.btn--type-3:hover {
    border-color: var(--primary);
  }
  .btn.btn--type-3:hover .btn__arrow {
    background-color: var(--primary);
  }
  .btn.btn--type-3:hover .btn__arrow svg {
    --svgColor: var(--white);
  }
}
.btn.btn--type-4 {
  padding: 4px 4px 4px clamp(15px, 0.00875 * 100vw + 12.2px, 29px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  background-color: var(--white);
  border-color: var(--white);
}
.btn.btn--type-4 .btn__arrow {
  width: clamp(25px, 0.009375 * 100vw + 22px, 40px);
  height: clamp(25px, 0.009375 * 100vw + 22px, 40px);
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  transition: var(--transition);
  transform: rotate(-90deg);
}
.btn.btn--type-4 .btn__arrow svg {
  width: 12px;
  height: 12px;
  --svgColor: var(--white);
  transition: var(--transition);
}
@media (min-width: 992px) {
  .btn.btn--type-4:hover {
    border-color: var(--primary);
    background-color: var(--primary);
  }
  .btn.btn--type-4:hover .btn__arrow {
    background-color: var(--white);
  }
  .btn.btn--type-4:hover .btn__arrow svg {
    --svgColor: var(--primary);
  }
}
.btn.btn--type-5 {
  border-color: var(--white);
  color: var(--white);
}
@media (min-width: 992px) {
  .btn.btn--type-5:hover {
    border-color: var(--primary);
    background-color: var(--primary);
  }
}

.swiper-slide {
  height: auto !important;
}

.slider-btn {
  width: clamp(40px, 0.00625 * 100vw + 38px, 50px);
  height: clamp(40px, 0.00625 * 100vw + 38px, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  border: 1.5px solid var(--accent);
  border-radius: 100%;
}
.slider-btn svg {
  width: clamp(12px, 0.001875 * 100vw + 11.4px, 15px);
  height: clamp(10px, 0.001875 * 100vw + 9.4px, 13px);
  --svgColor: var(--accent);
}
.slider-btn--prev svg {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .slider-btn:hover {
    background-color: var(--accent);
  }
  .slider-btn:hover svg {
    --svgColor: var(--white);
  }
}
.slider-btn.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none !important;
}

.slider-pagination {
  position: static !important;
  text-align: start !important;
  max-width: 65%;
  --swiper-pagination-bullet-horizontal-gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
  --swiper-pagination-color: var(--accent);
  --swiper-pagination-bullet-inactive-color: var(--stroke-3);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 10px;
  z-index: 1 !important;
}
.slider-pagination .swiper-pagination-bullet:first-child {
  margin-left: 0 !important;
}

.swiper-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}
.swiper-navigation .swiper-navigation-btn {
  margin-left: auto;
}

.swiper-navigation-btn {
  display: flex;
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

.page-numbers {
  font-weight: 500;
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
  margin: 0 5px;
  --color: var(--stroke-3);
}
.page-numbers.current {
  color: var(--accent);
}
@media (min-width: 992px) {
  .page-numbers:hover {
    color: var(--accent);
  }
}
.page-numbers.prev, .page-numbers.next {
  width: clamp(40px, 0.00625 * 100vw + 38px, 50px);
  height: clamp(40px, 0.00625 * 100vw + 38px, 50px);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 100px;
  background-color: var(--white);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-numbers.prev svg, .page-numbers.next svg {
  width: 15px;
  height: 15px;
  transition: var(--transition);
  --svgColor: var(--accent);
}
@media (min-width: 992px) {
  .page-numbers.prev:hover, .page-numbers.next:hover {
    background-color: var(--accent);
  }
  .page-numbers.prev:hover svg, .page-numbers.next:hover svg {
    --svgColor: var(--white);
  }
}
.page-numbers.next {
  margin-left: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}
.page-numbers.prev {
  margin-right: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}
.page-numbers.prev svg {
  transform: rotate(180deg);
}

span.prev, span.next {
  opacity: 0.6 !important;
  pointer-events: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}

.header__top {
  background-color: var(--accent);
  padding-top: clamp(10px, 0.005625 * 100vw + 8.2px, 19px);
  padding-bottom: clamp(10px, 0.005625 * 100vw + 8.2px, 19px);
}
.header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(15px, 0.0485436893 * 100vw + -43.2038834951px, 50px);
}
.header__text {
  --color: var(--white);
  flex: 1;
}
.header__socials {
  display: flex;
  gap: clamp(10px, 0.0107642626 * 100vw + -0.6673842842px, 20px);
}
.header__socials-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__socials-item img {
  width: clamp(16px, 0.00375 * 100vw + 14.8px, 22px);
  height: clamp(16px, 0.00375 * 100vw + 14.8px, 22px);
  -o-object-fit: contain;
     object-fit: contain;
}
.header__socials-item span {
  font-weight: 500;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--white);
  transition: var(--transition);
}
@media (min-width: 992px) {
  .header__socials-item:hover span {
    color: var(--primary);
  }
}
.header__phones {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.0107642626 * 100vw + -0.6673842842px, 20px);
}
.header__phones li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.header__phones li::before {
  content: "";
  width: clamp(14px, 0.005 * 100vw + 12.4px, 22px);
  height: clamp(14px, 0.005 * 100vw + 12.4px, 22px);
  background-image: url("../images/phone.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header__phones li a {
  font-weight: 500;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--white);
}
@media (min-width: 992px) {
  .header__phones li a:hover {
    color: var(--primary);
  }
}
.header__emails-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--white);
}
.header__emails-item svg {
  width: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  height: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  --svgColor: var(--white);
}
.header__bottom {
  padding-top: 15px;
}
.header__bottom-wrap {
  display: flex;
  align-items: center;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  padding-bottom: 15px;
  border-bottom: 2px solid var(--white);
}
.header__logo {
  width: clamp(120px, 0.05 * 100vw + 104px, 200px);
  height: clamp(45px, 0.00625 * 100vw + 43px, 55px);
  display: block;
  margin-right: clamp(0px, 0.01875 * 100vw + -6px, 30px);
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 0.027739251 * 100vw + -13.2593619972px, 40px);
  list-style: none;
}
.header__menu li a {
  font-weight: 500;
  font-size: clamp(16px, 0.0055478502 * 100vw + 9.3481276006px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
  white-space: nowrap;
}
.header__search .search-form {
  position: relative;
  display: flex;
  align-items: center;
}
.header__search input {
  background: var(--white);
  border: 1px solid var(--stroke-1);
  border-radius: 100px;
  padding: 0px 55px 0px clamp(15px, 0.009375 * 100vw + 12px, 30px);
  width: clamp(300px, 0.160887656 * 100vw + 107.0957004161px, 416px);
  height: clamp(40px, 0.00625 * 100vw + 38px, 50px);
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.header__search input::-moz-placeholder {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  color: var(--light-text);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.header__search input::placeholder {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  color: var(--light-text);
  transition: var(--transition);
}
.header__search input:focus::-moz-placeholder {
  color: var(--main-text);
}
.header__search input:focus::placeholder {
  color: var(--main-text);
}
.header__search #searchsubmit {
  width: clamp(30px, 0.00625 * 100vw + 28px, 40px);
  height: clamp(30px, 0.00625 * 100vw + 28px, 40px);
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5px;
}
.header__search #searchsubmit svg {
  width: 13px;
  height: 13px;
  --svgColor: var(--white);
}
.header__btn-wrap {
  position: relative;
}
@media (min-width: 767px) {
  .header__btn-wrap:hover .header__btn {
    background: var(--primary);
    color: var(--white);
  }
  .header__btn-wrap:hover .header__btn .btn__arrow {
    background-color: var(--white);
  }
  .header__btn-wrap:hover .header__btn .btn__arrow svg {
    --svgColor: var(--primary);
  }
  .header__btn-wrap:hover .header__catalog-menu {
    opacity: 1;
    visibility: visible;
  }
}
.header__catalog-menu {
  position: absolute;
  /* top: calc(100% - 5px); */
  border: 2px solid var(--stroke-2);
  border-radius: 20px;
  padding: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  width: clamp(550px, 0.09375 * 100vw + 520px, 700px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px) clamp(15px, 0.0269106566 * 100vw + -11.6684607104px, 40px);
  z-index: 2;
  background: var(--white);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.header__catalog-menu li {
  list-style: none;
}
.header__catalog-menu li a {
  font-weight: 500;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
@media (min-width: 992px) {
  .header__catalog-menu li a:hover {
    --color: var(--primary);
  }
}

@media (max-width: 1199px) {
  .header__top .container {
    flex-direction: column;
  }
  .header__right {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header__menu {
    display: none;
  }
  .header__text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .header__socials,
  .header__emails {
    display: none;
  }
  .header__bottom-wrap .header__btn-wrap {
    display: none;
  }
  .header__search {
    flex: 1;
  }
  .header__search input {
    width: 100%;
  }
  .header__logo {
    margin-right: 0;
  }
  .header__top .container {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .header__text {
    font-size: 14px;
  }
  .header__phones li a {
    font-size: 12px;
  }
  .header__bottom-wrap .header__search {
    display: none;
  }
}
.footer {
  background: var(--accent);
}
.footer__top {
  display: flex;
  align-items: center;
  gap: clamp(20px, 0.1722282024 * 100vw + -150.6781485468px, 180px);
  padding-top: clamp(20px, 0.01875 * 100vw + 14px, 50px);
  padding-bottom: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  border-bottom: 1px solid #2f5179;
}
.footer__logo {
  width: clamp(150px, 0.073196986 * 100vw + 77.4617868676px, 218px);
  height: clamp(40px, 0.0215285253 * 100vw + 18.6652314316px, 60px);
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.0430570506 * 100vw + -32.6695371367px, 50px);
}
.footer__requisites {
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--white);
}
.footer__requisites * {
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--white);
}
.footer__socials {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.01875 * 100vw + 4px, 40px);
}
.footer__socials-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--white);
}
.footer__socials-icon {
  width: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  height: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 0.01875 * 100vw + 4px, 40px);
  list-style: none;
}
.footer__menu li a {
  font-weight: 400;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--white);
}
@media (min-width: 992px) {
  .footer__menu li a:hover {
    --color: var(--primary);
  }
}
.footer__medium {
  padding: clamp(20px, 0.025 * 100vw + 12px, 60px) 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  border-bottom: 1px solid #2f5179;
}
.footer__col-title {
  --color: var(--stroke-2);
  margin-bottom: 10px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
}
.footer__col ul li a {
  font-weight: 500;
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
  --color: var(--white);
}
@media (min-width: 992px) {
  .footer__col ul li a:hover {
    --color: var(--primary);
  }
}
.footer__values-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__value {
  font-weight: 500;
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
  --color: var(--white);
  text-transform: none;
}
.footer__value * {
  font-weight: 500;
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
  --color: var(--white);
  text-transform: none;
}
.footer__bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding-top: clamp(10px, 0.003125 * 100vw + 9px, 15px);
  padding-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.footer__link {
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.5);
}
.footer__text {
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  color: rgba(255, 255, 255, 0.5);
}

.grampus-link {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  color: rgba(255, 255, 255, 0.5);
}
.grampus-link svg {
  width: 117px;
  height: 26px;
  fill: rgba(255, 255, 255, 0.5);
}
@media (min-width: 992px) {
  .grampus-link:hover {
    color: var(--primary);
  }
  .grampus-link:hover svg {
    fill: var(--primary);
  }
}

@media (max-width: 1199px) {
  .footer__top {
    flex-wrap: wrap;
  }
  .footer__socials {
    margin-left: 0;
    flex: 0 0 100%;
  }
}
@media (max-width: 991px) {
  .footer__medium {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
  }
}
@media (max-width: 375px) {
  .footer__medium {
    grid-template-columns: 1fr;
  }
}
.form-v2 input:not([type=submit]) {
  height: 50px;
  width: 100%;
  padding: 15px clamp(15px, 0.009375 * 100vw + 12px, 30px);
  border-radius: 100px;
  border: 1px solid var(--borderInput, var(--white));
  background: var(--backgroundInput, var(--white));
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  transition: var(--transition);
}
.form-v2 input:not([type=submit])::-moz-placeholder {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  opacity: 0;
}
.form-v2 input:not([type=submit])::placeholder {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  opacity: 0;
}
.form-v2 input:not([type=submit]):focus-visible {
  outline: none;
}
.form-v2 input:not([type=submit]).error {
  border-color: red;
  --colorInput: red;
}
.form-v2 input:not([type=submit]).error::-moz-placeholder {
  --colorInput: red;
}
.form-v2 input:not([type=submit]).error::placeholder {
  --colorInput: red;
}
.form-v2 textarea {
  height: 120px;
  width: 100%;
  padding: clamp(15px, 0.009375 * 100vw + 12px, 30px) clamp(15px, 0.009375 * 100vw + 12px, 30px);
  border-radius: 30px;
  border: 1px solid var(--borderInput, var(--white));
  background: var(--backgroundInput, var(--white));
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  transition: var(--transition);
  resize: none;
}
.form-v2 textarea::-moz-placeholder {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.form-v2 textarea::placeholder {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.form-v2 textarea:focus-visible {
  outline: none;
}
.form-v2 textarea.error {
  border-color: red;
  --colorInput: red;
}
.form-v2 textarea.error::-moz-placeholder {
  --colorInput: red;
}
.form-v2 textarea.error::placeholder {
  --colorInput: red;
}
.form-v2 button[form-send] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-v2 button[form-send].disabled {
  color: transparent;
  background-color: var(--primary);
}
.form-v2 input.hidden {
  display: none;
}
.form-v2 .form-status {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.form-v2 .form-preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  transform: scale(0.85);
  margin: auto;
}
.form-v2 .form-preloader .preloader__item {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  animation: bounce_circularG 1.1s infinite;
}
.form-v2 .form-preloader .preloader__item-1 {
  left: 0;
  top: 18px;
  animation-delay: 0s;
}
.form-v2 .form-preloader .preloader__item-2 {
  left: 5px;
  top: 5px;
  animation-delay: 0.14s;
}
.form-v2 .form-preloader .preloader__item-3 {
  top: 0;
  left: 18px;
  animation-delay: 0.28s;
}
.form-v2 .form-preloader .preloader__item-4 {
  right: 5px;
  top: 5px;
  animation-delay: 0.42s;
}
.form-v2 .form-preloader .preloader__item-5 {
  right: 0;
  top: 18px;
  animation-delay: 0.56s;
}
.form-v2 .form-preloader .preloader__item-6 {
  right: 5px;
  bottom: 5px;
  animation-delay: 0.7s;
}
.form-v2 .form-preloader .preloader__item-7 {
  left: 18px;
  bottom: 0;
  animation-delay: 0.84s;
}
.form-v2 .form-preloader .preloader__item-8 {
  left: 5px;
  bottom: 5px;
  animation-delay: 0.98s;
}
.form-v2 .form__btn {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.form-v2 .form__privacy {
  color: var(--backgroung-light);
}
.form-v2 .form__privacy-link {
  color: var(--backgroung-light);
  text-decoration: underline;
}
.form-v2 .form__checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.form-v2 .form__checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.form-v2 .form__checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: max(2 / 19.2 * 1vw, 2px);
  left: max(8 / 19.2 * 1vw, 8px);
  width: max(6 / 19.2 * 1vw, 6px);
  height: max(12 / 19.2 * 1vw, 12px);
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-v2 .form__checkbox input:checked + label::before {
  background-color: #000;
  border-color: #000;
}
.form-v2 .form__checkbox input.error ~ label::before {
  border-color: red;
  color: red;
}
.form-v2 .form__checkbox label {
  position: relative;
  cursor: pointer;
  display: flex;
}
.form-v2 .form__checkbox label:before {
  content: "";
  background-color: transparent;
  border: 1px solid #e2e3e3;
  padding: max(10 / 19.2 * 1vw, 10px);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: max(10 / 19.2 * 1vw, 10px);
  border-radius: 3px;
  height: 100%;
}
@keyframes bounce_circularG {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.3);
  }
}

.label {
  position: relative;
}
.label textarea + span {
  top: 30px;
  transform: none;
}
.label span {
  position: absolute;
  top: 50%;
  left: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  transform: translateY(-50%);
  transition: var(--transition);
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
  pointer-events: none;
}
.label.active span {
  top: 3px;
  transform: none;
  font-size: 10px;
  line-height: 120%;
}
.label.active textarea + span {
  top: 10px;
}

.mobile-menu-open {
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
  width: 30px;
  height: 18px;
  position: relative;
  margin-left: auto;
}
.mobile-menu-open__button {
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}
.mobile-menu-open__button:after {
  content: "";
  display: block;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  transition: 0.3s;
}
.mobile-menu-open__button:before {
  content: "";
  display: block;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  bottom: 0;
  transition: 0.3s;
}
.mobile-menu-open.active .mobile-menu-open__button {
  background-color: transparent;
}
.mobile-menu-open.active .mobile-menu-open__button:after {
  transform: rotate(-45deg);
  bottom: 0;
  margin: auto;
}
.mobile-menu-open.active .mobile-menu-open__button:before {
  transform: rotate(45deg);
  top: 0;
  margin: auto;
}

.mobile-menu {
  position: fixed;
  left: -100%;
  width: max(280 / 19.2 * 1vw, 260px);
  height: 100%;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.3s linear;
  flex-direction: column;
  padding-bottom: 50px;
  padding-top: 15px;
  background-color: var(--backgroung-light);
  top: 0;
}
.mobile-menu__wrapper {
  padding-top: 12px;
  padding-bottom: 12px;
}
.mobile-menu.opened, .mobile-menu.active,
.mobile-menu .nav_close.opened {
  left: 0;
  display: flex;
}
.mobile-menu__wrap li {
  list-style-type: none;
}
.mobile-menu__wrap li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  gap: 5px;
  font-weight: 500;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-menu__wrap li a .menu-item__icon {
  position: relative;
  width: 60px;
}
.mobile-menu__wrap li a .menu-item__icon:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.mobile-menu__wrap li a .menu-item__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mobile-menu__wrap li.has-childs a span {
  font-weight: 500;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
}
.mobile-menu__wrap li.has-childs svg {
  transform: rotate(-90deg);
  width: 12px;
  height: 12px;
  --svgColor: var(--main-text);
}
.mobile-menu__wrap li.back a {
  justify-content: flex-start;
  font-weight: 500;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
}
.mobile-menu__wrap li.back svg {
  transform: rotate(90deg);
  width: 12px;
  height: 12px;
}
.mobile-menu__wrap .sub-menu {
  position: fixed;
  left: -100%;
  width: max(280 / 19.2 * 1vw, 260px);
  height: 100%;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.3s linear;
  flex-direction: column;
  padding-bottom: 50px;
  padding-top: 15px;
  background-color: var(--backgroung-light);
  top: 0;
}
.mobile-menu__wrap .sub-menu.active {
  left: 0;
  display: flex;
}
.mobile-menu__contact {
  padding: 10px 10px 10px;
}
.mobile-menu__contact > *:not(:last-child) {
  margin-bottom: 10px;
}
.mobile-menu__contact-value {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.mobile-menu__contact-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--accent);
}
.mobile-menu__contact-icon img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu__contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: max(10 / 19.2 * 1vw, 10px);
}
.mobile-menu__contact-social-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--Background-light);
  border: 1px solid var(--Background-dark);
}
.mobile-menu__contact-social-item svg {
  width: 15px;
  height: 15px;
}
.mobile-menu__contact-social-item img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu__phones {
  list-style: none;
}
.mobile-menu__phones li a {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  color: var(--primary);
}
.mobile-menu__phones li:not(:last-child) {
  margin-bottom: 10px;
}
.mobile-menu .header__btn {
  margin-bottom: 15px;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% - 20px);
}
.mobile-menu .header__search {
  flex: inherit;
  margin-bottom: 15px;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% - 20px);
}
.mobile-menu .header__search input {
  width: 100%;
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.mobile-menu .header__search input::-moz-placeholder {
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  color: var(--light-text);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.mobile-menu .header__search input::placeholder {
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  color: var(--light-text);
  transition: var(--transition);
}

body.opened .header {
  z-index: 101;
}

@media (max-width: 1199px) {
  .mobile-menu-open {
    display: flex;
  }
}
.modal-congratulations,
.modal-error {
  height: -moz-fit-content;
  height: fit-content;
  width: 600px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
  padding: clamp(30px, 0.0125 * 100vw + 26px, 50px) clamp(20px, 0.0125 * 100vw + 16px, 40px) clamp(20px, 0.0125 * 100vw + 16px, 40px);
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
  border-radius: 20px;
}
.modal-congratulations::-webkit-scrollbar,
.modal-error::-webkit-scrollbar {
  width: 3px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table, th, td {
    border: 1px solid black !important;
}

th, td {
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}


.modal-congratulations::-webkit-scrollbar-thumb,
.modal-error::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--primary);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  background-clip: padding-box;
}
.modal-congratulations::-webkit-scrollbar-track,
.modal-error::-webkit-scrollbar-track {
  background-color: var(--white);
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  background-clip: padding-box;
}
.modal-congratulations.active,
.modal-error.active {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.modal-congratulations .theme-modal__subtitle,
.modal-error .theme-modal__subtitle {
  margin-top: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.fancybox__container {
  z-index: 99999 !important;
}

.theme-modal {
  width: 100%;
  z-index: 99999;
}
.theme-modal__title {
  --color: var(--main-text);
  text-align: center;
}
.theme-modal__subtitle {
  font-weight: 400;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
  margin-top: 10px;
  text-align: center;
}
.theme-modal__form-wrapper {
  margin-top: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}
.theme-modal__btn {
  padding-left: clamp(20px, 0.083125 * 100vw + -6.6px, 153px);
  padding-right: clamp(20px, 0.083125 * 100vw + -6.6px, 153px);
  margin: clamp(15px, 0.003125 * 100vw + 14px, 20px) auto 0;
  width: 100%;
}
.theme-modal.fancybox__content {
  padding: clamp(30px, 0.0125 * 100vw + 26px, 50px) clamp(20px, 0.0125 * 100vw + 16px, 40px) clamp(20px, 0.0125 * 100vw + 16px, 40px);
  cursor: default !important;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}
.theme-modal.fancybox__content [data-fancybox-close] {
  top: clamp(15px, 0.003125 * 100vw + 14px, 20px) !important;
  right: clamp(15px, 0.003125 * 100vw + 14px, 20px) !important;
  --fancybox-color: var(--stroke-3);
  background: none;
  border-radius: 0px;
  box-shadow: none;
  transition: color 0.3s ease;
  --carousel-button-width: 15px;
  --carousel-button-height: 15px;
  --f-button-hover-bg: transparent !important;
  --f-button-active-bg: transparent !important;
}
.theme-modal.fancybox__content [data-fancybox-close] svg {
  --svgColor: var(--stroke-3);
  --f-button-svg-fill: var(--stroke-3);
  --carousel-button-svg-filter: none;
  --f-button-svg-stroke-width: 4px;
  transition: var(--transition);
}
@media (min-width: 992px) {
  .theme-modal.fancybox__content [data-fancybox-close]:hover svg {
    --svgColor: var(--accent);
  }
}
.theme-modal.fancybox__content > .f-button.is-close-btn {
  --f-button-svg-width: clamp(10px, 0.003125 * 100vw + 9px, 15px);
  --f-button-svg-height: clamp(10px, 0.003125 * 100vw + 9px, 15px);
  --f-button-width: clamp(10px, 0.003125 * 100vw + 9px, 15px);
  --f-button-height: clamp(10px, 0.003125 * 100vw + 9px, 15px);
}
.theme-modal .form {
  text-align: center;
}
.theme-modal .form .form__input {
  margin-bottom: 10px;
}
.theme-modal .form .form__input input {
  --borderInput: var(--stroke-1);
}
.theme-modal .form .form__input input:focus {
  outline: none !important;
  --borderInput: var(--accent);
}
@media (min-width: 992px) {
  .theme-modal .form .form__input input:hover {
    --borderInput: var(--accent);
  }
}
.theme-modal .form .form__input textarea {
  --borderInput: var(--stroke-1);
}
.theme-modal .form .form__input textarea:focus {
  outline: none !important;
  --borderInput: var(--accent);
}
@media (min-width: 992px) {
  .theme-modal .form .form__input textarea:hover {
    --borderInput: var(--accent);
  }
}
.theme-modal .form .form__btn {
  margin-top: 10px;
  width: 100%;
}
.theme-modal .form .form__btn .btn {
  width: 100%;
}
.theme-modal .form .form__privacy {
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
}
.theme-modal .form .form__privacy-link {
  font-weight: 400;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
  text-decoration: underline;
}
@media (min-width: 992px) {
  .theme-modal .form .form__privacy-link:hover {
    --color: var(--accent);
  }
}

.fancybox__backdrop {
  --fancybox-bg: rgba(22, 59, 104, 0.7);
}

.background-modals {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(22, 59, 104, 0.7);
  z-index: 2500;
}

.content > *:first-child {
  margin-top: 0 !important;
}
.content > div:last-child, .content > section:last-child {
  margin-bottom: clamp(40px, 0.0375 * 100vw + 28px, 100px);
}
.content__padding {
  padding-bottom: clamp(40px, 0.0375 * 100vw + 28px, 100px);
}

.content-text > *:last-child {
  margin-bottom: 0 !important;
}

.text-block,
.wp-block-column {
  font-weight: 400;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.text-block > p,
.wp-block-column > p {
  font-weight: 400;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.text-block > p:not(:last-child),
.wp-block-column > p:not(:last-child) {
  margin-bottom: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}
.text-block > h1,
.wp-block-column > h1 {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.text-block > h2,
.wp-block-column > h2 {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.text-block > h2:not(:first-child),
.wp-block-column > h2:not(:first-child) {
  padding-top: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}
.text-block > h3,
.wp-block-column > h3 {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.text-block > h3:not(:first-child),
.wp-block-column > h3:not(:first-child) {
  padding-top: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}
.text-block > h4,
.wp-block-column > h4 {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.text-block > h4:not(:first-child),
.wp-block-column > h4:not(:first-child) {
  padding-top: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}
.text-block > h5,
.wp-block-column > h5 {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.text-block > h5:not(:first-child),
.wp-block-column > h5:not(:first-child) {
  padding-top: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}
.text-block > h6,
.wp-block-column > h6 {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.text-block > h6:not(:first-child),
.wp-block-column > h6:not(:first-child) {
  padding-top: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}
.text-block ul:not(.filepond--list) li,
.wp-block-column ul:not(.filepond--list) li {
  display: flex;
  align-items: flex-start;
  list-style: none;
  position: relative;
  font-weight: 400;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.text-block ul:not(.filepond--list) li::before,
.wp-block-column ul:not(.filepond--list) li::before {
  content: "";
  margin-right: clamp(7px, 0.001875 * 100vw + 6.4px, 10px);
  margin-top: 6px;
  display: flex;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent);
}
.text-block ul:not(.filepond--list) li:not(:last-child),
.wp-block-column ul:not(.filepond--list) li:not(:last-child) {
  margin-bottom: 10px;
}
.text-block ul:not(.filepond--list):not(:last-child),
.wp-block-column ul:not(.filepond--list):not(:last-child) {
  margin-bottom: 10px;
}
.text-block ol li,
.wp-block-column ol li {
  font-weight: 400;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.text-block ol li::marker,
.wp-block-column ol li::marker {
  color: var(--accent);
}
.text-block ol li:not(:last-child),
.wp-block-column ol li:not(:last-child) {
  margin-bottom: 10px;
}
.text-block ol:not(:last-child),
.wp-block-column ol:not(:last-child) {
  margin-bottom: 10px;
}

.privacy-policy .text-block{
  padding-bottom: 10px;
}

table {
  background: var(--card);
  border-collapse: collapse;
  border-radius: 10px;
}
table:not(:first-child) {
  margin-top: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}
table:not(:last-child) {
  margin-bottom: clamp(10px, 0.003125 * 100vw + 9px, 15px);
}
table tr {
  height: auto !important;
  min-height: 60px;
}
table tr .amount {
  font-weight: 700;
}
table tr .amount * {
  font-weight: 700;
}
table th {
  padding: clamp(5px, 0.003125 * 100vw + 4px, 10px) clamp(5px, 0.008125 * 100vw + 2.4px, 18px) clamp(5px, 0.003125 * 100vw + 4px, 10px) clamp(5px, 0.01875 * 100vw + -1px, 35px);
  height: clamp(40px, 0.0125 * 100vw + 36px, 60px) !important;
  min-width: 120px;
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  border: 1px solid var(--background-light);
}
table th:first-child {
  font-weight: 500;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: #253340;
}
table td {
  padding: clamp(5px, 0.003125 * 100vw + 4px, 10px) clamp(5px, 0.008125 * 100vw + 2.4px, 18px) clamp(5px, 0.003125 * 100vw + 4px, 10px) clamp(5px, 0.01875 * 100vw + -1px, 35px);
  min-width: 120px;
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  border: 1px solid var(--background-light);
}
table td:first-child {
  font-weight: 500;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: #253340;
}
table .table-link {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-decoration: underline;
  cursor: pointer;
}
@media (min-width: 992px) {
  table .table-link:hover {
    --color: var(--primary);
  }
}

.table__responsive {
  width: 100%;
  overflow: auto;
}

.table:last-of-type tr:last-child {
  border-bottom: 0;
}

.catalog__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(clamp(168px, calc(15.75vw + 117.6px), 420px), 100%), 1fr));
  gap: clamp(10px, 0.0125 * 100vw + 6px, 30px);
}

.archive-category__sublist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(clamp(162px, calc(6.75vw + 140.4px), 270px), 100%), 1fr));
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  padding-bottom: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  border-bottom: 2px solid var(--stroke-2);
  margin-bottom: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.subcategory {
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 10px;
  padding: clamp(10px, 0.00625 * 100vw + 8px, 20px) clamp(10px, 0.00625 * 100vw + 8px, 20px) 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.005 * 100vw + 8.4px, 18px);
  overflow: hidden;
  min-height: clamp(130px, 0.03125 * 100vw + 120px, 180px);
  transition: var(--transition);
}
.subcategory__name {
  font-weight: 500;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}
.subcategory__image {
  width: clamp(100px, 0.03125 * 100vw + 90px, 150px);
  height: clamp(50px, 0.02875 * 100vw + 40.8px, 96px);
  position: absolute;
  bottom: 0;
  right: 0;
}
.subcategory__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
  transition: var(--transition);
}
.subcategory__btn {
  width: clamp(25px, 0.003125 * 100vw + 24px, 30px);
  height: clamp(25px, 0.003125 * 100vw + 24px, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--primary);
  position: absolute;
  bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  left: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  transition: var(--transition);
}
.subcategory__btn svg {
  width: 12px;
  height: 10px;
  --svgColor: vaR(--white);
}
@media (min-width: 992px) {
  .subcategory:hover {
    border-color: var(--accent);
  }
  .subcategory:hover .subcategory__image img {
    transform: scale(1.15);
  }
  .subcategory:hover .subcategory__btn {
    background-color: var(--primary-hover);
  }
}

.category-banner {
  border-radius: 20px;
  padding: clamp(20px, 0.01875 * 100vw + 14px, 50px) clamp(15px, 0.021875 * 100vw + 8px, 50px) clamp(20px, 0.02875 * 100vw + 10.8px, 66px);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: clamp(20px, 0.01875 * 100vw + 14px, 50px);
}
.category-banner__wrap {
  width: 43%;
}
.category-banner__title {
  font-weight: 600;
  font-size: clamp(23px, 0.023125 * 100vw + 15.6px, 60px);
  line-height: 110%;
  --color: var(--white);
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.category-banner__subtitle {
  font-weight: 500;
  font-size: clamp(18px, 0.00375 * 100vw + 16.8px, 24px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--white);
  margin-bottom: clamp(20px, 0.0125 * 100vw + 16px, 40px);
  width: 82%;
}

@media (max-width: 991px) {
  .category-banner__wrap {
    width: 50%;
  }
  .category-banner__subtitle {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .category-banner__wrap {
    width: 80%;
  }
}
@media (max-width: 375px) {
  .category-banner__wrap {
    width: 100%;
  }
}
.single-product__top {
  display: grid;
  grid-template-columns: 44.4% 1fr;
  gap: clamp(20px, 0.1722282024 * 100vw + -150.6781485468px, 180px);
  width: 91.6%;
}
.single-product__top-block .product-attributes__item {
  display: none !important;
}
.single-product__top-block .product-attributes__item:nth-child(1),
.single-product__top-block .product-attributes__item:nth-child(2),
.single-product__top-block .product-attributes__item:nth-child(3),
.single-product__top-block .product-attributes__item:nth-child(4),
.single-product__top-block .product-attributes__item:nth-child(5) {
  display: grid !important;
}
.single-product__top-link {
  margin-top: 10px;
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid var(--stroke-1);
}
@media (min-width: 992px) {
  .single-product__top-link:hover {
    --color: var(--primary);
    border-color: var(--primary);
  }
}
.single-product .gallery-main__slide {
  position: relative;
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
}
.single-product .gallery-main__slide:after {
  content: "";
  display: block;
  padding-bottom: 76.4%;
}
.single-product .gallery-main__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-product .gallery-main__slide-lupa {
  position: absolute;
  bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  right: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  width: clamp(30px, 0.00625 * 100vw + 28px, 40px);
  height: clamp(30px, 0.00625 * 100vw + 28px, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: var(--backgroung-light);
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}
.single-product .gallery-main__slide-lupa svg {
  width: clamp(15px, 0.003125 * 100vw + 14px, 20px);
  height: clamp(15px, 0.003125 * 100vw + 14px, 20px);
  --svgColor: var(--stroke-3);
  transition: var(--transition);
}
@media (min-width: 992px) {
  .single-product .gallery-main__slide-lupa:hover {
    background-color: var(--accent);
  }
  .single-product .gallery-main__slide-lupa:hover svg {
    --svgColor: var(--white);
  }
}
.single-product__gallery-thumbnails-holder {
  padding: 0 clamp(15px, 0.009375 * 100vw + 12px, 30px);
  position: relative;
  margin-top: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.single-product__gallery-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  z-index: 1;
  pointer-events: none;
}
.single-product__gallery-navigation .slider-btn {
  pointer-events: all;
}
.single-product .gallery-thumbnails__slide {
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--stroke-2);
  background-color: var(--white);
  overflow: hidden;
  box-sizing: border-box;
  cursor: pointer;
  transition: var(--transition);
}
.single-product .gallery-thumbnails__slide:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.single-product .gallery-thumbnails__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-product .gallery-thumbnails__slide.swiper-slide-thumb-active {
  border-color: var(--accent);
}
@media (min-width: 992px) {
  .single-product .gallery-thumbnails__slide:hover {
    border-color: var(--accent);
  }
}
.single-product .product-attributes__item {
  background: var(--white);
  border-radius: 10px;
  padding: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: clamp(10px, 0.0215285253 * 100vw + -11.3347685684px, 30px);
}
.single-product .product-attributes__item:not(:last-child) {
  margin-bottom: 10px;
}
.single-product .product-attributes__item-value a {
  --color: var(--primary);
}
.single-product__info:not(:last-child) {
  margin-bottom: clamp(25px, 0.015625 * 100vw + 20px, 50px);
}
.single-product__bottom {
  padding-top: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  border-top: 2px solid var(--stroke-2);
  display: flex;
  align-items: flex-end;
  gap: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}
.single-product__btn {
  flex-shrink: 0;
  padding: clamp(10px, 0.001875 * 100vw + 9.4px, 13px) clamp(15px, 0.039375 * 100vw + 2.4px, 78px);
}
.single-product__price {
  display: flex;
  align-items: baseline;
  flex-direction: row-reverse;
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  font-weight: 700;
  font-size: clamp(20px, 0.015625 * 100vw + 15px, 45px);
  line-height: 110%;
  color: var(--color, var(--main-text));
  text-decoration: none;
}
.single-product__price *:not(del):not(del *) {
  font-weight: 700;
  font-size: clamp(20px, 0.015625 * 100vw + 15px, 45px);
  line-height: 110%;
  color: var(--color, var(--main-text));
  text-decoration: none;
}
.single-product__price del,
.single-product__price del * {
  font-weight: 400;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-decoration: line-through;
  --color: var(--light-text);
}
.single-product__specification {
  display: flex;
  gap: 30px;
  margin-top: clamp(30px, 0.03125 * 100vw + 20px, 80px);
  margin-bottom: clamp(60px, 0.025 * 100vw + 52px, 100px);
}
.single-product__specification-block {
  flex: 1;
}
.single-product__specification-title {
  margin-bottom: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}
.single-product__specification-value.text-block > p,
.single-product__specification-value.text-block ul:not(.filepond--list) li,
.single-product__specification-value.text-block ol li {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
}

.products-related .swiper-slide {
  box-sizing: border-box;
}

@media (max-width: 1199px) {
  .single-product__top {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .single-product__bottom {
    flex-wrap: wrap;
  }
  .single-product__btn {
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
  .product-attributes__item-title,
  .product-attributes__item-value {
    font-size: 14px;
  }
  .single-product__specification {
    flex-direction: column;
  }
  .products-related__pagination {
    display: none;
  }
}
@media (max-width: 575px) {
  .single-product__top {
    grid-template-columns: 100%;
  }
}
.product-card a {
  background: var(--white);
  border-radius: 20px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 2px solid var(--white);
}
@media (min-width: 992px) {
  .product-card a:hover {
    border-color: var(--accent);
  }
  .product-card a:hover .product-card__title {
    --color: var(--accent);
  }
}
.product-card__info {
  margin-bottom: clamp(0px, 0.009375 * 100vw + -3px, 15px);
}
.product-card__bottom {
  margin-top: auto;
}
.product-card__image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.product-card__image:after {
  content: "";
  display: block;
  padding-bottom: 61.5%;
}
.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card__title {
  transition: var(--transition);
}
.product-card__title:not(:last-child) {
  margin-bottom: 10px;
}
.product-card__sku {
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
}
.product-card__bottom {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.003125 * 100vw + 9px, 15px);
}
.product-card__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  font-weight: 600;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 110%;
  color: var(--color, var(--main-text));
  text-decoration: none;
}
.product-card__price *:not(del):not(del *) {
  font-weight: 600;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 110%;
  color: var(--color, var(--main-text));
  text-decoration: none;
}
.product-card__price del,
.product-card__price del * {
  font-weight: 400;
  font-size: clamp(18px, 0.00125 * 100vw + 17.6px, 20px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-decoration: line-through;
  --color: var(--light-text);
}
.product-card__btn {
  width: 100%;
}

.archive-category__wrap {
  display: flex;
  gap: clamp(20px, 0.0430570506 * 100vw + -22.6695371367px, 60px);
}
.archive-category__products-wrap {
  flex: 1;
}
.archive-category__pagination {
  margin-top: clamp(20px, 0.0125 * 100vw + 16px, 40px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.archive-category__pagination .nav-links {
  margin-top: 0;
  margin-left: auto;
}
.archive-category__category-count {
  font-weight: 400;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
}

.archive-category__sidebar {
  width: clamp(320px, 0.0753498385 * 100vw + 245.3283100108px, 390px);
  flex-shrink: 0;
}

.filters-widget {
  width: 100%;
  background-color: var(--white);
  height: -moz-fit-content;
  height: fit-content;
  padding: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  border-radius: 20px;
}
.filters-widget .filter-block:not(:last-child) {
  margin-bottom: clamp(25px, 0.015625 * 100vw + 20px, 50px);
}
.filters-widget .filter-block-title {
  font-weight: 500;
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  text-transform: uppercase;
  text-transform: none;
}
.filters-widget .filter-block-toggler {
  display: none;
}
.filters-widget .filter-block-content {
  margin-top: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.filters-widget .filter-block-content .price.range {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}
.filters-widget .filter-block-content .price.range .group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.filters-widget .filter-block-content .price.range .group input {
  padding: 0 10px;
  width: 100%;
  flex: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--stroke-1);
  border-radius: 100px;
  background: var(--white);
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
  transition: var(--transition);
}
.filters-widget .filter-block-content .price.range .group input::-webkit-outer-spin-button, .filters-widget .filter-block-content .price.range .group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.filters-widget .filter-block-content .price.range .group input::-moz-placeholder {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
}
.filters-widget .filter-block-content .price.range .group input::placeholder {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
}
.filters-widget .filter-block-content .price.range .group input:hover, .filters-widget .filter-block-content .price.range .group input:focus {
  border-color: var(--accent);
}
.filters-widget .filter-block-content .price.range .group input:hover::-moz-placeholder, .filters-widget .filter-block-content .price.range .group input:focus::-moz-placeholder {
  --color: var(--accent);
}
.filters-widget .filter-block-content .price.range .group input:hover::placeholder, .filters-widget .filter-block-content .price.range .group input:focus::placeholder {
  --color: var(--accent);
}
.filters-widget .filter-block-content .price.range .separator {
  width: 20px;
  height: 2px;
  background: var(--stroke-3);
}
.filters-widget .filter-block-content .noUi-target {
  background-color: var(--stroke-2);
}
.filters-widget .filter-block-content .noUi-connects {
  height: 5px;
}
.filters-widget .filter-block-content .noUi-horizontal .noUi-handle {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
  width: 20px;
  height: 20px;
  top: -9px;
  right: -12px;
}
.filters-widget .filter-block-content .noUi-connect {
  background: var(--accent);
}
.filters-widget .filter-block-content .range-slider {
  margin-bottom: 21px;
  height: 5px;
  border-radius: 3px;
}
.filters-widget .filter-block-content .list {
  max-height: 337px;
  overflow: auto;
}
.filters-widget .filter-block-content .list::-webkit-scrollbar {
  width: 3px;
}
.filters-widget .filter-block-content .list::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}
.filters-widget .filter-block-content .list::-webkit-scrollbar-track {
  background-color: var(--stroke-2);
  border-radius: 10px;
  background-clip: padding-box;
}
.filters-widget .filter-block-content .inputs.checkboxes input {
  display: none;
}
.filters-widget .filter-block-content .inputs.checkboxes input:checked + label::before {
  background-color: var(--accent);
  border-color: #fff;
}
.filters-widget .filter-block-content .inputs.checkboxes label {
  display: flex !important;
  align-items: center;
  width: 100%;
  border-radius: 3px;
  padding-left: 35px;
  transition: all 0.3s ease-in;
  font-weight: 400;
  font-size: clamp(16px, 0.00125 * 100vw + 15.6px, 18px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  cursor: pointer;
  height: 100%;
  min-height: 24px;
  position: relative;
}
.filters-widget .filter-block-content .inputs.checkboxes label:before {
  content: "";
  position: absolute;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 4px solid transparent;
  box-shadow: 0 0 0 2px var(--accent);
  background-color: transparent;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.filters-widget .filter-block-content .inputs.checkboxes label span {
  color: #fff;
}
.filters-widget .filter-block-content .inputs.checkboxes .group:not(:last-child) {
  margin-bottom: 10px;
}
.filters-widget .filter-block-content .inputs.checkboxes .group.hidden {
  display: none;
}
.filters-widget .filter-block-content__load-more {
  margin-top: 10px;
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid var(--light-text);
  cursor: pointer;
  transition: var(--transition);
}
@media (min-width: 992px) {
  .filters-widget .filter-block-content__load-more:hover {
    --color: var(--accent)
    border-color: var(--accent) ;
  }
}
.filters-widget #open-filter,
.filters-widget #close-filter {
  display: none;
}
.filters-widget .buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.filters-widget .buttons .btn {
  width: 100%;
}
.filters-widget .buttons .link {
  font-weight: 400;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 120%;
  color: var(--color, var(--main-text));
  --color: var(--light-text);
  border-bottom: 1px solid var(--stroke-1);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: var(--transition);
}
@media (min-width: 992px) {
  .filters-widget .buttons .link:hover {
    --color: var(--accent);
    border-color: var(--accent);
  }
}

@media (max-width: 991px) {
  .archive-category__sidebar {
    position: fixed !important;
    left: -200%;
    top: 0 !important;
    width: 100%;
    max-width: 260px;
    height: 100%;
    z-index: 6000;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    background-color: var(--white);
    overflow-y: auto;
    overflow-x: hidden;
    margin-left: 0;
    border-radius: 0;
    padding: 20px;
  }
  .archive-category__sidebar.active {
    left: 0px;
  }
  .archive-category__sidebar.active #close-filter {
    right: 10px;
  }
  .filters-widget {
    position: static !important;
    transform: none !important;
  }
  .filters-widget #close-filter {
    position: fixed;
    right: -200%;
    top: 10px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    z-index: 500;
    display: block;
    transition: right 0.3s ease;
    padding: 0px;
    border: none;
  }
  .filters-widget #close-filter svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  .filters-widget #open-filter {
    position: fixed;
    right: 10px;
    bottom: 40px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    z-index: 10;
    display: block;
    padding: 0px;
    --svgWidth: 30px;
    --svgHeight: 30px;
    border: none;
  }
}
@media (max-width: 767px) {
  .archive-category__pagination {
    flex-direction: column;
    align-items: flex-start;
  }
  .archive-category__pagination .nav-links {
    margin: 0 auto;
  }
}
.category-card {
  background: var(--white);
  border-radius: 20px;
  position: relative;
  padding: clamp(10px, 0.0125 * 100vw + 6px, 30px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: clamp(200px, 0.075 * 100vw + 176px, 320px);
  transition: var(--transition);
}
.category-card__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.category-card__name {
  transition: var(--transition);
}
.category-card__subtitle {
  --color: var(--light-text);
  transition: var(--transition);
}
.category-card__btn {
  margin-top: auto;
  z-index: 1;
  background-color: var(--white);
  transition: var(--transition);
}
.category-card__image {
  width: clamp(100px, 0.0625 * 100vw + 80px, 200px);
  height: clamp(100px, 0.0625 * 100vw + 80px, 200px);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.category-card__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/category-decor.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  opacity: 0;
  transition: var(--transition);
}
.category-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  transition: var(--transition);
}
@media (min-width: 992px) {
  .category-card:hover {
    background: var(--accent);
  }
  .category-card:hover .category-card__name,
  .category-card:hover .category-card__subtitle {
    --color: var(--white);
  }
  .category-card:hover .category-card__btn {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
  }
  .category-card:hover .category-card__btn .btn__arrow {
    background-color: var(--primary);
  }
  .category-card:hover .category-card__btn .btn__arrow svg {
    --svgColor: var(--white);
  }
  .category-card:hover .category-card__image img {
    transform: scale(1.15);
  }
  .category-card:hover .category-card__image::before {
    opacity: 1;
  }
}

.brand-card {
  border: 2px solid var(--white);
  border-radius: 10px;
  background: var(--white);
  padding: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  transition: var(--transition);
}
.brand-card__image {
  flex: 1;
  max-width: clamp(100px, 0.0625 * 100vw + 80px, 200px);
  width: 100%;
  height: clamp(60px, 0.0125 * 100vw + 56px, 80px);
}
.brand-card__image img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
  filter: grayscale(1);
  -o-object-fit: contain;
     object-fit: contain;
}
.brand-card__btn {
  flex-shrink: 0;
  width: clamp(20px, 0.00625 * 100vw + 18px, 30px);
  height: clamp(20px, 0.00625 * 100vw + 18px, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 100%;
  transition: var(--transition);
}
.brand-card__btn svg {
  width: 12px;
  height: 8px;
  --svgColor: var(--white);
}
@media (min-width: 992px) {
  .brand-card:hover {
    border-color: var(--accent);
  }
  .brand-card:hover .brand-card__btn {
    background-color: var(--primary-hover);
  }
  .brand-card:hover .brand-card__image img {
    filter: inherit;
  }
}

.brand-card-2 {
  border: 2px solid var(--white);
  border-radius: 10px;
  background: var(--white);
  padding: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}
.brand-card-2__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.brand-card-2__desc {
  margin-top: auto;
  -webkit-line-clamp: 3; /* Число отображаемых строк */
  display: -webkit-box; /* Включаем флексбоксы */
  -webkit-box-orient: vertical; /* Вертикальная ориентация */
  overflow: hidden;
}
.brand-card-2__desc b {
  font-weight: 700;
}
.brand-card-2__image {
  flex: 1;
  max-width: clamp(100px, 0.0125 * 100vw + 96px, 120px);
  width: 100%;
  height: clamp(40px, 0.00625 * 100vw + 38px, 50px);
}
.brand-card-2__image img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
  filter: grayscale(1);
  -o-object-fit: contain;
     object-fit: contain;
}
.brand-card-2__btn {
  flex-shrink: 0;
  width: clamp(20px, 0.00625 * 100vw + 18px, 30px);
  height: clamp(20px, 0.00625 * 100vw + 18px, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 100%;
  transition: var(--transition);
}
.brand-card-2__btn svg {
  width: 12px;
  height: 8px;
  --svgColor: var(--white);
}
@media (min-width: 992px) {
  .brand-card-2:hover {
    border-color: var(--accent);
  }
  .brand-card-2:hover .brand-card-2__btn {
    background-color: var(--primary-hover);
  }
  .brand-card-2:hover .brand-card-2__image img {
    filter: inherit;
  }
}

.service-card {
  background: var(--accent);
  border-radius: 20px;
  position: relative;
  padding: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  min-height: clamp(200px, 0.125 * 100vw + 160px, 400px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.003125 * 100vw + 9px, 15px);
}
.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  width: clamp(150px, 0.05625 * 100vw + 132px, 240px);
  height: clamp(150px, 0.05625 * 100vw + 132px, 240px);
  /* background-image: url("../images/service-card-decor.svg"); */
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}
.service-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.service-card__image {
  border-radius: 10px;
  width: clamp(50px, 0.01875 * 100vw + 44px, 80px);
  height: clamp(50px, 0.01875 * 100vw + 44px, 80px);
  background: var(--elements);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__image img {
  width: clamp(30px, 0.00625 * 100vw + 28px, 40px);
  height: clamp(30px, 0.00625 * 100vw + 28px, 40px);
  -o-object-fit: contain;
     object-fit: contain;
}
.service-card__btn {
  height: -moz-fit-content;
  height: fit-content;
}
.service-card__name {
  margin-top: auto;
  --color: var(--white);
  padding-right: clamp(0px, 0.0645855759 * 100vw + -64.0043057051px, 60px);
}
.service-card__desc {
  --color: var(--white);
  padding-right: clamp(0px, 0.0645855759 * 100vw + -64.0043057051px, 60px);
}

.search-page__holder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(clamp(168px, calc(15.75vw + 117.6px), 420px), 100%), 1fr));
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.form:not(:has(input[type="checkbox"]:checked)) .submit {
  pointer-events: none;
  opacity: 0.5;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 24px;
  user-select: none;
  font-family: sans-serif;
  margin-block-start: 20px;
}

.custom-checkbox {
  display: none;
}

.checkmark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  position: relative;
}

.custom-checkbox:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #2e7d32;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}