* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --curent-size: 1920;

  --font-family: "Montserrat", sans-serif;
  --second-family: "Bebas Neue Cyrillic", sans-serif;
  --third-family: "Open Sans", sans-serif;

  --chernyy: #040404;
  --belyy: #fefefe;
  --korichnyevyy: #bf5f3e;
  --zelenyy: #0e3e62;
  --seryy-: #91918c;
}

.asl_desc {
  display: none !important;
}

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

body {
  background: #ffffff;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

section:not(#main) {
  padding: calc((80 / var(--curent-size)) * 100vw) 0;
}

section:is(#contacts) {
  padding: calc((70 / var(--curent-size)) * 100vw) 0
    calc((110 / var(--curent-size)) * 100vw);
}

main {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: calc((5 / var(--curent-size)) * 100vw) 0;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 12px -2px #000;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000a5;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.preloader.open {
  opacity: 1;
  visibility: visible;
}

.send-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000a5;
  opacity: 0;
  visibility: hidden;
}

.send-message p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--chernyy);
  width: calc((355 / var(--curent-size)) * 100vw);
  height: calc((80 / var(--curent-size)) * 100vw);
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-message.open {
  opacity: 1;
  visibility: visible;
}

.preloader img {
  width: calc((40 / var(--curent-size)) * 100vw);
}

.container {
  width: calc((1520 / var(--curent-size)) * 100vw);
  margin: 0 auto;
}

header .container {
  width: calc((1800 / var(--curent-size)) * 100vw);
  margin: 0 auto;
}

.header-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.header-logo img {
  width: calc((110 / var(--curent-size)) * 100vw);
}

.header-menu {
  display: flex;
  align-items: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
  list-style: none;
}

.header-menu li {
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.main-wrapper-text {
  width: 100%;
  height: 100%;
}

.main-wrapper-text .container {
  height: 100%;
}

.header-menu li:hover > .submenu-wrapper {
  opacity: 1;
  visibility: visible;
}

.submenu-wrapper {
  position: absolute;
  top: calc((0 / var(--curent-size)) * 100vw);
  left: 0;
  padding-top: calc((30 / var(--curent-size)) * 100vw);
  opacity: 0;
  visibility: hidden;
}

.header-menu li ul {
  width: calc((240 / var(--curent-size)) * 100vw);
  background: #fff;
  list-style: none;
  border-radius: 12px;
  padding: calc((20 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((6 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
}

.header-menu li ul li a {
  transition: 0.3s ease;
}

.menu-item-has-children {
  margin-right: calc((10 / var(--curent-size)) * 100vw);
}

.menu-item-has-children:after {
  content: "";
  position: absolute;
  top: 53%;
  transform: translate(0, -50%);
  right: calc((-15 / var(--curent-size)) * 100vw);
  width: calc((10 / var(--curent-size)) * 100vw);
  height: calc((10 / var(--curent-size)) * 100vw);
  background-image: url(../img/arr.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
  transform-origin: 50% 20%;
}

.menu-item-has-children:hover:after {
  transform: rotate(180deg);
  transition: 0.3s ease;
}

.header-menu li ul li a:hover {
  transition: 0.3s ease;
  color: var(--zelenyy);
}

.header-menu li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--chernyy);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.header-nav a img {
  width: calc((40 / var(--curent-size)) * 100vw);
}

.call-btn {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((220 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  box-shadow:
    0 calc((5 / var(--curent-size)) * 100vw) 0 0 #143348,
    inset 0 15px 15px 0 rgba(255, 255, 255, 0.15);
  background: #065387;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
}

#ajaxsearchlite1 {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
}

.search-panel #ajaxsearchlite1 .probox,
div.asl_w .probox {
  backdrop-filter: blur(8.600000381469727px);
  background: rgba(4, 4, 4, 0.1);
  display: flex;
  align-items: center;
}

.search-panel div.asl_w .probox .promagnifier {
  width: calc((30 / var(--curent-size)) * 100vw);
  height: calc((30 / var(--curent-size)) * 100vw);
  margin-right: calc((32 / var(--curent-size)) * 100vw);
  box-shadow: none !important;
}

.search-panel div.asl_m .probox .proclose svg {
  box-shadow: none !important;
}

div.asl_r .results .item .asl_content {
  display: flex;
  align-items: center;
}

.search-panel #ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input {
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  font-size: calc((16 / var(--curent-size)) * 100vw) !important;
  line-height: 100% !important;
  color: var(--chernyy) !important;
}

.search-panel div.asl_r .results .item .asl_content h3 a {
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  font-size: calc((16 / var(--curent-size)) * 100vw) !important;
  line-height: 100% !important;
  color: var(--chernyy) !important;
}

.search-panel #ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input::placeholder-shown {
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  font-size: calc((16 / var(--curent-size)) * 100vw) !important;
  line-height: 100% !important;
  color: var(--chernyy) !important;
}

.search-panel div.asl_m .probox .proinput {
  margin: 0 !important;
  padding: 0 calc((32 / var(--curent-size)) * 100vw) !important;
}

.search-panel div.asl_m .probox .proinput input.autocomplete {
  margin-top: calc((-50 / var(--curent-size)) * 100vw) !important;
}

div.asl_w .probox div.prosettings {
  height: calc((50 / var(--curent-size)) * 100vw) !important;
}
#ajaxsearchlite1 .probox,
div.asl_w .probox {
  height: calc((50 / var(--curent-size)) * 100vw) !important;
}

div.asl_m .probox .proinput input {
  height: calc((50 / var(--curent-size)) * 100vw) !important;
}

.search-panel input {
  outline: none;
  width: calc((400 / var(--curent-size)) * 100vw);
  padding: calc((17 / var(--curent-size)) * 100vw)
    calc((32 / var(--curent-size)) * 100vw);
  background: rgba(4, 4, 4, 0.1);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 100%;
  color: var(--chernyy);
}

.search-panel {
  width: calc((400 / var(--curent-size)) * 100vw);
}

#main {
  width: 90%;
  height: calc((700 / var(--curent-size)) * 100vw);
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: calc((160 / var(--curent-size)) * 100vw);
}

#main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.main-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  margin: 0 auto;
}

.main-slider .swiper-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-wrapper {
  width: 100%;
  height: 100%;
}

.main-wrapper-content {
  position: absolute;
  top: calc((100 / var(--curent-size)) * 100vw);
  left: calc((100 / var(--curent-size)) * 100vw);
  z-index: 4;
}

.main-wrapper-content div {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--belyy);
  border-radius: calc((40 / var(--curent-size)) * 100vw);
  padding: calc((40 / var(--curent-size)) * 100vw);
  width: calc((823 / var(--curent-size)) * 100vw);
  backdrop-filter: blur(20px);
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  box-shadow: 0 0 12px -2px #ffffff;
}

.header-nav div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.main-wrapper-content h1 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: calc((63 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  text-align: center;
  color: #0e3e62;
  line-height: calc((40 / var(--curent-size)) * 100vw);
}

.main-wrapper-content h1 span {
  color: #bf5f3e;
}

.main-wrapper-content > img {
  width: calc((460 / var(--curent-size)) * 100vw);
}

.main-wrapper-content p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: #000;
  margin-top: calc((40 / var(--curent-size)) * 100vw);
}

.main-wrapper-content > a {
  box-shadow:
    0 calc((5 / var(--curent-size)) * 100vw) 0 0 #143348,
    inset 0 15px 15px 0 rgba(255, 255, 255, 0.15);
  background: #065387;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((97 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc((40 / var(--curent-size)) * 100vw);
}

.title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((80 / var(--curent-size)) * 100vw);
  text-align: center;
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  text-align: left;
  position: relative;
}

.title:after {
  content: "";
  position: absolute;
  bottom: calc((-20 / var(--curent-size)) * 100vw);
  left: 0;
  background: linear-gradient(
    270deg,
    rgba(191, 95, 62, 0) 0%,
    rgba(191, 95, 62, 1) 100%
  );
  width: 100%;
  height: calc((3 / var(--curent-size)) * 100vw);
}

.advantages-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((60 / var(--curent-size)) * 100vw);
}

.advantages-slider-wrapper {
  position: relative;
  width: 100%;
}

.advantages-slider {
  width: 100%;
  overflow: visible !important;
}

.adv-slide {
  position: relative;
  overflow: hidden;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  padding: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: calc((500 / var(--curent-size)) * 100vw);
}

.adv-slide-close {
  height: calc((500 / var(--curent-size)) * 100vw);
}

.adv-slide > img {
  width: calc((269 / var(--curent-size)) * 100vw);
  height: calc((269 / var(--curent-size)) * 100vw);
}

.adv-slide > p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  line-height: 120%;
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adv-slide > a {
  margin-top: auto;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--zelenyy);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((67 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.adv-slide > a:hover {
  transition: 0.3s ease;
  color: #fff;
  background: var(--zelenyy);
}

.advantages-slider-wrapper button {
  background: initial;
  border: none;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}

.advantages-slider-wrapper button img {
  width: calc((60 / var(--curent-size)) * 100vw);
  filter: hue-rotate(80deg);
}

.prev-btn {
  top: calc((220 / var(--curent-size)) * 100vw);
  left: 0;
}

.next-btn {
  top: calc((220 / var(--curent-size)) * 100vw);
  right: 0;
}

.adv-slide-more {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  background: rgba(4, 4, 4, 0.7);
  padding: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.open {
  top: 0;
  transition: 0.3s ease;
}

.adv-slide-more > p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--belyy);
}

.adv-slide-more > span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  line-height: 140%;
  color: var(--belyy);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  line-clamp: 10;
  box-orient: vertical;
}

.adv-slide-more > span.show-text {
  overflow: visible;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: unset;
  -webkit-box-orient: vertical;
  line-clamp: unset;
  box-orient: vertical;
}

.adv-slide-more > a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--belyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((212 / var(--curent-size)) * 100vw);
  height: calc((67 / var(--curent-size)) * 100vw);
  cursor: pointer;
}

.main-catalog-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((40 / var(--curent-size)) * 100vw);
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}

.main-catalog-item {
  display: flex;
  align-items: center;
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((403 / var(--curent-size)) * 100vw);
  overflow: hidden;
}

.main-catalog-title {
  height: 100%;
  padding: calc((44 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  width: calc((380 / var(--curent-size)) * 100vw);
  position: relative;
}

.main-catalog-title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    177deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.main-catalog-title img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.main-catalog-title h5 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((48 / var(--curent-size)) * 100vw);
  color: var(--belyy);
  position: relative;
  z-index: 1;
}

#single-page-services {
  padding: calc((160 / var(--curent-size)) * 100vw) 0
    calc((60 / var(--curent-size)) * 100vw) 0 !important;
}

.single-page-services-content {
  display: flex;
  align-items: flex-start;
  gap: calc((60 / var(--curent-size)) * 100vw);
  width: 100%;
  position: relative;
}

.imgs-single-page {
  width: calc((420 / var(--curent-size)) * 100vw);
  flex-shrink: 0;
  position: sticky;
  top: calc((140 / var(--curent-size)) * 100vw);
  right: 0;
}

.imgs-single-page img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
}

.single-page-services-content h1 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((80 / var(--curent-size)) * 100vw);
  text-align: center;
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  text-align: left;
}

.single-page-services-content h2,
.single-page-services-content h3,
.single-page-services-content h4,
.single-page-services-content h5,
.single-page-services-content h6 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-align: center;
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  text-align: left;
  margin-top: calc((40 / var(--curent-size)) * 100vw);
}

.single-page-services-content ul,
.single-page-services-content ol {
  padding-left: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.single-page-services-content ul li,
.single-page-services-content ol li {
  font-weight: 600 !important;
}

.single-page-services-content ul li,
.single-page-services-content ol li,
.single-page-services-content p,
.single-page-services-content span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--chernyy);
}

.main-catalog-cards-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: calc((0 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw)
    calc((0 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
}

.main-catalog-cards {
  display: flex;
  align-items: center;
  width: calc((1058 / var(--curent-size)) * 100vw);
}

.main-catalog-cards-wrapper > a {
  margin-left: auto;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: calc((18 / var(--curent-size)) * 100vw);
  position: relative;
}

.main-catalog-cards-wrapper > a:after {
  content: "";
  position: absolute;
  bottom: calc((-3 / var(--curent-size)) * 100vw);
  left: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: #065387;
}

.header-phone {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #000;
  transition: 0.3s ease;
}

.main-catalog-cards-wrapper > a p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: right;
  color: var(--zelenyy);
}

.main-catalog-cards-wrapper > a img {
  width: calc((20 / var(--curent-size)) * 100vw);
  filter: hue-rotate(65deg);
}

.card-item {
  width: calc((335 / var(--curent-size)) * 100vw);
  height: calc((509 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.card-item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  width: 100%;
}

.card-item img {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((220 / var(--curent-size)) * 100vw);
  object-fit: cover;
}

.card-item h4 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--chernyy);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
}

.card-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: center;
  color: var(--chernyy);
}

.card-item p span {
  font-weight: 600;
}

.card-item span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: center;
  color: var(--zelenyy);
}

.card-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((60 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  box-shadow: 0 calc((2 / var(--curent-size)) * 100vw) 0 0 var(--zelenyy);
  background: #065387;
  margin-top: auto;
}

div.asl_w .probox .promagnifier .innericon svg {
  width: calc((22 / var(--curent-size)) * 100vw);
}

#offers {
  background-repeat: no-repeat;
  background-size: cover;
}

.offers-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.offers-tabs {
  margin: calc((60 / var(--curent-size)) * 100vw) 0
    calc((40 / var(--curent-size)) * 100vw) 0;
  list-style: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: calc((100 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  overflow: hidden;
  background: var(--belyy);
}

.offers-tabs li {
  width: calc((380 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: center;
  color: var(--chernyy);
  cursor: pointer;
  height: 100%;
  border-right: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
}

.offers-tabs li:last-child {
  border-right: none;
}

.offers-tabs li.active {
  background: var(--zelenyy);
  color: var(--belyy);
}

.offers-tab-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.offer-tab-item {
  width: 100%;
}

.offer-tab-item-data {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: calc((43 / var(--curent-size)) * 100vw);
  align-items: stretch;
}

.offer-tab-item-img {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((649 / var(--curent-size)) * 100vw);

  overflow: hidden;
  flex-shrink: 0;
}

.offer-tab-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-tab-item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.offer-tab-item-text h4 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((60 / var(--curent-size)) * 100vw);
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: calc((20 / var(--curent-size)) * 100vw);
}

.offer-tab-item-text h4.nm-item {
  margin-bottom: calc((10 / var(--curent-size)) * 100vw);
}

.offer-tab-item-text > p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--chernyy);
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

.offer-tab-item-text > h5 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--chernyy);
  margin: calc((20 / var(--curent-size)) * 100vw) 0
    calc((10 / var(--curent-size)) * 100vw) 0;
}

.offer-tab-item-text > h5.no-strong {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--chernyy);
}

.offer-tab-item-text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: calc((20 / var(--curent-size)) * 100vw);
  list-style: none;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.offer-tab-item-text ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((2 / var(--curent-size)) * 100vw);
  position: relative;
}

.offer-tab-item-text ul li p strong {
  font-weight: 600;
}

.offer-tab-item-text ul li:before {
  content: "";
  position: absolute;
  top: calc((10 / var(--curent-size)) * 100vw);
  left: calc((-20 / var(--curent-size)) * 100vw);
  width: calc((10 / var(--curent-size)) * 100vw);
  height: calc((10 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  background: #065387;
}

.offer-tab-item-text ul li h6 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--zelenyy);
}

.offer-tab-item-text ul li p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--chernyy);
}

.offer-tab-item-dop {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: calc((40 / var(--curent-size)) * 100vw);
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.offer-tab-item-dop h6 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((50 / var(--curent-size)) * 100vw);
  text-align: center;
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-tab-item-dop p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: center;
  color: var(--chernyy);
}

.offer-tab-item-dop a {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((360 / var(--curent-size)) * 100vw);
  height: calc((97 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  box-shadow:
    0 5px 0 0 var(--zelenyy),
    inset 0 15px 15px 0 rgba(255, 255, 255, 0.15);
  background: #065387;
}

.offer-tab-item-text > a {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((557 / var(--curent-size)) * 100vw);
  height: calc((97 / var(--curent-size)) * 100vw);
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  box-shadow:
    0 5px 0 0 var(--zelenyy),
    inset 0 15px 15px 0 rgba(255, 255, 255, 0.15);
  background: #065387;
}

.hidden {
  display: none;
}

.steps-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.steps-wrapper > p {
  margin-top: calc((40 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: center;
  color: var(--chernyy);
}

.steps-items {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  gap: calc((40 / var(--curent-size)) * 100vw);
  margin-top: calc((67 / var(--curent-size)) * 100vw);
}

.step-item {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((350 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: calc((30 / var(--curent-size)) * 100vw);
  min-height: calc((442 / var(--curent-size)) * 100vw);
  overflow: hidden;
  position: relative;
}

.step-item img {
  width: 100%;
  height: calc((269 / var(--curent-size)) * 100vw);
  object-fit: contain;
}

.step-item h6 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  line-height: 120%;
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: calc((20 / var(--curent-size)) * 100vw);
}

.step-item > a {
  margin-top: auto;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((212 / var(--curent-size)) * 100vw);
  height: calc((67 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--zelenyy);
  cursor: pointer;
}

.steps-data {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: calc((70 / var(--curent-size)) * 100vw);
  justify-content: space-between;
}

.steps-data > img {
  width: calc((550 / var(--curent-size)) * 100vw);
}

.steps-data-text > img {
  display: none;
}

.steps-data-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.steps-data-text h6 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((50 / var(--curent-size)) * 100vw);
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.steps-data-text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: calc((20 / var(--curent-size)) * 100vw);
  list-style: none;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.steps-data-text ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((2 / var(--curent-size)) * 100vw);
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--chernyy);
}

.steps-data-text ul li h6 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--zelenyy);
}

.steps-data-text ul li:before {
  content: "";
  position: absolute;
  top: calc((10 / var(--curent-size)) * 100vw);
  left: calc((-20 / var(--curent-size)) * 100vw);
  width: calc((10 / var(--curent-size)) * 100vw);
  height: calc((10 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  background: #065387;
}

#about {
  /* background-image: url(../img/about.jpg);
  background-repeat: no-repeat;
  background-size: cover; */
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: calc((60 / var(--curent-size)) * 100vw);
}

.about-data {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: calc((80 / var(--curent-size)) * 100vw);
}

.about-data > p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 140%;
  color: var(--chernyy);
}

.about-data img {
  width: calc((720 / var(--curent-size)) * 100vw);
  box-shadow: 0 0 12px -2px #000;
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  flex-shrink: 0;
  object-fit: cover;
}

.about-under-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.about-under-text > p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((60 / var(--curent-size)) * 100vw);
  text-align: center;
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-items {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: calc((16 / var(--curent-size)) * 100vw);
}

.about-item {
  box-shadow: 0 0 12px -2px #0000006b;
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  padding: calc((40 / var(--curent-size)) * 100vw)
    calc((19 / var(--curent-size)) * 100vw);
  width: calc((496 / var(--curent-size)) * 100vw);
  background: var(--belyy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.about-item h6 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((50 / var(--curent-size)) * 100vw);
  text-align: center;
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: center;
  color: var(--chernyy);
}

.line-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((40 / var(--curent-size)) * 100vw);
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}

.line-wrapper h3 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((60 / var(--curent-size)) * 100vw);
  text-align: center;
  background: #065387;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.line {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  animation: scroll infinite linear;
  animation-duration: 120s;
  white-space: nowrap;
}

.line img {
  width: auto;
  height: calc((60 / var(--curent-size)) * 100vw);
}

.marquee-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marquee {
  display: flex;
  counter-reset: item;
  justify-content: space-around;
  flex-shrink: 0;
  overflow: hidden;
  /* min-width: 100%; */
  gap: calc((32 / var(--curent-size)) * 100vw);
  flex-wrap: wrap;
  animation: scroll 220s linear infinite;
  height: calc((60 / var(--curent-size)) * 100vw);
}

.marquee img {
  width: auto;
  height: calc((60 / var(--curent-size)) * 100vw);
  transform: translateZ(0);
  flex-shrink: 0;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - 20px));
    transform: translateX(calc(-100% - 20px));
  }
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((60 / var(--curent-size)) * 100vw);
}

.faq-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: calc((20 / var(--curent-size)) * 100vw);
  width: 100%;
}

.faq-item {
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  padding: calc((20 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  cursor: pointer;
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.3s ease;
  width: 100%;
}

.faq-item-head {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 34px;
}

.faq-item-head p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  color: #000;
  transition: 0.3s ease;
}

.faq-item-head span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((60 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  background: #065387;
}

.faq-item-head span svg {
  width: calc((24 / var(--curent-size)) * 100vw);
  height: calc((24 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.answer {
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  margin-top: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  color: var(--chernyy);
  transition: 0.3s linear;
}

.faq-item.active {
  grid-template-rows: auto 1fr;
}

.faq-item.active .answer {
  visibility: visible;
  margin-top: calc((10 / var(--curent-size)) * 100vw);
  transition: 0.3s linear;
}

.faq-item.active .faq-item-head span svg {
  transform: rotate(45deg);
  transition: 0.3s ease;
}

.map {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((720 / var(--curent-size)) * 100vw);
  height: calc((597 / var(--curent-size)) * 100vw);
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacts-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc((760 / var(--curent-size)) * 100vw);
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.form-wrapper > p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  color: #000;
}

.form-wrapper > p span {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--zelenyy);
}

.links {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  margin-bottom: calc((10 / var(--curent-size)) * 100vw);
}

.links a {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.links a img {
  width: calc((60 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
}

.links a p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  color: var(--chernyy);
}

#form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  position: relative;
}

#form > input {
  width: 100%;
  padding: calc((30 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  color: #00000084;
  outline: none;
  background: var(--belyy);
}

.check {
  display: flex;
  align-items: center;
  gap: calc((13 / var(--curent-size)) * 100vw);
}

.check-box {
  overflow: hidden;
  width: calc((26 / var(--curent-size)) * 100vw);
  height: calc((26 / var(--curent-size)) * 100vw);
  border-radius: calc((4 / var(--curent-size)) * 100vw);
  background: var(--belyy);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.check-box input {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.check-box.clicked:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/click.svg);
  background-repeat: no-repeat;
  background-size: 70%;
  pointer-events: none;
  background-position: center;
  cursor: pointer;
}

.check-box.clicked {
  background: var(--zelenyy);
}

.check > p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((15 / var(--curent-size)) * 100vw);
  line-height: 180%;
  color: var(--chernyy);
}

.check > p a {
  color: var(--chernyy);
  text-decoration: underline;
}

.modal-check > p {
  line-height: 1.1;
}

#form > button {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((600 / var(--curent-size)) * 100vw);
  height: calc((90 / var(--curent-size)) * 100vw);
  box-shadow:
    0 5px 0 0 var(--zelenyy),
    inset 0 15px 15px 0 rgba(255, 255, 255, 0.15);
  background: #065387;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  cursor: pointer;
  margin-top: calc((-7 / var(--curent-size)) * 100vw);
}

.contacts-wrapper > h2 {
  font-size: calc((76 / var(--curent-size)) * 100vw);
  margin-bottom: calc((120 / var(--curent-size)) * 100vw);
}

.gift {
  position: absolute;
  bottom: calc((-40 / var(--curent-size)) * 100vw);
  right: calc((-70 / var(--curent-size)) * 100vw);
  width: calc((200 / var(--curent-size)) * 100vw);
  height: calc((200 / var(--curent-size)) * 100vw);
}

.footer-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  position: relative;
}

footer {
  padding: calc((40 / var(--curent-size)) * 100vw) 0
    calc((30 / var(--curent-size)) * 100vw) 0;
}

.footer-wrapper:after {
  content: "";
  position: absolute;
  top: calc((-40 / var(--curent-size)) * 100vw);
  left: calc((0 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: #065387;
}

.footer-logo img {
  width: calc((163 / var(--curent-size)) * 100vw);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  list-style: none;
}

.footer-menu li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--chernyy);
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-item h6 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-align: right;
  color: var(--chernyy);
}

.footer-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: var(--chernyy);
  margin-top: calc((10 / var(--curent-size)) * 100vw);
}

.footer-item a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--chernyy);
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.footer-contacts h6 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-align: right;
  color: var(--chernyy);
}

.footer-contacts p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: var(--chernyy);
  text-align: end;
}

.footer-contacts a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  text-align: right;
  color: var(--chernyy);
}

.copyright {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  text-align: center;
  color: var(--chernyy);
  margin: calc((40 / var(--curent-size)) * 100vw) auto 0 auto;
}

#nav-toggle {
  display: none;
  background: initial;
  height: 48px;
  width: 48px;
  cursor: pointer;
  border: none;
  z-index: 10;
  position: relative;
  justify-content: center;
  align-items: center;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  height: calc((2.5 / var(--curent-size)) * 100vw);
  width: calc((30 / var(--curent-size)) * 100vw);
  background: #065387;
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  content: "";
  border-radius: calc((100 / var(--curent-size)) * 100vw);
}

#nav-toggle span {
  width: calc((30 / var(--curent-size)) * 100vw);
  position: relative;
  top: 0;
  left: calc((0 / var(--curent-size)) * 100vw);
  border-radius: calc((100 / var(--curent-size)) * 100vw);
}

#nav-toggle span:before {
  top: calc((-10 / var(--curent-size)) * 100vw);
}

#nav-toggle span:after {
  top: calc((10 / var(--curent-size)) * 100vw);
}

#nav-toggle span {
  transition: all 0.2s ease-in-out;
}

#nav-toggle span:before,
#nav-toggle span:after {
  transition: all 0.3s ease-in-out;
}

#nav-toggle.active span {
  background: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(-45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-135deg);
}

.mob-br {
  display: none;
}

.mobile-img {
  display: none;
}

.desk-img {
  display: block;
}

.burger-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000009d;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.burger-wrapper.open {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease;
}

.burger-panel {
  width: calc((340 / var(--curent-size)) * 100vw);
  height: 100%;
  background: #fff;
  box-shadow: calc((2 / var(--curent-size)) * 100vw)
    calc((0 / var(--curent-size)) * 100vw)
    calc((22 / var(--curent-size)) * 100vw)
    calc((2 / var(--curent-size)) * 100vw) #00000082;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 calc((20 / var(--curent-size)) * 100vw);
  padding-top: calc((120 / var(--curent-size)) * 100vw);
  transform: translateX(360px);
  transition: 0.3s ease;
}

.burger-panel.show {
  transform: translateX(0px);
  transition: 0.3s ease;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: calc((20 / var(--curent-size)) * 100vw);
  overflow-y: auto;
  width: 100%;
  height: calc((400 / var(--curent-size)) * 100vw);
}

.burger-menu li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--chernyy);
}

.burger-menu .submenu-wrapper {
  position: static;
  top: calc((0 / var(--curent-size)) * 100vw);
  left: 0;
  padding-top: calc((20 / var(--curent-size)) * 100vw);
  opacity: 1;
  visibility: visible;
}

.burger-menu .submenu-wrapper ul {
  list-style: none;
  padding-left: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  gap: calc((6 / var(--curent-size)) * 100vw);
}

.burger-menu .submenu-wrapper ul li a {
  font-size: calc((16 / var(--curent-size)) * 100vw);
  font-style: italic;
}

.step-item-show {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  background: rgba(4, 4, 4, 0.7);
  padding: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.step-item-show > p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--belyy);
}

.step-item-show > span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  line-height: 140%;
  color: var(--belyy);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  line-clamp: 10;
  box-orient: vertical;
}

.step-item-show > a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--belyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((212 / var(--curent-size)) * 100vw);
  height: calc((67 / var(--curent-size)) * 100vw);
  cursor: pointer;
}

.step-item-show.act {
  transition: 0.3s ease;
  top: 0%;
}

.mob-img {
  display: none;
}

#catalog-archive {
  margin: calc((70 / var(--curent-size)) * 100vw) 0
    calc((100 / var(--curent-size)) * 100vw) 0;
}

.category-list {
  display: flex;
  align-items: center;
  width: 100%;
  list-style: none;
  overflow: hidden;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  margin: calc((40 / var(--curent-size)) * 100vw) 0;
}

.category-item {
  width: calc((390 / var(--curent-size)) * 100vw);
  height: calc((100 / var(--curent-size)) * 100vw);
  cursor: pointer;
  border-right: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  transition: 0.3s ease;
}

.category-item:hover {
  transition: 0.3s ease;
  background: var(--zelenyy);
}

.category-item p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: center;
  color: var(--chernyy);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-item:hover p {
  transition: 0.3s ease;
  color: var(--belyy);
}

.category-item:last-child {
  border-right: none;
}

.category-item.active {
  background: var(--zelenyy);
}

.category-item.active p {
  color: var(--belyy);
}

.catalog-all-items {
  display: flex;
  align-items: flex-start;
  list-style: none;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: calc((14 / var(--curent-size)) * 100vw);
  overflow: hidden;
}

.catalog-all-items li .card-item {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  padding: calc((30 / var(--curent-size)) * 100vw);
  width: calc((369 / var(--curent-size)) * 100vw);
  height: calc((509 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  gap: calc((20 / var(--curent-size)) * 100vw);
  align-items: center;
}

.catalog-all-item.hidden {
  display: none;
}

.catalog-content-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: calc((25 / var(--curent-size)) * 100vw);
}

.content-proudcts-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.filter-wrapper {
  width: calc((327 / var(--curent-size)) * 100vw);
}

.woocommerce-ordering,
.woocommerce-result-count {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1111;
  visibility: hidden;
}

.woocommerce-breadcrumb {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc((12 / var(--curent-size)) * 100vw);
  color: #27262b;
}

.woocommerce-breadcrumb a {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc((12 / var(--curent-size)) * 100vw);
  color: #27262b;
}

.breadcrumbs-wrapper {
  margin-bottom: calc((32 / var(--curent-size)) * 100vw);
}

.wcapf-active-filters-before-shop-loop {
  display: none;
}

.wcapf-filter-title-inner {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  line-height: 144%;
  color: var(--zelenyy);
}

.wcapf-filter-item-label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((15 / var(--curent-size)) * 100vw);
  line-height: 180%;
  color: var(--chernyy);
}

.wcapf-filter-title ~ .wcapf-filter-inner > div {
  padding-top: 0 !important;
}

.wcapf-list-wrapper {
  margin-top: calc((18 / var(--curent-size)) * 100vw);
}

body:not(.rtl)
  .wcapf-filter
  .wcapf-list-wrapper.list-type-native
  .wcapf-filter-item
  input[type="checkbox"] {
  width: calc((26 / var(--curent-size)) * 100vw);
  height: calc((26 / var(--curent-size)) * 100vw);
  margin-right: calc((13 / var(--curent-size)) * 100vw) !important;
  border-radius: calc((4 / var(--curent-size)) * 100vw) !important;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy) !important;
}

.stylish-checkbox-radio input[type="checkbox"]:checked {
  background-color: var(--zelenyy) !important;
}

.wcapf-filter
  .wcapf-list-wrapper.layout-list
  ul.wcapf-filter-options
  li.wcapf-filter-option {
  margin-bottom: calc((15 / var(--curent-size)) * 100vw) !important;
}

.wcapf-form-205 > p {
  opacity: 0;
  visibility: hidden;
}

.wcapf-filter .wcapf-filter-title .wcapf-filter-accordion-trigger svg {
  width: calc((13 / var(--curent-size)) * 100vw) !important;
  height: calc((11 / var(--curent-size)) * 100vw) !important;
}

.wcapf-filter .wcapf-filter-title .wcapf-filter-accordion-trigger svg path {
  stroke: var(--zelenyy);
}

.product-panel-contact {
  padding: calc((30 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((723 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-name-model > h1 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((32 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--chernyy);
}

.product-name-model > p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--chernyy);
  margin-top: calc((10 / var(--curent-size)) * 100vw);
}

.product-name-model > span {
  font-weight: 600;
}

.single-product-links {
  display: flex;
  align-items: center;
  width: 100%;
  gap: calc((20 / var(--curent-size)) * 100vw);
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

.single-product-links a {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.single-product-links a img {
  width: calc((40 / var(--curent-size)) * 100vw);
  height: calc((40 / var(--curent-size)) * 100vw);
}

.single-product-links a p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: var(--chernyy);
}

.product-panel-contact h6 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 120%;
  color: var(--chernyy);
}

.product-panel-contact h6 span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((40 / var(--curent-size)) * 100vw);
  color: var(--zelenyy);
}

.product-panel-contact p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 92%;
  color: var(--chernyy);
}
.mailimg {
  filter: hue-rotate(55deg);
}

.product-panel-contact span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((32 / var(--curent-size)) * 100vw);
  line-height: 92%;
  color: var(--zelenyy);
  margin-bottom: calc((20 / var(--curent-size)) * 100vw);
}

.product-single-buttons {
  margin: calc((20 / var(--curent-size)) * 100vw) 0;
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc((6 / var(--curent-size)) * 100vw);
  width: calc((290 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  gap: calc((10 / var(--curent-size)) * 100vw);
  background: #065387;
  border: none;
  cursor: pointer;
}

.buy-btn svg {
  width: calc((27 / var(--curent-size)) * 100vw);
  height: calc((19 / var(--curent-size)) * 100vw);
}

.buy-btn p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 92%;
  text-transform: uppercase;
  color: var(--belyy);
}

.question-btn {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 92%;
  text-transform: uppercase;
  color: var(--zelenyy);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((6 / var(--curent-size)) * 100vw);
  width: calc((290 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: initial;
  cursor: pointer;
}

.product-data-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  position: sticky;
  top: calc((90 / var(--curent-size)) * 100vw);
  right: 0;
}

.single-product-content {
  width: calc((760 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.single-product-content-wrapper {
  display: flex;
  align-items: flex-start;
  width: calc((1520 / var(--curent-size)) * 100vw);
  gap: calc((37 / var(--curent-size)) * 100vw);
  position: relative;
  margin: calc((60 / var(--curent-size)) * 100vw) auto 0 auto;
}

.single-slider {
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((400 / var(--curent-size)) * 100vw);
  overflow: hidden;
}

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

.single-slider-wrapper {
  display: flex;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
  width: calc((760 / var(--curent-size)) * 100vw);
}

.single-slider-pogination-wrapper {
  height: calc((400 / var(--curent-size)) * 100vw);
  width: calc((150 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border-radius: calc((5 / var(--curent-size)) * 100vw);
  flex-shrink: 0;
}

.single-slider-pogination {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
  height: calc((400 / var(--curent-size)) * 100vw);
  width: 100%;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  position: relative;
  bottom: 0 !important;
}

.single-slider-pogination-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(
    360deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 35%,
    rgba(255, 255, 255, 0.43) 87%,
    rgba(255, 255, 255, 0) 100%
  );
}

.single-slider-pogination::-webkit-scrollbar {
  width: 0;
  height: 0;
  background-color: #143861;
}

.single-slider-pogination::-webkit-scrollbar-thumb {
  background-color: #84346500;
  border-radius: 0;
}

.single-slider-pogination span {
  border-radius: calc((5 / var(--curent-size)) * 100vw);
  width: calc((150 / var(--curent-size)) * 100vw);
  height: calc((100 / var(--curent-size)) * 100vw);
  background-size: cover;
  flex-shrink: 0;
  margin: 0 !important;
}

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

.single-tabs {
  display: flex;
  align-items: center;
  width: 100%;
  list-style: none;
  overflow: hidden;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
}

.single-tabs li {
  width: calc((380 / var(--curent-size)) * 100vw);
  height: calc((70 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  line-height: 120%;
  text-align: center;
  color: var(--chernyy);
  cursor: pointer;
}

.single-tabs li.active {
  color: var(--belyy);
  background: var(--zelenyy);
}

.single-tabs-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.single-tabs-text p,
.single-tabs-text span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--chernyy);
}

.single-tabs-wrapper {
  margin-top: calc((40 / var(--curent-size)) * 100vw);
}

.single-tabs-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  list-style: none;
  gap: calc((11 / var(--curent-size)) * 100vw);
}

.single-tabs-list li {
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
}

.single-tabs-list li > div {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.single-tabs-list li p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  line-height: 1;
  color: var(--chernyy);
}

.single-tabs-list li > span {
  flex-shrink: 1;
  text-decoration: dotted;
}

.single-tabs-list li > span {
  flex-grow: 1;
  position: relative;
  margin: 0 10px;
}

.single-tabs-list li > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc((4 / var(--curent-size)) * 100vw);
  border-bottom: calc((1 / var(--curent-size)) * 100vw) dashed #000;
}

.hidden {
  display: none;
}

.tooltip {
  cursor: pointer;
  width: calc((30 / var(--curent-size)) * 100vw);
  height: calc((30 / var(--curent-size)) * 100vw);
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: relative;
}

.tooltip.green {
  background-image: url(../img/tool.svg);
}

.tooltip.brown {
  background-image: url(../img/ops.svg);
}

.tooltip.white {
  background-image: url(../img/ops-w.svg);
}

.category-list-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}

.tooltip span {
  position: absolute;
  top: 0;
  left: calc((40 / var(--curent-size)) * 100vw);
  width: calc((320 / var(--curent-size)) * 100vw);
  height: fit-content;
  border-radius: calc((5 / var(--curent-size)) * 100vw);
  background: var(--belyy);
  z-index: 1;
  padding: calc((14 / var(--curent-size)) * 100vw);
  box-shadow: 0 0 8px -4px #000;
  opacity: 0;
  visibility: hidden;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((14 / var(--curent-size)) * 100vw);
  line-height: 1;
  color: var(--chernyy);
}

.tooltip span.open {
  opacity: 1;
  visibility: visible;
}

.single-form-wrapper {
  margin: calc((50 / var(--curent-size)) * 100vw) auto
    calc((120 / var(--curent-size)) * 100vw) auto;
  width: calc((1520 / var(--curent-size)) * 100vw);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  height: calc((423 / var(--curent-size)) * 100vw);
  background-image: url(../img/form.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: calc((40 / var(--curent-size)) * 100vw)
    calc((60 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.single-form-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: space-between;
  width: calc((700 / var(--curent-size)) * 100vw);
}

.single-form-text div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.single-form-text div p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc((90 / var(--curent-size)) * 100vw);
  color: var(--belyy);
}

.single-form-text div span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--belyy);
}

.single-form-text > span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--belyy);
}

.single-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc((610 / var(--curent-size)) * 100vw);
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.single-form > input {
  width: 100%;
  padding: calc((30 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  outline: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  color: var(--chernyy);
}

.single-form > button {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--zelenyy);
  width: 100%;
  height: calc((90 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.single-form > button:hover {
  transition: 0.3s ease;
  color: var(--belyy);
  background: var(--zelenyy);
}

.single-form > div {
  display: flex;
  align-items: center;
  gap: calc((13 / var(--curent-size)) * 100vw);
  margin-top: 0;
}

.single-form > div p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((15 / var(--curent-size)) * 100vw);
  line-height: 180%;
  color: var(--belyy);
}

.single-check {
  width: calc((26 / var(--curent-size)) * 100vw);
  height: calc((26 / var(--curent-size)) * 100vw);
  border-radius: calc((4 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  background: #fff;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.single-check input {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}

.single-check.clicked {
  background: var(--zelenyy);
}

.single-check.clicked:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/click.svg);
  background-repeat: no-repeat;
  background-size: 70%;
  z-index: 2;
  pointer-events: none;
  background-position: center;
  cursor: pointer;
}

.single-sheet-wrapper {
  margin: calc((20 / var(--curent-size)) * 100vw) auto 0 auto;
  width: calc((1520 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.sheet-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sheet-head {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: end;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--chernyy);
  overflow: hidden;
  border-radius: calc((10 / var(--curent-size)) * 100vw)
    calc((10 / var(--curent-size)) * 100vw) 0 0;
  background: var(--zelenyy);
}

.sheet-head p {
  width: calc((293.33 / var(--curent-size)) * 100vw);
  height: calc((51 / var(--curent-size)) * 100vw);
  border-left: calc((1 / var(--curent-size)) * 100vw) solid var(--chernyy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--belyy);
}

.sheet-price {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: end;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--chernyy);
  border-top: none;
  overflow: hidden;
  background: var(--belyy);
}

.sheet-price p {
  width: calc((293.33 / var(--curent-size)) * 100vw);
  height: calc((51 / var(--curent-size)) * 100vw);
  border-left: calc((1 / var(--curent-size)) * 100vw) solid var(--chernyy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--chernyy);
}

.sheet {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.sheet li {
  width: 100%;
  display: flex;
  align-items: stretch;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--chernyy);
  border-top: none;
  min-height: calc((80 / var(--curent-size)) * 100vw);
}

.sheet li.title-row {
  background: var(--seryy-);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--chernyy);
  border-top: none;
  padding: calc((6 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  min-height: unset;
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.sheet li.title-row p {
  color: #fff;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  line-height: 130%;
}

.row-name {
  width: calc((640 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  padding: calc((10 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
}

.row-name img {
  cursor: pointer;
  width: calc((30 / var(--curent-size)) * 100vw);
  height: calc((30 / var(--curent-size)) * 100vw);
}

.row-name p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  line-height: 130%;
  color: var(--chernyy);
}

.sheet-item {
  width: calc((293.33 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: calc((1 / var(--curent-size)) * 100vw) solid var(--chernyy);
}

.sheet-item img {
  width: calc((60 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  object-fit: contain;
}

.filters-weigth {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((18 / var(--curent-size)) * 100vw);
  position: relative;
}

.filters-weigth-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.filters-weigth-head button {
  /* position: absolute;
  top: 0;
  right: 0; */
  border: none;
  background: initial;
}

.wcapf-filter-taxonomy-pa_nalichie-garazha {
  margin: 0 0 calc((40 / var(--curent-size)) * 100vw) 0 !important;
}

.wcapf-form.wcapf-form-205 > p {
  display: none;
}

.filters-weigth-head svg {
  width: calc((13 / var(--curent-size)) * 100vw);
  height: calc((11 / var(--curent-size)) * 100vw);
  transform: rotate(180deg);
  transition: 0.3s ease;
}

.filters-weigth-head svg.rotate {
  transform: rotate(0deg);
  transition: 0.3s ease;
}

.filters-weigth-head svg path {
  stroke: var(--zelenyy);
}

.filters-weigth-head > p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  line-height: 144%;
  color: var(--zelenyy);
}

.inputs-items {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.inputs-items.hide {
  display: none;
}

.inputs-items > div input {
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((6 / var(--curent-size)) * 100vw);
  outline: none;
  width: calc((154 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 400;
  padding: calc((13 / var(--curent-size)) * 100vw)
    calc((18 / var(--curent-size)) * 100vw)
    calc((13 / var(--curent-size)) * 100vw)
    calc((37 / var(--curent-size)) * 100vw);
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 162%;
  color: var(--chernyy);
}

.inputs-items > div {
  position: relative;
}

.inputs-items > div:first-child:after {
  content: "От";
  position: absolute;
  top: 50%;
  left: calc((13 / var(--curent-size)) * 100vw);
  transform: translate(0, -50%);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((15 / var(--curent-size)) * 100vw);
  line-height: 173%;
  color: var(--zelenyy);
}

.inputs-items > div:last-child:after {
  content: "До";
  position: absolute;
  top: 50%;
  left: calc((13 / var(--curent-size)) * 100vw);
  transform: translate(0, -50%);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((15 / var(--curent-size)) * 100vw);
  line-height: 173%;
  color: var(--zelenyy);
}

.wcapf-filter-taxonomy-pa_ploshhad {
  display: none;
}

.moobile-catalog-btns {
  display: none;
}

.lmp_load_more_button .load-more-btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((24 / var(--curent-size)) * 100vw) !important;
  line-height: 120%;
  text-align: right;
  color: var(--zelenyy) !important;
  position: relative;
  margin-right: calc((30 / var(--curent-size)) * 100vw);
}

.lmp_load_more_button .load-more-btn:hover {
  color: var(--zelenyy) !important;
}

.lmp_load_more_button .load-more-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: calc((-30 / var(--curent-size)) * 100vw);
  width: calc((12 / var(--curent-size)) * 100vw);
  height: calc((21 / var(--curent-size)) * 100vw);
  background-image: url(../img/more-arr.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.lmp_load_more_button .load-more-btn:before {
  content: "";
  position: absolute;
  bottom: calc((-10 / var(--curent-size)) * 100vw);
  left: 0;
  width: 108%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: var(--zelenyy);
}

.close-cat-list {
  display: none;
}

.product-panel-contact-mobile,
.product-name-model-mobile {
  display: none;
}

.mobile-text {
  display: none;
}

.woocommerce-breadcrumb {
  width: calc((1520 / var(--curent-size)) * 100vw);
  margin: 0 auto;
}

.policy-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#policy {
  margin: calc((40 / var(--curent-size)) * 100vw) 0 0 0;
}

.policy-content h1 {
  margin-bottom: calc((40 / var(--curent-size)) * 100vw);
}

.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((34 / var(--curent-size)) * 100vw);
  color: #000;
  margin: calc((16 / var(--curent-size)) * 100vw) 0;
}

.policy-content a,
.policy-content p,
.policy-content span,
.policy-content div,
.policy-content ul li,
.policy-content ol li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 140%;
  color: var(--chernyy);
}

.policy-content a {
  text-decoration: underline;
}

.not-found-products {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc((40 / var(--curent-size)) * 100vw);
  margin-top: calc((80 / var(--curent-size)) * 100vw);
  height: calc((500 / var(--curent-size)) * 100vw);
}

.not-found-products p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((34 / var(--curent-size)) * 100vw);
  color: #000;
}

.not-found-products a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: calc((320 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  cursor: pointer;
  box-shadow: 0 calc((2 / var(--curent-size)) * 100vw) 0 0 var(--zelenyy);
  background: #065387;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a9;
  z-index: 99;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.modal-wrapper-open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: calc((500 / var(--curent-size)) * 100vw);
  height: fit-content;
  padding: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: calc((180 / var(--curent-size)) * 100vw);
  background: #fff;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
}

.modal-content > p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((28 / var(--curent-size)) * 100vw);
  color: #000;
  text-align: center;
}

.close-modal {
  position: absolute;
  top: calc((20 / var(--curent-size)) * 100vw);
  right: calc((20 / var(--curent-size)) * 100vw);
  border: none;
  background: initial;
  cursor: pointer;
}

.close-modal img {
  width: calc((30 / var(--curent-size)) * 100vw);
  filter: invert(1);
}

.modal-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: calc((16 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.modal-form > input {
  width: 100%;
  padding: calc((16 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #00000084;
  outline: none;
  background: var(--belyy);
}

.modal-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((60 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  box-shadow: 0 calc((2 / var(--curent-size)) * 100vw) 0 0 var(--zelenyy);
  background: #065387;
  cursor: pointer;
  margin-top: calc((10 / var(--curent-size)) * 100vw);
}

.call-btn-modal {
  cursor: pointer;
}

.single-product-item {
  margin-top: calc((40 / var(--curent-size)) * 100vw);
}

.modal-wrapper-buy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a9;
  z-index: 99;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.modal-wrapper-open {
  opacity: 1;
  visibility: visible;
}

.modal-content-buy {
  width: calc((500 / var(--curent-size)) * 100vw);
  height: fit-content;
  padding: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: calc((180 / var(--curent-size)) * 100vw);
  background: #fff;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
}

.modal-content-buy > p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((28 / var(--curent-size)) * 100vw);
  color: #000;
  text-align: center;
}

.close-modal-buy {
  position: absolute;
  top: calc((20 / var(--curent-size)) * 100vw);
  right: calc((20 / var(--curent-size)) * 100vw);
  border: none;
  background: initial;
  cursor: pointer;
}

.close-modal-buy img {
  width: calc((30 / var(--curent-size)) * 100vw);
  filter: invert(1);
}

.modal-form-buy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: calc((16 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.modal-form-buy > input {
  width: 100%;
  padding: calc((16 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #00000084;
  outline: none;
  background: var(--belyy);
}

.modal-form-buy button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((60 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  box-shadow: 0 calc((2 / var(--curent-size)) * 100vw) 0 0 var(--zelenyy);
  background: #065387;
  cursor: pointer;
  margin-top: calc((10 / var(--curent-size)) * 100vw);
}

/*  */

.modal-wrapper-question {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a9;
  z-index: 99;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.modal-wrapper-open {
  opacity: 1;
  visibility: visible;
}

.modal-content-question {
  width: calc((500 / var(--curent-size)) * 100vw);
  height: fit-content;
  padding: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: calc((180 / var(--curent-size)) * 100vw);
  background: #fff;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
}

.modal-content-question > p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((28 / var(--curent-size)) * 100vw);
  color: #000;
  text-align: center;
}

.close-modal-question {
  position: absolute;
  top: calc((20 / var(--curent-size)) * 100vw);
  right: calc((20 / var(--curent-size)) * 100vw);
  border: none;
  background: initial;
  cursor: pointer;
}

.close-modal-question img {
  width: calc((30 / var(--curent-size)) * 100vw);
  filter: invert(1);
}

.modal-form-question {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: calc((16 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.modal-form-question > input {
  width: 100%;
  padding: calc((16 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #00000084;
  outline: none;
  background: var(--belyy);
}

.modal-form-question > textarea {
  width: 100%;
  padding: calc((16 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #00000084;
  outline: none;
  background: var(--belyy);
  resize: none;
}

.modal-form-question button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((60 / var(--curent-size)) * 100vw);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
  box-shadow: 0 calc((2 / var(--curent-size)) * 100vw) 0 0 var(--zelenyy);
  background: #065387;
  cursor: pointer;
  margin-top: calc((10 / var(--curent-size)) * 100vw);
}

.tg-btn img {
  width: calc((30 / var(--curent-size)) * 100vw);
}

.materials-list {
  width: 100%;
  overflow: visible !important;
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}

.mat-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 12px -2px #00000063;
}

.mat-item a {
  width: calc((500 / var(--curent-size)) * 100vw);
  height: calc((400 / var(--curent-size)) * 100vw);
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: calc((20 / var(--curent-size)) * 100vw);
  cursor: pointer;
}

.mat-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.mat-item a p {
  padding: calc((10 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  background: #065387;
  border-radius: 4px;
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
  font-family: var(--font-family);
}

.mat-item a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  opacity: 0;
  transition: 0.3s ease;
  z-index: 2;
  font-family: var(--font-family);
}

.mat-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a8;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.mat-item:hover:after {
  opacity: 1;
  transition: 0.3s ease;
}

.mat-item:hover a p {
  opacity: 0;
  transition: 0.3s ease;
}

.mat-item:hover a span {
  opacity: 1;
  transition: 0.3s ease;
}

#materials {
  padding: calc((80 / var(--curent-size)) * 100vw) 0;
}

#works {
  padding: calc((80 / var(--curent-size)) * 100vw) 0;
}
.works-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: calc((60 / var(--curent-size)) * 100vw);
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.works-wrapper li {
  width: calc((745 / var(--curent-size)) * 100vw);
  height: calc((320 / var(--curent-size)) * 100vw);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 12px -2px #000;
}

.works-wrapper li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-wrapper li a {
  position: absolute;
  bottom: calc((20 / var(--curent-size)) * 100vw);
  right: calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  width: calc((220 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  box-shadow:
    0 calc((5 / var(--curent-size)) * 100vw) 0 0 #143348,
    inset 0 15px 15px 0 rgba(255, 255, 255, 0.15);
  background: #065387;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  color: var(--belyy);
}

.works-wrapper li span {
  position: absolute;
  top: calc((20 / var(--curent-size)) * 100vw);
  left: calc((20 / var(--curent-size)) * 100vw);
  width: calc((220 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  color: #000;
  font-family: var(--font-family);
  font-weight: 600;
  box-shadow: 0 0 12px -2px #000;
}

@media all and (max-width: 768px) {
  :root {
    --curent-size: 375;
  }

  .container {
    width: calc((340 / var(--curent-size)) * 100vw);
    margin: 0 auto;
  }

  .header-menu,
  .search-panel,
  .call-btn {
    display: none;
  }

  header {
    padding: calc((10 / var(--curent-size)) * 100vw) 0;
  }

  .header-nav a img {
    width: calc((30 / var(--curent-size)) * 100vw);
  }

  .header-nav {
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  #nav-toggle {
    display: flex;
  }

  #main {
    height: calc((459 / var(--curent-size)) * 100vw);
  }

  .main-wrapper-content {
    top: calc((90 / var(--curent-size)) * 100vw);
    left: 50%;
    transform: translate(-50%, 0);
    padding: calc((20 / var(--curent-size)) * 100vw);
    width: calc((340 / var(--curent-size)) * 100vw);
    align-items: center;
  }

  .main-wrapper-content h1 {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .main-wrapper-content h1 span {
    font-size: calc((18 / var(--curent-size)) * 100vw);
    line-height: 90%;
  }

  .main-wrapper-content > img {
    width: calc((250 / var(--curent-size)) * 100vw);
    margin-top: calc((6 / var(--curent-size)) * 100vw);
  }

  .main-wrapper-content p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    text-align: center;
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  .main-wrapper-content > a {
    height: calc((68 / var(--curent-size)) * 100vw);
    font-size: calc((20 / var(--curent-size)) * 100vw);
    text-align: center;
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  .title {
    font-size: calc((40 / var(--curent-size)) * 100vw);
  }

  section:not(#main) {
    padding: calc((30 / var(--curent-size)) * 100vw) 0;
  }

  section:is(#contacts) {
    padding: calc((30 / var(--curent-size)) * 100vw) 0
      calc((30 / var(--curent-size)) * 100vw);
  }

  .advantages-slider {
    width: calc((320 / var(--curent-size)) * 100vw);
    margin: 0;
  }

  .mat-item {
    width: calc((300 / var(--curent-size)) * 100vw);
    height: calc((300 / var(--curent-size)) * 100vw);
  }

  .mat-item a {
    width: calc((300 / var(--curent-size)) * 100vw);
    height: calc((300 / var(--curent-size)) * 100vw);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: calc((20 / var(--curent-size)) * 100vw);
    cursor: pointer;
  }

  .advantages-slider-wrapper button img {
    width: calc((40 / var(--curent-size)) * 100vw);
  }

  .adv-slide > img {
    width: calc((180 / var(--curent-size)) * 100vw);
    height: calc((180 / var(--curent-size)) * 100vw);
    margin: 0 auto;
  }

  .adv-slide {
    padding: calc((20 / var(--curent-size)) * 100vw);
    height: calc((360 / var(--curent-size)) * 100vw);
  }

  .adv-slide > p {
    text-align: center;
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .adv-slide > a {
    font-size: calc((20 / var(--curent-size)) * 100vw);
    width: 100%;
    height: calc((54 / var(--curent-size)) * 100vw);
  }

  .advantages-wrapper {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .mob-br {
    display: block;
  }

  .advantages-slider-wrapper button {
    top: calc((155 / var(--curent-size)) * 100vw);
  }

  .main-catalog-items {
    gap: calc((20 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }

  .main-catalog-item {
    flex-direction: column;
    height: fit-content;
    gap: calc((10 / var(--curent-size)) * 100vw);
    border: none;
  }

  .main-catalog-title {
    height: calc((170 / var(--curent-size)) * 100vw);
    padding: calc((20 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw);
    width: calc((340 / var(--curent-size)) * 100vw);
    border-radius: calc((10 / var(--curent-size)) * 100vw);
    overflow: hidden;
  }

  .main-catalog-title h5 {
    font-size: calc((36 / var(--curent-size)) * 100vw);
    text-align: center;
  }

  .main-catalog-cards {
    display: flex;
    align-items: center;
    width: calc((300 / var(--curent-size)) * 100vw);
    margin-left: unset;
    margin-right: auto;
    overflow: visible !important;
  }

  .main-catalog-cards-wrapper > a p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .main-catalog-cards-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 0;
  }

  .card-item {
    padding: calc((20 / var(--curent-size)) * 100vw);
    width: calc((300 / var(--curent-size)) * 100vw);
    height: calc((405 / var(--curent-size)) * 100vw);
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .card-item > img {
    height: calc((200 / var(--curent-size)) * 100vw);
  }

  .card-item > h4 {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }
  .card-item > p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .card-item > span {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .card-item > a {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  #main-catalog {
    overflow: hidden;
  }

  .main-catalog-cards-wrapper {
    width: 100%;
  }

  .main-catalog-cards-wrapper > a {
    margin-left: unset;
    margin-top: calc((10 / var(--curent-size)) * 100vw);
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .offers-tabs {
    margin: calc((28 / var(--curent-size)) * 100vw) 0
      calc((20 / var(--curent-size)) * 100vw) 0;
    height: fit-content;
    flex-direction: column;
    align-items: center;
  }

  .offers-tabs li {
    height: calc((60 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
    border-bottom: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
  }

  .offers-tabs li:last-child {
    border-bottom: none;
  }

  .offers-tabs li br {
    display: none;
  }

  .offer-tab-item-data {
    flex-direction: column;
    align-items: center;
  }

  .offer-tab-item-img {
    width: calc((340 / var(--curent-size)) * 100vw);
    height: calc((220 / var(--curent-size)) * 100vw);
  }

  .offer-tab-item-text h4 {
    font-size: calc((34 / var(--curent-size)) * 100vw);
    margin: 0;
    width: calc((280 / var(--curent-size)) * 100vw);
  }

  .offer-tab-item-text > p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  .offer-tab-item-text span {
    font-size: calc((18 / var(--curent-size)) * 100vw);
    margin: calc((20 / var(--curent-size)) * 100vw) 0
      calc((10 / var(--curent-size)) * 100vw) 0;
  }

  .offer-tab-item-text ul li p:first-child {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .offer-tab-item-text ul li p:last-child {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .offer-tab-item-text ul li:before {
    top: calc((4 / var(--curent-size)) * 100vw);
  }

  .offer-tab-item-dop h6 {
    font-size: calc((34 / var(--curent-size)) * 100vw);
  }

  .offer-tab-item-dop {
    margin-top: calc((20 / var(--curent-size)) * 100vw);
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .offer-tab-item-dop p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    margin-top: calc((10 / var(--curent-size)) * 100vw);
  }

  .offer-tab-item-dop a {
    width: 100%;
    height: calc((54 / var(--curent-size)) * 100vw);
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .offer-tab-item-text > a {
    width: 100%;
    height: calc((54 / var(--curent-size)) * 100vw);
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .mob-img {
    display: block;
    margin: calc((20 / var(--curent-size)) * 100vw) 0;
  }

  .desk-img {
    display: none;
  }

  .steps-wrapper > p {
    margin-top: calc((40 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .header-phone {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  header .container {
    width: calc((355 / var(--curent-size)) * 100vw);
    margin: 0 auto;
  }

  .steps-data-text ul li {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .steps-items {
    align-items: center;
    gap: calc((20 / var(--curent-size)) * 100vw);
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  .step-item img {
    height: calc((160 / var(--curent-size)) * 100vw);
  }

  .step-item {
    border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
    border-radius: calc((10 / var(--curent-size)) * 100vw);
    width: calc((340 / var(--curent-size)) * 100vw);
    padding: calc((20 / var(--curent-size)) * 100vw);
    min-height: calc((296 / var(--curent-size)) * 100vw);
    align-items: center;
  }

  .step-item h6 {
    font-size: calc((18 / var(--curent-size)) * 100vw);
    text-align: center;
  }

  .step-item > a {
    width: 100%;
    height: calc((54 / var(--curent-size)) * 100vw);
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .steps-data > img {
    display: none;
  }

  .steps-data-text > img {
    display: block;
    width: calc((240 / var(--curent-size)) * 100vw);
    height: calc((200 / var(--curent-size)) * 100vw);
    object-fit: contain;
  }

  .steps-data-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .steps-data-text h6 {
    text-align: center;
    font-size: calc((40 / var(--curent-size)) * 100vw);
  }

  .steps-data-text ul li h6 {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .steps-data-text ul li p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .steps-data-text ul li:before {
    top: calc((6 / var(--curent-size)) * 100vw);
  }

  .about-data {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .about-data img {
    width: calc((340 / var(--curent-size)) * 100vw);
    height: calc((292 / var(--curent-size)) * 100vw);
    object-fit: cover;
  }

  .about-items {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: calc((16 / var(--curent-size)) * 100vw);
  }

  .about-item {
    padding: calc((20 / var(--curent-size)) * 100vw)
      calc((19 / var(--curent-size)) * 100vw);
    width: calc((340 / var(--curent-size)) * 100vw);
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .about-wrapper {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .about-data > p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .about-under-text > p {
    font-size: calc((40 / var(--curent-size)) * 100vw);
  }

  .about-under-text {
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .about-item h6 {
    font-size: calc((32 / var(--curent-size)) * 100vw);
  }

  .about-item p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .line-wrapper {
    gap: calc((20 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }

  .line-wrapper h3 {
    font-size: calc((40 / var(--curent-size)) * 100vw);
  }

  .line {
    animation-duration: 120s;
  }

  .faq-wrapper {
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .faq-item-head p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .faq-item-head span {
    width: calc((40 / var(--curent-size)) * 100vw);
    height: calc((40 / var(--curent-size)) * 100vw);
  }

  .faq-item {
    padding: calc((20 / var(--curent-size)) * 100vw);
  }

  .answer {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .contacts-wrapper > h2 {
    font-size: calc((40 / var(--curent-size)) * 100vw);
    margin-bottom: calc((30 / var(--curent-size)) * 100vw);
  }

  .contacts-content {
    flex-direction: column;
    align-items: center;
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .form-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: calc((340 / var(--curent-size)) * 100vw);
    gap: calc((16 / var(--curent-size)) * 100vw);
  }

  .form-wrapper > p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
    text-align: center;
  }

  .links {
    flex-wrap: wrap;
    gap: calc((10 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw);
    margin-bottom: calc((10 / var(--curent-size)) * 100vw);
    justify-content: center;
  }

  .links a img {
    width: calc((30 / var(--curent-size)) * 100vw);
    height: calc((30 / var(--curent-size)) * 100vw);
  }

  .links a {
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .links a p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .form-wrapper > p {
    margin: calc((14 / var(--curent-size)) * 100vw) auto
      calc((-6 / var(--curent-size)) * 100vw) auto;
  }

  #form {
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  #form > input {
    width: 100%;
    padding: calc((16 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  #form > button {
    width: 100%;
    height: calc((54 / var(--curent-size)) * 100vw);
    font-size: calc((20 / var(--curent-size)) * 100vw);
    margin-top: calc((0 / var(--curent-size)) * 100vw);
  }

  .check > p {
    font-size: calc((8 / var(--curent-size)) * 100vw);
  }

  .check {
    gap: calc((7 / var(--curent-size)) * 100vw);
  }

  .map {
    width: calc((340 / var(--curent-size)) * 100vw);
    height: calc((280 / var(--curent-size)) * 100vw);
  }

  .gift {
    position: absolute;
    bottom: calc((-20 / var(--curent-size)) * 100vw);
    right: calc((0 / var(--curent-size)) * 100vw);
    width: calc((60 / var(--curent-size)) * 100vw);
    height: calc((60 / var(--curent-size)) * 100vw);
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .footer-menu li a {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .footer-menu {
    align-items: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .footer-item {
    align-items: center;
  }

  .footer-item h6 {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .footer-item p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .footer-item a {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .footer-item a:last-child {
    margin-top: calc((10 / var(--curent-size)) * 100vw);
  }

  .footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .footer-contacts p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    text-align: center;
  }

  .footer-contacts h6 {
    font-size: calc((18 / var(--curent-size)) * 100vw);
    text-align: center;
  }

  .footer-contacts a {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    text-align: center;
  }

  .copyright {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc((12 / var(--curent-size)) * 100vw);
    text-align: center;
    color: var(--chernyy);
    margin: calc((16 / var(--curent-size)) * 100vw) auto 0 auto;
    width: calc((262 / var(--curent-size)) * 100vw);
  }

  footer {
    padding: calc((24 / var(--curent-size)) * 100vw) 0
      calc((30 / var(--curent-size)) * 100vw) 0;
  }

  .footer-wrapper:after {
    content: "";
    position: absolute;
    top: calc((-20 / var(--curent-size)) * 100vw);
  }

  .call-btn-mob {
    display: flex;
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }

  .adv-slide-more {
    padding: calc((20 / var(--curent-size)) * 100vw);
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .adv-slide-more > p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .adv-slide-more > span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    line-clamp: 7;
    box-orient: vertical;
  }

  .adv-slide-more > a {
    font-size: calc((20 / var(--curent-size)) * 100vw);
    width: 100%;
    height: calc((54 / var(--curent-size)) * 100vw);
  }

  .category-list,
  .filter-wrapper {
    display: none;
  }

  .catalog-all-items li .card-item {
    padding: calc((20 / var(--curent-size)) * 100vw);
    width: calc((300 / var(--curent-size)) * 100vw);
    height: calc((405 / var(--curent-size)) * 100vw);
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .catalog-all-items {
    align-items: center;
    width: calc((300 / var(--curent-size)) * 100vw);
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .catalog-content-wrapper {
    flex-direction: column;
    align-items: center;
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  #catalog-archive {
    margin: calc((50 / var(--curent-size)) * 100vw) 0
      calc((30 / var(--curent-size)) * 100vw) 0;
  }

  .moobile-catalog-btns {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  .moobile-catalog-btns button {
    border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
    border-radius: calc((5 / var(--curent-size)) * 100vw);
    width: calc((160 / var(--curent-size)) * 100vw);
    height: calc((36 / var(--curent-size)) * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
    box-shadow: 0 2px 0 0 var(--zelenyy);
    background: linear-gradient(
      90deg,
      #105b3d 0%,
      #24bc7f 49.46%,
      #105b3d 100%
    );
  }

  .moobile-catalog-btns button p {
    font-family: var(--third-family);
    font-weight: 600;
    font-size: calc((12 / var(--curent-size)) * 100vw);
    line-height: 183%;
    color: var(--belyy);
  }

  .moobile-catalog-btns button svg {
    width: calc((12 / var(--curent-size)) * 100vw);
    height: calc((8 / var(--curent-size)) * 100vw);
  }

  .lmp_load_more_button .load-more-btn {
    font-size: calc((16 / var(--curent-size)) * 100vw) !important;
    margin-right: calc((30 / var(--curent-size)) * 100vw);
  }

  .lmp_load_more_button .load-more-btn:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: calc((-30 / var(--curent-size)) * 100vw);
    width: calc((12 / var(--curent-size)) * 100vw);
    height: calc((21 / var(--curent-size)) * 100vw);
    background-image: url(../img/more-arr.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .lmp_load_more_button .load-more-btn:before {
    content: "";
    position: absolute;
    bottom: calc((-10 / var(--curent-size)) * 100vw);
    left: 0;
    width: 113%;
    height: calc((1 / var(--curent-size)) * 100vw);
    background: var(--zelenyy);
  }

  .content-proudcts-wrapper {
    gap: calc((20 / var(--curent-size)) * 100vw);
    width: 100%;
  }

  .category-list-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a4;
    opacity: 0;
    visibility: hidden;
  }

  .category-list-wrapper.open-list {
    opacity: 1;
    visibility: visible;
  }

  .close-cat-list {
    display: block;
    position: absolute;
    top: calc((80 / var(--curent-size)) * 100vw);
    right: calc((10 / var(--curent-size)) * 100vw);
    width: calc((30 / var(--curent-size)) * 100vw);
    height: calc((30 / var(--curent-size)) * 100vw);
  }

  .category-list {
    flex-direction: column;
    align-items: center;
    display: flex;
    background: #fff;
    margin: calc((120 / var(--curent-size)) * 100vw) auto 0 auto;
    width: calc((350 / var(--curent-size)) * 100vw);
  }

  .category-item a {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .category-item {
    width: calc((350 / var(--curent-size)) * 100vw);
    height: calc((60 / var(--curent-size)) * 100vw);
  }

  .open-filters {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .filters-weigth,
  .wcapf-form-205 {
    width: 100%;
  }

  .product-data-form {
    display: none;
  }

  .single-slider-wrapper {
    flex-direction: column-reverse;
  }

  .single-slider-pogination {
    flex-direction: row;
    align-items: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
    height: calc((60 / var(--curent-size)) * 100vw);
    width: calc((340 / var(--curent-size)) * 100vw) !important;
    scroll-snap-type: x mandatory !important;
    overflow-x: scroll !important;
    position: relative;
    bottom: 0 !important;
  }

  .single-slider-pogination-wrapper {
    height: calc((60 / var(--curent-size)) * 100vw);
    width: calc((340 / var(--curent-size)) * 100vw) !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: calc((5 / var(--curent-size)) * 100vw);
  }

  .single-slider-pogination span {
    border-radius: calc((5 / var(--curent-size)) * 100vw);
    width: calc((77.5 / var(--curent-size)) * 100vw);
    height: calc((60 / var(--curent-size)) * 100vw);
    background-size: cover;
    flex-shrink: 0;
    margin: 0 !important;
  }

  .single-product-content {
    width: calc((340 / var(--curent-size)) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc((40 / var(--curent-size)) * 100vw);
  }

  .single-slider {
    border-radius: calc((10 / var(--curent-size)) * 100vw);
    width: 100%;
    height: calc((240 / var(--curent-size)) * 100vw);
    overflow: hidden;
  }

  .single-slider-wrapper {
    display: flex;
    align-items: flex-start;
    gap: calc((10 / var(--curent-size)) * 100vw);
    width: calc((340 / var(--curent-size)) * 100vw);
  }

  .single-slider-pogination-wrapper:after {
    content: unset;
  }

  .product-panel-contact-mobile,
  .product-name-model-mobile {
    display: flex;
  }

  .product-name-model-mobile {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-name-model > h1 {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .product-name-model > p {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .product-panel-contact {
    padding: calc((20 / var(--curent-size)) * 100vw);
    border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
    border-radius: calc((10 / var(--curent-size)) * 100vw);
    width: calc((340 / var(--curent-size)) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-single-buttons {
    margin: calc((20 / var(--curent-size)) * 100vw) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
    width: 100%;
  }

  .buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: calc((6 / var(--curent-size)) * 100vw);
    width: 100%;
    height: calc((52 / var(--curent-size)) * 100vw);
  }

  .buy-btn p {
    font-size: calc((20 / var(--curent-size)) * 100vw) !important;
    color: #fff !important;
    font-weight: 600 !important;
  }

  .question-btn {
    font-size: calc((20 / var(--curent-size)) * 100vw);
    width: 100%;
    height: calc((52 / var(--curent-size)) * 100vw);
  }

  .product-panel-contact span {
    text-align: center;
  }

  .single-product-content-wrapper {
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  .product-panel-contact p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc((16 / var(--curent-size)) * 100vw);
    line-height: 92%;
    color: var(--chernyy);
    text-align: center;
  }

  .single-product-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: calc((10 / var(--curent-size)) * 100vw)
      calc((16 / var(--curent-size)) * 100vw);
  }

  .single-product-links a p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .single-product-links a img {
    width: calc((30 / var(--curent-size)) * 100vw);
    height: calc((30 / var(--curent-size)) * 100vw);
  }

  .single-tabs li {
    width: calc((170 / var(--curent-size)) * 100vw);
    height: calc((47 / var(--curent-size)) * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: calc((14 / var(--curent-size)) * 100vw);
    line-height: 120%;
    text-align: center;
    color: var(--chernyy);
    cursor: pointer;
  }

  .single-tabs-text p,
  .single-tabs-text span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .single-tabs-list li p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .tooltip {
    width: calc((18 / var(--curent-size)) * 100vw);
    height: calc((18 / var(--curent-size)) * 100vw);
  }

  .tooltip span {
    position: absolute;
    top: calc((25 / var(--curent-size)) * 100vw);
    left: calc((-130 / var(--curent-size)) * 100vw);
    width: calc((270 / var(--curent-size)) * 100vw);
    height: fit-content;
    border-radius: calc((5 / var(--curent-size)) * 100vw);
    background: var(--belyy);
    z-index: 1;
    padding: calc((14 / var(--curent-size)) * 100vw);
    box-shadow: 0 0 8px -4px #000;
    opacity: 0;
    visibility: hidden;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc((12 / var(--curent-size)) * 100vw);
    line-height: 1;
    color: var(--chernyy);
  }

  .mobile-text {
    display: block;
    text-align: center;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: calc((14 / var(--curent-size)) * 100vw);
    line-height: 130%;
    text-align: center;
    color: var(--belyy);
    margin-top: calc((10 / var(--curent-size)) * 100vw);
  }

  .single-form-wrapper {
    margin: calc((50 / var(--curent-size)) * 100vw) auto
      calc((60 / var(--curent-size)) * 100vw) auto;
    width: 100%;
    border-radius: calc((10 / var(--curent-size)) * 100vw);
    height: fit-content;
    background-image: url(../img/form.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc((20 / var(--curent-size)) * 100vw)
      calc((14 / var(--curent-size)) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .single-form-text div p {
    font-size: calc((40 / var(--curent-size)) * 100vw);
    text-align: center;
  }

  .single-form-text div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .single-form-text div span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    text-align: center;
  }

  .single-form-text {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  .single-form-text > span {
    display: none;
  }

  .single-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc((300 / var(--curent-size)) * 100vw);
    gap: calc((10 / var(--curent-size)) * 100vw);
    margin-top: calc((10 / var(--curent-size)) * 100vw);
  }

  .single-form > input {
    width: 100%;
    padding: calc((16 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw);
    border: calc((1 / var(--curent-size)) * 100vw) solid var(--zelenyy);
    border-radius: calc((10 / var(--curent-size)) * 100vw);
    outline: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc((16 / var(--curent-size)) * 100vw);
    color: var(--chernyy);
  }

  .single-form > div p {
    font-size: calc((8 / var(--curent-size)) * 100vw);
  }

  .single-form > button {
    font-size: calc((20 / var(--curent-size)) * 100vw);
    height: calc((54 / var(--curent-size)) * 100vw);
  }

  .sheet-wrapper {
    overflow-x: scroll;
    width: calc((320 / var(--curent-size)) * 100vw);
    scroll-snap-type: x mandatory;
  }

  .sheet-head,
  .sheet-price,
  .sheet {
    flex-shrink: 0;
    width: calc((1000 / var(--curent-size)) * 100vw);
  }

  .sheet li.title-row p {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .row-name p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }

  .sheet-head p {
    width: calc((193 / var(--curent-size)) * 100vw);
    height: calc((53 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .sheet-price p {
    width: calc((193 / var(--curent-size)) * 100vw);
    height: calc((32 / var(--curent-size)) * 100vw);
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .sheet-item img {
    width: calc((39 / var(--curent-size)) * 100vw);
    height: calc((39 / var(--curent-size)) * 100vw);
    object-fit: contain;
  }

  .sheet li {
    min-height: calc((53 / var(--curent-size)) * 100vw);
  }

  .single-product-content-wrapper,
  .single-form-wrapper {
    width: calc((340 / var(--curent-size)) * 100vw);
  }

  .single-sheet-wrapper {
    width: 100%;
  }

  .sheet-wrapper {
    width: calc((375 / var(--curent-size)) * 100vw);

    padding: 0 calc((20 / var(--curent-size)) * 100vw);
  }

  .policy-content a,
  .policy-content p,
  .policy-content span,
  .policy-content div {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .policy-content h2,
  .policy-content h3,
  .policy-content h4,
  .policy-content h5,
  .policy-content ul li,
  .policy-content ol li {
    font-size: calc((26 / var(--curent-size)) * 100vw);
    margin: calc((16 / var(--curent-size)) * 100vw) 0;
  }

  .woocommerce-breadcrumb {
    width: calc((340 / var(--curent-size)) * 100vw);
    margin: 0 auto;
  }

  .single-product-item {
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  .adv-slide-close {
    height: calc((360 / var(--curent-size)) * 100vw);
  }

  .modal-content-question,
  .modal-content-buy,
  .modal-content {
    width: calc((350 / var(--curent-size)) * 100vw);
  }

  .modal-form-question > input,
  .modal-form-buy > input,
  .modal-form > input {
    padding: calc((12 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .modal-form-question > textarea {
    padding: calc((12 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .modal-content-question > p,
  .modal-content > p,
  .modal-content-buy > p {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .modal-content-question,
  .modal-content-buy,
  .modal-content {
    padding: calc((20 / var(--curent-size)) * 100vw);
    margin-top: calc((80 / var(--curent-size)) * 100vw);
  }

  .modal-form-question button,
  .modal-form-buy button,
  .modal-form button {
    height: calc((50 / var(--curent-size)) * 100vw);
    font-size: calc((20 / var(--curent-size)) * 100vw);
    margin-top: calc((0 / var(--curent-size)) * 100vw);
  }

  .modal-form-question .check > p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }

  .modal-form-buy .check > p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }

  .modal-form .check > p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }

  .step-item-show > a {
    font-size: calc((20 / var(--curent-size)) * 100vw);
    width: 100%;
    height: calc((54 / var(--curent-size)) * 100vw);
  }

  .step-item-show > p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
    text-align: center;
    width: 100%;
  }

  .step-item-show > span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    text-align: center;
  }

  .steps-wrapper > p br {
    display: none;
  }

  .steps-data-text > h6 {
    width: calc((270 / var(--curent-size)) * 100vw);
  }

  .marquee {
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .marquee img {
    height: calc((60 / var(--curent-size)) * 100vw);
  }

  .header-logo img {
    width: calc((50 / var(--curent-size)) * 100vw);
  }

  .materials-list {
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    gap: calc((20 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw);
    width: calc((320 / var(--curent-size)) * 100vw);
  }

  .materials-list li {
    width: 100%;
  }

  .materials-list li a {
    width: 100%;
    height: calc((240 / var(--curent-size)) * 100vw);
    padding: calc((20 / var(--curent-size)) * 100vw);
  }

  .works-wrapper li {
    width: 100%;
    height: calc((260 / var(--curent-size)) * 100vw);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .materials-list li a span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .single-page-services-content h1 {
    font-size: calc((40 / var(--curent-size)) * 100vw);
  }

  .single-page-services-content {
    flex-direction: column;
    align-items: flex-start;
  }

  #single-page-services {
    padding: calc((90 / var(--curent-size)) * 100vw) 0
      calc((60 / var(--curent-size)) * 100vw) 0 !important;
  }

  .single-page-services-content ul li,
  .single-page-services-content ol li,
  .single-page-services-content p,
  .single-page-services-content span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .imgs-single-page {
    width: 100%;
    flex-shrink: 0;
    position: static;
    top: calc((140 / var(--curent-size)) * 100vw);
    right: 0;
  }

  #main {
    width: 100%;
    height: calc((700 / var(--curent-size)) * 100vw);
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 0;
  }

  .main-wrapper-content div {
    border: calc((1 / var(--curent-size)) * 100vw) solid var(--belyy);
    border-radius: calc((20 / var(--curent-size)) * 100vw);
    padding: calc((20 / var(--curent-size)) * 100vw);
    width: 100%;
    backdrop-filter: blur(20px);
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc((20 / var(--curent-size)) * 100vw);
    box-shadow: 0 0 12px -2px #ffffff;
  }

  .main-wrapper-content h1 {
    font-size: calc((40 / var(--curent-size)) * 100vw);
    text-align: center;
    width: 100%;
  }

  #main {
    height: calc((500 / var(--curent-size)) * 100vw);
  }

  .main-wrapper-content h1 span {
    font-size: calc((40 / var(--curent-size)) * 100vw);
  }
}
