/*============= ALIGNES ===============*/

:root {
  --primary: #e6bc7c;
  --primary-hover: #db9a37;
  --head-primary: #111;
  --head-secondary: #fff;
  --main-text-primary: #575757;
  --main-text-secondary: #bebebe;
  --background: #fff;
  --background-secondary: #f5f5f5;
  --background-thirdly: #111;
  --background-fourth: #222;
  --background-fifth: #404040;
  --stroke: #e0e0e0;

  --font-family: "Wix Madefor Display", sans-serif;

  --transition: all 0.4s ease-out;
  --transition-slow: all 0.6s ease-out;

  --min-20: clamp(0.625rem, 0.464rem + 0.81vw, 1.25rem);
  --min-25: clamp(0.75rem, 0.54rem + 1.05vw, 1.563rem);
  --min-30: clamp(0.938rem, 0.696rem + 1.21vw, 1.875rem);
  --min-40: clamp(1.25rem, 0.927rem + 1.61vw, 2.5rem);
  --min-50: clamp(1.563rem, 1.159rem + 2.02vw, 3.125rem);
  --min-60: clamp(1.875rem, 1.391rem + 2.42vw, 3.75rem);
  --min-70: clamp(2.188rem, 1.623rem + 2.82vw, 4.375rem);
  --min-80: clamp(2.5rem, 1.855rem + 3.23vw, 5rem);
  --min-100: clamp(3.125rem, 2.319rem + 4.03vw, 6.25rem);
}

::selection {
  background: var(--primary);
  color: var(--head-secondary);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--stroke);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

.alignwide {
  width: 100%;
}

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

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
    /*margin-left: calc(-1 * (1920px - 1170px) / 2) !important;*/
    /*margin-right: calc(-1 * (1920px - 1170px) / 2) !important;*/
  }
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--main-text-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  box-sizing: inherit;
}

body {
  background: var(--head-secondary);
  /*max-width: 1920px;*/
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  /*-webkit-box-shadow: 0 0 20px 5px #747474;*/
  /*box-shadow: 0 0 20px 5px #747474;*/
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main,
#primary {
  flex-grow: 1;
}

body .map-holder {
  height: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul li {
  list-style-position: inside;
  /* font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px; */
}

ul li::marker {
  color: #1f2f47;
}

ol li {
  list-style-position: inside;
  /* font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px; */
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

.p1 {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
}

.p3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
}

h1,
.page-title {
  font-weight: 700;
  /* font-size: 54px; */
  font-size: clamp(1.75rem, 1.331rem + 2.1vw, 3.375rem);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--head-primary);
}

.page-title,
.title {
  margin-bottom: var(--min-40);
}

h2,
.h2 {
  font-weight: 700;
  /* font-size: 42px; */
  font-size: clamp(1.5rem, 1.21rem + 1.45vw, 2.625rem);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--head-primary);
}

h3,
.h3 {
  font-weight: 600;
  /* font-size: 36px; */
  font-size: clamp(1.5rem, 1.306rem + 0.97vw, 2.25rem);
  line-height: 100%;
  color: var(--head-primary);
  text-transform: none;
}

h4,
.h4 {
  font-weight: 600;
  /* font-size: 24px; */
  font-size: clamp(1.25rem, 1.185rem + 0.32vw, 1.5rem);
  line-height: 110%;
  color: var(--head-primary);
}

h5,
.h5 {
  font-weight: 700;
  /* font-size: 20px; */
  font-size: clamp(1rem, 0.935rem + 0.32vw, 1.25rem);
  line-height: 100%;
  color: var(--head-primary);
}

h6,
.h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--head-primary);
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0;
  padding-top: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
}

.breadcrumbs span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
  transition: var(--transition);
}

.breadcrumbs span.current-item {
  color: var(--primary);
}

.breadcrumbs .separator {
  border-radius: 1px;
  width: 7px;
  height: 7px;
  background: var(--primary);
  display: inline-block;
  margin: 0 10px;
  top: -2px;
  position: relative;
}

.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.block {
  padding: var(--min-50) 0;
}

.first-block {
  padding-top: 0;
}

div .block:first-child {
  padding-top: 0;
}

.block.colored {
  background-color: var(--background-secondary);
  background-image: url(../images/block.png);
  background-blend-mode: lighten;
  padding: var(--min-80) 0;
  margin-top: var(--min-50);
  margin-bottom: var(--min-50);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.block.colored.dark {
  background-color: var(--head-primary);
  background-image: url(../images/block.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: unset;
  border-radius: 5px;
}

.sticky {
  position: sticky;
  top: 120px;
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--min-30);
}

.columns-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--min-30);
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  outline: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 45px;
  padding: 15px 45px;
  background: var(--primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--head-secondary);
  text-align: center;
}

.btn.dark {
  background: var(--background-fifth);
}

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

.btn.invert {
  background: var(--head-secondary);
  color: var(--primary);
}

.btn.cut {
  border-radius: 25px 25px 0 0;
  padding: 15px 20px;
}

/* #main,
#primary {
  min-height: 83vh;
} */
.advant__media .icon__holder img,
.form-credit-block .icon__holder img,
.advantages-block .icon__holder img {
  object-fit: contain;
}

.icon__holder img,
.icon__holder svg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.image__holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.image__holder {
  position: relative;
}

.image__holder .overflow,
.icon__holder .overflow {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.4);
  transition: var(--transition);
  cursor: pointer;
  opacity: 0;
}

.image__holder .loop,
.icon__holder .loop {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

svg,
svg path,
svg g path,
svg rect {
  transition: var(--transition);
}

img {
  transition: var(--transition);
}

.page-privacy h2 {
  margin: 20px 0;
  margin-top: 30px;
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
}

.page-privacy p,
.page-privacy table {
  margin-bottom: 20px;
}

body .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.soc__holder {
  display: flex;
  gap: 5px;
}

.soc__item {
  transition: var(--transition);
  border: 1px solid var(--stroke);
  border-radius: 45px;
  width: 50px;
  height: 50px;
  background: var(--head-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.soc__item svg {
  height: 22px;
  width: 22px;
  object-fit: contain;
}

.phone {
  white-space: nowrap;
}

.text__holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text__holder ul,
.text__holder ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text__holder ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.text__holder ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.text__holder ol {
  list-style-type: none;
  counter-reset: num;
}

.text__holder ol li {
  position: relative;
  padding-left: 25px;
}

.text__holder ol li::before {
  content: counter(num) ". ";
  counter-increment: num;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
  position: absolute;
  left: 0;
  top: 0;
}

.text__holder strong {
  color: var(--head-primary);
}

.wp-block-quote {
  position: relative;
  padding: var(--min-40) 0;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: var(--min-20);
}

.wp-block-quote p {
  font-weight: 600;
  /* font-size: 24px; */
  font-size: clamp(1.25rem, 1.185rem + 0.32vw, 1.5rem);
  line-height: 110%;
  color: var(--head-primary);
}

.wp-block-quote em {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: var(--head-primary);
  font-style: normal;
}

.wp-block-quote::before {
  content: "";
  background-image: url(../images/quote.svg);
  height: 24px;
  width: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin: 0 auto;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--min-40);
}

.swiper-btn,
.pagination .next,
.pagination .prev {
  height: 50px;
  width: 50px;
  border: 1px solid var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.pagination .next {
  margin-left: var(--min-60);
}

.pagination .prev {
  margin-right: var(--min-60);
}

.pagination .page-numbers {
  transition: var(--transition);
}

.pagination .page-numbers.current {
  color: var(--primary);
}

.swiper-btn svg {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.swiper-btn svg path {
  fill: var(--primary);
}

.swiper-btn.disabled,
.swiper-button-disabled {
  background: var(--stroke);
  border-color: var(--stroke);
  pointer-events: none;
}

.swiper-btn.disabled svg path,
.swiper-button-disabled svg path {
  fill: var(--main-text-primary);
}

.swiper__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--min-70);
  margin-top: var(--min-40);
}

body .swiper-pagination {
  position: relative;
  width: fit-content !important;
}

body .swiper-pagination-bullet {
  width: 14px;
  height: 4px;
  background: var(--stroke);
  opacity: 1;
  transition: var(--transition);
  border-radius: 0;
}

body .swiper-pagination-bullet-active {
  background: var(--primary);
}

@media (max-width: 430px) {
  .products__swiper .swiper__nav .swiper-pagination-bullet:nth-child(n + 6),
  .reviews-block .swiper__nav .swiper-pagination-bullet:nth-child(n + 6) {
    display: none;
  }
}

.policy-checkbox {
  display: flex;
  gap: 10px;
}

.policy-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid var(--primary);
  border-radius: 3px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.policy-checkbox input[type="checkbox"]::after {
  content: "✔";
  position: absolute;
  color: #fff;
  font-size: 12px;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s ease-in;
}

.policy-checkbox input[type="checkbox"]:checked::after {
  opacity: 1;
}

.policy-checkbox input[type="checkbox"]:hover {
  border-color: var(--primary-hover);
}

.policy-checkbox input[type="checkbox"]:checked {
  background-color: var(--primary);
}

/*============ HEADER =================*/
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  background: var(--head-secondary);
  transition: var(--transition);
}

#header .header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--min-20);
  padding: 10px 0;
}

#header .header__menu {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
}

#header .nav-menu-element a {
  position: relative;
}

#header .nav-menu-element.has-childs a {
  padding-right: 17px;
}

#header .nav-menu-element.has-childs {
  position: relative;
}

#header .nav-menu-element.has-childs > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 10px;
  height: 6px;
  mask-image: url(../images/menu.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: var(--transition);
  background: var(--main-text-primary);
}

#header .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.15s;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
  background: var(--head-secondary);
  padding: var(--min-30);
  border-radius: 5px;
  width: max-content;
  min-width: 213px;
  position: absolute;
  left: -30px;
  top: calc(100% + 15px);
  box-sizing: border-box;
  list-style: none;
}

@media (max-width: 1500px) {
  #header .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0 0 10px;
    gap: 10px;
  }
}

#header .header__contacts {
  display: flex;
  align-items: center;
  gap: var(--min-20);
}

#header .logo__holder {
  width: 60px;
  height: 60px;
}

#header .logo__holder img {
  width: 60px;
  height: 60px;
}

#header.transparent {
  background: transparent;
  margin-top: -90px;
  box-shadow: none;
}

#header.transparent a {
  color: var(--head-secondary);
}

#header.transparent .sub-menu a {
  color: var(--head-primary);
}

#header.transparent .nav-menu-element.has-childs > a::before {
  background: var(--head-secondary);
}

#header.transparent .header__soc .soc__item {
  /* border: 1px solid var(--background-fifth); */
  background: transparent;
}

#header .header__phone {
  font-size: clamp(0.875rem, 0.778rem + 0.48vw, 1.25rem);
}

.header__calculator {
  position: fixed;
  bottom: var(--min-60);
  right: 0;
  transform: rotate(-90deg) translateX(100%) translateY(-50%);
  transform-origin: right;
  z-index: 100;
  transition: var(--transition);
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  display: none;
}

.header__calculator.painted {
}

/* .header__calculator.painted span {
  color: var(--primary);
} */

.header__calculator span {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
  transition: var(--transition);
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

#header .burger.open_menu span {
  background-color: var(--primary);
  width: 30px;
  height: 4px;
  transition: var(--transition);
}

#header .burger.open_menu.clicked {
  background-color: var(--primary);
}

#header .burger.open_menu.clicked span {
  background-color: var(--background);
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 600px;
  width: 100%;
  background-color: var(--background);
  padding: 30px;
  transition: var(--transition);
  transform: translateX(-600px);
  z-index: 9999;
  gap: 20px;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

#header #mobile-mnu a {
  /* line-height: 1;
    color: #374957;
    font-weight: 450; */
  color: var(--head-primary);
  font-size: 18px;
}

#header #mobile-mnu .logo__holder {
  /* text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; */
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  width: 100%;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  align-self: start;
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer {
  background-color: var(--background-thirdly);
  background-image: url(../images/bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: var(--min-50);
}

#footer .footer__lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--background-fifth);
  padding: var(--min-30) 0;
}

#footer .grampus__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: var(--main-text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

#footer .grampus__link span {
  font-family: var(--third-family);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: inherit;
}

#footer .privacy {
  color: var(--main-text-secondary);
}

#footer .copyright {
  color: var(--main-text-secondary);
}

#footer .footer__upper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--min-30);
  padding-top: var(--min-60);
  padding-bottom: var(--min-30);
}

#footer .footer__left {
  max-width: 230px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#footer .footer__logo {
  display: flex;
  height: 60px;
  width: 60px;
}

#footer .footer__region {
  color: var(--main-text-secondary);
}

#footer .footer__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px var(--min-60);
  list-style: none;
}

#footer .footer__menu a {
  font-weight: 700;
  /* font-size: 20px; */
  font-size: clamp(1rem, 0.935rem + 0.32vw, 1.25rem);
  line-height: 100%;
  color: var(--head-secondary);
}

#footer .footer__requisites {
  max-width: 259px;
  width: 100%;
}

#footer .requisites__title {
  margin-bottom: 10px;
  color: var(--head-secondary);
}

#footer .requisites__holder {
  gap: 5px;
}

#footer .requisites__holder p {
  color: var(--main-text-secondary);
}

.glogo {
  width: 111px;
  height: 17px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--main-text-secondary);
  position: relative;
  cursor: pointer;
}

.glogo:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: translateX(100%);
  transition: transform 0.7s ease-in;
  background: linear-gradient(
      90deg,
      #fe6604 10%,
      #ee0a76 30%,
      #ee0a76 60%,
      #fe6604 101%
    )
    repeat-x 0 0;
  background-size: 100px;
  animation-duration: 5s;
  animation-name: slideUp;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}

@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

/*================ QUESTIONS BLOCK =============*/
.questions-block .questions__wrap {
  display: flex;
  justify-content: space-between;
  gap: var(--min-30);
}

.questions-block .questions__text {
  max-width: 490px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 478px;
}

.questions-block .questions__holder {
  display: flex;
  flex-direction: column;
  gap: var(--min-20);
  max-width: 1010px;
  width: 100%;
}

.questions-block .questions__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--min-30);
}

.questions-block .worker__holder {
  display: flex;
  align-items: center;
  gap: var(--min-30);
}

.questions-block .worker__img {
  height: 100px;
  width: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.questions-block .worker__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.questions-block .question__heading {
  background: var(--background-secondary);
  border-radius: 5px;
  padding: var(--min-25) var(--min-30);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.questions-block .question__content {
  padding: var(--min-25) var(--min-30);
  display: none;
}

.questions-block .question__answer ul {
  gap: 0;
}

.questions-block .question__answer ul li {
  padding-left: 25px;
}

.questions-block .question__answer ul li::before {
  background: var(--main-text-primary);
  height: 4px;
  width: 4px;
  top: 10px;
  left: 10px;
}

.questions-block .questions__more {
  margin: 0 auto;
  margin-top: 10px;
}

.questions-block .question__holder.hidden {
  display: none;
}

.questions-block .question__item .toggler {
  flex-shrink: 0;
}

.questions-block .question__holder.opened .toggler {
  transform: rotate(180deg);
}

/*================ SEO BLOCK =============*/
.seo-block .seo__wrap {
  display: flex;
  justify-content: space-between;
  gap: var(--min-30);
}

.seo-block .seo__img {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  max-height: 500px;
}

.seo-block .seo__text {
  flex: 1.4;
  padding-right: var(--min-30);
  max-height: 500px;
  overflow-y: scroll;
}

.seo-block .seo__title {
  margin-bottom: var(--min-30);
}

.seo-block .seo__text::-webkit-scrollbar {
  width: 3px;
}

.scrollbar-thin::-webkit-scrollbar {
  width: 3px;
}

/*================ REVIEWS =============*/
.reviews__wrap {
  display: flex;
  justify-content: space-between;
  gap: var(--min-30);
}

.reviews__wrap .archive__holder {
  max-width: 1140px;
  width: 100%;
}

.reviews__wrap .reviews__modal {
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 5px;
  padding: var(--min-30);
  background: var(--head-primary);
  height: fit-content;
}

.reviews__wrap .modal__btn {
  width: 100%;
  margin-top: var(--min-25);
}

.reviews__wrap .modal__title,
.reviews__wrap .modal__subtitle {
  color: var(--head-secondary);
}

.review-card.video-review {
  padding: var(--min-30);
  cursor: pointer;
}

.review-card.video-review .video__preview {
  cursor: pointer;
  /* max-height: 298px; */
  height: 100%;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

.review-card.video-review .review__info {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  /* flex-wrap: wrap; */
}

.review-card .review__date {
  border-radius: 5px;
  padding: 8px 15px;
  background: var(--head-secondary);
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card.video-review .review__author {
  max-width: 200px;
  width: 100%;
}

.review-card.text-review {
  padding: var(--min-30);
}

.review-card .review__heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.review-card .review__photo {
  display: flex;
  border-radius: 5px;
  width: 109px;
  height: 109px;
  overflow: hidden;
}

.review-card.text-review .review__author {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 10px;
}

.review-card .review__text.no-gallery.hidden .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-card .review__text.has-gallery.hidden .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.see-more-desc {
  color: var(--primary);
  padding-bottom: 2px;
  border-bottom: 1px dashed var(--primary);
  transition: var(--transition);
  margin-top: 10px;
  cursor: pointer;
}

.review-card .gallery__holder {
  /* display: grid;
    grid-template-columns: repeat(4, 1fr); */
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: fit-content;
  margin-top: 15px;
  max-width: 255px;
}

.review-card .gallery__img.hidden {
  display: none;
}

.review-card .gallery__img {
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  max-height: 60px;
  height: 100%;
  cursor: pointer;
  max-width: 30%;
}

.review-card .gallery__img .loop {
  height: 30px;
  width: 30px;
}

@media (max-width: 550px) {
  .review-card .gallery__holder {
    display: flex;
    max-width: fit-content;
  }

  .review-card .gallery__img {
    max-height: 80px;
    max-width: 120px;
  }
}

/*================ REVIEW CARD =============*/
.review-card {
  max-height: 428px;
  height: 100%;
  box-sizing: border-box;
  background: var(--background-secondary);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--min-30);
}

.review-card.opened {
  max-height: fit-content;
}

/*================ SALES =============*/
.sales__holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--min-30);
}

.sale-card {
  display: flex;
  flex-direction: column;
  gap: var(--min-20);
  box-sizing: border-box;
}

.sale-card .sale__img {
  border-radius: 5px;
  max-height: 420px;
  height: 100%;
  display: flex;
}

.sale-card .sale__img img {
  min-height: 200px;
}

.sale-card .sale__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.sale-card .sale__btn {
  margin-top: auto;
}

.sale-card .sale__descr {
  margin-bottom: 15px;
}

.sale-card .sale__date {
  border-radius: 5px;
  padding: 8px 15px;
  background: var(--background-secondary);
  color: var(--main-text-primary);
  height: fit-content;
}

.sale-card .sale__heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
  /*     flex-wrap: wrap-reverse; */
}

.sale-card .sale__title {
  max-width: 75%;
}

/*================ NEWS =============*/
.news-card {
  display: flex;
  flex-direction: column;
  gap: var(--min-30);
}

.news-card img {
  transition: var(--transition-slow);
}

.news-card .news__content {
  display: flex;
  flex-direction: column;
  gap: var(--min-20);
}

.news-card .news__date {
  background: var(--background-secondary);
  border-radius: 5px;
  padding: 8px 15px;
  color: var(--main-text-primary);
  width: fit-content;
}

.news-card .news__link {
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--primary);
}

.news-card .news__img {
  max-height: 300px;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

.news-card .news__img img {
  min-height: 150px;
}

.news-block .news-block__title {
  text-align: center;
}

.single-news .news__wrap {
  display: flex;
  justify-content: space-between;
  gap: var(--min-30);
}

.single-news .news__content {
  max-width: 1010px;
  display: flex;
  flex-direction: column;
  gap: var(--min-20);
}

.other-news {
  background: var(--background-secondary);
  border-radius: 5px;
  padding: var(--min-40);
  height: fit-content;
  max-width: 490px;
  width: 100%;
}

.single-news .news__thumb {
  max-height: 500px;
  border-radius: 5px;
  overflow: hidden;
}

.news__wrap .news__text {
  border-radius: 5px;
  background: var(--background-secondary);
  padding: var(--min-60);
  gap: 20px;
}

.other-news .other-news__title {
  margin-bottom: var(--min-30);
}

.other-news .news__link {
  padding: var(--min-20) 0;
  border-bottom: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.other-news .news__link .news__title {
  transition: var(--transition);
}

.other-news .news__link:first-child {
  border-top: 1px solid var(--stroke);
}

.news__wrap .news__text h3,
.news__wrap .news__text h4,
.news__wrap .news__text h5,
.news__wrap .news__text h6,
.news__wrap .gallery-block {
  margin-top: var(--min-20);
}

.news__wrap .gallery-block .swiper-wrapper {
  max-height: 500px;
}

.news__wrap .news__text h3 {
  margin-bottom: 15px;
}

.news__wrap .news__text h4 {
  margin-bottom: 10px;
}

.news__wrap .news__text h5 {
  margin-bottom: 5px;
}

.news__wrap .news__text ul li::before {
  border-radius: 0;
  height: 8px;
  width: 8px;
  transform: rotate(45deg);
}

/*================ PROJECTS =============*/
.projects__holder {
  display: flex;
  flex-direction: column;
  gap: var(--min-30);
}

.project__holder.hidden {
  display: none;
}

.projects__wrap .cat__btn {
  margin: 0 auto;
  margin-top: var(--min-40);
}

.projects__wrap .cat__title {
  text-align: center;
}

.cats__holder {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cats__holder .cat {
  border: 1px solid var(--stroke);
  border-radius: 5px;
  padding: 10px 20px;
  background: var(--background-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ============== PROJECT CARD ============= */
.project-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 800px;
  /* border: 1px solid var(--primary); */
}

@media (max-width: 1000px) {
  .project-card {
    grid-template-columns: 1fr;
    max-height: none;
  }
}
/* .project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 5;
  } */

.project__wrapper {
  max-width: 700px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .project__wrapper {
    max-width: 100%;
  }
}

.project-card__img {
  display: inline-block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  cursor: pointer;
}

.project-card .gallery__holder {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-height: 150px;
}

.project-card .gallery__img {
  height: 150px !important;
  width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  margin: 0 !important;
}

.project__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--min-30);
  gap: var(--min-30);
}

.project__name {
  font-size: 38px;
}

.project__info-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 0 10px;
}

.project__info-tag {
  position: relative;
  font-size: 18px;
}

.project__info-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -12px;
  width: 7px;
  height: 7px;
  background-color: var(--primary);
}

.project__inner {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .project__inner {
    flex-direction: column;
  }
  .project__name {
    font-size: 28px;
  }
  .project__inner-btn {
    margin: 10px 0 0 0;
    width: 100%;
  }
  .gallery__holder {
    max-height: 100px;
  }
}

.project__inner-price {
  font-size: 28px;
}

/* .project-card .project__upper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--min-20);
    position: relative;
    z-index: 10;
  }

  .project-card .product__lower {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--min-30);
    flex-wrap: wrap;
  }

  .project-card .tags__holder {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }

  .project-card .tag {
    border-radius: 5px;
    padding: 8px 10px;
    background: var(--head-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .project-card .project__date {
    border-radius: 5px;
    padding: 8px 10px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(0, 0, 0, 0.25);
    color: var(--head-secondary);
  }

  .project-card .project__name {
    color: var(--head-secondary);
  } */

/* ============== ERROR PAGE ============= */
.error-page {
  background: var(--head-primary);
}

.error404 #footer {
  margin-top: 0;
}

.error-page .error__num {
  max-width: 600px;
  width: 100%;
  object-fit: contain;
  height: fit-content;
}

.error__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--min-50);
  padding-top: 220px;
  padding-bottom: var(--min-60);
}

.error-page .error__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.error-page .error__title {
  color: var(--head-secondary);
}

.error-page .error__subtitle {
  color: var(--main-text-secondary);
}

.error-page .error__btn {
  margin-top: 15px;
}

/* ============== SERVICES ============= */
.service-card {
  border-radius: 5px;
  padding: var(--min-30);
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: var(--min-70);
  background: var(--background-secondary);
  padding: var(--min-30);
  cursor: pointer;
  height: 100%;
  box-sizing: border-box;
}

.service-card img {
  transition: var(--transition-slow);
}

.service-card .service__img {
  max-width: 200px;
  max-height: 109px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.service-card .service__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-card .service__name {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--stroke);
  transition: var(--transition);
}

.service-card .service__btn {
  margin-top: var(--min-20);
}

/* ============== SINGLE SERVICE ============= */
#service-banner {
  padding: var(--min-20);
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: var(--min-30);
  margin-top: 0;
}

.service-banner .product__name {
  color: var(--head-secondary);
  margin-bottom: 0;
}

.service-banner .service__info {
  padding: var(--min-50);
  /* padding-right: 0; */
  box-sizing: content-box;
  max-width: 770px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-banner .advants__holder {
  margin-top: var(--min-20);
  gap: var(--min-20);
}

.service-banner .service__btn {
  margin-top: 45px;
}

.service-banner .service__img {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-banner .price__holder {
  position: absolute;
  bottom: 10px;
  left: 10px;
  border-radius: 5px;
  padding: var(--min-20);
  background: var(--head-secondary);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-banner .advant__item {
  display: flex;
  gap: 15px;
}

.service-banner .advant__icon {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: var(--head-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-banner .advant__icon svg {
  height: 24px;
  width: 24px;
}

.service-banner .advant__name {
  color: var(--head-secondary);
}

.service-banner .service__subtitle {
  color: var(--main-text-secondary);
  position: relative;
  padding-left: 44px;
}

.service-banner .service__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 18px;
  background-image: url(../images/marker.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* .single-services .reviews-block {
  margin-top: var(--min-100);
} */

/* ============== CATEGORY CARD ============= */
.category-card {
  display: flex;
  flex-direction: column;
  gap: var(--min-20);
  align-items: center;
  height: 100%;
}

.category-card .category__name {
  text-align: center;
}

.category-card .category__img {
  max-height: 480px;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card .category__img img {
  transition: var(--transition-slow);
  min-height: 200px;
}

/* ============== PRODUCTS ============= */
.products {
  list-style: none;
}

.shop-wrapper .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--min-30);
}

.archive .catalog__wrapper .catalog__overflow {
  width: 100vw;
  height: 100vh;
  position: sticky;
  margin: 0;
  top: 0;
  margin-top: 0;
  margin-bottom: 0;
  left: 0;
  right: 0;
}

.catalog__wrapper {
  display: flex;
  justify-content: space-between;
  gap: var(--min-30);
  position: relative;
  /*  max-width: 1560px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto; */
}

.sidebar {
  width: 490px;
}

.catalog__wrapper .columns-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: var(--min-30);
  height: fit-content;
}

.catalog__wrapper .products__holder {
  width: 100%;
  height: fit-content;
}

#sidebar-close {
  display: none;
}

.open-filter {
  position: fixed;
  left: 15px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transition: var(--transition);
  cursor: pointer;
  display: none;
  z-index: 100;
}

.open-filter svg {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

#products-block {
  margin-top: 0;
}

.products-block .products__title {
  text-align: center;
}

.products-block .swiper-slide {
  height: auto;
}

.products-block .product__gallery {
  max-height: 350px;
  height: 100%;
}

/* ============== CATEGORY PAGE ============= */
.category-banner {
  padding-bottom: var(--min-40);
  display: flex;
  flex-direction: column;
  gap: var(--min-100);
}

.category-banner .subcats__holder {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category-banner .subcat__name {
  border: 1px solid var(--stroke);
  border-radius: 5px;
  padding: 10px 20px;
  background: var(--background-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.category-banner .category__wrap {
  display: flex;
  justify-content: space-between;
  gap: var(--min-30);
}

.category-banner .category__img {
  max-width: 906px;
  max-height: 370px;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-banner .category__descr {
  max-width: 620px;
  width: 100%;
}

/* ============== PRODUCT CARD ============= */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--head-secondary);
  height: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  /* max-width: 490px; */
}

.product-card .product__gallery {
  position: relative;
  max-width: 100%;
  background: var(--head-secondary);
  border-radius: 5px;
  overflow: hidden;
  /* max-width: 490px; */
  height: 350px;
  padding-bottom: 37px;
}

.product-card .swiper-navigation {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  display: flex;
}

.product-card .nav-item {
  height: 100%;
}

.product__gallery .swiper-slide {
  background: var(--head-secondary);
}

.products__swiper .product__gallery .swiper-slide {
  height: 320px !important;
}

.product__gallery .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50% !important;
  transform: translateX(-50%);
  gap: 5px;
  width: 100% !important;
}

.product__gallery .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
}

.product-card .product__img {
  height: 100%;
  width: 100%;
}

.product-card .product__content {
  padding: var(--min-25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  /* height: 100%; */
}

.product-card .arrow {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary-hover);
  border-radius: 50%;
  margin-left: auto;
  transition: var(--transition);
}

.product-card .product__lower {
  padding-top: 5px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.product-card .characteristics__holder {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.product-card .characteristic__item {
  background: var(--background-secondary);
  border-radius: 5px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============== PRODUCT PAGE ============= */
.summary {
  display: flex;
  justify-content: space-between;
  gap: var(--min-30);
  padding-bottom: var(--min-50);
}

.summary .product__gallery {
  max-width: 880px;
  width: 100%;
  display: flex;
  gap: 10px;
  max-height: 535px;
  height: 100%;
  position: sticky;
}

.summary .swiper_thumbnail {
  width: 120px;
  max-height: 430px;
  height: auto;
  flex-shrink: 0;
  margin: 35px 0;
}

.summary .product__swiper {
  height: 535px;
}

.summary .product__swiper .swiper-slide {
  height: auto;
  background: var(--background-secondary);
  border-radius: 5px;
  border: 1px solid var(--stroke);
  overflow: hidden;
  box-sizing: border-box;
}

.summary .product__swiper .image__holder {
  height: 100%;
}

.summary .product__swiper .image__holder img {
  object-fit: cover;
}

.summary .swiper_thumbnail .swiper-slide {
  border: 1px solid var(--stroke);
  border-radius: 5px;
  box-sizing: border-box;
  cursor: pointer;
}

.summary .thumbnail__holder {
  height: 100%;
  background: var(--background-secondary);
  border-radius: 5px;
  overflow: hidden;
}

.summary .swiper-btn {
  position: absolute;
  left: 50px;
  height: 20px;
  width: 20px;
  border: none;
  z-index: 10;
  background: transparent;
}

.summary .btn-prev {
  top: 0;
}

.summary .btn-next {
  bottom: 0;
}

.summary .product__info {
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--min-60);
}

.summary .characteristics__holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--min-30);
}

.summary .char__item {
  display: flex;
  gap: 10px;
}

.summary .char__icon {
  height: 24px;
  width: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.summary .char__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.summary .product__cart {
  display: flex;
  align-items: center;
  gap: var(--min-30);
  flex-wrap: wrap;
}

.summary .price__holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.summary .advantages__holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary .advant__item {
  border-radius: 5px;
  padding: var(--min-20);
  background: var(--background-secondary);
  display: flex;
  gap: var(--min-30);
}

.summary .advant__icon {
  border-radius: 5px;
  width: 60px;
  height: 60px;
  background: var(--head-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary .advant__icon img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.summary .advant__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.plans-block .plans__title,
.facades-block .facades__title,
.complectations-block .complectations__title {
  text-align: center;
}

.plans-block .swiper-slide {
  height: auto;
  box-sizing: border-box;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  /*  padding: 8px 0; */
}

.plans-block .plan__img {
  height: 100%;
  cursor: pointer;
}

.facades-block .swiper-slide {
  height: auto;
  box-sizing: border-box;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--stroke);
}

.facades-block .facade__img {
  height: 350px;
  cursor: pointer;
}

.facades-block .facade__img img,
.plans-block .plan__img img {
  object-fit: cover;
}

.complectations-block .swiper-slide {
  height: auto;
}

.complectations-block .swiper-wrapper {
  transition: var(--transition);
}

.complectation__item {
  background: var(--head-secondary);
  border-radius: 5px;
  padding: var(--min-30);
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  box-sizing: border-box;
}

.complectation__item .complectation__heading {
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.complectation__item .option.hidden {
  display: none;
}

.complectation__item .option::before {
  border-radius: 0;
  transform: rotate(45deg);
}

.complectation__item .option span {
  color: var(--head-primary);
}

.complectation__item .see-more-options {
  color: var(--primary);
  padding-bottom: 2px;
  border-bottom: 1px dashed var(--primary);
  transition: var(--transition);
  cursor: pointer;
  width: fit-content;
  margin-top: var(--min-20);
}

.product-template-default .reviews-block {
  margin: 0;
  padding: var(--min-50) 0;
  background-image: none;
  background: transparent;
}

.product-template-default .reviews-block .container {
  padding: 0;
}

.product-template-default .reviews-block .review-card {
  background: var(--background-secondary);
}

.product-template-default .reviews-block .review__date {
  background: var(--head-secondary);
}

/* ============== PRODUCT TABS ============= */

.wc-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: var(--min-60);
}

.wc-tabs li {
  background: var(--background-secondary);
  border: 1px solid var(--stroke);
  border-radius: 5px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.wc-tabs li a::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.wc-tabs li.active {
  background: var(--primary);
  border-color: var(--primary);
}

.wc-tabs li.active a {
  color: var(--head-secondary);
}

.woocommerce-Tabs-panel .tab__title {
  text-align: center;
}

.woocommerce-Tabs-panel .characteristics__holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px var(--min-30);
}

.woocommerce-Tabs-panel .attribute__holder {
  border-radius: 5px;
  padding: 15px var(--min-20);
  background: var(--background-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.woocommerce-Tabs-panel .swiper-slide {
  height: auto;
}

.communications__swiper .service__descr {
  margin-bottom: var(--min-20);
}

.communications__swiper .service-card .service__btn {
  margin-top: auto;
}

.communications__swiper .service-card .service__info {
  height: 100%;
}

.communications__swiper .service-card .service__img {
  flex-shrink: 0;
}

/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

.fancybox__slide.has-rutube .fancybox__content {
  padding: 0;
}

.fancybox__slide.has-rutube iframe {
  width: 80vw;
}

body .fancybox__backdrop {
  background: rgba(17, 17, 17, 0.8);
}

input,
select {
  width: 100%;
  transition: var(--transition);
  border: 1px solid var(--stroke);
  border-radius: 45px;
  padding: 16px 20px;
  background: var(--head-secondary);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text-primary);
  outline: none;
}

textarea {
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 16px 20px;
  transition: var(--transition);
  resize: vertical;
  background: var(--head-secondary);
  min-height: 110px;
  max-height: 300px;
  outline: none;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text-primary);
  transition: var(--transition);
}

select {
  -webkit-appearance: none;
  /* Для Chrome и Safari */
  -moz-appearance: none;
  /* Для Firefox */
  appearance: none;
  cursor: pointer;
}

.select__holder {
  position: relative;
}

.select__holder .toggler {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:focus,
select:hover {
  border-color: var(--primary);
}

select:hover + .toggler {
  transform: translateY(-50%) rotate(180deg);
}

input:hover::placeholder,
input:focus::placeholder,
textarea:hover::placeholder,
textarea:focus::placeholder,
select:hover::placeholder,
select:focus::placeholder {
  color: var(--primary);
}

input.error,
textarea.error,
select.error {
  border-color: red;
}

input.error::placeholder,
textarea.error::placeholder {
  color: red;
}

body .theme-modal {
  height: fit-content;
  width: 100%;
  max-height: 90vh;
  max-width: 685px;
  background: var(--head-secondary);
  border-radius: 5px;
  /*  position: fixed; */
  transition: var(--transition);
  z-index: 9999;
  display: none;
  padding: var(--min-40);
  overflow-y: auto;
}

body .theme-modal::-webkit-scrollbar {
  width: 3px;
}

.theme-modal .title {
  margin-bottom: 15px;
}

.theme-modal .subtitle {
  margin-bottom: 25px;
}

body .theme-modal .btn {
  width: 100%;
}

body .theme-modal .f-button {
  display: none !important;
}

.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 100;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form .btn {
  margin-top: 10px;
}

.form .form__privacy a {
  text-decoration: underline;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.input-file {
  position: relative;
  cursor: pointer;
}

.input-file input {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.input-file .input-file__text {
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

/* ============= MEDIA QUERIES =========== */
@media (any-hover: hover) {
  .grampus__link:hover .glogo:before {
    /*transform: translateY(-100%);*/
    animation-name: unset;
    transform: translateX(0);
  }

  .btn svg path {
    fill: var(--primary);
  }

  a:hover {
    color: var(--primary);
  }

  .btn:hover {
    background: var(--primary-hover);
    color: var(--head-secondary);
  }

  .btn.bordered:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--head-secondary);
  }

  .btn:hover svg path {
    fill: var(--head-secondary);
  }

  .soc__item:hover {
    background: var(--primary);
    border-color: var(--primary);
  }

  .soc__item:hover svg path {
    fill: var(--background);
  }

  .soc__item:hover rect {
    fill: var(--primary);
  }

  .soc__item.rutube:hover svg g path:nth-child(3),
  .soc__item.rutube:hover svg g path:nth-child(2) {
    fill: var(--primary);
  }

  #header .nav-menu-element.has-childs:hover > a {
    color: var(--primary);
  }

  #header .nav-menu-element.has-childs:hover > a::before {
    background: var(--primary);
  }

  #header .nav-menu-element.has-childs:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }

  #header #mobile-mnu #close-mnu:hover {
    color: var(--primary-hover);
  }

  #header.transparent a:hover,
  #header.transparent .nav-menu-element.has-childs:hover > a {
    color: var(--primary-hover);
  }

  #header.transparent .nav-menu-element.has-childs:hover > a::before {
    background: var(--primary-hover);
  }

  #header.transparent .soc__item:hover {
    border-color: var(--primary);
  }

  #header #mobile-mnu a:hover {
    color: var(--primary);
  }

  .breadcrumbs span:hover {
    color: var(--primary);
  }

  #header.transparent .header__soc .soc__item:hover {
    background: var(--primary);
  }

  .swiper-btn:hover,
  .pagination .next:hover,
  .pagination .prev:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
  }

  .swiper-btn:hover svg path,
  .pagination .next:hover svg path,
  .pagination .prev:hover svg path {
    fill: var(--head-secondary);
  }

  .pagination .page-numbers:hover {
    color: var(--primary);
  }

  .image__holder:hover .overflow,
  .icon__holder:hover .overflow {
    opacity: 1;
  }

  .review-card.video-review:hover .loop {
    background: var(--head-secondary);
  }

  .review-card.video-review:hover .loop path {
    fill: var(--primary-hover);
  }

  .review-card .see-more-desc:hover {
    color: var(--primary-hover);
    border-bottom: 1px solid var(--primary-hover);
  }

  #footer .privacy:hover,
  #footer .footer__menu a:hover {
    color: var(--primary);
  }

  .news-card:hover .news__link {
    gap: 13px;
    color: var(--primary-hover);
  }

  .news-card:hover .news__link path {
    fill: var(--primary-hover);
  }

  .news-card:hover img {
    transform: scale(1.2);
  }

  .other-news .news__link:hover .news__title {
    color: var(--primary);
  }

  .cats__holder .cat:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--head-secondary);
  }

  /* .project-card:hover img {
      transform: scale(1.2);
    } */

  .theme-modal .close-modal:hover svg path {
    fill: var(--primary);
  }

  .input-file:hover .input-file__text {
    color: var(--primary-hover);
  }

  .header__calculator:hover span {
    color: var(--background);
  }

  .service-card:hover img {
    transform: scale(1.2);
  }

  .service-card:hover .service__name {
    color: var(--primary);
  }

  .service-card:hover .service__btn {
    background: var(--primary-hover);
    color: var(--head-secondary);
    border-color: var(--primary-hover);
  }

  .category-card:hover .category__img img {
    transform: scale(1.2);
  }

  .clear-filters:hover {
    color: var(--primary);
  }

  .clear-filters:hover path {
    stroke: var(--primary);
  }

  .open-filter:hover {
    background: var(--primary-hover);
  }

  .category-banner .subcat__name:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--head-secondary);
  }

  .product-card .arrow {
    opacity: 0;
  }

  .product-card:hover .arrow {
    opacity: 1;
  }

  .complectation__item .see-more-options:hover {
    color: var(--primary-hover);
    border-bottom: 1px solid var(--primary-hover);
  }

  .wc-tabs li:hover {
    background: var(--primary);
    border-color: var(--primary);
  }

  .wc-tabs li:hover a {
    color: var(--head-secondary);
  }
}

@media (max-width: 1500px) {
  #header .header__menu {
    display: none;
  }

  #header .burger.open_menu {
    display: flex;
  }

  #header .nav-menu-element.has-childs > a::before {
    display: none;
  }

  .other-news {
    padding: var(--min-30);
  }

  .service-banner .advants__holder {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary .product__gallery {
    max-width: 50%;
  }

  .summary .product__info {
    max-width: 50%;
  }
}

@media (max-width: 1400px) {
  .single-news .news__wrap {
    flex-direction: column;
  }

  .single-news .news__content {
    max-width: 100%;
  }

  .single-news .news__thumb {
    align-items: center;
    justify-content: center;
  }

  .other-news {
    max-width: 100%;
    position: relative;
    top: 0;
  }

  .product-card .product__gallery {
    /* max-width: calc((100vw - 390px) / 2 - 30px); */
    /* height: auto; */
  }
}

@media (max-width: 1300px) {
  .review-card .review__photo {
    width: 70px;
    height: 70px;
  }

  .review-card.video-review .review__info {
    flex-direction: column;
  }

  .products-block .product__gallery {
    max-height: 350px;
    height: 100%;
  }
}

@media (max-width: 1200px) {
  .reviews__wrap .archive__holder {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card.video-review .review__info {
    flex-direction: row;
  }

  #footer .footer__upper {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }

  .plans-block .plan__img {
    height: 350px;
  }

  .facades-block .facade__img {
    height: 250px;
  }
}

@media (max-width: 1100px) {
  .columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo-block .seo__text {
    flex: 1;
  }

  .summary .characteristics__holder {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary .product__swiper {
    height: 450px;
  }

  .summary .swiper_thumbnail {
    height: calc(100% - 70px);
  }
}

@media (max-width: 1000px) {
  .error__wrap {
    flex-direction: column;
  }

  .services__holder {
    grid-template-columns: repeat(2, 1fr);
  }

  #service-banner {
    flex-direction: column;
  }

  .service-banner .service__img {
    max-width: 100%;
    max-height: 500px;
  }

  .service-banner .service__info {
    max-width: 100%;
    box-sizing: border-box;
  }

  .service-banner .advants__holder {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-wrapper .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar {
    position: fixed;
    right: 15px;
    top: 100px;
    transform: translateX(-120%);
    left: 15px;
    /* width: 100%; */
    transition: var(--transition);
    max-height: 80vh;
    overflow-y: auto;
    background: var(--head-secondary);
    z-index: 1000;
    padding-right: 15px;
    padding-bottom: var(--min-30);
  }

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

  .header__calculator {
    bottom: 80px;
  }

  .sidebar-top {
    display: flex;
    align-items: end;
    justify-content: end;
  }

  #sidebar-close {
    display: flex;
    padding: 15px;
    text-align: right;
  }

  .sidebar.opened {
    transform: translateX(0);
  }

  .open-filter {
    display: flex;
  }

  .product-card .product__gallery {
    /* max-width: calc((100vw / 2) - 30px); */
  }

  .product-card .product__gallery .swiper {
    /* height: 250px; */
  }

  .summary {
    flex-direction: column;
  }

  .summary .product__gallery {
    max-width: 100%;
    position: relative;
    top: 0;
  }

  .summary .product__info {
    max-width: 100%;
  }

  .summary .product__swiper {
    height: 500px;
  }

  .summary .characteristics__holder {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .reviews__wrap {
    flex-direction: column-reverse;
  }

  .reviews__wrap .reviews__modal {
    max-width: 100%;
    position: relative;
    top: unset;
  }

  .review-card.video-review .review__info {
    flex-wrap: wrap;
  }

  .columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects__holder {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 850px) {
  .questions-block .questions__wrap {
    flex-direction: column;
  }

  .questions-block .questions__text {
    max-width: 100%;
  }
}

@media (max-width: 800px) {
  .columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sales__holder {
    display: flex;
    flex-direction: column;
  }

  #footer .footer__lower {
    flex-direction: column;
  }

  .service-banner .advants__holder {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .news__wrap .news__text {
    padding: var(--min-30);
  }

  .category-banner .category__wrap {
    flex-direction: column;
  }

  .category-banner .category__img {
    max-height: 300px;
  }

  .plans-block .plan__img {
    height: 300px;
  }

  .woocommerce-Tabs-panel .characteristics__holder {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .seo-block .seo__wrap {
    flex-direction: column;
  }

  .seo-block .seo__img {
    max-height: 300px;
    align-items: center;
  }

  .seo-block .seo__text {
    max-height: 300px;
  }
}

@media (max-width: 600px) {
  #footer .footer__upper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .error__wrap {
    padding-top: 120px;
  }

  .services__holder {
    display: flex;
    flex-direction: column;
  }

  .service-banner .advants__holder {
    display: flex;
    flex-direction: column;
  }

  .service-banner .service__info {
    padding: var(--min-20);
  }

  .service-banner .service__btn {
    margin-top: 20px;
  }

  .product-card .product__gallery .swiper {
    /* height: 180px; */
  }

  .summary .product__swiper {
    height: 300px;
  }

  .summary .swiper_thumbnail {
    height: calc(300px - 70px);
    width: 70px;
  }

  .summary .swiper-btn {
    left: 25px;
  }

  .summary .characteristics__holder {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  #header .logo__holder {
    /* max-width: 130px;
      /* height: fit-content; */
  }

  #header .header__wrap {
    padding: 0;
  }

  #header .header__contacts {
    display: grid;
    grid-template-columns: 1fr 40px;
    grid-template-rows: repeat(2, minmax(40px, 1fr));
    gap: 0 10px;
  }

  #header .phones__holder {
    align-self: end;
  }

  #header .header__soc {
    justify-content: end;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  #header .header__soc .soc__item {
    height: 30px;
    width: 30px;
  }

  #header .burger {
    grid-row: 1 / 3;
  }

  .fancybox__slide.has-rutube iframe {
    width: 90vw;
  }

  .reviews__wrap .archive__holder {
    display: flex;
    flex-direction: column;
  }

  .columns-3 {
    display: flex;
    flex-direction: column;
  }

  .project-card {
    min-height: 300px;
  }

  .project-card .tag,
  .project-card .project__date {
    padding: 8px;
  }

  .form {
    gap: 10px;
  }

  .theme-modal .subtitle {
    margin-bottom: 15px;
  }

  input {
    padding: 12px 15px;
  }

  .header__calculator {
    padding: 10px 15px !important;
  }

  .header__calculator {
    width: fit-content;
  }

  .service-card .service__img {
    max-width: 100%;
    max-height: 200px;
  }
}

@media (max-width: 530px) {
  .catalog__wrapper .columns-2 {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .columns-4 {
    display: flex;
    flex-direction: column;
  }

  /* .product-card .product__gallery {
      max-width: calc(100vw - 30px);
    } */

  .questions-block .worker__img {
    height: 70px;
    width: 70px;
  }

  .questions-block .worker__holder {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .sidebar {
    max-width: calc(100vw - 30px);
    padding: 15px;
    border-radius: 5px;
  }
}

@media (max-width: 450px) {
  .btn {
    width: 100%;
  }

  .header__calculator {
    width: fit-content;
  }

  .shop-wrapper .products {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .category-card .category__img {
    max-height: 300px;
  }
}

@media (max-width: 400px) {
  .summary .product__swiper {
    height: 200px;
  }

  .summary .swiper_thumbnail {
    height: calc(200px - 70px);
    width: 60px;
  }

  .summary .advant__item {
    flex-direction: column;
  }

  .summary .advant__icon {
    height: 40px;
    width: 40px;
  }

  .summary .advant__icon img {
    height: 20px;
    width: 20px;
  }

  .summary .char__item {
    flex-direction: column;
  }
}

@media (max-width: 350px) {
  .woocommerce-Tabs-panel .attribute__holder {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 600px) {
}

/* .seo-block .text__holder *:nth-child(n+5) {
    display: none;
} */

.archive-projects .cats__holder {
  display: none;
}

.category-banner {
  display: none !important;
}

#modal-catalog .soc__item {
  width: 65px;
  height: 65px;
}
@media (max-width: 480px) {
  #modal-catalog .soc__item {
    width: 50px;
    height: 50px;
  }
}

#header.transparent .work-time__text {
	color: var(--head-secondary);
}
.work-time__text {
	color: var(--head-primary);
}
@media (max-width: 666px) {
  .work-time__holder {
		display: none;
	}
}
/*# sourceMappingURL=main.css.map */

li#tab-title-characteristics{
	display: none;
}
