body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #232426;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  /* font-family: "Gilroy"; */
}

html {
  scroll-behavior: smooth;
  scroll-padding: 90px;
}

h2 {
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.t_center {
  text-align: center;
}

.text_white {
  color: #fff;
}

.text_black {
  color: #232426;
}

.block_subtitle {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  max-width: 825px;
  margin: 0 auto;
  margin-bottom: 50px;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  outline: none;
}

button:focus {
  outline: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.container {
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
}

.burger_block {
  display: none;
}

.burger-menu-wraper {
  display: none;
  width: 45px;
  height: 27px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}



#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 12px;
}

#nav-icon3 span:nth-child(4) {
  top: 24px;
}

#nav-icon3.show-menu span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon3.show-menu span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.show-menu span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.show-menu span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.mobile_menu {
  display: none;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  transition: 0.5s;
  isolation: isolate;
}

.header:before,
.header:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 31%;
  background: #232426;
  z-index: -1;
  transition: 0.3s;
}

@media(min-width: 1550px) {

  .header:before,
  .header:after {
    width: 37%;
  }
}

.header:before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 87% 100%, 0 100%);
}

.main_home {
  padding-top: 55px;
}

.header:after {
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 13% 100%, 0 76%, 0 0);
}

.logo_wrapper {
  background: #232426;
  height: 110px;
  display: flex;
  align-items: center;
  padding-right: 30px;
  position: relative;
  z-index: 10;
  transition: 0.4s;
}

.logo_wrapper img {
  width: 167px;
  width: 60px;
  /* scale: 0.6; */
}

.footer-logo-wrapper-img img {
  width: 100px;
}

.logo_wrapper_txt {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo_wrapper_txt span {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

/* .logo_wrapper:after {
  content: '';
  position: absolute;
  right: -29px;
  bottom: 6px;
  background: #232426;
  width: 40px;
  height: 50px;
  rotate: 55deg;
} */

.header_wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 0;
  transition: 0.4s;
  gap: 0;
}

@media (min-width: 992px) {

  /* .header.sticky:before,
  .header.sticky:after {
    bottom: 26px;
  } */

  .header.sticky .logo_wrapper,
  .header.sticky .header_right {
    height: 84px;
  }
}

.menu-header ul {
  display: flex;
  align-items: center;
  gap: 35px;
}

.menu-header ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  transition: 0.4s;
  white-space: nowrap;
  position: relative;
}

.menu-header ul li a:hover {
  text-decoration: unset;
}

.menu-header ul li a:after {
  content: '';
  position: absolute;
  bottom: -3px;
  width: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid #fff;
  translate: 0 5px;
  transition: 0.3s;
  opacity: 0;
  scale: 0;
}

.menu-header ul li a:hover:after {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

#menu-header {
  background: #232426;
  padding: 30px 32px;
  position: relative;
  isolation: isolate;
}

#menu-header:before {
  content: '';
  position: absolute;
  height: 100%;
  left: -20%;
  right: -20%;
  background: #232426;
  z-index: -1;
}

.header_right-side {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (min-width: 992px) {
  .header.sticky .header_num {
    font-size: 20px;
  }
}

.header_right {
  background: #232426;
  height: 110px;
  display: flex;
  align-items: center;
  padding-left: 30px;
  position: relative;
  transition: 0.4s;
}

/* .header_right:before {
  content: '';
  position: absolute;
  left: -29px;
  bottom: 6px;
  background: #232426;
  width: 40px;
  height: 50px;
  rotate: -55deg;
} */

.header_btn {
  border: 1px solid #fff;
  padding: 0 22px;
  height: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  isolation: isolate;
}

.header_btn:before {
  content: '';
  position: absolute;
  background: #232426;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  z-index: -1;
  translate: 0 0;
}

.header_btn:hover:before {
  translate: 0 -55px;
}

.header_btn:hover {
  border: 1px solid #fff;
  color: #232426;
  text-decoration: none;
}

.top_section_slide img {
  width: 100%;
  height: 91vh;
  object-fit: cover;
  object-position: bottom;
}

.top_section {
  position: relative;
  height: calc(100vh - 55px);
}

.top_section_info {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 5;
  max-width: 1206px;
  padding: 0 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top_section_info_title {
  font-weight: 700;
  font-size: 45px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
}

.top_section_info_subtitle {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin: 20px 0 35px;
}

.top_section_info_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  background: #fff;
  padding: 0 35px;
  height: 60px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #232426;
  /* position: relative;
  left: 50%;
  translate: -50% 0; */
  cursor: pointer;
  text-decoration: none;
}



.top_section_info_btn:hover {
  background: #232426;
  color: #fff;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: rgba(0, 0, 0, 0.35);
  /* opacity: 0.35; */
  width: 60px;
  height: 60px;
  border: unset;
  color: transparent;
  font-size: 0;
  background-image: url(/wp-content/uploads/2025/08/slide-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
  cursor: pointer;
  transition: 0.4s;
}

.slick-arrow:hover {
  background: rgba(0, 0, 0, 1);
  background-image: url(/wp-content/uploads/2025/08/slide-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.slick-prev {
  left: 0;
  rotate: 180deg;
}

.slick-next {
  right: 0;
}

.what_is {
  padding: 80px 0 35px;
}

.what_is_wrapper {
  display: flex;
  align-items: center;
  gap: 65px;
}

.what_is_imgs {
  flex-basis: 36%;
  position: relative;
}

.what_is_img {
  /* position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  opacity: 0; */
}

.what_is_txt {
  flex-basis: 64%;
}

.what_is_img img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  opacity: 0;
}

.what_is_img_1 {
  position: relative;
  opacity: 1;
}

.what_is_img_1 img {
  position: relative;
  opacity: 1;
}

.what_is_txt_item {
  display: flex;
  align-items: center;
  border: 1px solid #232426;
  padding: 15px 20px;
  gap: 18px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  background: white;
  position: relative;
  z-index: 7;
}

.what_is_wrapper:has(.what_is_txt_item:first-child:hover) .what_is_img_2 img {
  opacity: 1;
}

.what_is_wrapper:has(.what_is_txt_item:nth-child(2):hover) .what_is_img_3 img {
  opacity: 1;
}

.what_is_wrapper:has(.what_is_txt_item:nth-child(3):hover) .what_is_img_4 img {
  opacity: 1;
}

.what_is_wrapper:has(.what_is_txt_item:nth-child(4):hover) .what_is_img_5 img {
  opacity: 1;
}

.what_is_txt_item:hover {
  border: 1px solid #232426;
  background: #232426;
}

.what_is_txt_item:last-child {
  margin-bottom: 0;
}

.what_is_txt_item_num {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  background: #232426;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #fff;
  transition: 0.4s;
  /* animation: pulse 2s infinite ease-in-out; */
}

/* @keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 200, 200, .7)
  }

  70% {
    box-shadow: 0 0 0 20px rgba(200, 200, 200, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(200, 200, 200, 0)
  }
} */

.what_is_txt_item:hover .what_is_txt_item_num {
  color: #232426;
  background: #fff;
  /* animation: unset; */
}

.what_is_txt_item_t_title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #232426;
  transition: 0.4s;
  margin-bottom: 3px;
}

.what_is_txt_item_t_descr {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  color: #232426;
  transition: 0.4s;
}

.what_is_txt_item:hover .what_is_txt_item_t_title,
.what_is_txt_item:hover .what_is_txt_item_t_descr {
  color: #fff;
}

.img_lines {
  position: absolute;
  z-index: 5;
  transition: 0.3s;
}

.img_line1 {
  right: -71px;
  top: 9%;
}

.img_line2 {
  top: 30%;
  right: -81px;
}

.img_line3 {
  top: 54%;
  right: -71px;
}

.img_line4 {
  top: 70%;
  right: -66px;
}

.img_line1b,
.img_line2b,
.img_line3b,
.img_line4b {
  opacity: 0;
}

.img_line1b {
  top: 8.5%;
}

.img_line2b {
  top: 29.5%;
}

.img_line3b {
  top: 53.5%;
}

.img_line4b {
  top: 69.5%;
}

.what_is_wrapper:has(.what_is_txt_item:first-child:hover) .img_line1b {
  opacity: 1;
  z-index: 7;
}

.what_is_wrapper:has(.what_is_txt_item:nth-child(2):hover) .img_line2b {
  opacity: 1;
  z-index: 7;
}

.what_is_wrapper:has(.what_is_txt_item:nth-child(3):hover) .img_line3b {
  opacity: 1;
  z-index: 7;
}

.what_is_wrapper:has(.what_is_txt_item:nth-child(4):hover) .img_line4b {
  opacity: 1;
  z-index: 7;
}

.systems {
  margin: 80px 0;
}

.systems_title {
  margin-bottom: 40px;
}

.systems_tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.systems_tab_link {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #232426;
  padding: 0 20px;
  height: 47px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #232426;
  transition: 0.3s;
}

.systems_tab_link:hover {
  border: 1px solid #232426;
  background: #232426;
  color: #fff;
}

.systems_block {
  display: flex;
  align-items: flex-start;
}

.systems_block_side {
  flex-basis: 50%;
}

.systems_block {
  padding: 60px 0;
}

.systems_block_wrapper:nth-child(even) {
  background: #f6f6f6;
}

.systems_block_wrapper:nth-child(even) .open_txt_btn,
.systems_block_wrapper:nth-child(even) .toggle-descr-btn {
  background: #f6f6f6;
}

.systems_inf_title {
  font-weight: 600;
  font-size: 25px;
  line-height: 120%;
  color: #232426;
  margin-bottom: 30px;
}

.systems_inf_descr {
  display: flex;
  gap: 35px;
}

.systems_inf_descr_img {
  width: 174px;
  min-width: 174px;
}

.systems_inf_descr_img img {
  width: 100%;
}

.systems_inf_descr_txt p {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #232426;
}

.systems_inf_descr_txt p strong {
  font-weight: 500;
}

.systems_inf_popular {
  margin: 35px 0;
}

.systems_inf_popular_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #232426;
}

.systems_inf_popular_subtitle {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #232426;
  margin-top: 5px;
}

.info_item_b {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}

.systems_inf_th_item_txt {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  color: #232426;
  margin-top: 6px;
}

.systems_inf_th {
  display: flex;
  gap: 60px;
}

.systems_inf_variants {
  margin-top: 35px;
}

.systems_inf_btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

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

.systems_inf_btn {
  border: 1px solid #232426;
  padding: 0 19px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  cursor: pointer;
}

.systems_inf_btn.popupBtn {
  background: #232426;
  color: white;
}

.systems_inf_btn.popupBtn:hover {
  background: #373737;
}

.systems_inf_btn_form {
  color: #232426;
}

.systems_inf_btn_form:hover {
  border: 1px solid #232426;
  background: #232426;
  color: white;
  text-decoration: unset;
}

.systems_inf_btn_form:hover svg {
  filter: invert(1);
}

.systems_inf_btns_soc a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  min-width: 55px;
  height: 55px;
  border: 1px solid #232426;
  transition: 0.3s;
}


.systems_inf_btns_soc a:hover {
  border: 1px solid #232426;
  background: #232426;
}

.systems_inf_btns_soc a:hover svg {
  filter: invert(1);
}

.systems_block_side_inf {
  padding-right: 50px;
}

.systems_block_side_gallery_wrapper {
  width: 50%;
  position: relative;
}

.systems_block_side_gallery_wrapper img {
  width: 100%;
}

.systems_block_side_gallery_wrapper .slick-arrow {
  top: unset;
  left: unset;
  right: 0;
  bottom: 0;
  background-color: #000;
  translate: 0 0;
  height: 78px;
  background-size: 11px;
}

.systems_block_side_gallery_wrapper .slick-prev {
  right: 80px;
}

.slide-counter {
  position: absolute;
  bottom: 0;
  right: 56px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.43);
  background: #000;
  height: 78px;
  width: 30px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.slide-counter .current-slide {
  color: #fff;
}

.systems_block_wrapper:nth-child(even) .systems_block {
  flex-direction: row-reverse;
}

.systems_block_wrapper:nth-child(even) .systems_block_side_inf {
  padding-right: 0;
  padding-left: 50px;
}



.systems_inf_descr_txt-wrapper {
  position: relative;
}

.systems_inf_descr_txt {
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.systems_inf_descr_txt.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.toggle-descr-btn {
  border: none;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  padding: 0px 0 0px 10px;
  background: white;
  font-size: 14px;
  margin-bottom: -2px;

}

.open_txt_btn {
  position: absolute;
  right: 0;
  bottom: 0px;
  display: flex;
  align-items: center;
  background: white;
  padding-left: 3px;
}

.systems_inf_descr_txt-wrapper:has(.expanded) .open_txt_btn {
  bottom: -23px;
}

.systems_inf_descr_txt-wrapper:has(.expanded) .txt_dots {
  display: none;
}

.hideBtn {
  display: none;
}

.open_txt_btn:has(.hideBtn) {
  display: none;
}

.advent {
  background: #232426;
  padding: 140px 0 80px;
  margin-top: 50px;
  position: relative;
  clip-path: polygon(50% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
  margin-bottom: -2px;
}

.advent_top_bg_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  translate: 0 -68px;
  z-index: 5;
  height: 70px;
}

/* .advent_top_bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
} */

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

.advent_item_img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 210px;
  background: #fff;
}

.advent_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.advent_item:hover img {
  scale: 1.1;
  translate: 0 15px;
}

.advent_item {
  border: 1px solid #fff;
  overflow: hidden;
  /* transition: 0.3s; */
}

.advent_item_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  padding: 20px;
  transition: 0.3s;
  position: relative;
  z-index: 5;
}

.advent_item:hover .advent_item_title {
  background: #fff;
  color: #000;
}

.advent_item:hover {
  background: #fff;
}

.advent_banner {
  padding: 54px 76px;
  background: #393939;
  margin-top: 100px;
  position: relative;
}

.advent_banner_txt {
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  width: 53%;
}

.advent_banner_img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.advent_banner_br {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.advent_banner_br img {
  width: 100%;
  height: 100%;
}

.whywe {
  padding: 80px 0 150px;
  margin-bottom: 90px;
  background: #393939;
  position: relative;
  clip-path: polygon(50% 100%, 100% 90%, 100% 0, 0 0, 0 90%);
}

/* .semi_bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -62px;
  overflow: hidden;
  display: flex;
  justify-content: center;
} */

/* .semi_bottom img {
  width: 100%;
} */

.whywe_wrapper {
  display: flex;
  gap: 30px;
}

.whywe_side {
  flex-basis: 50%;
}

.whywe_side_title_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px;
  background-repeat: no-repeat;
  background-size: cover;
}

.whywe_side_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.whywe_side_list {
  padding: 32px;
}

.whywe_side_l .whywe_side_list {
  background: #232426;
}

.whywe_side_r .whywe_side_list {
  background: #2d2d2f;

}

.whywe_side_list_item {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  gap: 20px;
}

.whywe_side_list_item:last-child {
  margin-bottom: 0;
}

.whywe_side_list_item svg {
  min-width: 21px;
}

.inter {
  background: #393939;
  padding: 140px 0 80px;
  clip-path: polygon(50% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
  margin-bottom: -2px;
}

.inter_wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.objects {
  padding: 80px 0 130px;
  background: #232426;
  position: relative;
  margin-bottom: 30px;
  clip-path: polygon(50% 100%, 100% 90%, 100% 0, 0 0, 0 90%);
}


.objects_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.objects_img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.objects_item {
  border: 1px solid #fff;
}

.objects_item:nth-child(2) {
  transition-delay: 0.2s;
}

.objects_item:nth-child(3) {
  transition-delay: 0.3s;
}

.objects_bottom {
  padding: 25px 30px;
}

.object_name {
  font-weight: 700;
  font-size: 21px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 15px;
}

.object_descr {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}

.object_descr a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #fff;
}

.objects_title {
  margin-bottom: 50px;
}

.objects_btn {
  margin-top: 50px;
  position: relative;
  left: 50%;
  translate: -50% 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  padding: 0 30px;
  height: 49px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  transition: 0.3s;
}

.objects_btn:hover {
  border: 1px solid #fff;
  background: white;
  color: #232426;
}

.ideas {
  padding: 80px 0;
}

.ideas_title {
  margin-bottom: 40px;
}

.ideas_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.ideas_item_img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

.ideas_item {
  background: #f5f5f5;
}

.ideas_item:nth-child(2) {
  transition-delay: 0.2s;
}

.ideas_item:nth-child(3) {
  transition-delay: 0.3s;
}

.ideas_item_bottom {
  padding: 30px 35px;
}

.ideas_item_title {
  font-weight: 700;
  font-size: 21px;
  line-height: 130%;
  color: #232426;
  margin-bottom: 15px;
}

.ideas_item_discr {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: #232426;
}

.ideas_btn {
  border: 1px solid #232426;
  color: #232426;
  background: transparent;
}

.ideas_btn:hover {
  background: #232426;
  border: 1px solid #232426;
  color: white;
}

.logos {
  padding: 0 0 80px;
}

.logos_wrapper .slick-track {
  display: flex;
  align-items: center;
  gap: 50px;
}

.logos_wrapper img {
  height: 90px;
  aspect-ratio: 1/1;
}

.garanty {
  padding: 133px 0 100px;
  position: relative;
  isolation: isolate;
}

.garanty_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: top;
  z-index: -1;
  filter: brightness(0.4);
}

.garanty_title {
  margin-bottom: 60px;
}

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

.garanty_itemImg {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.garanty_itemImg img {
  width: 145px;
  display: block;
}

.garanty_item:nth-child(2) {
  transition-delay: 0.2s;
}

.garanty_item:nth-child(3) {
  transition-delay: 0.3s;
}

.garanty_item_title {
  font-weight: 700;
  font-size: 21px;
  line-height: 140%;
  text-align: center;
  color: #fff;
}

.garanty_item_descr ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 15px;
}

.garanty_item_descr ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.calculation {
  padding: 80px 0 130px;
  background: #232426;
  clip-path: polygon(50% 100%, 100% 92%, 100% 0, 0 0, 0 92%);
  margin-top: -2px;
}

.calculation_wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.calculation_side {
  flex-basis: 50%;
  width: 50%;
}

.calculation_title {
  margin-bottom: 50px;
}

.calculation_side img {
  width: 100%;
}

.form_flex p {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 18px;
}

.wpcf7-form br {
  display: none;
}

.wpcf7-form label {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #fff;
  width: 50%;
}

.wpcf7-form label input,
.wpcf7-form label select {
  width: 100%;
  border: 1px solid #fff;
  padding: 0 20px;
  height: 50px !important;
  background: transparent;
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  border-radius: 0 !important;
}

.wpcf7-form label input::placeholder,
.wpcf7-form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  opacity: 0.4;
}

.wpcf7-form label select option {
  color: #000;
}

.form_txt_bottom {
  margin: 40px 0 30px;
}

.form_txt_bottom p {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
}

.wpcf7-form .wpcf7-submit {
  padding: 0 35px;
  height: 54px;
  background: white;
  border: 1px solid white;
  transition: 0.3s;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #393939;
  cursor: pointer;
  margin: 0 auto;
  display: block;
}

.wpcf7-submit:hover {
  border: 1px solid white;
  background: #000;
  color: white;
}

.faq {
  padding: 80px 0;
}

.faq_title {
  margin-bottom: 40px;
}

.faq_wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.faq_item {
  border: 1px solid #232426;
  padding: 20px 30px;
  margin-bottom: 15px;
}

.faq_ques {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #232426;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.faq_answ {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  transition: 0.3s;
  max-height: 0;
  overflow: hidden;
}

.faq_answ strong {
  font-weight: 700;
}

.faq_ques.active+.faq_answ {
  margin-top: 15px;
}

.faq_ques svg {
  transition: 0.3s;
  min-width: 19px;
}

.faq_ques.active svg {
  rotate: 180deg;
}

.bottom_form {
  background: #232426;
  padding: 112px 0 80px;
  clip-path: polygon(50% 0, 100% 8%, 100% 100%, 0 100%, 0 8%);
}

.bottom_form_wrapper {
  display: flex;
  gap: 60px;
}

.bottom_form_side {
  flex-basis: 50%;
  width: 50%;
}

.wpcf7-form textarea {
  border: 1px solid #fff;
  padding: 14px 20px;
  height: 130px;
  resize: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  background: transparent;
  width: 100%;
  margin-top: 10px;
}

.wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-form label:has(textarea) {
  width: 100%;
  flex-basis: 100%;
}

.bottom_form .wpcf7-submit {
  margin-top: 30px;
}


footer {
  padding: 80px 0;
  background: #393939;
}

.footer_oferta {
  margin-top: 42px;
}

.footer_oferta a {
  display: block;
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer_menu_title {
  font-weight: 700;
  font-size: 19px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 20px;
}

.menu-footer a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 15px;
  display: block;
}

.footer_menu_contact_wrapper a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 8px;
}

.b24-form-wrapper.b24-form-shadow {
  box-shadow: unset !important;
}

.popup_wrapper,
.popup_wrapper2 {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -70%;
  background: #fff;
  z-index: 1000;
  padding: 20px 40px;
  width: 543px;
  height: auto;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

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

.popup_wrapper .b24-form-btn,
.popup_wrapper2 .b24-form-btn {
  border-radius: 0 !important;
  border: unset !important;
}

.b24-form-control {
  border: 0 !important;
}

.popup_wrapper.show,
.popup_wrapper2.show {
  opacity: 1;
  visibility: visible;
  translate: -50% -50%;
}

.popup_close {
  position: absolute;
  width: 45px;
  height: 45px;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #232426;
  cursor: pointer;
  transition: 0.3s;
  z-index: 50;
}

.popup_close:hover {
  background: #3d3e3f;
}

.popup_wrapper_title {
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  color: #232426;
  margin-bottom: 8px;
}

.popup_wrapper_subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #232426;
  margin-bottom: 25px;
}

.popup_wrapper .wpcf7-form label {
  color: #232426;
  width: 100%;
}

.popup_wrapper .wpcf7-form label input,
.popup_wrapper .wpcf7-form label select {
  border: 1px solid #d9d9d9;
  color: #747474;
}

.popup_wrapper .wpcf7-form label input::placeholder,
.popup_wrapper .wpcf7-form label select::placeholder {
  color: #aeaeae;
}

.popup_wrapper .wpcf7-submit {
  margin-top: 30px;
  background: #232426;
  border: 1px solid #232426;
  color: white;
  border-radius: 0 !important;
}

.popup_wrapper .wpcf7-submit:hover {
  border: 1px solid #232426;
  background: white;
  color: #232426;
}

.popup_overlay,
.popup_overlay2 {
  position: fixed;
  inset: 0;
  transition: 0.3s;
  background: #000;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.popup_overlay.show,
.popup_overlay2.show {
  opacity: 0.5;
  visibility: visible;
}

.bottom_form_side img {
  width: 100%;
}

.page-404 {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  overflow: hidden;

}

.er_img {
  position: absolute;
  z-index: -1;
}

.top_404 {
  position: relative;
  isolation: isolate;
}

.er_img_top {
  top: -35px;
  left: -70px;
}

.er_img_bottom {
  bottom: -35px;
  right: -70px;
  rotate: 180deg;
}

.page-404-text-under {
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
  color: #232426;
}

.link-to-home {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 35px;
  height: 54px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  background: #232426;
  border: 1px solid #232426;
  transition: 0.3s;
}

.link-to-home:hover {
  border: 1px solid #232426;
  color: #232426;
  background: #fff;
}

.page-404 {
  padding-top: 80px;
}

.wpcf7-not-valid {
  border: 1px solid red !important;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  color: red;
  text-align: center;
  margin-top: 0;
  border: unset;
}

.what_is_mob_btn {
  display: none;
}

.main_pol {
  padding-top: 135px;
  padding-bottom: 80px;
}

.main_pol h1 {
  font-size: 33px;
  font-weight: 700;
  color: #242a3a;
  margin-bottom: 20px;
}

.main_pol p {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.main_pol h2 {
  margin: 20px 0 10px;
  font-size: 27px;
  text-align: left;
  font-weight: 500;
  text-transform: unset;
}

.breadcrumbs_block a {
  color: #000;
  opacity: 0.6;
}

.breadcrumbs_block {
  margin-bottom: 20px;
}

.popup_wrapper .b24-form {
  height: 100%;

}

.whywe_wrapper {
  margin-top: 30px;
}







.hidden-anim {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s cubic-bezier(.34, .88, .44, .95);
}

.leftAnim {
  translate: -50px 0;
  transition: 1s;
}

.rightAnim {
  translate: 50px 0;
}

.bottomAnim {
  translate: 0 50px;
}

.topAnim {
  translate: 0 -50px;
}

.scaleAnim {
  scale: 0.1;
}

.scaleAnim07 {
  scale: 0.7;
}

.delay_02 {
  transition-delay: 0.2s;
}

.delay_03 {
  transition-delay: 0.3s;
}

.delay_04 {
  transition-delay: 0.4s;
}

.delay_05 {
  transition-delay: 0.5s;
}

.delay_06 {
  transition-delay: 0.6s;
}

.delay_08 {
  transition-delay: 0.8s;
}

.delay_1 {
  transition-delay: 1s;
}


.show-elements.leftAnim,
.show-elements.rightAnim,
.show-elements.bottomAnim,
.show-elements.topAnim,
.show-elements.scaleAnim,
.show-elements.scaleAnim07 {
  translate: 0;
  visibility: visible;
  opacity: 1;
  scale: 1;
}





















































@media(max-width: 1380px) {
  .logo_wrapper:after {
    right: -36px;
  }

  .header_right {
    margin-left: -2px;
  }

  .advent {
    clip-path: polygon(50% 0, 100% 7%, 100% 100%, 0 100%, 0 7%);
  }
}

@media(max-width: 1280px) {
  #menu-header {
    padding: 20px 20px;
    gap: 25px;
  }

  .header_right {
    padding-left: 0;
    height: 95px;
  }

  .header:before,
  .header:after {
    width: 21%;
  }

  .header:before {
    clip-path: polygon(0 0, 100% 0, 100% 67%, 81% 100%, 0 100%);
  }

  .header:after {
    clip-path: polygon(100% 0, 100% 100%, 21% 100%, 0 67%, 0 0);
  }

  .logo_wrapper {
    height: 95px;
  }

  .header_right:before {
    width: 34px;
    height: 56px;
    left: -95px;
    bottom: 2px;
  }

  .logo_wrapper:after {
    right: -87px;
    bottom: 5px;
    height: 53px;
  }

}

@media(max-width: 1024px) {

  .header_btn {
    height: 41px;
    padding: 0 15px;
    font-size: 12px;
  }

  .what_is_txt_item {
    gap: 13px;
  }

  .what_is_txt_item_t_title {
    font-size: 14px;
  }

  .what_is_txt_item_t_descr {
    font-size: 12px;
  }

  .what_is_wrapper {
    align-items: flex-start;
    gap: 32px;
  }

  .what_is_txt {
    padding-top: 25px;
  }

  .img_line1 {
    top: 6%;
  }

  .img_line1b {
    top: 5.5%;
  }

  .img_line2 {
    right: -116px;
  }

  .img_line3 {
    right: -130px;
  }

  .img_line4 {
    right: -123px;
  }

  .objects_bottom {
    padding: 15px;
  }

  .object_name {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .objects_wrapper {
    gap: 15px;
  }

  .ideas_item_bottom {
    padding: 20px 15px;
  }

  .ideas_item_title {
    font-size: 18px;
  }

  .garanty_item_title {
    font-size: 18px;
  }

  .garanty_item_descr ul li {
    font-size: 14px;
  }

  .calculation_wrapper {
    gap: 40px;
  }

  .form_flex p {
    gap: 20px;
  }

  .faq_answ {
    font-size: 14px;
  }

  .bottom_form_wrapper {
    gap: 40px;
  }

  .menu-footer a {
    font-size: 14px;
  }

  .footer_content {
    gap: 38px;
  }

  .footer_menu_contact_wrapper a {
    font-size: 18px;
  }

  .objects_wrapper {
    margin-top: 35px;
  }

  .ideas_item_img {
    height: 280px;
  }

  .objects_img {
    height: 220px;
  }

  .systems_block_wrapper:nth-child(even) .systems_block_side_inf {
    padding-left: 0;
  }

  .what_is_txt_item_num {
    width: 35px;
    min-width: 35px;
    height: 35px;
  }

  .header:before,
  .header:after {
    width: 24%;
  }

  .logo_wrapper img {
    width: 130px;
  }

  .logo_wrapper {
    padding-right: 0;
  }

  .systems_block_side_inf {
    padding-right: 50px;
  }

  .systems_tabs {
    flex-wrap: wrap;
  }

  .systems_block,
  .systems_block_wrapper:nth-child(even) .systems_block {
    flex-direction: column;
    gap: 50px;
  }

  .systems_block_side_gallery_wrapper {
    margin: 0 auto;
  }

  #menu-header {
    gap: 15px;
  }
}

@media(max-width: 992px) {

  header {
    background: #232426;
  }

  .menu-header {
    display: none;
  }

  .burger_block {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .burger-menu-wraper {
    display: block;
  }

  .mobile_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    translate: 0 -120%;
    z-index: 50;
    background-color: #232426;
    position: fixed;
    /* inset: 0; */
    bottom: 0;
    right: 0;
    left: 0;
    top: 94px;
    padding: 100px 15px 100px;
    /* background-image: url(/wp-content/uploads/2023/10/mobile-menu-bg.svg); */
    /* background-repeat: no-repeat;
    background-size: cover; */
    overflow: auto;
  }

  .mobile_menu.show-menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .mobile_menu .menu-header {
    display: block;
  }

  .logo_wrapper,
  .burger-menu-wraper {
    position: relative;
    z-index: 55;
  }

  .menu-header ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-header ul li a {
    font-size: 20px;
  }

  .advent_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .whywe_side_title {
    font-size: 20px;
  }

  .whywe_wrapper {
    gap: 15px;
  }

  .what_is {
    padding: 50px 0;
  }

  .advent {
    clip-path: polygon(50% 0, 100% 3%, 100% 100%, 0 100%, 0 3%);
    padding: 90px 0 80px;
    margin-top: 20px;
  }

  .advent_item_img {
    height: 275px;
  }

  .advent_banner {
    padding: 30px;
  }

  .advent_banner_img {
    width: 46%;
  }

  .advent_banner_txt {
    font-size: 20px;
  }

  .whywe {
    clip-path: polygon(50% 100%, 100% 95%, 100% 0, 0 0, 0 95%);
    padding: 80px 0 105px;
    margin-bottom: 70px;
  }

  .systems {
    margin: 80px 0 25px;
  }

  .inter {
    padding: 102px 0 80px;
    clip-path: polygon(50% 0, 100% 5%, 100% 100%, 0 100%, 0 5%);
  }

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

  .objects_img {
    height: auto;
  }

  .objects {
    padding: 80px 0 95px;
    margin-bottom: 0px;
    clip-path: polygon(50% 100%, 100% 96%, 100% 0, 0 0, 0 96%);
  }

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

  .ideas_item_img {
    height: auto;
  }

  .ideas_item_discr {
    font-size: 16px;
  }

  .object_descr {
    font-size: 16px;
  }

  .calculation_wrapper {
    flex-direction: column-reverse;
  }

  .calculation_side {
    flex-basis: 100%;
    width: 100%;
  }

  .calculation {
    clip-path: polygon(50% 100%, 100% 96%, 100% 0, 0 0, 0 96%);
  }

  .bottom_form_wrapper {
    flex-direction: column;
  }

  .bottom_form {
    clip-path: polygon(50% 0, 100% 6%, 100% 100%, 0 100%, 0 6%);
  }

  .bottom_form_side {
    flex-basis: 100%;
    width: 100%;
  }

  .footer_menu_contact_wrapper a {
    white-space: nowrap;
  }
}

@media(max-width: 600px) {

  .what_is_mob_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #232426;
    width: 38px;
    height: 38px;
    transition: 0.3s;
    font-weight: 600;
    font-size: 15px;
    line-height: 150%;
    color: #fff;
    position: absolute;
    border: 1px solid #232426;
    transition: 0.3s;
    z-index: 10;
    animation: pulse 2s infinite ease-in-out;
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(200, 200, 200, .7)
    }

    70% {
      box-shadow: 0 0 0 20px rgba(200, 200, 200, 0)
    }

    100% {
      box-shadow: 0 0 0 0 rgba(200, 200, 200, 0)
    }
  }

  .top_section_info_title {
    font-size: 27px;
  }

  h2 {
    font-size: 23px;
  }

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

  .whywe_wrapper {
    flex-direction: column;
  }

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

  .footer_content {
    flex-direction: column;
  }

  .systems_inf_th,
  .info_item_b {
    flex-wrap: wrap;
  }

  .systems_block_side_inf {
    padding-right: 0;
  }

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

  .systems_inf_btns {
    flex-direction: column;
    align-items: unset;
  }

  .top_section .slick-arrow {
    top: 85%;
  }

  .advent {
    clip-path: polygon(50% 0, 100% 1%, 100% 100%, 0 100%, 0 1%);
    padding-bottom: 60px;
  }

  .advent_banner_br img {
    width: 48%;
  }

  .advent_banner_txt {
    width: 100%;
  }

  .advent_banner {
    padding-bottom: 80px;
  }

  .advent_banner {
    margin-top: 45px;
  }

  .whywe {
    padding: 55px 0;
  }

  .whywe_side_title_wrapper {
    padding: 20px;
  }

  .whywe_side_title {
    font-size: 18px;
  }

  .whywe_side_list {
    padding: 24px;
  }

  .whywe {
    clip-path: polygon(50% 100%, 100% 99%, 100% 0, 0 0, 0 99%);
    margin-bottom: 35px;
  }

  .systems {
    margin: 42px 0 5px;
  }

  .systems_tab_link {
    height: 40px;
  }

  .systems_title {
    margin-bottom: 23px;
  }

  .systems_block_side_gallery_wrapper {
    width: 100%;
  }

  .systems_block_side_gallery_wrapper .slick-arrow {
    height: 55px;
  }

  .slide-counter {
    height: 55px;
  }

  .inter {
    padding: 75px 0 60px;
    clip-path: polygon(50% 0, 100% 2%, 100% 100%, 0 100%, 0 2%);
  }

  .objects {
    padding: 57px 0 70px;
    margin-bottom: 0px;
    clip-path: polygon(50% 100%, 100% 99%, 100% 0, 0 0, 0 99%);
  }

  .garanty_bg {
    object-fit: cover;
  }

  .form_flex p {
    flex-direction: column;
  }

  .wpcf7-form label {
    width: 100%;
  }

  .calculation {
    clip-path: polygon(50% 100%, 100% 98%, 100% 0, 0 0, 0 98%);
    padding: 57px 0 95px;
  }

  .calculation_title {
    margin-bottom: 35px;
  }

  .faq {
    padding: 55px 0;
  }

  .faq_title {
    margin-bottom: 30px;
  }

  .faq_ques {
    font-size: 16px;
  }

  .bottom_form {
    background: #232426;
    padding: 77px 0 60px;
    clip-path: polygon(50% 0, 100% 2%, 100% 100%, 0 100%, 0 2%);
  }

  .bottom_form_wrapper {
    gap: 10px;
  }

  footer {
    padding: 50px 0;
  }

  .footer_menu_contact_wrapper a {
    font-size: 20px;
  }

  .top_404 svg {
    width: 80%;
    margin: 0 auto;
    display: block;
  }

  .page-404-text-under {
    font-size: 30px;
  }

  .page-404 {
    height: 65vh;
    padding-top: 69px;
  }

  .what_is_wrapper {
    flex-direction: column;
  }

  .img_lines {
    display: none;
  }

  .what_is_mob_btn_2 {
    top: 6px;
    right: 18%;
  }

  .what_is_mob_btn_3 {
    top: 20%;
    left: 40%;
  }

  .what_is_mob_btn_4 {
    top: 48%;
    left: 23%;
  }

  .what_is_mob_btn_5 {
    left: 29%;
    bottom: 27%;
  }

  .what_is_wrapper {
    gap: 5px;
  }

  .what_is_img img {
    pointer-events: none;
  }

  .what_is_txt_item_num {
    width: 28px;
    min-width: 28px;
    height: 28px;
  }

  .what_is_txt_item_num {
    font-size: 14px;
  }

  .what_is_txt_item {
    padding: 12px 15px;
    margin-bottom: 8px;
  }

  .what_is_txt_item_t_descr {
    font-size: 11px;
  }

  .logo_wrapper,
  .header_right {
    height: 80px;
  }

  .what_is_txt {
    padding-top: 10px;
  }

  html {
    scroll-padding: 80px;
  }

  .what_is_mob_btn.activeBtn {
    border: 1px solid #232426;
    color: #232426;
    background: white;
  }

  .what_is_img:has(.activeBtn) img {
    opacity: 1;
  }

  .what_is_wrapper:has(.what_is_mob_btn_2.activeBtn) .what_is_txt_item:nth-child(1) {
    border: 1px solid #232426;
    background: #232426;
  }

  .what_is_wrapper:has(.what_is_mob_btn_2.activeBtn) .what_is_txt_item:nth-child(1) .what_is_txt_item_t_title,
  .what_is_wrapper:has(.what_is_mob_btn_2.activeBtn) .what_is_txt_item:nth-child(1) .what_is_txt_item_t_descr {
    color: white;
  }

  .what_is_wrapper:has(.what_is_mob_btn_2.activeBtn) .what_is_txt_item:nth-child(1) .what_is_txt_item_num {
    color: #232426;
    background: #fff;
  }



  .what_is_wrapper:has(.what_is_mob_btn_3.activeBtn) .what_is_txt_item:nth-child(2) {
    border: 1px solid #232426;
    background: #232426;
  }

  .what_is_wrapper:has(.what_is_mob_btn_3.activeBtn) .what_is_txt_item:nth-child(2) .what_is_txt_item_t_title,
  .what_is_wrapper:has(.what_is_mob_btn_3.activeBtn) .what_is_txt_item:nth-child(2) .what_is_txt_item_t_descr {
    color: white;
  }

  .what_is_wrapper:has(.what_is_mob_btn_3.activeBtn) .what_is_txt_item:nth-child(2) .what_is_txt_item_num {
    color: #232426;
    background: #fff;
  }



  .what_is_wrapper:has(.what_is_mob_btn_4.activeBtn) .what_is_txt_item:nth-child(3) {
    border: 1px solid #232426;
    background: #232426;
  }

  .what_is_wrapper:has(.what_is_mob_btn_4.activeBtn) .what_is_txt_item:nth-child(3) .what_is_txt_item_t_title,
  .what_is_wrapper:has(.what_is_mob_btn_4.activeBtn) .what_is_txt_item:nth-child(3) .what_is_txt_item_t_descr {
    color: white;
  }

  .what_is_wrapper:has(.what_is_mob_btn_4.activeBtn) .what_is_txt_item:nth-child(3) .what_is_txt_item_num {
    color: #232426;
    background: #fff;
  }



  .what_is_wrapper:has(.what_is_mob_btn_5.activeBtn) .what_is_txt_item:nth-child(4) {
    border: 1px solid #232426;
    background: #232426;
  }

  .what_is_wrapper:has(.what_is_mob_btn_5.activeBtn) .what_is_txt_item:nth-child(4) .what_is_txt_item_t_title,
  .what_is_wrapper:has(.what_is_mob_btn_5.activeBtn) .what_is_txt_item:nth-child(4) .what_is_txt_item_t_descr {
    color: white;
  }

  .what_is_wrapper:has(.what_is_mob_btn_5.activeBtn) .what_is_txt_item:nth-child(4) .what_is_txt_item_num {
    color: #232426;
    background: #fff;
  }

  .main_pol {
    padding-top: 112px;
  }

  .main_pol h1 {
    font-size: 26px;
  }

  .main_pol p {
    font-size: 14px;
  }

  .main_pol h2 {
    font-size: 21px;
  }

  .inter .slick-slide img {
    width: 100%;
  }

  .inter .slick-arrow {
    width: 35px;
    height: 45px;
  }

  .systems_inf_descr_txt p {
    font-size: 16px;
  }

  .mobile_menu {
    top: 77px;
  }

  .main_home {
    overflow: hidden;
  }

  .logo_wrapper_txt {
    gap: 9px;
  }

  .logo_wrapper_txt {
    font-size: 13px;
  }

  .logo_wrapper img {
    width: 45px;
  }
}