@charset "UTF-8";
/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
/*============= COLORS ===============*/
:root {
  --card: #ffffff;
  --bgLight: #fbfbfd;
  --bgDark: #f2f2f2;
  --stroke: #eaeaea;
  --primary: #644cff;
  --hover: #7b67ff;
  --head: #1d1d1f;
  --text: #6e6e73;
}

/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

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

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

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

body {
  background-color: var(--card);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}
body::before {
  content: "Загрузка...";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 36, 36, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  pointer-events: none;
  color: var(--card);
  opacity: 0;
  z-index: 999;
  transition: opacity 0.4s ease-out;
}
body.loading::before {
  pointer-events: all;
  opacity: 1;
}

a {
  text-decoration: none;
  color: #121212;
  transition: all 0.4s ease-out;
}
a:hover {
  color: var(--primary);
}

ul li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}
ul li::marker {
  color: #1f2f47;
}

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

p {
  margin-bottom: 15px;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  font-size: clamp(26px, 0.009375 * 100vw + 23px, 41px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: var(--head);
  margin-bottom: 40px;
}

h1.page-title.not-found {
  margin-top: 20px;
}

h1.product_title {
  color: var(--head);
  margin-bottom: 40px;
}

h2 {
  font-size: clamp(22px, 0.00875 * 100vw + 19.2px, 36px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
h2.title {
  margin-bottom: 40px;
}
h2.title.extend {
  font-size: clamp(25px, 0.015625 * 100vw + 20px, 50px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

h3 {
  font-size: clamp(20px, 0.00625 * 100vw + 18px, 30px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

h4 {
  font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

h5 {
  font-size: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

h6 {
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.desc-content p {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin-bottom: 15px;
}
.desc-content p:last-child {
  margin-bottom: 0;
}
.desc-content ul {
  margin-bottom: 15px;
  list-style: none;
}
.desc-content ul li {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}
.desc-content ul li strong {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--primary);
}
.desc-content ul li:last-child {
  margin-bottom: 0;
}
.desc-content ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 100%;
}
.desc-content ol {
  margin-bottom: 15px;
}
.desc-content ol li {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin-bottom: 15px;
}
.desc-content ol li strong {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--primary);
}
.desc-content ol li::marker {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
}
.desc-content ol li:last-child {
  margin-bottom: 0;
}
.desc-content.p3 p {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 20px;
}
.desc-content.p3 ul li {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 5px;
}
.desc-content.p3 ul li strong {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--primary);
}
.desc-content.p3 ul li::before {
  width: 6px;
  height: 6px;
  top: 7.5px;
}
.desc-content.p3 ol li {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 5px;
}
.desc-content.p3 ol li strong {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--primary);
}
.desc-content.p1 p {
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 20px;
}
.desc-content.p1 ul li {
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 5px;
}
.desc-content.p1 ul li strong {
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--primary);
}
.desc-content.p1 ul li::before {
  width: 6px;
  height: 6px;
  top: 7.5px;
}
.desc-content.p1 ol li {
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 5px;
}
.desc-content.p1 ol li strong {
  font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--primary);
}

.breadcrumbs {
  padding: 20px 0;
  color: var(--head);
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}
.breadcrumbs span {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
  transition: 0.4s ease-out;
}
.breadcrumbs span:hover {
  color: var(--primary);
}
.breadcrumbs span.current-item {
  color: var(--primary);
}

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

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

.btn {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--hover);
  border-radius: 100px;
  border: 1px solid var(--hover);
  outline: none;
  color: var(--card);
  cursor: pointer;
  padding: 13px 40px;
  white-space: nowrap;
  transition: all 0.3s ease-in;
}
.btn svg {
  transition: all 0.3s ease-in;
}
.btn svg path {
  transition: all 0.3s ease-in;
}
.btn:hover {
  border-color: var(--hover);
  background: var(--hover);
  color: var(--card);
}
.btn.outline {
  background: transparent;
  color: var(--primary);
}
.btn.outline:hover {
  background: var(--hover);
  border-color: var(--hover);
  color: var(--card);
}
.btn.secondary {
  border-color: var(--card);
  background: var(--card);
  color: var(--primary);
}
.btn.secondary:hover {
  background: var(--hover);
  border-color: var(--hover);
  color: var(--card);
}
.btn.darkness {
  background: var(--stroke);
  border-color: var(--stroke);
  color: var(--primary);
}
.btn.darkness:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--card);
}

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

input.error {
  transition: 0.4s ease-out;
  border: 1px solid red !important;
}
input.error::-moz-placeholder {
  color: red !important;
}
input.error::placeholder {
  color: red !important;
}

/*====== SWIPER ===========*/
.theme-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.theme-swiper .prev,
.theme-swiper .next {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.4s ease-out, border 0.4s ease-out;
}
.theme-swiper .prev svg path,
.theme-swiper .next svg path {
  stroke: var(--primary);
  transition: stroke 0.4s ease-out;
}
.theme-swiper .prev:hover,
.theme-swiper .next:hover {
  background: var(--primary);
}
.theme-swiper .prev:hover svg path,
.theme-swiper .next:hover svg path {
  stroke: var(--card);
}
.theme-swiper .prev.swiper-button-disabled,
.theme-swiper .next.swiper-button-disabled {
  border-color: var(--text);
  pointer-events: none;
}
.theme-swiper .prev.swiper-button-disabled svg path,
.theme-swiper .next.swiper-button-disabled svg path {
  stroke: var(--text);
}
.theme-pagination {
  width: -moz-fit-content !important;
  width: fit-content !important;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.25);
}
.theme-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 1000px !important;
  background: var(--card);
  transition: background 0.4s ease-out;
  margin: 0 !important;
  position: relative;
  opacity: 1;
  transition: width 0.4s ease-out;
}
.theme-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--primary);
}

/*====== NAVIGATION ===========*/
.navigation {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.navigation .page-numbers {
  color: var(--stroke);
}
.navigation .page-numbers.current {
  color: var(--primary);
}
.navigation .page-numbers.prev {
  margin-right: 20%;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease-out;
}
.navigation .page-numbers.prev svg path {
  transition: stroke 0.4s ease-out;
}
.navigation .page-numbers.prev:hover {
  background: var(--hover);
}
.navigation .page-numbers.prev:hover svg path {
  stroke: var(--card);
}
.navigation .page-numbers.next {
  margin-left: 20%;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease-out;
}
.navigation .page-numbers.next svg path {
  transition: stroke 0.4s ease-out;
}
.navigation .page-numbers.next:hover {
  background: var(--hover);
}
.navigation .page-numbers.next:hover svg path {
  stroke: var(--card);
}

.header-chats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: fixed;
  bottom: 10%;
  right: 40px;
  z-index: 99;
}
.header-chats .chat-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: var(--bgLight);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease-out;
}
.header-chats .chat-item_icon {
  position: absolute;
  top: 50%;
  height: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 0.4s ease-out;
}
.header-chats .chat-item_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.header-chats .chat-item_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--card);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.header-chats .chat-item.text {
  background: var(--primary);
}
.header-chats .chat-item.text .chat-item_icon {
  opacity: 0;
}
.header-chats .chat-item.text .chat-item_text {
  opacity: 1;
}

/*============ HEADER =================*/
body.home #header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 999;
  background: transparent;
}

#header {
  position: relative;
  background: var(--card);
}
#header .header-top {
  padding: 15px 0;
  border-bottom: 1px solid var(--stroke);
}
#header .header-top_holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
#header .header-top_holder .search-form {
  max-width: 364px;
  width: 100%;
}
#header .header-top_holder .search-label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 10px;
  background: var(--card);
  border-radius: 60px;
  border: 1px solid var(--stroke);
  transition: border 0.4s ease-out;
}
#header .header-top_holder .search-label:hover {
  border-color: var(--primary);
}
#header .header-top_holder .search-label:hover .search-btn svg path {
  stroke: var(--primary);
}
#header .header-top_holder .search-label:hover .search-input {
  color: var(--primary);
}
#header .header-top_holder .search-label:hover .search-input::-moz-placeholder {
  color: var(--primary);
}
#header .header-top_holder .search-label:hover .search-input::placeholder {
  color: var(--primary);
}
#header .header-top_holder .search-btn {
  cursor: pointer;
  background: transparent;
  border: none;
}
#header .header-top_holder .search-btn svg path {
  transition: stroke 0.4s ease-out;
}
#header .header-top_holder .search-input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  transition: color 0.4s ease-out;
}
#header .header-top_holder .search-input::-moz-placeholder {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  -moz-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}
#header .header-top_holder .search-input::placeholder {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  transition: color 0.4s ease-out;
}
#header .header-logo {
  width: 258px;
}
#header .header-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
#header .header-address {
  display: flex;
  align-items: center;
  gap: 15px;
}
#header .header-address_icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
#header .header-address_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
#header .header-address_value p {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
  margin: 0;
}
#header .header-phone {
  max-width: 257px;
  width: 100%;
}
#header .header-phone .phone-value {
  font-size: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
  margin-bottom: 5px;
  transition: color 0.4s ease-out;
}
#header .header-phone .phone-name {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
}
#header .header-phone:hover .phone-value {
  color: var(--primary);
}
#header .header-bottom {
  padding-top: 11.5px;
}
#header .header-menu {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
#header .header-menu .nav-menu-element {
  margin: 0;
}
#header .header-menu .nav-menu-element a {
  font-size: clamp(12px, 0.0025 * 100vw + 11.2px, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.4s ease-out;
}
#header .header-menu .nav-menu-element a svg path {
  transition: stroke 0.4s ease-out;
}
#header .header-menu .nav-menu-element:hover a {
  color: var(--primary);
}
#header .header-menu .nav-menu-element:hover a svg path {
  stroke: var(--primary);
}
#header .header-menu .nav-menu-element.active a {
  color: var(--primary);
}
#header .header-menu .nav-menu-element.active a svg path {
  stroke: var(--primary);
}
#header .header-menu .nav-menu-element.has-childs {
  position: relative;
}
#header .header-menu .nav-menu-element.has-childs .sub-menu {
  pointer-events: none;
  position: absolute;
  top: -40px;
  left: 0;
  list-style: none;
  padding: 40px;
  background: var(--card);
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 90px;
  opacity: 0;
  transition: top 0.4s ease-out, opacity 0.4s ease-out;
}
#header .header-menu .nav-menu-element.has-childs .sub-menu .nav-menu-element {
  margin: 0;
}
#header
  .header-menu
  .nav-menu-element.has-childs
  .sub-menu
  .nav-menu-element
  a {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  display: flex;
  align-items: flex-start;
}
#header
  .header-menu
  .nav-menu-element.has-childs
  .sub-menu
  .nav-menu-element
  a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: var(--text);
  top: 11px;
  left: 0;
  position: relative;
  margin-right: 10px;
  transition: background 0.4s ease-out;
}
#header
  .header-menu
  .nav-menu-element.has-childs
  .sub-menu
  .nav-menu-element:hover
  a {
  color: var(--primary);
}
#header
  .header-menu
  .nav-menu-element.has-childs
  .sub-menu
  .nav-menu-element:hover
  a::before {
  background: var(--primary);
}
#header
  .header-menu
  .nav-menu-element.has-childs
  .sub-menu
  .nav-menu-element.active
  a {
  color: var(--primary);
}
#header
  .header-menu
  .nav-menu-element.has-childs
  .sub-menu
  .nav-menu-element.active
  a::before {
  background: var(--primary);
}
#header .header-menu .nav-menu-element.has-childs:hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  bottom: -20px;
  left: 0;
  background: transparent;
  opacity: 0;
}
#header .header-menu .nav-menu-element.has-childs:hover .sub-menu {
  top: 40px;
  opacity: 1;
  pointer-events: all;
}

/*================ 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;
}
#header .burger.open_menu span {
  background-color: var(--primary);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
  pointer-events: none;
}
#header .burger.open_menu.clicked {
  background-color: var(--primary);
}
#header .burger.open_menu.clicked span {
  background-color: #fff;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  gap: 30px;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: #f1f2f3;
  padding: 30px;
  overflow-y: auto;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 20px;
  top: -10px;
  cursor: pointer;
  display: block;
  color: var(--primary);
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  font-weight: 450;
}
#header #mobile-mnu a:hover {
  color: var(--primary);
}
#header #mobile-mnu .logo__holder {
  text-align: center;
  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: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#header #mobile-mnu .menuTop li {
  margin-bottom: 0px;
}
#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  font-weight: 300;
}
#header #mobile-mnu .menuTop li.has-childs a {
  font-weight: 600;
}
#header #mobile-mnu .menuTop li.has-childs .sub-menu li a {
  font-weight: 300;
}
#header #mobile-mnu .menuTop li a img,
#header #mobile-mnu .menuTop li a svg {
  display: none;
}
#header #mobile-mnu .menuTop li a:hover {
  color: var(--primary);
}
#header #mobile-mnu .menuTop li.active a {
  color: var(--primary);
}
#header #mobile-mnu .menuTop li.has-childs .sub-menu .nav-menu-element a {
  color: var(--text);
}
#header
  #mobile-mnu
  .menuTop
  li.has-childs
  .sub-menu
  .nav-menu-element.active
  a {
  color: var(--primary);
}
#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}
#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: var(--head);
  font-weight: 450;
}
#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
#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: var(--head);
  font-weight: 450;
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--primary);
}
#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: 10px;
}
#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: var(--head);
  font-weight: 450;
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--primary);
}
#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;
}
#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s ease-in;
}
#header #mobile-mnu .soc__holder .soc__item img,
#header #mobile-mnu .soc__holder .soc__item svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer {
  background: var(--bgDark);
  margin-top: 40px;
  padding: 40px 0 30px;
}
#footer .footer-top {
  border-bottom: 1px solid rgba(81, 82, 84, 0.15);
  padding-bottom: 40px;
}
#footer .footer-top_holder {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
#footer .footer-top_holder .logo-holder {
  width: 326px;
}
#footer .footer-top_holder .logo-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
#footer .footer-column_name {
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  color: var(--head);
  margin-bottom: 20px;
}
#footer .footer-column_menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}
#footer .footer-column_menu.footer-cat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 141px;
  column-gap: 141px;
  row-gap: 15px;
}
#footer .footer-column_menu .nav-menu-element {
  margin: 0;
}
#footer .footer-column_menu .nav-menu-element a {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
}
#footer .footer-column_menu .nav-menu-element:hover a {
  color: var(--primary);
}
#footer .footer-column_menu .nav-menu-element.active a {
  color: var(--primary);
}
#footer .footer-column .phone-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
#footer .footer-column .phone-item:hover .phone-value {
  color: var(--primary);
}
#footer .footer-column .phone-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
#footer .footer-column .phone-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
#footer .footer-column .phone-name {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin-bottom: 5px;
}
#footer .footer-column .phone-value {
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  color: var(--head);
  transition: color 0.4s ease-out;
}
#footer .footer-column .chats-holder {
  display: flex;
  gap: 5px;
  flex-direction: column;
  margin: 30px 0;
}
#footer .footer-column .chats-holder .chat-item {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 0;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  color: var(--text);
  transition: color 0.4s ease-out;
  position: relative;
  overflow: hidden;
}
#footer .footer-column .chats-holder .chat-item::before {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 2px dashed var(--primary);
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  top: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
#footer .footer-column .chats-holder .chat-item:hover {
  color: var(--primary);
}
#footer .footer-column .chats-holder .chat-item:hover::before {
  opacity: 1;
}
#footer .footer-column .socials-holder {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
#footer .footer-column .socials-holder .soc-item {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  padding: 13px;
  border-radius: 100%;
}
#footer .footer-column .socials-holder .soc-item img {
  filter: brightness(0) invert(1);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
#footer .footer-bottom {
  padding-top: 30px;
}
#footer .footer-bottom_holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
#footer .footer-bottom_holder .privacy {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
  transition: color 0.4s ease-out;
}
#footer .footer-bottom_holder .privacy:hover {
  color: var(--primary);
}
#footer .footer-bottom_holder .dev {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
}
#footer .footer-bottom_holder .dev svg path {
  fill: var(--head);
  transition: fill 0.4s ease-out;
}
#footer .footer-bottom_holder .dev:hover {
  color: var(--primary);
}
#footer .footer-bottom_holder .dev:hover svg path {
  fill: var(--primary);
}
#footer .footer-bottom_holder .copyright {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
}

/* ============== SERVICES ============= */
.banner-holder {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.banner-holder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #f2f2f2 50%,
    rgba(242, 242, 242, 0) 69.04%
  );
  z-index: -1;
}
.banner-holder.products {
  margin-bottom: 40px;
}
.banner-title {
  max-width: 536px;
  width: 100%;
  text-transform: uppercase;
}
.banner-list {
  max-width: 536px;
  width: 100%;
}
.banner-list_item {
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.banner-list_item:last-child {
  margin-bottom: 0;
}
.banner-list_icon {
  width: 40px;
  height: 40px;
}
.banner-list_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.banner-list_text {
  font-size: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
}
.banner-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: -2;
}
.banner-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.banner-background.single img {
  -o-object-fit: contain;
  object-fit: contain;
}
.banner-form {
  margin-top: 20px;
  margin-bottom: 40px;
}
.banner-form .form-holder {
  display: flex;
  align-items: center;
  background: var(--primary);
}
.banner-form .form-content {
  width: 60%;
  padding: 45px 70px;
}
.banner-form .form-content .form {
  margin-top: 30px;
}
.banner-form .form-content .form-inputs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.banner-form .form-content .form-inputs input {
  width: 250px;
}
.banner-form .form-content .form .privacy {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--card);
  margin-top: 15px;
}
.banner-form .form-content .form .privacy a {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--card);
}
.banner-form .form-content .form .privacy a:hover {
  text-decoration: underline;
}
.banner-form .form-title {
  color: var(--card);
  margin-bottom: 15px;
}
.banner-form .form-desc {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--bgLight);
}
.banner-form .form-image {
  width: 40%;
}
.banner-form .form-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.archive-services_terms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.archive-services_terms.taxonomy {
  padding-top: 40px;
}
.archive-services_terms.taxonomy .service-tax_item {
  padding: 15px 45px;
}
.archive-services_taxonomies {
  padding: 40px 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.archive-services_taxonomies .service-tax_item {
  padding: 15px 45px;
  background: transparent;
  border: 1px solid var(--text);
  border-radius: 2px;
  /* font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px); */
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--text);
  transition: border 0.4s ease-out, background 0.4s ease-out,
    color 0.4s ease-out;
}
.archive-services_taxonomies .service-tax_item:hover {
  color: var(--card);
  background: var(--primary);
  border-color: var(--primary);
}
.archive-services_posts {
  padding: 40px;
}
.archive-services_posts .table-wrapper {
  position: relative;
}
.archive-services_posts .table-wrapper .loadmore {
  margin-top: 40px;
  margin-inline: auto;
}
.archive-services_posts .posts-table {
  width: 100%;
  border-spacing: 30px 0;
}
.archive-services_posts .posts-table th[colspan="2"] {
  width: 50%;
}
.archive-services_posts .posts-table th[colspan="1"] {
  width: 25%;
}
.archive-services_posts .posts-table thead tr th {
  padding: 30px 45px;
  font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
  background: var(--bgDark);
}
.archive-services_posts .posts-table tbody td[colspan="2"] {
  width: 100%;
  padding: 0;
}
.archive-services_posts .posts-table tbody td[colspan="2"] a {
  display: block;
  width: 100%;
  padding: 30px 45px;
  /* font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px); */
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
  transition: background 0.4s ease-out, color 0.4s ease-out;
}
.archive-services_posts .posts-table tbody td[colspan="2"]:hover a {
  background: var(--primary);
  color: var(--card);
}
.archive-services_posts .posts-table tbody tr td {
  /* font-size: clamp(18px, 0.0025 * 100vw + 17.2px, 22px); */
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  padding: 30px 45px;
  background: var(--card);
  transition: background 0.4s ease-out, color 0.4s ease-out;
}
.archive-services_posts .posts-table tbody tr:nth-child(2n) td {
  background: var(--bgLight);
}
.archive-services_posts .posts-table tbody tr:nth-child(2n) td[colspan="2"] {
  background: transparent;
}
.archive-services_posts .posts-table tbody tr:nth-child(2n) td[colspan="2"] a {
  background: var(--bgLight);
}
.archive-services_posts
  .posts-table
  tbody
  tr:nth-child(2n)
  td[colspan="2"]:hover
  a {
  background: var(--primary);
}

.service-term_item {
  padding: 0px 30px 30px 30px;
  background: var(--card);
  transition: box-shadow 0.4s ease-out;
}
.service-term_item:hover {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}
.service-term_item:hover .service-term_image img {
  transform: scale(0.9);
}
.service-term_image {
  width: 100%;
  height: 197px;
  overflow: hidden;
  margin-bottom: 20px;
}
.service-term_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease-out;
}
.service-term_title {
  font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
}
.service-term_subterms {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 5px;
}
.service-term_subterms .subterm-item {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  transition: color 0.4s ease-out;
  display: flex;
  gap: 10px;
}
.service-term_subterms .subterm-item::before {
  content: "";
  position: relative;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--text);
  border-radius: 100%;
  flex-shrink: 0;
  transition: background 0.4s ease-out;
}
.service-term_subterms .subterm-item:hover {
  color: var(--primary);
  text-decoration: underline;
}
.service-term_subterms .subterm-item:hover::before {
  background: var(--primary);
}
.service-term_subterms .subterm-item.last-item {
  color: var(--primary);
}
.service-term_subterms .subterm-item.last-item::before {
  background: var(--primary);
}

/* ============== PROBLEMS ============= */
.problem-term_item {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  background: var(--card);
  transition: box-shadow 0.4s ease-out;
}
.problem-term_item:hover {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}
.problem-term_item:hover .problem-term_image img {
  transform: scale(1.2);
}
.problem-term_content {
  padding: 50px 40px 0 40px;
}
.problem-term_title {
  margin-bottom: 15px;
}
.problem-term_desc p {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin: 0;
}
.problem-term_arrow {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 30px 0;
}
.problem-term_arrow span {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--primary);
}
.problem-term_arrow:hover span {
  text-decoration: underline;
}
.problem-term_image {
  width: 100%;
  max-height: 234px;
  overflow: hidden;
  margin-top: auto;
}
.problem-term_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  -o-object-position: bottom;
  object-position: bottom;
  transition: transform 0.4s ease-out;
}

/* ============== PRODUCTS ============= */
.archive-products_terms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}
.archive-products_taxonomies {
  padding: 40px 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.archive-products_taxonomies .product-tax_item {
  padding: 15px 45px;
  background: transparent;
  border: 1px solid var(--text);
  border-radius: 2px;
  font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--text);
  transition: border 0.4s ease-out, background 0.4s ease-out,
    color 0.4s ease-out;
}
.archive-products_taxonomies .product-tax_item:hover {
  color: var(--card);
  background: var(--primary);
  border-color: var(--primary);
}
.archive-products_wrapper {
  padding: 40px 0;
}
.archive-products_posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.archive-products_posts_btn {
  margin-top: 40px;
  margin-inline: auto;
}

.product-term_item {
  border-radius: 2px;
  background: var(--card);
  transition: box-shadow 0.4s ease-out;
}
.product-term_item:hover {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}
.product-term_item:hover .product-term_image img {
  transform: scale(0.9);
}
.product-term_image {
  width: 100%;
  height: 159px;
  padding: 30px 27px;
  margin-bottom: 20px;
}
.product-term_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease-out;
}
.product-term_title {
  margin-bottom: 30px;
  text-align: center;
}
.product-item {
  border-radius: 2px;
  background: var(--bgLight);
  transition: box-shadow 0.4s ease-out, background 0.4s ease-out;
}
.product-item:hover {
  background: var(--card);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}
.product-item:hover .product-item_image img {
  transform: scale(0.9);
}
.product-item_image {
  width: 100%;
  height: 290px;
  overflow: hidden;
  margin-bottom: 25px;
}
.product-item_image img {
  padding: 13px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease-out;
}
.product-item_name {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
  text-align: center;
  padding-inline: 25px;
  padding-bottom: 20px;
}
.product-item_bottom {
  padding-inline: 25px;
  padding-bottom: 25px;
}
.product-item_price {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-item_price .price-new {
  font-size: clamp(20px, 0.00625 * 100vw + 18px, 30px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  color: var(--head);
  text-align: center;
}
.product-item_price .price-old {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  text-decoration: line-through;
  text-align: center;
}
.product-item_btn {
  margin-top: 20px;
  width: 100%;
}

.single-product_holder {
  display: flex;
  gap: 80px;
  padding-bottom: 40px;
}
.single-product_gallery {
  width: 50%;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  height: 668px;
}
.single-product_gallery .swiper-wrapper {
  box-sizing: border-box;
}
.single-product_gallery .gallery-main {
  width: 84%;
  height: 100%;
}
.single-product_gallery .gallery-main .swiper {
  width: 100%;
  height: 100%;
}
.single-product_gallery .gallery-main_item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--bgLight);
  border-radius: 2px;
  overflow: hidden;
}
.single-product_gallery .gallery-main_item img {
  padding: 61px 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.single-product_gallery .gallery-thumb {
  width: 14%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.single-product_gallery .gallery-thumb .swiper {
  width: 100%;
}
.single-product_gallery .gallery-thumb_item {
  background: var(--bgLight);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.single-product_gallery .gallery-thumb_item img {
  padding: 9px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.single-product_gallery .gallery-thumb_prev,
.single-product_gallery .gallery-thumb_next {
  cursor: pointer;
}
.single-product_gallery .gallery-thumb_prev svg path,
.single-product_gallery .gallery-thumb_next svg path {
  transition: stroke 0.4s ease-out;
}
.single-product_gallery .gallery-thumb_prev:hover svg path,
.single-product_gallery .gallery-thumb_next:hover svg path {
  stroke: var(--primary);
}
.single-product_gallery .gallery-thumb_prev.swiper-button-disabled,
.single-product_gallery .gallery-thumb_next.swiper-button-disabled {
  pointer-events: none;
}
.single-product_content {
  width: 50%;
}
.single-product_content .content-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.single-product_content .content-price .price-name {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin-bottom: 5px;
}
.single-product_content .content-price .price-value {
  font-size: clamp(22px, 0.00875 * 100vw + 19.2px, 36px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
}
.single-product_content .content-short-desc {
  margin-top: 40px;
}
.single-product_content .content-desc_name {
  font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
  margin-bottom: 30px;
}
.single-product_content .content-desc_text {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
}
.single-product_content .content-params_holder {
  margin-top: 40px;
}
.single-product_content .content-params_name {
  font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
  margin-bottom: 30px;
}
.single-product_content .content-params_items .param-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bgLight);
  margin-bottom: 15px;
}
.single-product_content .content-params_items .param-item:last-child {
  margin-bottom: 0;
}
.single-product_content .content-params_items .param-item_name {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
}
.single-product_content .content-params_items .param-item_value {
  font-size: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
}
.single-product_desc {
  display: flex;
  gap: 80px;
  padding: 40px 0;
}
.single-product_desc .desc-image {
  width: 50%;
  height: 432px;
  position: sticky;
  top: 10px;
}
.single-product_desc .desc-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.single-product_desc .desc-text {
  width: 45%;
}
.single-product_desc .desc-text h2,
.single-product_desc .desc-text h3,
.single-product_desc .desc-text h4,
.single-product_desc .desc-text h5,
.single-product_desc .desc-text h6 {
  margin: 40px 0 15px;
}
.single-product_desc .desc-text h2:first-child,
.single-product_desc .desc-text h3:first-child,
.single-product_desc .desc-text h4:first-child,
.single-product_desc .desc-text h5:first-child,
.single-product_desc .desc-text h6:first-child {
  margin-top: 0;
}
.single-product_params {
  padding: 40px 0;
}
.single-product_params .params-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 15px;
}
.single-product_params .params-items .param-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bgLight);
}
.single-product_params .params-items .param-item_name {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
}
.single-product_params .params-items .param-item_value {
  font-size: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
}

/* ============== STOCKS ============= */
.stock-item {
  display: flex;
  background: var(--primary);
  border: 1px solid var(--primary);
}
.stock-item_content {
  padding: 50px 60px;
  position: relative;
}
.stock-item_title {
  color: var(--card);
  margin-bottom: 25px;
}
.stock-item_desc {
  position: absolute;
  bottom: -50px;
  right: -30px;
  border-radius: 100%;
  background: var(--card);
  border: 1px solid var(--primary);
  width: 179px;
  height: 179px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stock-item_desc .desc {
  font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
  text-align: center;
}
.stock-item_desc .desc b {
  font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--primary);
}
.stock-item_image {
  flex-shrink: 0;
  width: 260px;
  position: relative;
  z-index: 10;
}
.stock-item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  -o-object-position: bottom;
  object-position: bottom;
}

/* ============== PAGE TEMPLATE BANNER ============= */
.page-banner {
  position: relative;
  z-index: 1;
  min-height: 429px;
  overflow: hidden;
  margin-bottom: 40px;
}
.page-banner_holder {
  padding-top: 100px;
  display: flex;
  gap: 48px;
  padding-left: calc((100% - 1530px) / 2);
  padding-right: calc((100% - 1620px) / 2);
}
.page-banner_content {
  margin: 30px 0;
  width: 57%;
}
.page-banner_title {
  text-transform: uppercase;
  margin-bottom: 20px !important;
}
.page-banner_title b {
  font-size: clamp(26px, 0.009375 * 100vw + 23px, 41px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: var(--primary);
  text-transform: uppercase;
}
.page-banner_desc {
  font-size: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--text);
}
.page-banner_image {
  width: 43%;
  max-height: 353px;
}
.page-banner_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
  display: block;
}
.page-banner_background {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.page-banner_background .background-left {
  width: 70%;
  background: var(--bgDark);
}
.page-banner_background .background-right {
  position: relative;
  width: 30%;
  background: var(--bgLight);
}
.page-banner_background .background-right::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 280px;
  border-radius: 100%;
  width: 167px;
  height: 167px;
  border: 23px solid var(--primary);
}
.page-banner_background .background-text {
  max-width: 286px;
  width: 100%;
  position: absolute;
  top: 47px;
  left: 0;
  font-size: clamp(25px, 0.043125 * 100vw + 11.2px, 94px);
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 84.6px */
  letter-spacing: -4.7px;
  color: var(--bgDark);
}

/* ============== PRIVACY PAGE ============= */
.privacy__page p {
  color: var(--text);
  margin-bottom: 15px;
}
.privacy__page ul li,
.privacy__page ol li {
  color: var(--text);
  margin-bottom: 10px;
}
.privacy__page h2,
.privacy__page h3,
.privacy__page h4,
.privacy__page h5,
.privacy__page h6 {
  color: var(--head);
  margin: 20px 0;
}

/* ============== SEO ============= */
.seo-block {
  padding: 40px 0;
}
.seo-holder {
  display: flex;
  gap: 60px;
}
.seo-image {
  width: 40%;
}
.seo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.seo-content {
  width: 60%;
}
.seo-desc {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 60px;
}
.seo-desc::-webkit-scrollbar {
  width: 6px;
}
.seo-desc::-webkit-scrollbar-track {
  border-radius: 10px;
  background: linear-gradient(
    to left,
    rgba(175, 175, 178, 0) 0%,
    rgba(175, 175, 178, 0) 30%,
    rgb(242, 242, 242) 50%,
    rgba(175, 175, 178, 0) 70%,
    rgba(175, 175, 178, 0) 100%
  );
}
.seo-desc::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--primary);
}

/* ============== SEARCH PAGE ============= */
.search-page {
  padding-bottom: 40px;
}
.search-items_holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.search-items_holder .search-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 30px;
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  border: 1px solid var(--stroke);
  transition: color 0.4s ease-out, border 0.4s ease-out;
}
.search-items_holder .search-item svg path {
  transition: stroke 0.5s;
}
.search-items_holder .search-item:hover {
  border-color: var(--primary);
  color: var(--hover);
}
.search-items_holder .search-item:hover svg path {
  stroke: var(--primary);
}

/* ============== NOT FOUND ============= */
.error-page {
  min-height: -moz-fit-content !important;
  min-height: fit-content !important;
  position: relative;
  margin-bottom: -40px;
}
.error-holder {
  display: flex;
}
.error-content {
  width: 50%;
  padding: 40px 0;
}
.error-numbers {
  font-size: clamp(120px, 0.05 * 100vw + 104px, 200px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--primary);
  margin-bottom: 15px;
}
.error-title {
  font-size: clamp(26px, 0.009375 * 100vw + 23px, 41px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: var(--head);
  margin-bottom: 10px;
}
.error-desc {
  width: 70%;
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
}
.error-btn {
  margin-top: 40px;
}
.error-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.error-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

/* ============== MODAL ============= */
input {
  border: 1px solid var(--card);
  background: var(--card);
  outline: none;
  border-radius: 62px;
  padding: 17px 25px;
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  transition: color 0.4s ease-out;
}
input::-moz-placeholder {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  -moz-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}
input::placeholder {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  transition: color 0.4s ease-out;
}
input:hover {
  color: var(--primary);
}
input:hover::-moz-placeholder {
  color: var(--primary);
}
input:hover::placeholder {
  color: var(--primary);
}

.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .ajax-loader {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  min-width: 400px;
  width: 752px;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 90vh;
  max-width: 90vw;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  padding: 60px 40px;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
}
.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 0px;
  font-size: 30px;
  font-weight: 500;
  color: var(--head);
  cursor: pointer;
}
.theme-modal .close-modal:hover {
  color: var(--primary);
}
.theme-modal .modal-title {
  text-transform: uppercase;
  font-size: clamp(26px, 0.009375 * 100vw + 23px, 41px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: var(--head);
  margin-bottom: 15px;
}
.theme-modal .modal-desc {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
}
.theme-modal.callback {
  width: 502px;
}
.theme-modal.callback .modal-title {
  text-align: center;
}
.theme-modal.callback .modal-desc {
  text-align: center;
}
.theme-modal.callback .form input {
  margin-bottom: 20px;
}
.theme-modal.callback .form .btn {
  margin-top: 20px;
}
.theme-modal.callback .form .privacy {
  margin-top: 10px;
  text-align: center;
}
.theme-modal.message .modal-title {
  text-align: center;
}
.theme-modal.message .modal-desc {
  text-align: center;
}
.theme-modal .form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.theme-modal .form input {
  border-color: var(--text);
  background: var(--bgLight);
}
.theme-modal .form input:hover {
  border-color: var(--primary);
  background: var(--card);
}
.theme-modal .form textarea {
  border-color: var(--text);
  background: var(--bgLight);
}
.theme-modal .form textarea:hover {
  border-color: var(--primary);
  background: var(--card);
}
.theme-modal .form .privacy {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
}
.theme-modal .form .privacy a {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--primary);
}
.theme-modal .form .privacy a:hover {
  color: var(--hover);
}
.theme-modal .form .btn {
  width: 100%;
}
.theme-modal .form .input-file {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  transition: 0.6s;
  cursor: pointer;
}
.theme-modal .form .input-file input[type="file"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
.theme-modal .form .input-file .input-file-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  vertical-align: middle;
  color: var(--text);
  text-align: center;
  padding: 13px 20px;
  box-sizing: border-box;
  margin: 0;
  transition: background-color 0.2s;
  transition: 0.6s;
  width: 100%;
  background: transparent;
  border: 1px solid var(--primary);
}
.theme-modal .form .input-file .input-file-btn svg path {
  transition: 0.6s;
}
.theme-modal .form .input-file .input-file-btn:hover {
  color: var(--primary);
}
.theme-modal .form .input-file .input-file-btn:hover svg path {
  stroke: var(--primary);
}
.theme-modal .form .input-file .input-file-text {
  display: none;
  color: var(--text);
  line-height: 150%;
}
.theme-modal .form .input-file .input-file-text.visible {
  display: flex;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1560px) {
  .page-banner {
    min-height: -moz-fit-content;
    min-height: fit-content;
    display: flex;
    align-items: flex-end;
  }
  .page-banner_holder {
    padding-inline: 15px;
    padding-top: 40px;
  }
  .page-banner_background .background-right::before {
    display: none;
  }
  .page-banner_background .background-text {
    display: none;
  }
}
@media (max-width: 1250px) {
  #header .header-top_holder .burger.open_menu {
    display: flex;
  }
  #header .header-top_holder .search-form {
    max-width: 274px;
  }
  #header .header-address {
    display: none;
  }
  #header .header-bottom {
    display: none;
  }
  #footer .footer-column_menu.footer-cat {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .problem-term_content {
    padding: 30px 15px 0 15px;
  }
  .archive-services_terms {
    gap: 20px;
  }
  .archive-services_posts .table-wrapper {
    overflow-x: auto;
  }
  .archive-services_posts .posts-table {
    min-width: 500px;
    border-spacing: 15px 0;
  }
  .archive-services_posts .posts-table th[colspan="2"] {
    width: 30%;
  }
  .archive-services_posts .posts-table th[colspan="1"] {
    width: 35%;
  }
  .archive-services_posts .posts-table thead tr th {
    padding: 15px 20px;
  }
  .archive-services_posts .posts-table tbody tr td {
    padding: 15px 20px;
  }
  .archive-services_posts .posts-table tbody tr td[colspan="2"] a {
    display: block;
    padding: 15px 20px;
  }
  .stock-item_content {
    padding: 40px 20px;
  }
  .single-product_holder {
    gap: 20px;
  }
  .error-page {
    margin-bottom: 0;
  }
  .error-image {
    display: none;
  }
  .error-content {
    width: 100%;
  }
  .error-numbers {
    text-align: center;
  }
  .error-title {
    text-align: center;
  }
  .error-desc {
    width: 100%;
    text-align: center;
  }
  .error-btn {
    margin-top: 20px;
    margin-inline: auto;
  }
}
@media (max-width: 1150px) {
  .service-term_item {
    padding: 0px 15px 15px 15px;
  }
  .service-term_subterms {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
@media (max-width: 1100px) {
  .page-banner_holder {
    flex-direction: column;
    gap: 20px;
  }
  .page-banner_content {
    width: 100%;
    margin: 0;
  }
  .page-banner_title {
    text-align: center;
  }
  .page-banner_desc {
    text-align: center;
  }
  .page-banner_image {
    width: 100%;
    height: 300px;
  }
  .archive-services_terms {
    grid-template-columns: repeat(3, 1fr);
  }
  .banner-holder {
    padding: 40px 0;
  }
  .banner-form .form-content {
    width: 100%;
    padding: 40px 20px;
  }
  .banner-form .form-content .form-inputs {
    gap: 10px;
  }
  .banner-form .form-image {
    display: none;
  }
  .stock-item_title {
    margin-bottom: 10px;
  }
  .stock-item_desc {
    position: relative;
    bottom: 0;
    right: 0;
    background: none;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0;
    background: transparent;
    margin-bottom: 20px;
  }
  .stock-item_desc .desc {
    color: var(--card);
  }
  .stock-item_desc .desc b {
    color: var(--card);
  }
  .single-product_holder {
    display: block;
  }
  .single-product_gallery {
    width: 100%;
    margin-bottom: 20px;
    display: block;
    height: -moz-fit-content;
    height: fit-content;
  }
  .single-product_gallery .gallery-main {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
  }
  .single-product_gallery .gallery-thumb {
    width: 100%;
    flex-direction: row;
    height: 200px;
  }
  .single-product_gallery .gallery-thumb .swiper {
    height: 100%;
  }
  .single-product_gallery .gallery-thumb_prev {
    transform: rotate(-90deg);
  }
  .single-product_gallery .gallery-thumb_next {
    transform: rotate(-90deg);
  }
  .single-product_content {
    width: 100%;
  }
  .single-product_desc {
    gap: 20px;
  }
  .single-product_desc .desc-text {
    width: 50%;
  }
  .single-product_desc .desc-image {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .header-chats {
    bottom: 2%;
    right: 10px;
  }
  .header-chats .chat-item {
    width: 70px;
    height: 70px;
  }
  .search-items_holder .search-item {
    padding: 10px;
  }
  .title,
  h1.page-title,
  h1.product_title,
  h2.title {
    margin-bottom: 20px;
  }
  .service-term_image {
    height: 167px;
  }
  .product-term_image {
    padding: 15px;
    margin-bottom: 10px;
  }
  .product-term_title {
    margin-bottom: 15px;
  }
  .product-item_image {
    height: 190px;
    margin-bottom: 15px;
  }
  .product-item_name {
    padding-inline: 15px;
    padding-bottom: 10px;
  }
  .product-item_bottom {
    padding-inline: 15px;
    padding-bottom: 10px;
  }
  .product-item_btn {
    margin-top: 10px;
  }
  .problem-term_arrow {
    margin: 15px 0;
  }
  #footer {
    padding: 20px 0;
    margin-top: 20px;
  }
  #footer .footer-top {
    padding-bottom: 20px;
  }
  #footer .footer-top_holder {
    gap: 25px;
  }
  #footer .footer-column_name {
    margin-bottom: 15px;
  }
  #footer .footer-column_menu {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
  }
  #footer .footer-column_menu.footer-cat {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
  }
  #footer .footer-column .chats-holder {
    margin: 20px 0;
  }
  #footer .footer-bottom {
    padding-top: 20px;
  }
  #footer .footer-bottom_holder {
    flex-direction: column;
  }
  .archive-services_terms {
    margin-bottom: 20px;
  }
  .archive-services_terms.taxonomy {
    padding-top: 20px;
  }
  .archive-services_taxonomies {
    padding: 20px 0;
  }
  .archive-services_taxonomies .service-tax_item {
    padding: 10px 20px;
    white-space: nowrap;
  }
  .archive-services_posts {
    padding: 20px 0;
  }
  .archive-products_terms {
    gap: 15px;
    padding-bottom: 20px;
  }
  .archive-products_taxonomies {
    padding: 20px 0;
  }
  .archive-products_taxonomies .product-tax_item {
    padding: 10px 20px;
    white-space: nowrap;
  }
  .archive-products_wrapper {
    padding: 20px 0;
  }
  .archive-products_posts {
    gap: 15px;
  }
  .banner-holder::before {
    background: var(--bgDark);
    opacity: 0.8;
  }
  .banner-holder.products {
    margin-bottom: 20px;
  }
  .banner-form {
    margin-bottom: 20px;
  }
  .banner-background {
    width: 100%;
  }
  .seo-block {
    padding: 20px 0;
  }
  .seo-holder {
    flex-direction: column;
    gap: 20px;
  }
  .seo-image {
    width: 100%;
    height: 300px;
  }
  .seo-content {
    width: 100%;
  }
  .seo-desc {
    padding-right: 20px;
  }
  .stock-item {
    flex-direction: column;
  }
  .stock-item_image {
    width: 100%;
    height: 300px;
  }
  .stock-item_content {
    padding: 20px 20px 0 20px;
    width: 100%;
  }
  .stock-item_content .btn {
    margin-inline: auto;
  }
  .stock-item_title {
    text-align: center;
  }
  .stock-item_desc {
    width: 100%;
    justify-content: center;
  }
  .stock-item_desc .desc {
    text-align: center;
  }
  .single-product_holder {
    padding-bottom: 20px;
  }
  .single-product_content .content-short-desc {
    margin-top: 30px;
  }
  .single-product_content .content-desc_name {
    margin-bottom: 15px;
  }
  .single-product_content .content-params_holder {
    margin-top: 30px;
  }
  .single-product_content .content-params_name {
    margin-bottom: 15px;
  }
  .single-product_desc {
    padding: 20px 0;
    flex-direction: column;
  }
  .single-product_desc .desc-image {
    width: 100%;
    position: relative;
    top: 0;
  }
  .single-product_desc .desc-text {
    width: 100%;
  }
  .single-product_params {
    padding: 20px 0;
  }
  .single-product_params .params-items {
    gap: 15px 30px;
  }
  .page-banner {
    margin-bottom: 20px;
  }
}
@media (max-width: 820px) {
  #header .header-top_holder .search-form {
    display: none;
  }
  #header .header-logo {
    max-width: 180px;
  }
  #header .header-phone {
    max-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
  }
  .archive-services_posts .posts-table thead tr th[colspan="2"] {
    padding: 5px 10px;
  }
  .archive-services_posts .posts-table thead tr th[colspan="1"] {
    padding: 5px 10px;
  }
  .archive-services_posts .posts-table tbody tr td[colspan="2"] a {
    padding: 5px 10px;
  }
  .archive-services_posts .posts-table tbody tr td[colspan="1"] {
    padding: 5px 10px;
  }
}
@media (max-width: 769px) {
  .archive-services_taxonomies {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    /* grid-auto-flow: column; */
    /* overflow-y: auto; */
  }
  .archive-services_taxonomies .service-tax_item {
    padding: 5px;
    white-space: wrap;
  }
  .archive-products_terms {
    grid-template-columns: repeat(3, 1fr);
  }
  .archive-products_posts {
    grid-template-columns: repeat(3, 1fr);
  }
  .archive-products_taxonomies {
    display: grid;
    gap: 10px;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    overflow-y: auto;
  }
  .single-product_params .params-items {
    grid-template-columns: 100%;
    gap: 10px;
  }
}
@media (max-width: 670px) {
  .archive-services_terms {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .archive-products_posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-item_btn {
    padding: 10px 20px;
  }
}
@media (max-width: 600px) {
  .service-term_image {
    height: 97px;
    margin-bottom: 10px;
  }
  .service-term_subterms {
    grid-template-columns: 100%;
    gap: 5px;
  }
  .banner-form .form-content .form-inputs {
    flex-direction: column;
  }
  .banner-form .form-content .form-inputs input {
    width: 100%;
  }
  .banner-form .form-content .form-inputs .btn {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .archive-products_terms {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .archive-services_posts .table-wrapper::before {
    content: url(../images/image-swipe.png);
    position: absolute;
    left: 250px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    z-index: 10;
  }
}
@media (max-width: 520px) {
  .theme-modal {
    width: 100%;
    padding: 40px 20px;
  }
  .theme-modal.callback .form input {
    margin-bottom: 10px;
  }
  .theme-modal.callback .form .btn {
    margin-top: 10px;
  }
  .search-items_holder {
    grid-template-columns: 100%;
  }
  .page-banner_image {
    height: 200px;
  }
  .page-banner_background .background-left {
    width: 100%;
  }
  .page-banner_background .background-right {
    display: none;
  }
  #header .header-top_holder {
    flex-wrap: wrap;
  }
  #header .header-phone {
    width: 100%;
    order: 3;
    text-align: center;
  }
  .theme-pagination {
    display: none !important;
  }
  .single-product_gallery .gallery-main {
    height: 300px;
  }
  .single-product_gallery .gallery-main_item img {
    padding: 20px 0;
  }
  .single-product_gallery .gallery-thumb {
    height: 100px;
    gap: 10px;
  }
  .product-item_name {
    padding-inline: 5px;
  }
  .product-item_bottom {
    padding-inline: 5px;
  }
}
@media (max-width: 498px) {
  .theme-modal {
    min-width: 90%;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .archive-services_taxonomies {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 410px) {
  .archive-products_terms {
    grid-template-columns: 100%;
  }
} /*# sourceMappingURL=main.css.map */
