/*============= ALIGNES ===============*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --white: #fff;
  --background-light: #f6f6f6;
  --primary: #141414;
  --primary-hover: #303030;
  --main-text: #1a1a1a;
  --light-text-1: #a8a8a8;
  --light-text-2: #747474;
  --stroke-1: #434343;
  --stroke-2: #b6b6b6;
  --elements-1: #e8e8e8;

  --gradient: linear-gradient(0deg, #fff 0%, #787878 100%);

  --font-family: "Manrope", sans-serif;
  --second-family: "Raleway", sans-serif;

  --transition: all .3s ease-in-out;
}


.text-center {
  width: 100%;
  text-align: center;
}
.form-card {
  max-width: 470px !important;
}

.product-form input[type="text"] {
  border: unset !important;
  text-align: right !important;
}

.error-message,
.success-message {
  display: none !important;
}

::selection {
  background-color: var(--elements-1);
  color: var(--primary);
}

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

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

::-webkit-scrollbar-thumb {
  background-color: var(--stroke-1);
  border-radius: 10px;
}

.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);
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--white);
  /*max-width: 1920px;*/
  overflow-x: hidden;
  width: 100vw;
  margin: 0 auto;
  width: auto;
  /*-webkit-box-shadow: 0 0 20px 5px #747474;*/
  /*box-shadow: 0 0 20px 5px #747474;*/
}

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 */
}

.circle {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--gradient);
}

a {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--light-text-2);
  transition: var(--transition);
  text-decoration: none;
}

ul li {
  list-style-position: inside;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text);
}

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

ol li {
  list-style-position: inside;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text);
}

h1,
.page-title {
  font-weight: 600;
  /* font-size: 48px; */
  font-size: clamp(1.875rem, 1.466rem + 2.05vw, 3rem);
  line-height: 100%;
}

h2,
.h2 {
  font-weight: 600;
  /* font-size: 36px; */
  font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
  line-height: 110%;
}

h2 span,
.h2 span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--light-text-2);
}

h3,
.h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
}

h4,
.h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
}

h5,
.h5 {
  font-weight: 600;
  /* font-size: 18px; */
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 120%;
}

.sale {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
}

.price {
  font-weight: 700;
  /* font-size: 22px; */
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
  line-height: 120%;
  color: var(--main-text);
}

.price-card {
  font-weight: 600;
  /* font-size: 40px; */
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  line-height: 110%;
  color: var(--main-text);
}

.old-price {
  font-weight: 500;
  /* font-size: 18px; */
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 100%;
  text-decoration: line-through;
  color: var(--light-text-2);
}

p,
.p16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text);
}

.p14 {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}

.p16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

.p18 {
  font-weight: 400;
  /* font-size: 18px; */
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 120%;
}

.p20 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}

.p16up {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
}

.p14upp {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
}

.p16m {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
}

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;
  padding-bottom: 10px;
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 120%;
  color: var(--elements-1);
  flex-wrap: wrap;
}

.breadcrumbs span {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--light-text-2);
  transition: var(--transition);
}

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

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

.block {
  padding: clamp(1.25rem, 0.568rem + 3.41vw, 3.125rem) 0;
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 30px; */
  gap: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}

.columns-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  list-style: none;
}

.columns-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}

.title {
  margin-bottom: clamp(1.25rem, 0.568rem + 3.41vw, 3.125rem);
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  padding: 10px 30px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background-color: var(--primary);
  height: 50px;
  font-weight: 500;
  /* font-size: 16px; */
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.btn.invert {
  background: var(--white);
  color: var(--main-text);
}

.btn.transparent {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text);
  border: 1px solid var(--stroke-2);
  background: transparent;
  text-transform: none;
}

.btn.black {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--white);
  text-transform: none;
  background-color: transparent;
}

.btn.black.black-1 {
  border: 1px solid var(--stroke-1);
}

.btn.black-2 {
  border: 1px solid var(--white);
}

#main,
#primary {
  min-height: 83vh;
  width: 100vw;
}

/* #primary {
  overflow-x: hidden;
} */

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

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

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

.soc__item {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: var(--elements-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.soc__item.colored {
  background: #2bb741;
}

.soc__item.colored svg path {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  fill: var(--white);
}

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

.soc__holder {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone,
.email,
.price {
  white-space: nowrap;
}

/* .product img {
  width: 100%;
  height: 100%;
  max-height: 270px;
  object-fit: cover;
} */

.heading {
  border-top: 1px solid var(--elements-1);
  padding: 15px 0px 0px 0px;
  display: flex;
  /* align-items: center; */
  align-items: start;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap-reverse;
}

.descriptor {
  position: relative;
  padding-left: 18px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--light-text-2);
}

.descriptor::before {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--gradient);
  top: 4px;
  left: 0px;
}

/*============ HEADER =================*/
#header {
  position: sticky;
  top: 0;
  z-index: 999;
}

#header .header__upper {
  padding: 15px 0;
  background: var(--primary);
  transition: var(--transition);
}

#header.painted .header__upper,
#header.light .header__upper {
  background: var(--background-light);
}

#header .header__upper .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

#header .header__right {
  display: flex;
  gap: 50px;
}

#header .soc__text {
  max-width: 130px;
  width: 100%;
}

#header .header__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

#header .phones__holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: end;
}

#header .phone {
  color: var(--white);
  font-size: clamp(0.75rem, 0.568rem + 0.91vw, 1.25rem);
}

#header .header__lower {
  background: #242424;
  padding: 15px 0;
}

#header .header__text {
  color: var(--light-text-1);
  transition: var(--transition);
}

#header.painted .header__text,
#header.light .header__text {
  color: var(--light-text-2);
}

#header .header__callback {
  max-width: 195px;
  width: 100%;
}

#header.painted .header__callback,
#header.light .header__callback {
  border: 1px solid var(--stroke-2);
  background-color: transparent;
  color: var(--main-text);
}

.sitename {
  font-weight: 400;
  /* font-size: 20px; */
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white);
  transform-origin: var(--transition);
}

#header #mobile-mnu .sitename {
  color: var(--white);
}

/* #header #mobile-mnu .soc__item {
  background-color: var(--elements-1);
} */

#header #mobile-mnu .soc__item svg path {
  filter: none;
}

#header.painted .sitename,
#header.light .sitename {
  color: var(--primary);
}

#header.painted .soc__item,
#header.light .soc__item {
  background: #2bb741;
}

#header.painted .soc__item svg path,
#header.light .soc__item svg path {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  fill: var(--white);
}

#header .phones__text {
  position: relative;
}

#header.painted .phone,
#header.light .phone {
  color: var(--primary);
}

#header .phones__text::before {
  content: '';
  position: absolute;
  background-color: #2EC634;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  left: -16px;
  top: 4px;
}

#header .header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem);
}

#header .nav-menu-element a {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--white);
}

#header .nav-menu-element.has-childs {
  position: relative;
  margin-right: 17px;
}

#header .nav-menu-element.has-childs::before {
  content: '';
  position: absolute;
  transition: var(--transition);
  height: 12px;
  width: 12px;
  top: 4px;
  mask: url(../images/arrow.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--white);
  right: -18px;
  transition: var(--transition);
}

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

.sub-menu {
  display: none;
}

#header .sub-menu {
  position: absolute;
  top: 180%;
  width: 410px;
  height: max-content;
  left: 0;
  opacity: 0;
  /* transform: translate(-25%, -30%); */
  transition: var(--transition);
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  background-color: var(--white);
  display: grid;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

#header .sub-menu .nav-menu-element a {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text);
}

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

#header.painted .burger.open_menu span,
#header.light .burger.open_menu span {
  background-color: var(--primary);
}

#header .burger.open_menu span {
  background-color: var(--background-light);
  width: 23px;
  height: 2px;
  transition: var(--transition);
}

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

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

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

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

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

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

#header #mobile-mnu .sitename {
  font-size: 20px;
  margin-bottom: 30px;
}

#header .mobile__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  margin-bottom: 30px;
}

#header #mobile-mnu .phone,
#header #mobile-mnu .email {
  font-size: 16px;
  color: var(--white);
  text-align: left;
}

#header .mobile__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

#header #mobile-mnu .phones__holder {
  align-items: start;
}

#header .address p {
  color: var(--light-text-1);
  margin-top: 20px;
}

/* #header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
} */

/* #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 .logo__holder img {
  max-height: 60px;
} */

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

/* #header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
} */

/* #header #mobile-mnu .menuTop li a:hover {
  color: #D12D26;
}

#header #mobile-mnu .menuTop li.active a {
  color: #D12D26;
} */

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

#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
} */

/* #header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
} */

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

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
 */
/* #header #mobile-mnu .email__holder .email__item:hover {
  color: #D12D26;
} */

#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;
  margin-bottom: 20px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
} */

/* #header #mobile-mnu .phones__holder .phone__item:hover {
  color: #D12D26;
}
 */
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .soc__holder {
  /* display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap; */
  margin-top: 20px;
}

/* #header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #3A899A;
  transition: var(--transition);
}
 */
/* #header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: #609FA8;
} */

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

/*============ FOOTER ===============*/
#footer {
  background: var(--primary);
}

#footer .footer__lower {
  padding-top: 15px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#footer .footer__privacy {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-decoration: underline;
  color: var(--light-text-2);
}

#footer .grampus__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light-text-2);
}

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

#footer .copyright {
  color: var(--light-text-2);
}

#footer .footer__upper {
  padding-bottom: clamp(2.5rem, 1.591rem + 4.55vw, 5rem);
  padding-top: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem);
}

#footer .sitename {
  display: flex;
  font-size: 20px;
  margin-bottom: 20px;
}

#footer .footer__upper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

#footer .requisites__holder p {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--light-text-2);
}

#footer .footer__menu {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 30px;
  max-width: 370px;
  width: 100%;
  height: fit-content;
  margin-left: auto;
}

#footer .footer__menu .nav-menu-element a {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--white);
}

#footer .footer__address {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#footer .address {
  max-width: 200px;
  width: 100%;
}

#footer .address p {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--white);
}

#footer .footer__callback {}

#footer .phone {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 5px;
  display: flex;
}

#footer .schedule {
  color: var(--light-text-1);
  margin-bottom: 20px;
}

#footer .footer__btn {
  max-width: 195px;
  width: 100%;
}

/*================ ADVANTAGES BLOCK =============*/

.advantages-block {
  padding-top: 30px;
}

.advantages-block .advant {
  background: #242424;
  border-radius: 20px;
  padding: 20px;
  /* padding-top: 60px; */
  padding-top: clamp(1.875rem, 1.193rem + 3.41vw, 3.75rem);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.advantages-block .circle {
  position: absolute;
  top: 20px;
  left: 20px;
}

.advantages-block .advant__name {
  margin-bottom: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  text-align: center;
  color: var(--white);
}

.advantages-block .advant__descr {
  color: var(--light-text-1);
  text-align: center;
}

/* ============= PRIVACY PAGE =========== */

.page-privacy .content {
  padding-bottom: clamp(1.875rem, 1.193rem + 3.41vw, 3.75rem);
}

.page-privacy h2 {
  margin: 20px 0;
  margin-top: 30px;
}

.page-privacy p,
.page-privacy figure {
  margin-bottom: 15px;
}

/* ============= ERROR PAGE =========== */

.error-page .current-item span {
  color: var(--main-text);
}

.error-page .error__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-top: 50px;
}

.error-page .error__img {
  max-width: 466px;
  width: 100%;
}

.error-page .error__text {
  max-width: 570px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.error-page .error__subtitle {
  color: var(--light-text-2);
}

.error-page .error__btn {
  max-width: 163px;
  width: 100%;
}

/* ============== FORM BLOCK ============= */

.form-block {
  margin-top: clamp(1.25rem, 0.568rem + 3.41vw, 3.125rem);
  background: var(--background-light);
  min-height: 500px;
  position: relative;
}

.form-block.dark {
  background: var(--primary);
  margin-bottom: clamp(1.25rem, 0.568rem + 3.41vw, 3.125rem);
  min-height: 450px;
}

.form-block .form__img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;

}

.form-block .form__img img {
  z-index: 1;
  position: relative;
}

.form-block .bg {
  position: absolute;
  background: var(--gradient);
  border-radius: 15px 0 0 15px;
  top: 45px;
  bottom: 45px;
  right: 0;
  width: 90%;
  z-index: 0;
}

.form-block.dark .bg {
  top: 20px;
  bottom: 20px;
}

.form-block.dark .bg {
  background: #242424;
}

.form-block .form__content {
  width: 50%;
  padding: 121px 0;
}

.form-block.dark .form__content {
  padding: 96px 0;
}

.form-block .form__title {
  color: var(--primary);
  font-size: clamp(1.5rem, 1rem + 2.5vw, 2.875rem);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}

.form-block.dark .form__title {
  color: var(--white);
}

.form-block .form__subtitle {
  color: var(--light-text-2);
  margin-bottom: 30px;
  max-width: 470px;
  width: 100%;
}

.form-block.dark .form__subtitle {
  color: var(--light-text-1);
}

.form-block .form__bottom {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  max-width: 433px;
  width: 100%;
}

.form-block .form__btn {
  max-width: 209px;
  width: 100%;
}

.form-block .soc__text {
  color: var(--light-text-1);
}

.form-block.dark .soc__text {
  color: var(--light-text-2);
}

/* ============= ARCHIVE SERVICES =========== */

.services__archive {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  margin-top: 30px;
  margin-bottom: clamp(3.125rem, 1.989rem + 5.68vw, 6.25rem);
}

.services__archive .line {
  width: 100%;
  height: 1px;
  background-color: var(--elements-1);
}

.services__archive .service_wrap {
  display: flex;
  gap: 30px;
}

.services__archive .service__img {
  border-radius: 10px;
  overflow: hidden;
  max-width: 370px;
  width: 100%;
  min-width: 250px;
  max-height: 300px;
}

.services__archive .service__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 770px;
  width: 100%;
  justify-content: space-between;
  max-width: 670px;
  width: 100%;
}

.services__archive .service__title {
  margin-bottom: 20px;

}

.services__archive .service__descr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 570px;
  width: 100%;
}

.services__archive .service__descr p {
  color: var(--light-text-2);
}

.services__archive .service__btn {
  max-width: 189px;
  width: 100%;
}

.archive__hero {
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.archive__hero .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.archive__hero .page-title {
  color: var(--white);
  max-width: 570px;
  width: 100%;
  margin-top: 107px;
  margin-bottom: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
}

.archive__hero .breadcrumbs span {
  color: var(--light-text-1);
}

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

/* ============= ARCHIVE PROMOS =========== */

.archive-promos .promos__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}

.archive-promos .archive-promos__btn {
  max-width: 203px;
  width: 100%;
  margin: auto;
  margin-top: 30px;
  height: 40px;
  margin-bottom: clamp(3.125rem, 1.989rem + 5.68vw, 6.25rem);
}

.archive-promos .archive-promos__btn.hidden {
  display: none;
}

.archive-promos .promo__holder.hidden {
  display: none;
}

/* ============= PROMO CARD =========== */

.sale-card {
  position: relative;
  border-radius: 20px;
  padding: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.sale-card .sale__bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.sale-card .overflow {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  background: linear-gradient(323deg, rgba(24, 24, 24, 0) 0%, rgba(24, 24, 24, 0.9) 100%);
}

.sale-card .sale__upper {
  position: relative;
  z-index: 2;
}

.sale-card .sale__btn {
  position: relative;
  z-index: 2;
  max-width: 228px;
  width: 100%;
  white-space: nowrap;
}

.sale-card .sale__title {
  color: var(--white);
  margin-bottom: 10px;
  max-width: 340px;
  width: 100%;
}

.sale-card .sale__descr {
  max-width: 200px;
  width: 100%;
  color: var(--white);
}

/* ============== INFOGRAPHICS PART ============= */

.infographics__wrapper {
  display: flex;
  border-top: 1px solid var(--elements-1);
  border-radius: 15px 0 0 0;
  margin-top: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
  gap: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}

.infographics__wrapper .info__item {
  border-left: 1px solid var(--elements-1);
  border-radius: 15px 0 0 0;
  padding: 20px 0px 20px 20px;
  height: 120px;
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.infographics__wrapper .info__num {
  font-size: clamp(3.125rem, 2.443rem + 3.41vw, 5rem);
}

.infographics__wrapper .info__descr {
  padding: 0px 0px 5px 0px;
  margin-top: auto;
}

/* ============= REVIEW CARD =========== */

.text-review {
  background: var(--background-light);
  border-radius: 15px;
  padding: 20px;
  /* max-height: 370px;
  height: 100%; */
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  height: 370px;
  min-width: 200px;
}

.text-review .review__heading {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.text-review .review__img {
  height: clamp(3.125rem, 2.443rem + 3.41vw, 5rem);
  width: clamp(3.125rem, 2.443rem + 3.41vw, 5rem);
  border-radius: 50%;
  overflow: hidden;
}

.text-review .author__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.text-review .review__auto {
  color: var(--light-text-2);
}

.see-more-desc {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  cursor: pointer;
  display: none;
}

.see-more-desc.opened {
  display: flex;
  height: fit-content;
}

.see-more-desc .p16 {
  color: var(--light-text-2);
  transition: var(--transition);
}

/* .text-review .review__text {
  overflow: hidden;
  max-height: 120px;
  height: 100%;
}

.text-review .p16 {
  overflow: hidden;
  max-height: 120px;
  height: 100%;
}

.text-review .p16 {
  overflow: visible;
}
 */

.review-card .review__text .p16 {
  max-height: 115px;
  height: 100%;
  overflow: hidden;
}

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

.archive__reviews-holder {
  margin-bottom: clamp(1.25rem, 0.568rem + 3.41vw, 3.125rem);
}

.video-review {
  border-radius: 50%;
  aspect-ratio: 1/1;
  /* height: 100%; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--primary);
  cursor: pointer;
}

.video-review .play {
  position: absolute;
  transition: var(--transition);
  height: 100%;
  width: 100%;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.video-review .item {
  height: 100%;
  width: 100%;
}

.video-review .review__preview {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  z-index: 0;
}

.video-review {
  overflow: hidden;
}

.video-review iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.fancybox__content.review-card {
  border-radius: 15px !important;
  height: fit-content !important;
  max-width: 500px !important;
  /*  width: 100% !important; */
  padding: 20px !important;
  min-height: unset !important;
}

.fancybox__content.review-card .review__text .p16 {
  max-height: 100% !important;

}

/* ============= OTHER =========== */

.fancybox__content.review-card .see-more-desc {
  display: none;
}

.fancybox__content>.f-button.is-close-btn {
  top: 20px !important;
  right: 20px !important;
  --f-button-color: var(--stroke-2) !important;
  --f-button-hover-color: var(--main-text) !important;
  --f-button-active-bg: transparent !important;
  --f-button-outline-color: transparent !important;
  --f-button-bg: transparent !important;
}

.fancybox__content {
  padding: 10px !important;
  width: fit-content !important;
  max-width: 70vw !important;
  /* width: 100% !important; */
}

.fancybox__content iframe {
  aspect-ratio: 9/16;
  max-width: 70vw;
  width: 100%;
}

.input__holder {
  box-sizing: border-box;
  /*  border: 1px solid var(--elements-1); */
  border-radius: 10px;
  width: 100%;
  position: relative;
  transition: var(--transition);
  font-size: 16px;
}

.input {
  border: 1px solid var(--elements-1);
  transition: var(--transition);
  box-sizing: border-box;
  /*   border: none; */
  border-radius: 10px;
  background: none;
  width: 100%;
  padding: 10px 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--light-text-1);
  height: 50px;
  cursor: pointer;
  background-color: var(--white);
}

.input:hover,
.input_filled,
.input:focus {
  border: 1px solid var(--primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text);
}

.input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--light-text-1);
}

.input:focus {
  outline: none;

}

.label {
  box-sizing: border-box;
  border: none;
  background: none;
  width: 100%;
  position: absolute;
  z-index: 11;
  padding-left: 0px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  color: var(--light-text-1);
  transition: var(--transition);
  /* background-color: var(--white); */
  width: calc(100% - 40px);
  cursor: pointer;
}


.input_filled+.label,
.input:focus+.label,
.input:hover+.label {
  top: 0;
  margin-top: 13.5px;
  font-size: 10px;
}

.input.error {
  border: 1px solid red;
}

.form-privacy {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--light-text-2);
}

.form-privacy a {
  text-decoration: underline;
}


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

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

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

.theme-modal {
  height: fit-content;
  width: 100%;
  max-width: 500px !important;
  max-height: 90vh;
  /* max-width: 90vw; */
  background-color: var(--white);
  position: fixed;
  transition: var(--transition);
  z-index: 9999;
  display: none;
  padding: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem) !important;
  padding-top: 50px !important;
  border-radius: 20px !important;
}

.theme-modal .title {
  text-align: center;
  margin-bottom: 10px;
  color: var(--primary);
}

.theme-modal .subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: var(--light-text-2);
}

/* .form #request {
  display: none;
} */

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

.theme-modal .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#modal-callback .form-privacy {
  margin-top: 10px;
}

.success-modal .title,
.error-modal .title {
  margin-bottom: 30px;
}

.success-modal .subtitle,
.error-modal .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: var(--main-text);
  margin-bottom: 20px;

}


/* ============= PAGINATION =========== */

.pagination {
  margin-top: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

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

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--light-text-2);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  list-style: none;
}

.woocommerce-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

#main > div > nav {
  display: none !important;
}

.woocommerce-pagination ul.page-numbers {
  display: flex;
  gap: 5px;
  width: auto;
  transform: translateX(-15%);
}

.archive__wrapper .catalog__wrapper {
  display: none;
}

.tax-product_cat .shop-layout{
  display: none !important;
}

.open-categories {
  display: none;
}

.woocommerce-pagination .prev,
.woocommerce-pagination .next {
  background-color: transparent !important;
  border: none !important;
}

.woocommerce-pagination .btn-prev {
  margin-right: 40px;
}

.woocommerce-pagination .btn-next {
  margin-left: 40px;
}

.page-numbers.current {
  border: 1px solid var(--stroke-1);
  color: var(--main-text);
  cursor: default;
}

.pagination-btn .btn-prev {
  margin-right: 40px;
}

.pagination-btn .btn-next {
  margin-left: 40px;
}

.custom__categories-wrapper {
  gap: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem) clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}

.archive .custom__categories-wrapper {
  margin-bottom: clamp(1.875rem, 0.284rem + 7.95vw, 6.25rem);
}

/* ============= CATEGORY CARD =========== */

.category-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 40px;
  cursor: pointer;
  position: relative;
}

.category-card .car__link {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.category-card .card__lower {
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background: var(--background-light);
  transition: var(--transition);
}

.category-card .car__info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-card .brand__logo {
  height: 20px;
  width: auto;
}

.category-card .brand__name {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--main-text);
}

.category-card .card__upper {
  background: var(--background-light);
  transition: var(--transition);
  border-radius: 20px;
  position: relative;
  height: 150px;
}

.category-card .car__img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
  /*  margin: 0 15px; */
  max-height: 150px;
  height: 100%;
  width: 100%;
}

/* ============= SWIPER NAV =========== */

.swiper__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
}

.swiper__buttons {
  display: flex;
  gap: 10px;
}

.swiper-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--stroke-2);
  transition: var(--transition);
  cursor: pointer;
  background-color: var(--white);
}

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

.swiper-button-disabled,
.swiper-button-disabled:hover {
  background-color: var(--background-light);
  border: 1px solid var(--background-light);
  cursor: default;
}

.swiper-button-disabled svg path,
.swiper-button-disabled:hover svg path {
  fill: var(--light-text-2);
}

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


/* ============= GALLERY BLOCK =========== */

.gallery-block {}

.gallery-block .gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;

}

.gallery-block .gallery__item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  max-height: 226px;
  height: 100%;
}

.gallery-block .gallery__item:nth-child(2),
.gallery-block .gallery__item:nth-child(7),
.gallery-block .gallery__item:nth-child(9) {
  grid-column: 2 span;
}

.gallery-block .gallery__item::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.4);
  /* opacity: 0; */
  transition: var(--transition);
}

.gallery-block .gallery__item.hidden {
  display: none;
}

.gallery-block .gallery__item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-block .item__name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  transition: var(--transition);
  /* opacity: 0; */
  text-align: center;
  height: fit-content;
  width: 70%;
}

.gallery-block .gallery__btn {
  margin: auto;
  margin-top: 30px;
  max-width: 168px;
  width: 100%;
  height: 40px;
}

.gallery-block .gallery__btn.hidden {
  display: none;
}

/* ============= SUBCAT CARD =========== */

.custom-subcats {
  margin-bottom: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
}

.subcat-card {
  position: relative;
  border-radius: 15px;
  padding: 10px;
  background: var(--background-light);
  display: flex;
  gap: 10px;
  transition: var(--transition);
}

.subcat-card .subcat__img {
  border-radius: 10px;
  width: 76px;
  overflow: hidden;
}

.subcat-card .arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.subcat-card .subcat-link {
  color: var(--main-text);
  max-width: 149px;
  width: 100%;
}

.subcat-card .subcat-link::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 2;
}

.subcat-card .arrow {
  transition: var(--transition);
}

/* ============= BRAND CARD =========== */

.brand-card {
  height: 170px;
  border-radius: 10px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 15px;
  padding-top: 50px;
  position: relative;
  width: 100%;
}

.brand-card .brand__img {
  height: 50px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  transition: var(--transition);
  margin-bottom: 20px;
}

.brand-card .brand__title {
  color: var(--light-text-2);
  text-align: center;
  transition: var(--transition);
}

.brand-card .brand__link {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 10;
}

/* ============= WOOCOMMERCE =========== */

.open-filter {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 50%;
  transition: var(--transition);
  display: none;
}

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

.group-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text);
  position: relative;
  margin-left: 30px;
  cursor: pointer;
}

.group .group-label::before,
.request::before {
  content: "";
  position: absolute;
  cursor: pointer;
  top: -1px;
  left: -30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--stroke-2);
}

.group input:checked+.group-label::before,
.request input:checked+.request::before {
  border: 1px solid var(--primary);
}

.group input:checked+.group-label::after {
  content: "";
  position: absolute;
  cursor: pointer;
  top: 3px;
  left: -26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--primary);
}

.sidebar {
  max-width: 270px;
  width: 100%;
  flex-shrink: 0;
}

.sidebar-top {
  display: none;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
}

.request-holder input {
  display: none;
}

.filter-block-content:not(:first-child) {
  display: none;
}

.filter-block-toggler {
  transition: var(--transition);
}

.filter-block.is-opened .filter-block-toggler {
  transform: rotate(180deg);
}

.request-holder {
  margin-top: 20px;
}

.sidebar .buttons {
  margin-top: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
}

.sidebar-filter .filter-block .filter-block-content input[type="number"] {
  height: 40px;
  border: 1px solid var(--elements-1);
  border-radius: 10px;
  padding: 10px 15px;
  outline: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--light-text-1);
  width: 100%;
  transition: var(--transition);
}

.sidebar-filter .filter-block .filter-block-content input[type="number"]:hover,
.sidebar-filter .filter-block .filter-block-content input[type="number"]:focus {
  border: 1px solid var(--primary);
  color: var(--main-text);
}

.clear-filters {
  background: none;
  outline: none;
  border: none;
  text-align: center;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

.clear-filters p {
  transition: var(--transition);
  color: var(--light-text-2);
}

.woocommerce-products-header__title {
  margin-bottom: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem);
}

.catalog__wrapper {
  display: flex;
  gap: 30px;
  /* margin-bottom: clamp(3.125rem, 1.989rem + 5.68vw, 6.25rem); */
}

.products {
  list-style: none;
  width: 100%;
  gap: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem) clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}

.tax-product_cat .products {
  max-width: 870px;
  width: 100%;
  height: fit-content;


}



.woocommerce-loop-product__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: var(--main-text);
  text-transform: none;
}

.woocommerce-result-count {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--light-text-2);
}

.product-block .characteristics {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
}

.back {
  margin-top: 30px;
  width: fit-content;
}

.woocommerce-info {
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
}

.full-description {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem) 30px;
  padding-bottom: clamp(3.125rem, 1.989rem + 5.68vw, 6.25rem);
}

.full-description .characteristics {
  max-width: 570px;
  width: 100%;
}

.full-description .block__column {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem) 30px;
}

.charact__item {
  display: flex;
  align-items: center;
  gap: clamp(0.313rem, -0.256rem + 2.84vw, 1.875rem);
  width: 100%;
  padding: 15px 0;

  border-bottom: 1px solid var(--elements-1);
}

.charact__item:first-child {
  border-top: 1px solid var(--elements-1);
}

.block__title {
  margin-bottom: 20px;
  text-transform: none;
}

.charact__item.hidden {
  display: none;
}

.charact__name {
  text-transform: none;
  max-width: 170px;
  width: 100%;
}

.charact__val {
  text-transform: none;
}

.product__gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  max-width: 470px;
  width: 100%;
  position: relative;
  position: sticky;
  top: 150px;
}

.summary {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  margin-bottom: clamp(2.5rem, 1.364rem + 5.68vw, 5.625rem);
}

.product__swiper {
  width: 100%;
  height: 100%;
  border: 1px solid var(--elements-1);
  border-radius: 20px;
  overflow: hidden;
}

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

.product__swiper .loop {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  transition: var(--transition);
}

.product__swiper-nav .btn-prev {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 100;
}

.product__swiper-nav .btn-next {
  position: absolute;
  bottom: 30px;
  right: 0;
  z-index: 100;
}

.swiper_thumbnail {
  width: calc(100% - 50px);
  height: 74px;
}

.thumbnail__holder {
  height: 74px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

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

.product__swiper .image__holder {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
  max-width: 470px;
  max-height: 420px;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide-thumb-active img {
  transform: scale(1.1);
}

p.price {
  display: none;

}

.sumamry__btn {
  max-width: 294px;
  width: 100%;
  margin-top: 20px;
}

.price__holder {
  display: flex;
  gap: 20px;
  align-items: end;
}

.product__characteristics {
  max-width: 570px;
  width: 100%;
}

.summary .descr__holder {
  margin-bottom: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary .descr__holder p,
.summary .descr__holder ul li,
.summary .descr__holder ol li {
  text-transform: none;
}

.summary .descr__holder ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.summary .descr__holder ul li {
  position: relative;
  padding-left: 20px;
}

.summary .descr__holder ul li::before {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--gradient);
  top: 3px;
  left: 0;
}

.entry-title {
  display: none;
}

.home .promos-block {
  margin: 30px 0;
}

.tax__wrapper .promos-block {
  background-color: var(--white);
  padding-top: clamp(3.125rem, 1.989rem + 5.68vw, 6.25rem);
  margin: 0;
  padding-bottom: clamp(1.25rem, 0.568rem + 3.41vw, 3.125rem);
}

.product__content .promos-block {
  padding-top: 0;
}

.seo-block {
  padding-bottom: clamp(2.5rem, 1.591rem + 4.55vw, 5rem);
}

.seo-block .seo__wrapper {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}

.seo-block .image__holder {
  border-radius: 20px;
  overflow: hidden;
  min-width: 200px;
  max-width: 570px;
  width: 100%;
}

.seo-block .seo__title {
  margin-bottom: 30px;
}

.seo-block .text__holder {
  max-width: 570px;
  width: 100%;
  max-height: 500px;
  height: 100%;
  overflow-y: scroll;
  padding-right: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}

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

.seo-block .text__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seo-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-block ul li {
  position: relative;
  padding-left: 20px;
}

.seo-block ul li::before {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--gradient);
  top: 3px;
  left: 0;
}

.attributes__holder {
  text-transform: none;
  color: var(--light-text-2);
  padding-bottom: 20px;
  padding-top: 10px;
  margin-bottom: auto;
}

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

.additional__wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
}

.product {
}

.product-card {
  background: var(--background-light);
  border: 1px solid var(--background-light);
  transition: var(--transition);
  border-radius: 20px;
  overflow: hidden;
  /* max-width: 270px; */
  width: 100%;
  height: 100%;
  position: relative;
}

.product-card .tags__holder {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  z-index: 10;
}

.product-card .tags__holder .tag {
  background: var(--background-light);
  padding: 5px;
  border-radius: 10px;
  width: fit-content;
}

.product-card a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-title {
  margin-bottom: 20px;
}

.card__swiper .swiper-slide {
  width: 100% !important;
}

.card__characteristics {}

.card__swiper {
  width: 100%;
  /* max-height: 270px;
  height: 100%; */
  height: 270px;
  border-radius: 20px;
  overflow: hidden;
	flex-shrink:0;
}

.card__swiper .card__img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.swiper-product-pagination {
  z-index: 2;
  position: absolute;
  bottom: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: var(--white) !important;
  opacity: 0.4 !important;
  width: 30px !important;
  height: 4px !important;
  transition: var(--transition) !important;
  border-radius: 0 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
}

.card__descr {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* gap: 10px; */
}

.product-block {
  margin-bottom: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
}

.more-characteristics {
  margin-top: 15px;
  color: var(--light-text-2);
  cursor: pointer;
  text-decoration: underline;
  text-transform: none;
}

.charact__item.hidden {
  display: none;
}

.pagination__wrap {
  margin-top: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media(any-hover:hover) {

  .category-card:hover .card__upper,
  .category-card:hover .card__lower {
    background: var(--elements-1);
  }


  .more-characteristics:hover {
    color: var(--primary);
  }

  .subcat-card:hover {
    background: var(--primary);
  }

  .subcat-card:hover .subcat-link {
    color: var(--white);
  }

  .subcat-card:hover .arrow {
    transform: rotate(45deg);
  }

  .subcat-card:hover .arrow svg path {
    fill: var(--white);
  }

  .clear-filters p:hover {
    color: var(--main-text);
  }

  .gallery-block .gallery__item::before {
    opacity: 0;
  }


  .gallery-block .item__name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }

  .gallery-block .gallery__item:hover::before {
    opacity: 1;
  }

  .gallery-block .gallery__item:hover .item__name {
    opacity: 1;
  }

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

  .product-card:hover {
    border: 1px solid var(--elements-1);
    background-color: var(--white);
  }

  .brand-card:hover .brand__title {
    color: var(--primary);
  }

  .brand-card:hover .brand__img {
    transform: scale(1.1);
  }
}

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

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

@media(max-width: 950px) {
  .gallery-block .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 900px) {
  .product__gallery {
    max-width: 50%;
  }

  .sidebar {
    position: fixed;
    top: 130px;
    max-width: calc(100vw - 30px);
    width: 100%;
    transform: translateX(-900px);
    transition: var(--transition);
    z-index: 99;
    height: 80vh;
  }

  .sidebar .filters {
    max-height: 60vh;
    overflow-y: scroll;
    padding-right: 20px;
  }

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


  .sidebar-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
  }

  .open-filter {
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
  }
}

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

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

  .product__swiper .image__holder {
    max-width: 100%;
  }

  .product__characteristics {
    max-width: 100%;
  }
}

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

@media(max-width: 550px) {
  .gallery-block .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-block .gallery__item:nth-child(2),
  .gallery-block .gallery__item:nth-child(7),
  .gallery-block .gallery__item:nth-child(9) {
    grid-column: 1 span;
  }

  .gallery-block .gallery__item:nth-child(3),
  .gallery-block .gallery__item:nth-child(8) {
    grid-column: 2 span;
    width: 100%;
  }

  .gallery-block .gallery__item {
    height: 200px;
  }
}

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

  .brand-card {
    height: fit-content;
    padding-top: 30px;
  }

/*   .product-card a {
    height: fit-content;
  } */
}

@media(max-width: 450px) {
  .gallery-block .gallery__item {
    aspect-ratio: 1/1;
    height: unset;
  }

  .product__swiper {
    max-height: 250px;
  }

  .product__swiper .image__holder {
    max-height: 250px;
  }

}

/* ============= MEDIA QUERIES =========== */
@media(any-hover: hover) {
  .swiper-btn:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
  }

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

  .swiper-button-disabled,
  .swiper-button-disabled:hover {
    background-color: var(--background-light);
    border: 1px solid var(--background-light);
    cursor: default;
  }

  .swiper-button-disabled svg path,
  .swiper-button-disabled:hover svg path {
    fill: var(--light-text-2);
  }

  .pagination .page-numbers:hover {
    background-color: var(--background-light);
    /* color: var(--white); */
    border: 1px solid var(--background-light);
  }

  .woocommerce-pagination .page-numbers a:hover {
    background-color: var(--background-light);
    /* color: var(--white); */
    border: 1px solid var(--background-light);
  }

  .pagination-btn:hover {
    background-color: var(--main-text);
    color: var(--white);
    border: 1px solid var(--primary);
  }

  .pagination-btn:hover svg path {
    fill: var(--white);
  }

  .page-numbers.current:hover {
    border: 1px solid var(--stroke-1);
    color: var(--main-text);
    background-color: transparent;
  }

  .see-more-desc:hover .p16 {
    color: var(--main-text);
  }

  .see-more-desc:hover svg path {
    fill: var(--main-text);
  }

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

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

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

  .soc__item:hover svg path {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    fill: var(--white);
  }

  #header.painted .soc__item:hover,
  #header.light .soc__item:hover {
    background: var(--primary);
  }

  #header.painted .phone:hover,
  #header.light .phone:hover {
    color: var(--light-text-1);
  }

  #header.painted .header__callback:hover,
  #header.light .header__callback:hover {
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
  }

  .btn.invert:hover {
    background: var(--elements-1);
    color: var(--primary);
  }

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

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

  .btn.black:hover {
    background: var(--white);
    color: var(--main-text);
    border: 1px solid var(--white);
  }

  #header .nav-menu-element.has-childs:hover .sub-menu {
    opacity: 1;
    right: 10%;
    /* transform: translate(-18%, 28px); */
    visibility: visible;
    z-index: 100;
  }

  #header .nav-menu-element.has-childs:hover::before {
    transform: rotate(-180deg);
    background-color: var(--light-text-1);
  }

  #header .phone:hover {
    color: var(--light-text-1);
  }

  #header .nav-menu-element a:hover {
    color: var(--light-text-1);
  }

  #header .sub-menu .nav-menu-element a:hover {
    color: var(--light-text-2);
  }

  #footer .footer__privacy:hover {
    color: var(--white);
  }

  #footer .grampus__link:hover {
    color: var(--white);
  }

  #footer .footer__menu .nav-menu-element a:hover {
    color: var(--light-text-1);
  }

  #footer .phone:hover {
    color: var(--light-text-1);
  }

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

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

  .sitename:hover {
    color: white;
  }

  .video-review .play {
    opacity: 0;
  }

  .video-review:hover .play {
    opacity: 1;
  }

  .product__swiper:hover .loop {
    opacity: 1;

  }

  .product__swiper .loop {
    opacity: 0;
  }
}

@media(max-width: 1100px) {
  #footer .footer__upper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  #footer .footer__menu {
    margin-left: 0;
  }
}

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

@media(max-width: 940px) {
  .form-block .form__img {
    position: relative;
    padding-left: 20%;
    width: 100%;
  }

  .form-block .form__content,
  .form-block.dark .form__content {
    width: 100%;
    padding: 30px 0;
  }
}

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


  #footer .address {
    max-width: 100%;
  }

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

  .infographics__wrapper .info__item {
    flex-direction: column;
    height: fit-content;
  }

  .infographics__wrapper .info__descr {
    text-align: center;
  }
}

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

  #header .header__right {
    gap: 20px;
  }

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

  .seo-block .seo__wrapper {
    flex-direction: column;
  }

  .seo-block .text__holder {
    max-width: 100%;
  }

  .seo-block .image__holder {
    max-width: 100%;
    max-height: 250px;
  }
}

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

  .infographics__wrapper {
    flex-direction: column;
    border-left: 1px solid var(--elements-1);
  }

  .infographics__wrapper .info__item {
    border-top: 1px solid var(--elements-1);
    flex-direction: row;
    justify-content: center;
  }

  .infographics__wrapper .info__descr {
    margin-top: unset;
  }
}

@media(max-width: 650px) {
  .archive-promos .promos__wrapper {
    grid-template-columns: 1fr;
  }

  .full-description {
    grid-template-columns: 1fr;
  }

}

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

  #header .header__soc {
    display: none;
  }

  #header .phones__text {
    display: none;
  }

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

  .columns-3 {
    grid-template-columns: 1fr;
  }

  .services__archive .service_wrap {
    flex-direction: column;
    gap: 20px;
  }

  .services__archive .service__img {
    max-width: 100%;
    max-height: 250px;
  }

  .archive__hero {
    background-position: 65% 0;
  }

  .review-card {
    height: 100%;
    width: calc(100vw - 30px);
  }

  .sidebar {
    top: 70px;
  }

  #primary,
  #main {
    overflow-x: hidden;
  }

  .gallery-block .item__name {
    width: calc(100% - 20px);
  }

  .pagination__wrapper {
    flex-direction: column;
    align-items: start;
  }

  .woocommerce-pagination ul.page-numbers {
    transform: unset;
  }

  .woocommerce-pagination {
    width: 100%;
  }
}

@media(max-width: 500px) {
  #header .header__contacts {
    gap: 10px;
  }

  #header .header__upper .container {
    gap: 20px;
  }

  #footer .footer__upper {
    grid-template-columns: 1fr;
  }

  #footer .footer__btn {
    max-width: 100%;
  }

  .services__archive .service__btn {
    max-width: 100%;
  }

  .infographics__wrapper .info__item {
    flex-direction: column;
  }

  .infographics__wrapper {
    border-left: none;
  }

  .tax-product_cat .products {
    grid-template-columns: 1fr;
  }

}

@media(max-width: 450px) {
  .form-block .form__bottom {
    flex-direction: column;
    align-items: end;
  }

  .form-block .form__btn {
    max-width: 100%;
  }
}

@media(max-width: 400px) {
  .columns-4 {
    grid-template-columns: 1fr;
  }
}

@media(min-width: 1921px) {
  .form-block .form__img img {
    right: -15%;
  }
}

/* Стили для блока с датами на странице товара */
.product_dates {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: normal;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}
.product_dates p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/*# sourceMappingURL=main.css.map */