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

.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;
  }
}

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

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  box-sizing: inherit;
  color: var(--bg-alt-main);
}

body {
  background: var(--bg-primary-second);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}

.overflowed::-webkit-scrollbar {
  width: 2px;
  background: var(--bg-alt-stroke);
}

.overflowed-x::-webkit-scrollbar {
  width: 100%;
  height: 2px;
  background: var(--bg-alt-stroke);
}

.overflowed::-webkit-scrollbar-thumb {
  background: var(--bg-primary-stroke);
  border-radius: 10px;
}

.overflowed-x::-webkit-scrollbar-thumb {
  background: var(--bg-primary-stroke);
}

a {
  text-decoration: none;
  color: var(--text-primary-head-primary);
  transition: 0.3s;
}

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

ul li {
  list-style-position: inside;
  font-size: 16px;
  line-height: 130%;
  list-style-type: none;
}

ol li {
  list-style-position: inside;
  font-size: 16px;
  line-height: 130%;
}

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

h1.page-title {
  font-weight: 500;
  font-size: 46px;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 40px;
}

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;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.breadcrumbs span {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  transition: 0.3s;
}

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

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

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

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

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  white-space: nowrap;
  height: fit-content;
  border-radius: 5px;
  overflow: hidden;
  outline: none;
  padding: 19px 30px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--bg-primary-main);
  border: 1px solid var(--bg-primary-stroke);
  background: var(--bg-primary-stroke);
}

.btn.second {
  background: var(--bg-primary-main);
  border-color: var(--bg-primary-stroke);
  color: var(--bg-alt-main);
}

.btn:hover {
  background: var(--colors-main);
  border-color: var(--colors-main);
  color: var(--bg-primary-main);
}

.btn.second:hover {
  background: var(--bg-primary-stroke);
  border-color: var(--bg-primary-stroke);
  color: var(--bg-primary-main);
}

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

.main-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  color: var(--bg-alt-main);
  margin-bottom: 40px;
}

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

.subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 40px;
}

.text-holder,
.text-holder p,
.text-holder li {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-primary-main);
}

.text-holder p:has(a) {
  display: flex;
  gap: 20px;
  align-items: center;
}

.text-holder p:has(a) a {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.text-holder p:has(a) a:hover {
  color: var(--colors-main);
}

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

.text-holder ol {
  gap: 5px;
}

.text-holder ol {
  counter-reset: list;
}

.text-holder ol li {
  list-style-type: none;
  padding-left: 25px;
  position: relative;
  counter-increment: list;
}

.text-holder ol li:before {
  content: counter(list)".";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 6px;
  left: 1px;
  position: absolute;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-main-text-primary);
}

.text-holder ul li {
  padding-left: 15px;
  position: relative;
}

.text-holder ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  top: 7px;
  left: 0;
  position: absolute;
  border-radius: 1px;
  background: var(--bg-primary-stroke);
}

.text-holder h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 110%;
  text-transform: uppercase;
  margin-top: 15px;
}

.text-holder h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 110%;
  text-transform: uppercase;
  margin-top: 15px;
}

.text-holder h4 {
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  margin-top: 15px;
}

.text-holder h5 {
  font-weight: 500;
  font-size: 26px;
  line-height: 110%;
  margin-top: 15px;
}

.text-holder h5 a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--colors-main);
}

.text-holder h5 a:hover {
  color: var(--bg-primary-stroke);
}

.text-holder h6 {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  margin-top: 15px;
}

.text-holder h2:nth-child(1),
.text-holder h3:nth-child(1),
.text-holder h4:nth-child(1),
.text-holder h5:nth-child(1),
.text-holder h6:nth-child(1) {
  margin-top: unset;
}

.btns-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 40px;
}

.nav {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  max-width: 355px;
  margin-left: auto;
  margin-right: auto;
}

.controls {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.controls .nav {
  margin-top: unset;
  margin-left: unset;
  margin-right: unset;
}

.nav .nav-btns {
  display: flex;
  gap: 10px;
}

.nav.bul {
  max-width: unset;
}

.nav.bul .buttons {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  margin-top: unset;
  align-items: center;
  gap: 10px;
}

.nav .swiper-button-prev,
.nav .swiper-button-next {
  width: 38px;
  height: 38px;
  display: flex;
  position: static;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  background: var(--bg-primary-stroke);
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  left: unset !important;
  top: unset !important;
  margin-top: unset;
  right: unset !important;
  border: 1px solid var(--bg-primary-stroke);
}

.nav .swiper-button-prev:after,
.nav .swiper-button-next:after {
  display: none;
}

.nav .swiper-button-prev svg,
.nav .swiper-button-next svg {
  width: auto;
  height: auto;
  z-index: 1;
}

.nav .swiper-button-prev:hover,
.nav .swiper-button-next:hover {
  background: var(--colors-main);
}

.nav .swiper-button-disabled {
  background: transparent;
  opacity: 1 !important;
  border-color: var(--bg-primary-third);
}

.nav .swiper-button-disabled path {
  stroke: var(--text-primary-second);
}

.nav .swiper-pagination {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  width: fit-content !important;
  bottom: unset !important;
  position: static;
  gap: 15px;
  top: unset !important;
  flex-wrap: wrap;
  justify-content: center;
}

.nav.bul .swiper-pagination {
  gap: 5px;
  margin-left: unset;
  margin-right: unset;
}

.nav .swiper-pagination-bullet {
  transition: 0.3s;
  cursor: pointer;
  opacity: 1 !important;
  margin: unset !important;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--thirdly-text);
  background: transparent;
  border: unset;
  width: fit-content !important;
  height: fit-content !important;
}

.nav.bul .swiper-pagination-bullet {
  background: var(--background-primary-primary-stroke);
  width: 10px !important;
  height: 4px !important;
  border-radius: 4px;
}

.nav .swiper-pagination-bullet-active,
.nav .swiper-pagination-bullet:hover {
  color: var(--hover-primary-hover);
}

.nav.bul .swiper-pagination-bullet:hover {
  background: var(--hover-primary-hover);
}

.nav.bul .swiper-pagination-bullet-active {
  width: 30px !important;
  background: var(--hover-primary-hover);
}

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

.swiper-slide.templated {
  height: auto;
}

.swiper-slide.templated>* {
  height: 100%;
}

.error404 #main {
  min-height: unset;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  padding: 100px 0px 120px 0px;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}

.error-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 40px;
}

.error-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.error-subtitle {
  font-weight: 500;
  font-size: 46px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
}

.error-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: var(--text-primary-main);
  margin-bottom: 40px;
  max-width: 620px;
}

.text-all {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  cursor: pointer;
  width: fit-content;
  transition: 0.3s;
  position: relative;
  margin-top: -5px;
}

.text-all:hover {
  color: var(--bg-primary-stroke);
}

.text-all:before {
  content: "";
  width: 10px;
  height: 6px;
  top: 7px;
  right: -20px;
  position: absolute;
  background-image: url(../images/sMenuClosed.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.5s;
}

.text-all:hover:before {
  background-image: url(../images/sMenuOpened.png);
}

.pagination {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  width: 100%;
}

.prev.page-numbers {
  margin-right: auto;
}

.next.page-numbers {
  margin-left: auto;
}

.page-numbers {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  transition: 0.5s;
}

.page-numbers:hover,
.page-numbers.current {
  color: var(--bg-primary-stroke);
}

.prev.page-numbers,
.next.page-numbers {
  width: fit-content;
  padding: 20px 20px;
  border: 1px solid var(--bg-primary-stroke);
  border-radius: 5px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  gap: 5px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  min-width: fit-content;
}

.prev.page-numbers:hover,
.next.page-numbers:hover {
  background: var(--bg-primary-stroke);
  border-color: var(--bg-primary-stroke);
  color: var(--bg-primary-main);
}

.prev.page-numbers:hover path,
.next.page-numbers:hover path {
  stroke: var(--bg-primary-main);
}

.prev.page-numbers path,
.next.page-numbers path {
  transition: 0.5s;
}

span.prev.page-numbers,
span.next.page-numbers {
  cursor: unset;
  pointer-events: none;
  border-color: var(--text-primary-second);
  color: var(--text-primary-second);
}

span.prev.page-numbers path,
span.next.page-numbers path {
  stroke: var(--text-primary-second);
}

.privacy-policy .content {
  padding-bottom: 40px;
}

.privacy-policy .content p {
  font-size: 14px;
}

.privacy-policy .content h2 {
  font-size: 18px;
  margin: 15px 0px 5px 0px;
  font-weight: 600;
}

.privacy-policy .content h2:nth-child(1) {
  margin-top: unset;
}

.block-container {
  padding: 40px 0px;
}


/*============ HEADER =================*/
#header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

#header .header-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

#header .header-top {
  border-bottom: 1px solid var(--bg-alt-stroke);
  padding: 10px 30px;
  background: var(--bg-primary-second);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}

#header .header-bot {
  display: flex;
  align-items: center;
  padding: 5px 30px;
  gap: 10px;
  width: 100%;
  background: var(--bg-primary-main);
}

#header .logo-holder {
  width: auto;
  max-width: 260px;
  display: flex;
  max-height: 90px;
}

#header .logo-holder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

#header .header-cat-holder {
  position: relative;
}

#header .cat-control {
  padding: 5px 5px 5px 20px;
  background: var(--bg-primary-third);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.5s;
  cursor: pointer;
}

#header .header-cat-holder:hover .cat-control {
  background: var(--bg-alt-second);
}

#header .cat-icon {
  width: 24px;
  height: 24px;
  display: flex;
  min-width: 24px;
  transition: 0.3s;
  background-image: url(../images/menuClosed.png);
  background-position: center;
  background-repeat: no-repeat;
}

#header .header-cat-holder:hover .cat-icon {
  background-image: url(../images/menuOpened.png);
}

#header .cat-btn {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--bg-primary-main);
  padding: 16px 20px;
  background: var(--colors-main);
  transition: 0.5s;
  border-radius: 5px;
}

#header .header-cat-holder:hover .cat-btn {
  background: var(--bg-primary-stroke);
}

#header .menu-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

#header .header-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

#header .header-info a {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}

#header .header-info a:hover {
  color: var(--bg-primary-stroke);
}

#header .career-btn {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--bg-alt-main);
  position: relative;
  transition: 0.5s;
  cursor: pointer;
}

#header .career-btn:hover {
  color: var(--bg-primary-stroke);
}

#header .career-btn:before {
  content: "";
  width: 1px;
  height: 42px;
  top: -8px;
  left: -30px;
  position: absolute;
  background: var(--bg-alt-stroke);
}

#header .header-cat-menu {
  position: absolute;
  bottom: 0;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  background: var(--bg-primary-stroke);
  border: 1px solid var(--bg-alt-stroke);
  border-radius: 0 0 10px 10px;
  padding: 30px;
  transform: translateY(calc(100% + 15px));
  min-width: 360px;
  width: 360px;
  opacity: 0;
  transition-delay: 0.15s;
  transition: 0.5s;
  visibility: hidden;
}

#header .header-cat-menu a {
  color: var(--text-alt-head);
}

#header .header-cat-menu a:hover {
  color: var(--text-alt-main) !important;
}

#header .header-cat-holder:hover .header-cat-menu {
  opacity: 1;
  visibility: visible;
}



/* #header .cat-control:hover+.header-cat-menu {
  opacity: 1;
  visibility: visible;
} */
#header .header-cat-menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(calc(100% + 35px), -32px);
  padding: 20px;
  border-radius: 10px;
  background: var(--bg-primary-stroke);
  border: 1px solid var(--bg-alt-stroke);
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}

#header .header-cat-menu .nav-menu-element a {
  width: 100%;
  display: block;
}

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

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

#header .header-cat-menu .nav-menu-element.has-childs:hover>a::before {
  transform: rotate(180deg);
}

#header .header-menu {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 30px;
}

#header .nav-menu-element a {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  position: relative;
  transition: 0.5s;
}

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

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

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

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

.soc {
  width: 58px;
  height: 58px;
  border: 1px solid var(--bg-primary-stroke);
  border-radius: 5px;
  background: var(--bg-primary-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.soc img,
.soc svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 60%;
  max-height: 60%;
  transition: 0.5s;
}

.soc:hover {
  background: var(--bg-primary-stroke);
}

.soc:hover img,
.soc:hover svg {
  filter: brightness(0) invert(1);
}

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

#header .nav-menu-element.has-childs>a::before {
  content: "+";
  width: 10px;
  height: 6px;
  position: absolute;
  left: unset;
  right: 0px;
  top: 0px !important;
  transition: all 0.5s ease;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: contain;
  /* background-image: url(../images/sMenuClosed.png); */
}

#header .nav-menu-element.has-childs:hover>a::before {
  color: var(--bg-primary-stroke);
  content: "-";
  /* background-image: url(../images/sMenuOpened.png); */
}

#header .header-cat-menu .nav-menu-element.has-childs:hover>a::before {
  color: var(--text-alt-main);
}

#header .header-menu .sub-menu {
  position: absolute;
  top: calc(100% + 34px);
  width: max-content;
  height: max-content;
  min-width: 360px;
  max-width: 620px;
  padding: 30px;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translate(0px, 0px);
  transition: all 0.2s ease;
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid var(--bg-alt-stroke);
  background: var(--bg-primary-stroke);
}

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

#header .header-menu .sub-menu a:hover {
  color: var(--text-alt-main) !important;
}

#header .header-menu>.nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  left: 0%;
  visibility: visible;
  z-index: 100;
}

#header .header-menu .sub-menu .nav-menu-element a {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  display: block;
}

#header .header-menu .sub-menu .nav-menu-element a:hover {
  color: var(--bg-primary-stroke);
}


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

#header .burger.open_menu span {
  background: var(--colors-main);
  width: 24px;
  height: 2px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background: var(--colors-main);
}

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

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background: var(--bg-primary-main);
  border-right: 1px solid var(--bg-primary-stroke);
  padding: 20px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}

#header #mobile-mnu #close-mnu {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
}

#header #mobile-mnu #close-mnu svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

#header #mobile-mnu #close-mnu svg path {
  fill: var(--hover-primary-hover);
}

#header #mobile-mnu a {
  font-size: 14px;
  line-height: 130%;
  font-weight: 450;
}

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

#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;
}

#header #mobile-mnu .menuTop li {
  margin-bottom: 7px;
  position: relative;
}

#header #mobile-mnu .menuTop li a {
  font-size: 14px;
  line-height: 130%;
  font-weight: 450;
  color: var(--text-primary-head-primary);
  position: relative;
  padding: unset;
  background: transparent;
}

#header #mobile-mnu .menuTop li a:before {
  display: none;
}

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

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

#header #mobile-mnu .menuTop li.has-childs {
  border-bottom: 1px solid var(--colors-secondary);
}

#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: 130%;
  font-weight: 450;
}

#header #mobile-mnu .emails-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: 14px;
  line-height: 130%;
  font-weight: 400;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--head-2);
}

#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: 14px;
  line-height: 130%;
  font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--head-2);
}

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

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

#header #mobile-mnu .logo-holder {
  margin-bottom: 20px;
  width: 250px;
}

#header #mobile-mnu .site-name-holder {
  order: unset;
  width: max-content;
  max-width: unset;
}

#header #mobile-mnu .site-name,
#header #mobile-mnu a,
#header #mobile-mnu .site-subtitle {
  color: var(--head-2);
}

#header #mobile-mnu .soc-holder {
  margin-top: 10px;
}

#header #mobile-mnu .soc {
  width: 35px;
  height: 35px;
}

#header #mobile-mnu .sub-menu {
  display: none;
  margin-top: 10px;
}

#header #mobile-mnu .sub-menu .nav-menu-element a {
  padding-left: 10px;
  position: relative;
}

#header #mobile-mnu .sub-menu .nav-menu-element a:before {
  content: "";
  width: 5px;
  height: 1px;
  top: 10px;
  left: 0;
  position: absolute;
  background: var(--text-primary-head-primary);
}

#header #mobile-mnu .phones-holder {
  margin: 10px 0px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/*================ MOBILE MNU End =============*/






/*============ FOOTER Start ===============*/
#footer {
  background: var(--bg-alt-second);
}

#footer .footer-wrapper {
  display: flex;
  padding: 60px 0px 20px 0px;
  gap: 30px;
}

#footer .left-side {
  display: flex;
  flex-direction: column;
  max-width: 280px;
}

#footer .footer-logo {
  display: flex;
  width: auto;
  max-width: 180px;
  height: auto;
}

#footer .footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

#footer .addr-item:has(+.addr-item) {
  margin-bottom: 10px;
}

#footer .addr-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

#footer .reqs-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  pointer-events: none;
}

#footer .reqs-holder p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

#footer .menu-holder {
  display: flex;
  gap: 30px;
  flex-grow: 1;
}

#footer .menu-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 360px;
}

#footer .menu-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 20px;
}

#footer .foot-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .nav-menu-element a {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}

#footer .nav-menu-element a:hover {
  color: var(--bg-primary-stroke);
}

#footer .info-right-side {
  display: flex;
  flex-direction: column;
  width: 280px;
  min-width: 280px;
}

#footer .values {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .footer-value {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  width: fit-content;
}

#footer .footer-value:hover {
  color: var(--bg-primary-stroke);
}

#footer .socs {
  margin-top: 20px;
}

#footer .soc {
  border: unset;
}

#footer .law-holder {
  display: flex;
  align-items: center;
  gap: 30px;
}

#footer .footer-law {
  border-radius: 5px;
  width: 100%;
}

#footer .footer-law p {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

#footer .footer-law a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--bg-primary-stroke);
}

#footer .footer-law a:hover {
  color: var(--colors-main);
}

#footer .footer-bot {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
}

#footer .privacy-holder {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
}

#footer .privacy-holder:hover {
  color: var(--bg-primary-stroke);
}

.example-holder a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: right;
}

.example-holder a:hover {
  color: var(--bg-primary-stroke);
}

.glogo {
  width: 111px;
  height: 17px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--bg-alt-main);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  overflow: hidden;
}

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

.glogo:hover:before {
  animation-name: unset;
  transform: translateX(0);
}

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

  50% {
    transform: translateX(0);
  }

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

#footer .rights {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: right;
}

/*============ FOOTER End ===============*/






/* ============== MODAL Start ============= */
.theme-modal {
  display: none;
  position: relative;
}

.theme-modal .title {
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  margin-bottom: 15px;
}

.theme-modal .subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: var(--text-primary-main);
  margin-bottom: 20px;
}

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

.fancybox__content>.f-button.is-close-btn {
  top: 25px !important;
  right: 25px !important;
  --f-button-width: 12px !important;
  --f-button-height: 12px !important;
  --f-button-border-radius: unset !important;
  --f-button-color: unset !important;
  --f-button-hover-color: unset !important;
  --f-button-bg: transparent !important;
  --f-button-hover-bg: transparent !important;
  --f-button-active-bg: transparent !important;
  --f-button-svg-width: 100% !important;
  --f-button-svg-height: 100% !important;
}

.f-button svg {
  stroke: var(--bg-primary-main) !important;
}

.fancybox__content>.f-button.is-close-btn:hover path {
  stroke: var(--bg-primary-stroke) !important;
  transition: 0.3s !important;
}

.theme-modal.fancybox__content {
  width: 620px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--bg-primary-main);
  border-radius: 10px;
  overflow: auto;
}

.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  transition: stroke .3s ease-in;
}

.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  fill: var(--bg-primary-stroke);
}

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

.form .hidden-text p {
  font-size: 14px;
}

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

button {
  border: unset;
}

button,
input {
  outline: none;
}

.form input {
  transition: 0.3s;
  cursor: pointer;
  width: 100%;
}

.form textarea {
  height: 110px;
  border: unset;
  cursor: pointer;
  transition: 0.3s;
}

.form input:hover,
.form textarea:hover {
  border-color: var(--hover-primary-hover);
  color: var(--text-primary-head-primary);
}

.form .file-input label,
.form input,
.form textarea {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-primary-second);
  padding: 17px 20px;
  cursor: pointer;
  border: 1px solid var(--bg-alt-stroke);
  border-radius: 5px;
  resize: none;
  outline: none;
  background: var(--bg-primary-second);
  display: flex;
  transition: 0.5s;
}

.form input.error,
.form textarea.error {
  border-color: red !important;
}

.form input::placeholder,
.form textarea::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-primary-second);
}

.form .file-input:hover label,
.form input:hover,
.form textarea:hover {
  border-color: var(--bg-primary-stroke);
  background: var(--bg-primary-main);
  color: var(--text-primary-main);
}

.form input:hover::placeholder,
.form textarea:hover::placeholder {
  color: var(--text-primary-main);
}

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

.form .btn {
  width: 100%;
}

.form .privacy-policy {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-main);
  position: relative;
  margin: 10px 0px 5px 0px;
}

.form .privacy-policy a {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-main);
}

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

.form .file-input {
  width: 100% !important;
}

.form .file-input input {
  display: contents;
}

.form .file-input {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.04em;
  color: var(--hover-primary-hover);
  cursor: pointer;
  transition: 0.5s;
  width: fit-content;
}

.form .file-input svg {
  margin-left: auto;
}

.fancybox__container {
  --fancybox-bg: rgba(31, 31, 31, 0.2) !important;
}

.form .privacy-policy:has(.policy-checker) {
  padding-left: 23px;
}

.form .privacy-policy .policy-checker {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid var(--text-primary-main);
  background-color: transparent;
  cursor: pointer;
  transition: 0.5s;
  background-position: center;
  background-repeat: no-repeat;
}

.form .privacy-policy .policy-checker:hover {
  border-color: var(--bg-primary-main);
}

.form .privacy-policy.checked .policy-checker {
  background-color: var(--bg-primary-stroke);
  border-color: var(--bg-primary-stroke);
  background-image: url(../images/checked.png);
}

/* ============== MODAL End ============= */






.archive-default {
  padding-bottom: 40px;
}

/* ============== Archive-docs Start ============= */
.archive.docs .docs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.docs-item-template {
  display: flex;
  flex-direction: column;
}

.docs-item-template .docs-name {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: var(--bg-alt-main);
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.docs-item-template .docs-img {
  width: 100%;
  display: flex;
  height: auto;
  max-height: 400px;
  border-radius: 10px;
  background: var(--bg-primary-main);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.docs-item-template .docs-img:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../images/plus.png);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

.docs-item-template .docs-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto;
  transition: 0.5s;
}

.docs-item-template .docs-img:hover img {
  transform: scale(1.1);
}

.docs-item-template .docs-img:hover:before {
  opacity: 1;
}

/* ============== Archive-docs End ============= */








/* ============== Archive-photo-video Start ============= */
.video-holder {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  max-height: 300px;
  border-radius: 10px;
  overflow: hidden;
  flex-grow: 1;
}

.photo-video .video-holder {
  height: 300px;
}

.video-holder .preview {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  object-fit: cover;
  z-index: 2;
  overflow: hidden;
}

.video-holder .preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: 0.5s;
}

.video-holder:hover .preview img {
  transform: scale(1.05);
}

.video-holder video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  z-index: 1;
}

.video-holder .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  transition: 0.5s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary-stroke);
  border-radius: 100%;
}

.video-holder .video-btn svg {
  margin-left: 5px;
}

.video-holder .video-btn path {
  transition: 0.5s;
}

.video-holder .video-btn:hover {
  background: var(--colors-main) !important;
}

.video-holder .video-holder:hover .video-btn {
  background: var(--bg-primary-main);
}

.video-holder .video-holder:hover .video-btn path {
  stroke: var(--bg-primary-stroke);
}

.photo-video {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.photo-video .img-item {
  display: flex;
  flex-direction: column;
}

.photo-video .item-img {
  width: 100%;
  display: flex;
  height: 300px;
  max-height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.photo-video .item-img:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../images/plus.png);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
  z-index: 2;
}

.photo-video .item-img:hover:before {
  opacity: 1;
}

.photo-video .item-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: 0.5s;
}

.photo-video .item-img:hover img {
  transform: scale(1.05);
}

.photo-video .item-name {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  margin-top: 20px;
}

.photo-video .video-item {
  display: flex;
  flex-direction: column;
  height: auto;
}

/* ============== Archive-photo-video End ============= */













/* ============== Woocommerce Start ============= */
li.product-category {
  display: flex;
  flex-direction: column;
  height: auto;
}

li.product-category a {
  height: 100%;
  display: flex;
  border-radius: 10px;
  padding: 10px;
  background: var(--bg-primary-second);
  transition: 0.5s;
  cursor: pointer;
  gap: 10px;
}

li.product-category:hover a {
  background: var(--bg-primary-stroke);
}

li.product-category .cat-img {
  width: 200px;
  min-width: 200px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-primary-main);
}

li.product-category .cat-img img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  transition: 0.5s;
}

li.product-category:hover .cat-img img {
  transform: scale(1.05);
}

li.product-category .cat-right-side {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 10px;
}

li.product-category .woocommerce-loop-category__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 10px;
  transition: 0.5s;
}

li.product-category:hover .woocommerce-loop-category__title {
  color: var(--bg-primary-main);
}

li.product-category .woocommerce-loop-category__title mark {
  display: none;
}

li.product-category .cat-link {
  display: flex;
  margin-top: auto;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  transition: 0.5s;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--bg-primary-stroke);
}

li.product-category .cat-link path {
  transition: 0.5s;
}

li.product-category:hover .cat-link {
  color: var(--bg-primary-main);
}

li.product-category:hover .cat-link path {
  stroke: var(--bg-primary-main);
}

li.product.type-product {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  height: auto;
}

li.product.type-product a {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary-main);
  border-radius: 10px;
  overflow: hidden;
}

li.product.type-product .product-img {
  width: 100%;
  height: auto;
  display: flex;
  max-height: 300px;
  background: var(--bg-primary-main);
  overflow: hidden;
}

li.product.type-product .product-img img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  transition: 0.5s;
  aspect-ratio: 1/1;
}

li.product.type-product:hover .product-img img {
  transform: scale(1.1);
}

li.product.type-product .woocommerce-loop-product__title {
  transition: 0.5s;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 15px;
}

li.product.type-product:hover .woocommerce-loop-product__title {
  color: var(--bg-primary-stroke);
}

li.product.type-product .product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}

li.product.type-product .attrs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

li.product.type-product .attr-item {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  position: relative;
}

li.product.type-product .attr-item:before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--bg-alt-stroke);
  position: absolute;
  bottom: 6px;
  left: 0;
}

li.product.type-product .attr-name {
  padding-right: 10px;
  padding-bottom: 2px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-second);
  position: relative;
  background: var(--bg-primary-main);
}

li.product.type-product .attr-value {
  background: var(--bg-primary-main);
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  padding-left: 10px;
  padding-bottom: 2px;
  text-align: right;
}

li.product.type-product .price {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 15px;
  margin-top: auto;
  justify-content: flex-end;
}

li.product.type-product .price ins,
li.product.type-product .price del {
  text-decoration: unset;
  line-height: 100%;
}

li.product.type-product .price bdi,
li.product.type-product .price bdi span {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}

li.product.type-product .price ins bdi,
li.product.type-product .price ins bdi span {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}

li.product.type-product .price del bdi,
li.product.type-product .price del bdi span {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-decoration: line-through;
  color: var(--text-primary-second);
}

.shop-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 40px;
}

#sidebar-close,
#open-filter {
  display: none;
}

#open-filter {
  position: fixed;
  bottom: 43%;
  left: 0px;
  width: fit-content;
  height: 28px;
  padding: 3px 5px;
  transform: rotate(90deg) translateY(38px);
  align-items: center;
  justify-content: center;
  background: var(--colors-second);
  border-radius: 5px 5px 0px 0px;
  color: var(--bg-primary-main);
  font-size: 12px;
  z-index: 50;
  border-bottom: unset;
}

.shop-content .sidebar {
  width: 360px;
  min-width: 360px;
  height: fit-content;
  top: 140px;
  position: sticky;
  display: flex;
  flex-direction: column;
}

.shop-content .subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}

.shop-content .category-item {
  padding: 17px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--text-primary-head-primary);
  width: fit-content;
  transition: 0.5s;
  cursor: pointer;
  border: 1px solid var(--background-primary-primary-stroke);
}

.shop-content .category-item.active,
.shop-content .category-item:hover {
  background: var(--colors-second);
  border-color: var(--colors-second);
  color: var(--background-primary-primary-background-secondary);
}

.shop-content .products:has(.product.type-product) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.shop-content .add-wrapper {
  border: 1px solid var(--bg-alt-stroke);
  border-radius: 10px;
  background: var(--bg-primary-main);
  display: flex;
  flex-direction: column;
}

.shop-content .buttons {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  align-items: center;
  gap: 15px;
}

.shop-content .buttons .btn {
  width: 100%;
}

.shop-content .buttons .btn:hover {
  background: var(--bg-primary-main);
  border-color: var(--bg-primary-main);
  color: var(--bg-primary-stroke);
}

.shop-content .clear-filters {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--bg-primary-stroke);
  background: transparent;
  cursor: pointer;
  transition: 0.5s;
}

.shop-content .clear-filters path {
  transition: 0.5s;
}

.shop-content .clear-filters:hover {
  color: var(--colors-main);
}

.shop-content .clear-filters:hover path {
  stroke: var(--colors-main);
}

.shop-content .filter-block-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}

.shop-content .filter-block-header {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  cursor: pointer;
}

.shop-content .filter-block {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-bottom: 1px solid var(--bg-alt-stroke);
}

.shop-content .filter-block.tag-block {
  display: none;
}

.filters-form .filter-block-content.prices {
  display: flex;
  flex-direction: column;
}

.filters-form .filter-block-content {
  margin-top: 10px;
}

.filters-form .inputs.price.range {
  display: flex;
  gap: 5px;
}

.filters-form .inputs.price.range .group {
  display: flex;
  width: 100%;
  position: relative;
}

.filters-form .inputs.price.range .group:nth-child(1):before {
  content: "от";
  width: 16px;
  height: 16px;
  bottom: 25px;
  left: 20px;
  position: absolute;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-primary-second);
}

.filters-form .inputs.price.range .group:nth-child(2):before {
  content: "до";
  width: 16px;
  height: 16px;
  bottom: 25px;
  left: 20px;
  position: absolute;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-primary-second);
}

.filters-form .inputs.price.range .group input {
  width: 100%;
  border-radius: 5px;
  padding: 16px 20px 16px 38px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-primary-second);
  border: 1px solid var(--bg-alt-stroke);
  background: var(--bg-primary-second);
  transition: 0.5s;
  cursor: pointer;
}

.filters-form .inputs.price.range .group input:hover {
  border-color: var(--bg-primary-stroke);
  background: var(--bg-primary-main);
}

.filters-form .inputs.price.range .group:nth-child(2) input {
  padding-left: 45px;
}

.filters-form .noUi-connects {
  height: 2px;
  background: var(--bg-alt-stroke);
}

.filters-form .noUi-connect {
  height: 100%;
  background: var(--bg-primary-stroke);
}

.filters-form .noUi-base {
  background: transparent;
  height: 2px;
}

.filters-form .noUi-target {
  background: transparent;
  border: unset;
  height: 2px;
  margin-top: 15px;
  width: 97%;
}

.filters-form .noUi-horizontal .noUi-handle {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--bg-primary-stroke);
  border: 1px solid var(--bg-primary-main);
  top: -4px;
  box-shadow: unset;
  right: -10px;
}

.filters-form .noUi-horizontal .noUi-handle:after,
.filters-form .noUi-horizontal .noUi-handle:before {
  display: none;
}

.filters-form .filter-block-price,
.filters-form .filter-block-tag {
  order: -1;
}

.filters-form .inputs.checkboxes {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 5px;
  overflow: auto;
  padding-bottom: 5px;
  max-height: 137px;
}

.filters-form .inputs.checkboxes .group label {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  padding-left: 28px;
  position: relative;
  transition: 0.5s;
  cursor: pointer;
}

.filters-form .inputs.checkboxes .group:hover label {
  color: var(--primary);
}

.filters-form .inputs.checkboxes .group label:before {
  content: "";
  width: 18px;
  height: 18px;
  top: 1px;
  left: 0;
  position: absolute;
  border: 1px solid var(--text-primary-main);
  transition: 0.5s;
  pointer-events: none;
  border-radius: 5px;
}

.filters-form .inputs.checkboxes .group label:hover:before {
  border-color: var(--bg-primary-stroke);
}

.filters-form .inputs.checkboxes .group label:after {
  content: "";
  width: 20px;
  height: 20px;
  top: 1px;
  left: 0px;
  position: absolute;
  background: var(--colors-second);
  background-image: url(../images/filterChecked.png);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
  border-radius: 5px;
  opacity: 0;
}

.filters-form .inputs.checkboxes .group input {
  display: contents;
}

.filters-form .inputs.checkboxes .group:has(input:checked) label:after {
  opacity: 1;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filters-form .filter-block-toggler {
  width: 12px;
  height: 8px;
  display: flex;
  min-width: 10px;
  background-image: url(../images/filterClosed.png);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
}

.shop-content .filter-block.opened .filter-block-toggler {
  background-image: url(../images/filterOpened.png);
}

.main-cat-tabs {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.main-cat-tabs li.product-category a {
  background: var(--bg-primary-main);
}

.main-cat-tabs li.product-category:hover a {
  background: var(--bg-primary-stroke);
}

.cat-top .advants {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--bg-alt-stroke);
  border-radius: 0px 0px 10px 10px;
  overflow: hidden;
}

.cat-top .advant-item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-right: 1px solid var(--bg-alt-stroke);
}

.cat-top .advant-item:last-child {
  border-right: unset;
}

.cat-top .advant-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cat-top .advant-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
}

.cat-top .advant-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 5px;
  background: var(--bg-primary-main);
  display: flex;
}

.cat-top .advant-icon img,
.cat-top .advant-icon svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
}

.cat-top .advant-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-main);
}

.cat-top .cat-banner {
  display: flex;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}

.cat-top {
  margin-bottom: 40px;
}

.cat-top .left-side {
  display: flex;
  flex-direction: column;
  padding: 20px;
  width: 50%;
  background: var(--bg-primary-main);
}

.cat-top .banner-img {
  width: 50%;
  border: 1px solid var(--bg-alt-stroke);
  display: flex;
  background: var(--bg-primary-main);
}

.cat-top .banner-img img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.cat-top .page-title {
  margin-bottom: 15px;
}

.cat-top .banner-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-primary-main);
  margin-bottom: 10px;
}

.cat-top .banner-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.cat-top .banner-list-item {
  position: relative;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-main);
}

.cat-top .banner-list-item:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 1px;
  position: absolute;
  top: 7px;
  left: 0px;
  background: var(--bg-primary-stroke);
}

.related-holder {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.related.products .btn {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}

.related.products .btn:hover {
  background: var(--bg-primary-stroke);
}

.summary-info {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 40px;
}

.summary-info .product-gallery {
  width: 490px;
  min-width: 490px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 140px;
}

.summary-info .gallery-main-wrapper {
  width: 100%;
  height: 490px;
}

.summary-info .swiper-slide {
  background: var(--bg-primary-main);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  cursor: pointer;
}

.summary-info .swiper-slide img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  aspect-ratio: 1/1;
}

.summary-info .gallery-holder {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.summary-info .gallery-thumbnails-holder {
  width: auto;
  max-width: 350px;
  margin-right: auto;
  margin-left: unset;
}

.summary-info .controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.summary-info .swiper-button-prev,
.summary-info .swiper-button-next {
  position: static;
}

.summary-info .nav {
  margin-top: unset;
  margin-right: unset;
}

.summary-info .summary-center {
  display: flex;
  flex-direction: column;
  width: calc((100% - 520px) / 2);
}

.summary-info .desc-holder {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.summary-info .desc-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 15px;
}

.summary-info .summary-right-side {
  display: flex;
  flex-direction: column;
  width: calc((100% - 520px) / 2);
  position: sticky;
  top: 140px;
  border-radius: 10px;
  padding: 30px;
  background: var(--bg-primary-main);
  height: fit-content;
}

.summary-info .summary-right-side .file-btn {
  margin-bottom: 20px;
}

.summary-info .gost-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 30px;
}

.summary-info .btn {
  width: 100%;
}

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

.summary-info .stock-status {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--bg-primary-stroke);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
}

.summary-info .stock-status.havent {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.summary-info .stock-icon {
  width: fit-content;
  height: fit-content;
  display: flex;
}

.summary-info .params-holder {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 30px;
  background: var(--bg-primary-main);
}

.summary-info .attrs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.summary-info .attr-item {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  position: relative;
}

.summary-info .attr-item:before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--bg-alt-stroke);
  position: absolute;
  bottom: 6px;
  left: 0;
}

.summary-info .attr-name {
  padding-right: 10px;
  padding-bottom: 2px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-second);
  position: relative;
  background: var(--bg-primary-main);
}

.summary-info .attr-value {
  background: var(--bg-primary-main);
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  padding-left: 10px;
  padding-bottom: 2px;
  text-align: right;
}

.summary-info .product-plane {
  width: 100%;
  height: auto;
  max-height: 250px;
  display: flex;
  cursor: zoom-in;
}

.summary-info .product-plane img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.tables-holder .sub-wrapper {
  padding: 120px 0px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  background: var(--bg-primary-main);
  max-width: 1920px;
}

.tables-holder .sub-wrapper .wrapper {
  display: flex;
  flex-direction: column;
}

.tables-holder .custom-table {
  margin-bottom: 40px;
}

.tables-holder .custom-table table {
  width: 100% !important;
  border: 1px solid var(--bg-alt-stroke);
  border-right: unset;
}

.tables-holder tr:nth-child(1) td {
  background: var(--bg-primary-second);
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
}

.tables-holder td {
  padding: 20px;
  border-bottom: 1px solid var(--bg-alt-stroke);
  border-right: 1px solid var(--bg-alt-stroke);
  text-align: center;
}

.tables-holder tr:last-child td {
  border-bottom: unset;
}

.tables-holder .descs {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
  gap: 10px;
}

.tables-holder .desc-left-side {
  display: flex;
  flex-direction: column;
  max-width: 620px;
}

.tables-holder .value-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 15px;
}

.tables-holder .desc-value {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-primary-main);
}

.tables-holder .mark-holder {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt-second);
  padding: 30px;
  border-radius: 10px;
  max-width: 620px;
}

.tables-holder .mark-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 15px;
}

.tables-holder .mark-value {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-primary-main);
}

.tables-holder .after-table-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-primary-main);
  max-width: 620px;
}

/* ============== Woocommerce End ============= */







.seo-block .wrapper {
  display: flex;
  gap: 30px;
}

.seo-block .left-side {
  display: flex;
  flex-direction: column;
  width: 33%;
  border-radius: 10px;
  background: var(--bg-primary-main);
  padding: 30px;
}

.seo-block .seo-img {
  width: 33%;
  display: flex;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.seo-block .seo-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.seo-block .seo-text-holder {
  width: 33%;
  padding: 30px;
  border-radius: 10px;
  background: var(--bg-primary-main);
  height: 400px;
}

.seo-block .seo-text {
  overflow: auto;
  height: 100%;
  padding-right: 20px;
}

.seo-block .main-title {
  text-align: left;
  margin-bottom: 10px;
}

.seo-block .seo-desc {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  color: var(--text-primary-main);
  margin-top: auto;
}








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

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

  #header .header-menu .sub-menu {
    top: calc(100% + 24px);
    padding: 10px;
    min-width: 250px;
  }
}

@media (max-width: 1600px) {
  .btn {
    padding: 15px 20px;
  }

  .socs {
    gap: 5px;
  }

  .soc {
    width: 48px;
    height: 48px;
  }

  #header .header-bot {
    padding: 10px;
  }

  #header .header-top {
    padding: 5px 10px;
  }

  #header .cat-control {
    padding: 5px;
    gap: 5px;
  }

  #header .cat-btn {
    padding: 10px 15px;
  }

  #header .logo-holder {
    max-width: 140px;
  }

  #header .career-btn:before {
    height: 36px;
  }
}

@media (max-width: 1400px) {
  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .soc {
    width: 38px;
    height: 38px;
  }

  #header .cat-control {
    padding: 2px;
  }

  #header .menu-wrapper {
    gap: 10px;
  }

  #footer .info-right-side {
    width: 200px;
    min-width: 200px;
  }

  #header .cat-btn {
    font-size: 14px;
  }

  #header .header-menu .sub-menu .nav-menu-element a,
  #header .nav-menu-element a {
    font-size: 14px;
  }

  #header .nav-menu-element.has-childs>a::before {
    top: 8px;
  }

  #header .header-menu .sub-menu {
    top: calc(100% + 19px);
  }

  .error-wrapper {
    padding: 20px 0px 60px 0px;
  }

  .breadcrumbs {
    padding: 10px 0px;
    gap: 5px;
    font-size: 14px;
  }

  .breadcrumbs span {
    font-size: 14px;
  }

  .text-holder p:has(a) a,
  .text-holder,
  .text-holder p,
  .text-holder li {
    font-size: 16px;
  }

  li.product-category .woocommerce-loop-category__title {
    font-size: 16px;
  }

  li.product-category .cat-right-side {
    padding: unset;
  }

  li.product-category .cat-img {
    width: 160px;
    min-width: 160px;
  }

  li.product.type-product .product-info {
    padding: 10px;
  }

  .seo-block .wrapper {
    gap: 20px;
  }

  .seo-block .seo-text-holder,
  .seo-block .left-side {
    padding: 10px;
  }

  .seo-block .seo-img,
  .seo-block .seo-text-holder {
    height: 350px;
  }

  .shop-content .sidebar {
    width: 280px;
    min-width: 280px;
    top: 110px;
  }

  .shop-content .filter-block {
    padding: 10px;
  }

  .shop-content .filter-block-title {
    font-size: 16px;
  }

  .shop-content .buttons {
    margin-top: 10px;
    gap: 10px;
  }

  .shop-content .clear-filters {
    font-size: 14px;
  }

  .filters-form .inputs.price.range .group input {
    font-size: 14px;
    padding: 10px 10px 10px 25px;
  }

  .filters-form .inputs.price.range .group:nth-child(2) input {
    padding-left: 28px;
  }

  .filters-form .inputs.price.range .group:nth-child(1):before,
  .filters-form .inputs.price.range .group:nth-child(2):before {
    font-size: 14px;
    top: 11px;
    left: 10px;
  }

  .filters-form .inputs.checkboxes {
    gap: 5px;
    padding-top: 5px;
  }

  .filters-form .inputs.checkboxes .group label {
    padding-left: 20px;
    font-size: 14px;
  }

  .filters-form .inputs.checkboxes .group label:before {
    width: 16px;
    height: 16px;
  }

  .filters-form .inputs.checkboxes .group label:after {
    width: 18px;
    height: 18px;
  }

  .filters-form .filter-block-content {
    margin-top: 5px;
  }

  .summary-info .product-gallery {
    width: 400px;
    min-width: 400px;
  }

  .summary-info {
    gap: 20px;
  }

  .summary-info .summary-right-side,
  .summary-info .product-gallery {
    top: 110px;
  }

  .summary-info .summary-right-side {
    padding: 10px;
  }

  .summary-info .summary-right-side,
  .summary-info .summary-center {
    width: calc((100% - 420px) / 2);
  }

  .summary-info .params-holder {
    padding: 10px;
  }

  .tables-holder .sub-wrapper {
    padding: 50px 0px;
  }
}

@media (max-width: 1200px) {
  #header .menu-wrapper {
    display: none;
  }

  #header .logo-holder {
    margin-right: auto;
  }

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

  #footer .footer-wrapper {
    padding: 20px 0px;
  }

  #footer .footer-law {
    padding: 10px;
  }

  #footer .menu-holder {
    gap: 20px;
  }

  #footer .footer-law p,
  #footer .footer-law a {
    font-size: 14px;
  }

  #footer .reqs-holder p,
  #footer .footer-value,
  #footer .nav-menu-element a,
  #footer .addr-item p {
    font-size: 14px;
  }

  #footer .menu-title {
    margin-bottom: 10px;
    font-size: 14px;
  }

  #footer .foot-menu {
    gap: 5px;
  }

  #footer .reqs-holder {
    gap: 5px;
    margin-top: 5px;
  }

  .error-img {
    margin-bottom: 20px;
  }

  .error-subtitle {
    font-size: 32px;
  }

  .form .file-input label,
  .form input,
  .form textarea {
    padding: 10px 15px;
    font-size: 14px;
  }

  .form .file-input label,
  .form input::placeholder,
  .form textarea::placeholder {
    font-size: 14px;
  }

  .form textarea {
    height: 80px;
  }

  .form .privacy-policy {
    margin: unset;
  }

  h1.page-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .main-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .text-holder {
    gap: 10px;
  }

  .text-holder p:has(a) a,
  .text-holder,
  .text-holder p,
  .text-holder li {
    font-size: 14px;
  }

  .block-container {
    padding: 30px 0px;
  }

  .docs-item-template .docs-name {
    margin-top: 10px;
    font-size: 14px;
  }

  .archive.docs .docs {
    gap: 20px;
  }

  .pagination {
    margin-top: 20px;
    gap: 10px;
  }

  .prev.page-numbers,
  .next.page-numbers {
    padding: 10px;
    font-size: 14px;
  }

  .archive-default {
    padding-bottom: 30px;
  }

  .text-holder h2,
  .text-holder h3,
  .text-holder h4,
  .text-holder h5,
  .text-holder h6 {
    margin-top: unset;
  }

  .text-holder h2 {
    font-size: 24px;
  }

  .text-holder h3 {
    font-size: 22px;
  }

  .text-holder h4 {
    font-size: 20px;
  }

  .text-holder h5 {
    font-size: 18px;
  }

  .text-holder h6 {
    font-size: 16px;
  }

  .text-holder p:has(a) {
    gap: 5px;
  }

  .text-holder ul li {
    padding-left: 10px;
  }

  .photo-video {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }

  .photo-video .item-name {
    font-size: 14px;
    margin-top: 5px;
  }

  .nav {
    margin-top: 20px;
  }

  .seo-block .seo-desc {
    font-size: 16px;
  }

  .shop-content {
    padding-bottom: 30px;
    gap: 20px;
  }

  .shop-content .products:has(.product.type-product) {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-top .left-side {
    padding: 10px;
  }

  .cat-top .banner-desc {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .cat-top .banner-list-item {
    font-size: 14px;
    padding-left: 10px;
  }

  .cat-top .advant-item {
    padding: 10px;
  }

  .cat-top .advant-top {
    gap: 10px;
    margin-bottom: 10px;
  }

  .cat-top .advant-name {
    font-size: 16px;
  }

  .summary-info .stock-status {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .summary-info .gost-desc {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .related-holder {
    grid-template-columns: repeat(4, 1fr);
  }

  .related.products .btn {
    margin-top: 20px;
  }

  .summary-info {
    padding-bottom: 30px;
  }

  .tables-holder td {
    padding: 10px;
  }

  .tables-holder .sub-wrapper {
    padding: 40px 0px;
  }
}

@media (max-width: 996px) {
  h1.page-title {
    font-size: 32px;
  }

  .main-title {
    font-size: 28px;
  }

  #footer .footer-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }

  #footer .menu-holder {
    width: 100%;
  }

  .container {
    padding: 0px 10px;
  }

  .form .title {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .form .subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .form .privacy-policy,
  .form .privacy-policy a {
    font-size: 14px;
  }

  .text-holder {
    gap: 10px;
  }

  .text-holder h2 {
    font-size: 22px;
  }

  .text-holder h3 {
    font-size: 20px;
  }

  .text-holder h4 {
    font-size: 18px;
  }

  .text-holder h5 {
    font-size: 16px;
  }

  .text-holder h6 {
    font-size: 14px;
  }

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

  .text-all:before {
    right: -12px;
  }

  .archive.docs .docs {
    grid-template-columns: repeat(4, 1fr);
  }

  .nav .swiper-button-prev,
  .nav .swiper-button-next {
    width: 32px;
    height: 32px;
  }

  .seo-block .wrapper {
    flex-wrap: wrap;
  }

  .seo-block .seo-text-holder,
  .seo-block .left-side {
    width: calc((100% - 20px) / 2);
    height: 300px;
  }

  .seo-block .left-side {
    order: 1;
  }

  .seo-block .seo-text-holder {
    order: 2;
  }

  .seo-block .seo-img {
    order: 3;
    max-height: 350px;
    height: auto;
    width: 100%;
  }

  .seo-block .seo-img img {
    height: auto;
  }

  .shop-content .products:has(.product.type-product) {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-content .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: 0.5s;
    z-index: 99;
    overflow: auto;
    height: 100vh;
    background: var(--bg-primary-main);
    border-right: 1px solid var(--bg-primary-stroke);
    padding: 10px;
  }

  .shop-content .sidebar.open {
    transform: unset;
  }

  #open-filter {
    display: block;
  }

  .woocommerce #sidebar-close {
    display: block;
    margin-left: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .woocommerce #sidebar-close svg {
    width: 18px;
    height: 18px;
  }

  .shop-content .add-wrapper {
    border-radius: unset;
    border: unset;
  }

  .shop-content .filter-block {
    padding: 10px 0px;
  }

  .cat-top .advant-desc {
    font-size: 14px;
  }

  .cat-top .advant-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .cat-top .banner-list {
    gap: 5px;
    margin-bottom: 10px;
  }

  .summary-info {
    flex-wrap: wrap;
    justify-content: center;
  }

  .summary-info .summary-right-side,
  .summary-info .summary-center {
    width: calc((100% - 20px) / 2);
  }

  .summary-info .product-gallery {
    position: static;
    height: 450px;
    width: 50%;
  }

  .summary-info .gallery-main-wrapper {
    height: 350px;
  }

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

  .tables-holder tr:nth-child(1) td {
    font-size: 16px;
  }

  .tables-holder td {
    font-size: 14px;
    padding: 5px;
  }

  .tables-holder .descs {
    flex-direction: column;
  }

  .tables-holder .desc-left-side {
    max-width: unset;
  }

  .tables-holder .value-title {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .tables-holder .desc-value {
    font-size: 14px;
  }

  .tables-holder .mark-holder {
    padding: 10px;
    max-width: unset;
  }

  .tables-holder .mark-title {
    font-size: 16px;
  }

  .tables-holder .mark-value {
    font-size: 14px;
  }

  .tables-holder .after-table-text {
    font-size: 14px;
    max-width: unset;
  }

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

@media (max-width: 768px) {
  h1.page-title {
    font-size: 28px;
  }

  .main-title {
    font-size: 24px;
  }

  #footer .footer-bot {
    flex-direction: column;
    padding: 10px 0px;
    gap: 5px;
    align-items: center;
  }

  #footer .rights,
  .example-holder a,
  #footer .privacy-holder {
    font-size: 14px;
  }

  #header .header-info a {
    font-size: 14px;
  }

  .error-desc {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .error-subtitle {
    font-size: 24px;
  }

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

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

  .related-holder,
  .shop-content .products:has(.product.type-product) {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cat-top .advant-item:nth-child(even) {
    border-right: unset;
  }

  li.product-category .cat-img {
    width: 120px;
    min-width: 120px;
  }

  #footer .law-holder {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  h1.page-title {
    font-size: 24px;
  }

  .main-title {
    font-size: 18px;
  }

  #header .header-info {
    gap: 10px;
  }

  #header .career-btn:before {
    display: none;
  }

  #header .career-btn {
    font-size: 14px;
  }

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

  .photo-video .video-holder,
  .photo-video .item-img {
    height: 240px;
  }

  li.product.type-product .woocommerce-loop-product__title {
    font-size: 14px;
    margin-bottom: 5px;
  }

  li.product.type-product .attr-name,
  li.product.type-product .attr-value {
    font-size: 12px;
  }

  li.product.type-product .attr-name {
    padding-right: 3px;
  }

  li.product.type-product .attr-value {
    padding-left: 3px;
  }

  li.product.type-product .attrs {
    gap: 2px;
    margin-bottom: 10px;
  }

  li.product.type-product .price {
    gap: 10px;
  }

  li.product.type-product .price bdi,
  li.product.type-product .price bdi span,
  li.product.type-product .price ins bdi,
  li.product.type-product .price ins bdi span {
    font-size: 16px;
  }

  li.product.type-product .price del bdi,
  li.product.type-product .price del bdi span {
    font-size: 14px;
  }

  .seo-block .wrapper {
    gap: 10px;
  }

  .seo-block .seo-text-holder,
  .seo-block .left-side {
    width: 100%;
    height: auto;
  }

  .seo-block .seo-text-holder {
    height: 250px;
  }

  .cat-top .cat-banner {
    flex-direction: column;
  }

  .cat-top .left-side {
    width: 100%;
  }

  .cat-top .banner-img {
    width: 100%;
  }

  .summary-info .summary-right-side,
  .summary-info .summary-center {
    width: 100%;
  }

  .summary-info .summary-right-side {
    position: static;
  }

  .summary-info .attrs {
    margin-bottom: 10px;
  }

  .tables-holder .custom-table {
    overflow: auto;
    margin-bottom: 20px;
  }

  .tables-holder .custom-table table {
    min-width: 650px;
  }

  .tables-holder td {
    font-size: 12px;
  }

  .main-cat-tabs {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 498px) {
  h1.page-title {
    font-size: 22px;
  }

  #header .header-wrapper .socs {
    display: none;
  }

  #footer .menu-holder {
    flex-wrap: wrap;
  }

  .theme-modal.fancybox__content {
    padding: 30px 15px 15px 15px;
  }

  .photo-video .video-holder,
  .photo-video .item-img {
    height: 200px;
  }

  .cat-top .advants {
    display: flex;
    flex-direction: column;
  }

  .cat-top .advant-item {
    border-bottom: 1px solid var(--bg-alt-stroke);
  }

  .cat-top .advant-item:last-child {
    border-bottom: unset;
  }

  .summary-info .gallery-main-wrapper {
    height: auto;
  }

  .summary-info .product-gallery {
    width: 100%;
    min-width: unset;
    height: auto;
  }
}

@media (max-width: 400px) {

  .related.products .btn,
  .cat-top .left-side .btn,
  .error-wrapper .btn {
    width: 100%;
  }
}

@media (max-width: 370px) {
  #header .logo-holder {
    max-width: 120px;
  }

  .error-subtitle {
    font-size: 20px;
  }

  .archive.docs .docs {
    gap: 20px 10px;
  }

  .photo-video {
    display: flex;
    flex-direction: column;
  }

  li.product-category .cat-img {
    width: 120px;
    min-width: 120px;
  }

  li.product-category .woocommerce-loop-category__title {
    font-size: 14px;
  }

  li.product-category .cat-link {
    font-size: 14px;
  }

  li.product.type-product .price {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  li.product.type-product .price del bdi,
  li.product.type-product .price del bdi span {
    font-size: 12px;
  }

  .shop-content .products:has(.product.type-product) {
    gap: 20px 10px;
  }
}