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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

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

button {
  cursor: pointer;
}

h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 143%;
  text-transform: uppercase;
  text-align: center;
  color: #1e1f23;
}

a {
  text-decoration: none;
}

:root {
  --main-color: #f9ae12;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  outline: unset;
}

body::-webkit-scrollbar {
  width: 13px;
  height: 13px;
}

body:has(.inpage) header {
  background: #1e1f23;
}

.d-flex {
  display: flex;
}

.flex-c {
  justify-content: center;
  align-items: center;
}

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

/* :root {
  --main-color: #FE8300;
} */

.container {
  max-width: 1310px;
  width: 100%;
  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: #f4ae1b;
  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%;
} */

.burger_lines {
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
}

.burger_lines span {
  width: 28px;
  height: 5px;
  background: white;
  border-radius: 2px;
  width: 37px;
  transition: 0.4s;
}

.burger_lines span:nth-child(2) {
  width: 30px;
}

.burger_lines.show-menu span:nth-child(3) {
  width: 15px;
}

.burger_lines.show-menu span:nth-child(2) {
  width: 27px;
}




.hidden-anim {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  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;
}

.mobile_menu {
  display: none;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  /* box-shadow: 0px 4px 4px 0px rgba(239, 239, 239, 0.50); */
  transition: 0.5s cubic-bezier(0.01, -0.02, 0, 0.79);
  /* border-bottom: 1px solid lightgray; */
}

.header.sticky {
  background: #1e1f23;
}

.header_wrapper {
  display: flex;
  /* align-items: center;
  justify-content: space-between; */
  padding: 15px 0;
  transition: 0.4s;
  flex-direction: column;
  padding-bottom: 0;
}

.header_wrapper_top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  transition: 0.3s;
}

.header.sticky .header_wrapper_top {
  margin-bottom: 8px;
}

.header_wrapper_bottom {
  /* padding: 11px 0; */
  border-top: 1px solid rgba(174, 174, 174, 0.2);
}

.header_wrapper_top_r {
  align-items: center;
}

.tech_support {
  align-items: center;
  margin-right: 50px;
}

.tech_support span {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: #fff;
  display: block;
  margin-right: 12px;
}

.tech_support_links a {
  height: 35px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #f4ae1b;
  transition: 0.3s;
}

.tech_support_links a:hover {
  background: #bc8612;
}

.tech_support_links {
  align-items: center;
  gap: 10px;
}

.header_phone_nums {
  flex-direction: column;
}

.header_phone_nums a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  line-height: 154%;
  letter-spacing: 0.01em;
  color: #fff;
  transition: 0.3s;
}

.header_phone_nums a:hover {
  color: var(--main-color);
}

.dropdown_lang {
  margin: 0 40px;
}

@media (min-width: 992px) {
  .header.sticky .header_wrapper {
    padding: 10px 0 0;
  }
}

.menu-header ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
}

.menu-header ul li {
  padding: 12px 2.97%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.menu-header ul li:hover {
  background-color: white;
}

.menu-header ul li:hover a {
  color: black;
}

.header.sticky .menu-header ul li {
  padding: 8px 2.97%;
}

.menu-header ul li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  transition: 0.4s;
}

.menu-header ul li.current-menu-item a {
  color: var(--main-color);
}

/* .menu-header ul li a:hover {
  color: #693DB4;
} */

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

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

.dropdown_lang .dropdown_menu a,
.header_lang__btn span {
  font-weight: 600;
  font-size: 13px;
  line-height: 154%;
  letter-spacing: 0.01em;
  color: #fff;
  transition: 0.3s;
}

.dropdown_lang .dropdown_menu a:hover {
  color: var(--main-color);
}

.header_lang__btn {
  /* border-radius: 30px; */
  background: transparent;
  width: 36px;
  height: 30px;
  position: relative;
  padding: 0;
  z-index: 5;
}

.header_lang__btn svg {
  position: absolute;
  top: 12px;
  right: unset;
  left: 0;
}



.dropdown_lang .dropdown_menu {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 22px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: transparent;
  width: 36px;
  padding-bottom: 10px;
  padding-top: 10px;
  z-index: 1;
}

.dropdown_lang.open .dropdown_menu {
  opacity: 1;
  visibility: visible;
}

.dropdown_item.disabled {
  display: none;
}

.dropdown_lang {
  position: relative;
  top: 0;
}

.main_home {
  overflow: hidden;
}

.home_top_section {
  background-color: #1E1F23;
  height: 100vh;
}

.header_btn {
  background: #f4ae1b;
  height: 37px;
  border-radius: 3px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px;
  line-height: 143%;
  color: #151515;
  transition: 0.3s;
}

.header_btn:hover {
  background: white;
}

.home_top_section_wrapper {
  display: flex;
  align-items: flex-end;
  height: 100%;
  position: relative;
  isolation: isolate;
}

.main_title {
  font-weight: 700;
  font-size: 41px;
  line-height: 125%;
  color: #fff;
  margin-bottom: 25px;
}

.main_descr {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 40px;
  max-width: 460px;
}

.main_btn {
  background: var(--main-color);
  border: unset;
  border-radius: 3px;
  height: 46px;
  padding: 0 50px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #151515;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.main_btn:before,
.main_btn:after {
  content: '';
  position: absolute;
  right: -30px;
  top: -7px;
  width: 25px;
  height: 130%;
  transform: skew(23deg, 10deg);
  background: white;
  transition: 0.3s;
  z-index: -1;
  opacity: 0.8;
  animation: skew 3s linear infinite;
}

.main_btn:after {
  /* right: -10px; */
  width: 10px;
}

@keyframes skew {
  0% {
    translate: 10000% 0;
  }

  100% {
    translate: -10000% 0;
    /* повернення до початкової позиції */
  }
}

.main_btn_top:hover {
  background: white;
}

.mid_content {
  max-width: 610px;
  width: 100%;
  position: absolute;
  top: 50%;
  translate: 0 -30%;
  transition: 1s;
}

.mid_content.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 -50%;
}

.bot_content {
  gap: 20px;
  margin-bottom: 25px;
  justify-content: space-between;
}

.bot_content_item {
  align-items: center;
  gap: 25px;
}

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

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

.bot_content_item:nth-child(4) {
  transition-delay: 0.4s;
}

.bot_content_item span {
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
}

.top_bg_image_lines {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 46%;
}

.image_btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 53%;
  height: 100%;
  z-index: -1;
  /* border: 1px solid red; */
  /* overflow: hidden; */
}

.top_bg_image {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  filter: opacity(0.25);
}

.video_open {
  position: absolute;
  z-index: 10;
  left: 13px;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
  width: 108px;
  height: 108px;
  background: var(--main-color);
  isolation: isolate;
}

.video_open:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  z-index: -1;
}

.round_gray {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: lightgray;
  opacity: 0.2;
  scale: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: 0.5s;
}

.video_open:hover .round_gray {
  scale: 1.7;
}

.video_open img.border_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 150px;
  height: 150px;
  z-index: -1;
}

.video_open:hover .border_btn {
  animation: spin 7s linear infinite;
  animation-delay: 0.3s;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.video_open:not(:hover) .border_btn {
  animation: spinBack 0.4s linear forwards;
}

@keyframes spinBack {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.p80 {
  padding: 80px 0;
}

.what_we_do_title {
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-bottom: 45px;
  line-height: 88%;
}

.what_we_do_wrapper {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.what_we_do_item img {
  width: 100%;
  transition: 0.4s;
}

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

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

.what_we_do_item:nth-child(4) {
  transition-delay: 0.4s;
}

.what_we_do_item:nth-child(5) {
  transition-delay: 0.5s;
}

.what_we_do_item:nth-child(6) {
  transition-delay: 0.6s;
}

.what_we_do_item:nth-child(7) {
  transition-delay: 0.7s;
}

.what_we_do_item {
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  flex-basis: calc(25.35% - 18px);
  position: relative;
  height: 290px;

}

.what_we_do_item:nth-child(-n+3) {
  flex-basis: calc(33.8% - 18px);
}

.what_we_do_item_txt {
  background: #f3f3f3;
  padding: 25px 30px;
  flex-direction: column;
  text-align: center;
  /* height: 94px; */
  /* height: 100%; */
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 100%;
  transition: 0.5s;
  border-top: 7px solid #f4ae1b;
  overflow: hidden;
}

.what_we_do_item_title {
  font-weight: 600;
  font-size: 19px;
  line-height: 120%;
  color: #1e1f23;
  display: block;
  transition: 0.3s;
}

.what_we_do_item_descr {
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: 0.01em;
  color: #7d7d7d;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

.what_we_do_item:hover .what_we_do_item_descr {
  max-height: 300px !important;
  opacity: 1;
  visibility: visible;
  margin-top: 12px;
}

.what_we_do_item:hover .what_we_do_item_txt {
  height: auto !important;
  max-height: 500px !important;
}

/* .what_we_do_item:hover .what_we_do_item_title {
  margin-bottom: 12px;
} */

.what_we_do_item:hover img {
  translate: 0 -20px;
}

.services {
  background: #f9f9f9;
}

.service_title {
  margin-bottom: 60px;
}

.services_wrapper {
  flex-direction: column;
  gap: 30px;
}

.services_item {
  background: white;
  border-radius: 5px;
  margin-left: 16px;
}

.serv_txt {
  padding: 30px 100px 30px 35px;
}

/* .top_seo_txt img {
  float: left;
  height: 307px;
  width: auto;
  margin-right: 70px;
} */

.serv_txt span {
  font-weight: 600;
  font-size: 20px;
  line-height: 136%;
  color: #1f2024;
  display: block;
  margin-bottom: 11px;
}

.serv_txt a {
  color: #1f2024;
}

.serv_txt div {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #7d7d7d;
}

.serv_img {
  translate: -16px -16px;
  transition: 0.5s;
}

.services_item:hover .serv_img {
  translate: 0 0;
}

.benefits {
  padding-bottom: 100px;
}

.benefits_wrapper {
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 45px;
  row-gap: 70px;
}

.benefits_item {
  flex-basis: calc(34.5% - 45px);
  position: relative;
  padding-left: 23px;
  scale: 1.05;
}

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

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

.benefits_item:nth-child(4) {
  transition-delay: 0.4s;
}

.benefits_item:nth-child(5) {
  transition-delay: 0.5s;
}

.benefits_img {
  width: 100%;
}

.benefits_icon {
  width: 84px;
  height: 84px;
  background: #f4ae1b;
  border-radius: 3px;
  position: absolute;
  top: -19px;
  left: 0;
  transition: 0.6s;
}

.benefits_item:hover .benefits_icon {
  transform: perspective(254px) rotateX(-21deg) rotateY(24deg);
}

.benefits_descr {
  font-weight: 600;
  font-size: 15px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #1e1f24;
  max-width: 320px;
  width: 100%;
  background: #f2f1f4;
  padding: 0 40px 0 23px;
  position: absolute;
  bottom: -19px;
  left: 0;
  height: 72px;
  align-items: center;
  transition: 0.4s;
}

.benefits_item:hover .benefits_descr {
  bottom: 4px;
  max-width: 94.3%;
  left: 23px;
}

.form {
  background: #1e1f23;
}

.form_content {
  text-align: center;
}

.form_title {
  font-weight: 700;
  font-size: 35px;
  line-height: 114%;
  color: #fff;
  display: block;
}

.form_descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: rgba(255, 255, 255, 0.8);
  margin: 25px 0 45px;
  display: block;
}

.form_wrapper form p {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 895px;
  margin: 0 auto;
}

.wpcf7-spinner {
  display: none;
}

.form_wrapper .wpcf7-form-control-wrap input {
  height: 46px;
  background: white;
  border-radius: 3px;
  border: unset;
  outline: unset;
  padding-left: 28px;
}

.form_wrapper .wpcf7-submit {
  height: 46px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #151515;
  background: #f4ae1b;
  border: unset;
  cursor: pointer;
  transition: 0.3s;
}

.form_wrapper .wpcf7 form.invalid .wpcf7-response-output {
  border: unset !important;
  color: white;
  text-align: center;
}

.form_wrapper .wpcf7-submit:hover {
  background: white;
}

.clients_wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
}

.clients_item img {
  width: 100%;
  transition: 0.6s;
}

.clients_item:hover img {
  translate: 0 -10px;
  scale: 1.05;
}

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

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

.clients_item:nth-child(4) {
  transition-delay: 0.4s;
}

.clients_item:nth-child(5) {
  transition-delay: 0.5s;
}

.clients_item:nth-child(6) {
  transition-delay: 0.6s;
}

.clients_item:nth-child(7) {
  transition-delay: 0.7s;
}

.clients_item:nth-child(8) {
  transition-delay: 0.8s;
}

.clients_item:nth-child(9) {
  transition-delay: 0.9s;
}

.clients_item:nth-child(10) {
  transition-delay: 1.1s;
}

.clients_item:nth-child(11) {
  transition-delay: 1.2s;
}

.clients_item:nth-child(12) {
  transition-delay: 1.3s;
}

.clients_item:nth-child(13) {
  transition-delay: 1.4s;
}

.clients_item:nth-child(14) {
  transition-delay: 1.5s;
}

.clients_item:nth-child(15) {
  transition-delay: 1.6s;
}

.clients_item:nth-child(16) {
  transition-delay: 1.7s;
}

.clients_item:nth-child(17) {
  transition-delay: 1.8s;
}

.clients_item:nth-child(18) {
  transition-delay: 1.9s;
}

.clients_item:nth-child(19) {
  transition-delay: 2s;
}

.clients_item:nth-child(20) {
  transition-delay: 2.1s;
}

.review_block {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.review_item {
  padding: 25px 30px;
  background: #f9f9fa;
  border-radius: 5px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.review_item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #1e1f23;
  width: 65px;
  height: 63px;
  z-index: -1;
}

.review_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.rev_name {
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.rev_icon {
  border-radius: 3px;
  background: #f4ae1b;
  width: 60px;
  height: 60px;
}

.rev_name span {
  font-weight: 700;
  font-size: 19px;
  line-height: 143%;
  color: #1f2024;
}

.rev_txt p {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 133%;
  color: #484848;
}

.rev_date {
  margin-top: 30px;
  font-weight: 600;
  font-size: 13px;
  line-height: 143%;
  color: #1e1f23;
}

.reviews {
  padding: 80px 0 200px;
}

.slick-dots {
  position: absolute;
  bottom: -100px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: 15px;
}

.slick-dots button {
  padding: 0;
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  line-height: 133%;
  color: #1e1f23;
  border: 1px solid transparent;
  transition: 0.3s;
}

.slick-dots button:hover {
  border: 1px solid #f4ae1b;
}

.slick-dots li.slick-active button {
  background: #f4ae1b;
}

.slick-arrow {
  position: absolute;
  bottom: -100px;
  width: 43px;
  height: 43px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  font-size: 0;
  color: transparent;
  z-index: 10;
  padding: 0;
  transition: 0.3s;
  border: 1px solid #1e1f23;
}

.slick-arrow:hover {
  opacity: 0.7;
}

.slick-arrow:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 18px;
  height: 10px;
  background-image: url(/wp-content/uploads/2024/06/slider-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.slick-next {
  right: 40%;
}

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

.how_we_work {
  padding-bottom: 100px;
}

.how_we_work_item {
  align-items: center;
  position: relative;
  isolation: isolate;
}

.how_we_work_item:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  translate: -50% 0;
  width: 30px;
  height: 30px;
  background: #ffbc30;
  z-index: -1;
}

.how_we_work_item:nth-child(even):before {
  background: #e0e0e0;
}

.how_we_work_item:last-child:before {
  display: none;
}

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

.how_we_work_item:nth-child(even) .how_img img {
  border-radius: 10px 0 0 10px;
}

.how_we_work_item:nth-child(odd) .how_img img {
  border-radius: 0 10px 10px 0;
}

.how_we_work_item:nth-child(1) .how_img img {
  border-radius: 10px 10px 10px 0;
}

.how_we_work_item:last-child .how_img img {
  border-radius: 10px 0 10px 10px;
}

.how_we_work_item:nth-child(even) .how_txt_wrapper span {
  padding-left: 67px;
}

.how_we_work_item:nth-child(even) .how_txt_wrapper span:after {
  right: unset;
  left: 0;
}

.how_we_work_item_side {
  flex-basis: 50%;
}

.how_img img {
  width: 100%;
  display: block;
}

.how_txt {
  justify-content: center;
  padding-right: 15px;
}

.how_txt_wrapper {
  width: 100%;
  max-width: 490px;
}

.how_txt_wrapper span {
  font-weight: 600;
  font-size: 21px;
  line-height: 129%;
  color: #1f2024;
  display: inline-block;
  margin-bottom: 27px;
  position: relative;
}

.how_txt_wrapper span:after {
  content: '';
  position: absolute;
  right: -70px;
  top: 51%;
  translate: 0 -50%;
  width: 40px;
  border-top: 4px solid #FBB21A;
}

.how_txt_wrapper div p {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #484848;
}

.how_we_work_title {
  margin-bottom: 60px;
}

.footer_form {
  padding: 55px;
  background: #F4AE1B;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.footer_form_bg {
  position: absolute;
  left: 0;
  top: -125px;
  z-index: -1;
}

.footer_form_title {
  font-weight: 600;
  font-size: 21px;
  line-height: 114%;
  text-align: center;
  color: #1e1f23;
  margin-bottom: 30px;
}

.footer_form_wrapper .wpcf7-submit {
  background: #1e1f23;
  color: white;
  transition: 0.3s;
}

.footer_form_wrapper .wpcf7-submit:hover {
  background: #454649;
  color: white;
}

.footer_content {
  padding: 75px 0 80px;
  background: #1e1f23;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.footer-logo-wrapper img {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin-bottom: 25px;
}

.footer_content_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.footer_descr {
  font-weight: 300;
  font-size: 13px;
  line-height: 143%;
  color: #fff;
  width: 100%;
  max-width: 260px;
  margin-bottom: 25px;
}

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

.footer_partner {
  height: 55px;
  border-radius: 13px;
}

.footer_partner_sim {
  background: white;
}

.footer_partner_ker {
  background: white;
}

.footer_column_title {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  margin-bottom: 25px;
}

.footer_contact_item,
.footer_contact_item a {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
}

.footer_contact_item {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

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

.main_btn_footer {
  margin-top: 52px;
  padding: 0 30px;
}

.main_btn_footer:hover {
  background: white;
}

.footer_column ul li a {
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.footer_column ul li a:hover {
  color: var(--main-color);
}

.footer_column ul li:not(:last-child) {
  margin-bottom: 15px;
}

.footer_social {
  align-items: center;
  gap: 17px;
  margin-bottom: 25px;
}

.footer_social svg {
  width: 100%;
  transition: 0.4s;
}

.footer_social a:hover svg {
  filter: drop-shadow(0px 0px 6px #F4AE1B);
}

.footer_content_bottom {
  justify-content: space-between;
  align-items: center;
  margin-top: 75px;
}

.footer_content_bottom span {
  font-weight: 400;
  font-size: 11px;
  line-height: 143%;
  color: #fff;
}

.footer_content_bottom span a {
  text-decoration: underline;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

.footer_content_bottom span a:hover {
  color: var(--main-color);
}

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

.footer_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}

.form_modal {
  position: fixed;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  padding: 50px;
  width: 80%;
  max-width: 800px;
  background: #1E1F23;
  z-index: 1000;
  transition: 0.4s;
  border-radius: 5px;
  scale: 0.5;
  opacity: 0;
  visibility: hidden;
}

.form_modal.show {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

.overlay-bg {
  position: fixed;
  inset: 0;
  background: black;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: 0.3s;
}

.overlay-bg.show {
  opacity: 0.7;
  visibility: visible;
}

.closePopupBtn {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: #f4ae1b;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.5s;
}

.closePopupBtn:hover {
  transform: perspective(86px) rotateX(-25deg) rotateY(-23deg);
}

.modal_contactus_title {
  font-weight: 700;
  font-size: 35px;
  line-height: 114%;
  text-align: center;
  color: #fff;
  display: block;
  margin-bottom: 25px;
}

.modal_contactus_subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 35px;
}

.form_modal input,
.form_modal select {
  padding: 0;
  height: 46px;
  background: white;
  border-radius: 3px;
  border: unset;
  width: 100%;
}

.form_modal form {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.form_modal form p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.form_modal form p span {
  width: calc(51% - 15px);
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  white-space: nowrap;
}

.form_modal .wpcf7 form.invalid .wpcf7-response-output {
  border: unset;
  color: white !important;
  text-align: center;
  font-size: 14px;
}

.form_modal form p span input,
.form_modal select {
  padding-left: 28px;
}

.form_modal form p .wpcf7-submit {
  width: 100%;
  max-width: 280px;
  background: #f4ae1b;
  transition: 0.3s;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #151515;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.form_modal form p .wpcf7-submit:hover {
  background: white;
}

.to_top_btn {
  position: fixed;
  bottom: 124px;
  right: 21px;
  z-index: 150;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  width: 60px;
  height: 60px;
  border: 2px solid var(--main-color);
  cursor: pointer;
  translate: 0 50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.to_top_btn:hover {
  bottom: 130px;
  scale: 1.05;
}

.to_top_btn svg {
  width: 50%;
}


.to_top_btn.showToTop {
  opacity: 1;
  visibility: visible;
  translate: 0;
}


.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.inpage {
  padding-top: 155px;
}

#breadcrumbs>span {
  display: flex;
  align-items: center;
  gap: 14px;
}

#breadcrumbs a,
#breadcrumbs span {
  font-weight: 400;
  font-size: 13px;
  line-height: 143%;
  color: #1e1f23;
  transition: 0.3s;
}

#breadcrumbs a:hover {
  color: var(--main-color);
}

.h1_page_title {
  font-weight: 600;
  font-size: 35px;
  line-height: 104%;
  color: #1e1f23;
  margin: 20px 0 35px;
  position: relative;
  display: inline-block;
}

.h1_page_title:after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  border-top: 5px solid var(--main-color);
  right: -60px;
}

.product_item {
  justify-content: space-between;
  background: #f5f5f5;
  border-radius: 3px;
  padding: 25px;
  margin-bottom: 18px;
  align-items: center;
  gap: 15px;
}

.product_item_left {
  gap: 30px;
  width: 100%;
  max-width: 490px;
}

.product_title_cat {
  text-align: left;
  font-weight: 600;
  font-size: 19px;
  line-height: 143%;
  margin-bottom: 15px;
}

.product_title_cat a {
  font-weight: 600;
  font-size: 19px;
  line-height: 143%;
  text-transform: uppercase;
  color: #000002;
  text-align: left;
  transition: 0.3s;
}

.product_title_cat a:hover {
  color: var(--main-color);
}

.product_item_info {
  width: 100%;
}

.product_item_info_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

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

.product_item_info_title {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #656565;
}

.product_item_info_value {
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: var(--main-color);
}

.product_cat_btn {
  height: 42px;
  width: 100%;
  width: 200px;
  transition: 0.3s;
  border: 1px solid #1e1f23;
  border-radius: 4px;
  cursor: pointer;


}

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

.product_cat_btn_top {
  /* background: transparent; */
  font-size: 14px;
  text-align: center;
  background: #00b812;
  border: 1px solid #00b812;
  color: white;
}

.product_cat_btn_top:hover {
  border: 1px solid #00b812;
  background: #038d10;
}

.product_cat_btn_bottom {
  background: #1e1f23;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
}

.product_cat_btn_bottom:hover {
  color: black;
  background: white;
}

.products_items {
  flex-basis: 75%;
}

.products_categoryes {
  flex-basis: 25%;
}

.products_wrapper {
  gap: 30px;
  width: 100%;
}

.products_categoryes ul.parent_categories {
  margin: 0;
  position: sticky;
  top: 110px;
  margin-bottom: 18px;
}

.products_categoryes ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 133%;
  color: #1e1f23;
  background: #f5f5f5;
  padding: 20px 27px;
  transition: 0.3s;
  display: block;
  position: relative;
}

.products_categoryes ul li a:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 27px;
  right: 27px;
  border-top: 1px solid #e2e2e2;
  z-index: 10;
}

.products_categoryes ul li:last-child a:after {
  display: none;
}

.products_categoryes ul li a:hover {
  color: var(--main-color);
}

.child_categories {
  /* max-height: 0;
  opacity: 0;
  visibility: hidden; */
  transition: 0.4s;
  background: #e7e7e7;
}

.products_categoryes ul li.child_category a {
  padding-left: 60px;
}

.child_category a:before {
  content: '';
  position: absolute;
  left: 29px;
  top: 50%;
  translate: 0 -50%;
  width: 18px;
  border-top: 1px solid black;
}

.products_categoryes ul.child_categories li a {
  background: #e7e7e7;
}

.parent_category {
  position: relative;
}

@media(min-width: 600px) {
  .parent_category:has(.child_categories):hover .child_categories {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    transition: 0.8s;
  }

  /* .parent_category:has(.child_categories):hover a {
    background: #e7e7e7 !important;
  } */

  .parent_category:has(.child_categories):after {
    content: '';
    position: absolute;
    top: 22px;
    right: 27px;
    background-image: url(/wp-content/uploads/2024/06/cat-arrow.svg);
    background-repeat: no-repeat;
    width: 9px;
    height: 14px;
    background-size: cover;
    transition: 0.3s;
  }

  .parent_category:has(.child_categories):hover:after {
    rotate: 90deg;
  }
}


h2.h2_title_prod_cat {
  font-weight: 600;
  font-size: 30px;
  line-height: 90%;
  color: #1e1f23;
  margin-bottom: 35px;
  text-align: left;
  text-transform: none;
}

.product_cat_seo {
  padding-top: 60px;
  margin-top: 60px;
  background: #f9f9fa;
  margin-bottom: 100px;
  overflow: hidden;
}

.prod_cat_txt p {
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
  margin-bottom: 15px;
}

.prod_cat_att {
  margin-bottom: 0;
  margin: 50px 0 35px;
  background: #e9e9e9;
}

.prod_cat_att .serv_txt div {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #474747;
}

.h3_title_prod_cat {
  font-weight: 600;
  font-size: 24px;
  line-height: 112%;
  color: #1e1f23;
  margin-bottom: 20px;
}

.product_cat_p_m {
  margin: 50px 0 35px;
}

.product_cat_p_m {
  gap: 20px;
}

.product_cat_p_m_item {
  position: relative;
  flex-basis: calc(50% - 20px);
  background: #e9e9e9;
  padding: 35px 35px 35px 80px;
  margin-left: 45px;
}

.product_cat_p_m_item_icon {
  width: 90px;
  height: 90px;
  background: #f4ae1b;
  border-radius: 3px;
  position: absolute;
  left: -45px;
  top: -18px;
}

.product_cat_p_m_title {
  font-weight: 600;
  font-size: 20px;
  line-height: 136%;
  color: #1f2024;
  display: block;
  margin-bottom: 20px;
}

.product_cat_p_m_list li {
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: #3d3d3d;
  margin-bottom: 20px;
}

.product_cat_p_m_list li:last-child {
  margin-bottom: 0;
}


.prod_cat_faq {
  padding-top: 60px;
  /* margin-top: 60px; */
  background: white;
  position: relative;
  isolation: isolate;
}

.prod_cat_faq:before {
  content: '';
  position: absolute;
  left: -40%;
  right: -40%;
  top: 0;
  bottom: 0;
  background: white;
  z-index: -1;
}

h2.prod_cat_faq_title {
  font-weight: 600;
  font-size: 30px;
  line-height: 121%;
  color: #1e1f23;
  margin-bottom: 35px;
  text-align: left;
  text-transform: none;
}

.faq_answ {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.4s;
  translate: 0 -15px;
  margin-top: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 143%;
  color: #1e1f23;
}

.faq_ques {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  margin-top: 23px;
  transition: 0.4s;
  color: #1e1f23;
}

.faq_ques.active {
  margin-bottom: 20px;
  /* padding-bottom: 20px; */
  /* border-bottom: 1px solid #EBEAFA; */
}


.faq_ques.active+.faq_answ {
  opacity: 1;
  visibility: visible;
  translate: 0;
  margin-top: 10px;
  margin-bottom: 22px;
}

.faq_ques svg {
  transition: 0.4s;
}

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

.faq_cat_item {
  border-radius: 5px;
  background: #f4ae1b;
  border: 1px solid #f4ae1b;
  padding: 1px 34px 0 34px;
  margin-bottom: 15px;
  /* translate: 0 50px; */
  transition: 0.6s ease-in-out;
}

.faq_cat_item.active {
  background: #f9f9fa;
}

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

.modal_remont.openPopupOrder {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

.closePopupProd.openPopupOrder {
  opacity: 0.7;
  visibility: visible;
}

.modal_contactus_prod_name a {
  color: white;
  text-decoration: underline;
  transition: 0.3s;
}

.modal_contactus_prod_name a:hover {
  color: var(--main-color);
}

.modal_remont .modal_contactus_title {
  font-size: 26px;
}

.modal_remont .modal_contactus_subtitle {
  font-size: 16px;
}

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

.vacancies_item {
  border-radius: 5px;
  overflow: hidden;
}

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

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

.vacancies_item:nth-child(4) {
  transition-delay: 0.4s;
}

.vacancies_item:nth-child(5) {
  transition-delay: 0.5s;
}

.vacancies_item:nth-child(6) {
  transition-delay: 0.6s;
}

.vacancies_img {
  height: 215px;
  display: block;
  overflow: hidden;
}

.vacancies_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.vacancies_item:hover img {
  scale: 1.05;
}

.vacancies_bottom {
  background: #f3f3f3;
  padding: 22px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-top: 4px solid var(--main-color);
  margin-top: -2px;
  position: relative;
  z-index: 10;
}

.vacancies_name {
  font-weight: 600;
  font-size: 19px;
  line-height: 120%;
  text-align: center;
  color: #1e1f23;
}

.vacancies_file {
  font-weight: 600;
  font-size: 16px;
  line-height: 134%;
  text-align: center;
  color: #fff;
  background: #1e1f23;
  height: 43px;
  border-radius: 3px;
  padding: 0 32px;
  transition: 0.3s;
}

.vacancies_file:hover {
  color: white;
  background: #454649;
}

.vacancies {
  margin-bottom: 100px;
}

.product_top_image {
  flex-basis: 37%;
  background: #f5f5f5;
  height: 372px;
}

.product_top_info {
  flex-basis: 63%;
}

.product_top_wrapper {
  gap: 35px;
}

.product_top_info_tabs {
  align-items: center;
  margin-bottom: 15px;
}

.product_top_info_tab {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: 1px solid #ffbc30;
  font-weight: 600;
  font-size: 16px;
  line-height: 134%;
  text-align: center;
  color: #1e1f23;
  transition: 0.3s;
  cursor: pointer;
}

.product_top_info_tab:hover {
  color: var(--main-color);
}

.product_top_info_tab.active-tab {
  color: white;
  background: #ffbc30;
}

.product_top_info_values_buy {
  background: #f5f5f5;
  padding: 10px 30px 25px
}

.product_char_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e2e2e2
}

.product_char_item:first-child {
  padding-top: 0;
}

.product_char_item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.product_top_info_values_buy_char {
  margin-bottom: 15px;
}

.product_char_item_title {
  font-weight: 600;
  font-size: 15px;
  line-height: 143%;
  color: #1e1f23;
}

.product_char_item_value {
  font-weight: 600;
  font-size: 15px;
  line-height: 143%;
  text-align: right;
  color: #1e1f23;
}

.product_char_item_value_stock {
  color: #00b812;
}

.product_char_item_value_manuf {
  color: #337ab7;
}

.product_top_info_values_btns {
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.product_btn_popup {
  border: 1px solid #1e1f23;
  border-radius: 3px;
  padding: 0 46px;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  line-height: 134%;
  text-align: center;
  color: #1e1f23;
  transition: 0.3s;
  width: 50%;
}

.ask_price {
  background: #00b812;
  border: 1px solid #00b812;
  color: white;
}

.ask_price:hover {
  background: #038d10;
}

.product_btn_popup_order:hover {
  color: white;
  background: #1e1f23;
}

.product_fix_item {
  margin-bottom: 15px;
  display: flex;
  position: relative;
  isolation: isolate;
  padding: 35px 0;
  padding-left: 25%;
  background: #f5f5f5;
  border-radius: 3px;
  overflow: hidden;
}

.product_fix_item img {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 140px;
  width: 100%;
}

.product_fix_item_title {
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 132%;
  color: #000;
  margin-bottom: 7px;
}

.product_fix_item_price {
  font-weight: 700;
  font-size: 23px;
  line-height: 115%;
  color: #000;
}

.product_fix_term {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 60px;
  width: 100%;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c9c9c9;
  font-weight: 600;
  font-size: 24px;
  line-height: 144%;
  text-align: center;
  color: #fff;
}

.product_fix_term_fast {
  background: var(--main-color);
}

.product_fix_item_blocks_wrapper {
  padding: 25px 30px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.product_fix_item_blocks {
  gap: 15px;
  justify-content: space-between;
}

.product_fix_item_block {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 15px;
  flex-basis: 30%;
  /* text-align: center; */
}

.product_fix_item_block_c {
  flex-basis: 34%;
}

.product_fix_item_block span,
.product_fix_item_block span.product_fix_item_block_title {
  font-weight: 500;
  font-size: 13px;
  line-height: 129%;
  /* text-align: center; */
  color: #1e1f23;
}

.product_fix_btn {
  margin-top: 35px;
}

.black_btn {
  height: 48px;
  justify-content: center;
  align-items: center;
  background: #1e1f23;
  color: white;
  padding: 0 46px;
  transition: 0.3s;
  font-weight: 600;
  font-size: 16px;
  line-height: 134%;
  text-align: center;
  border-radius: 3px;
}

.black_btn:hover {
  background: #454649;
}

.product_whywe {
  margin-top: 80px;
  margin-bottom: 50px;
}

.product_whywe_title {
  font-weight: 600;
  font-size: 27px;
  line-height: 100%;
  text-align: left;
  color: #1e1f23;
  text-transform: none;
  margin-bottom: 35px;
}

.product_whywe_wrapper {
  gap: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* flex-wrap: wrap; */
}

.product_whywe_item {
  /* flex-basis: calc(50% - 35px); */
  background: #f5f5f5;
  margin-left: 50px;
  padding: 30px 30px 30px 77px;
  position: relative;
}

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

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

.product_whywe_item:nth-child(4) {
  transition-delay: 0.4s;
}

.product_whywe_item:nth-child(5) {
  transition-delay: 0.5s;
}

.product_whywe_item:nth-child(6) {
  transition-delay: 0.7s;
}

.product_whywe_item:nth-child(8) {
  transition-delay: 0.8s;
}

.product_whywe_icon {
  width: 90px;
  height: 90px;
  border-radius: 3px;
  background: var(--main-color);
  position: absolute;
  left: -50px;
  top: 50%;
  translate: 0 -50%;
}

.product_whywe_item_title {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #1e1f24;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  display: block;
}

.product_whywe_item_title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  border-top: 2px solid var(--main-color);
}

.product_whywe_item_descr {
  font-weight: 300;
  font-size: 14px;
  line-height: 143%;
  color: #656565;
}

.product_seo {
  overflow: hidden;
  margin: 80px 0;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f9f9fa;
}

.modal_product_contacts {
  position: fixed;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  padding: 50px;
  width: 80%;
  max-width: 800px;
  background: #1E1F23;
  z-index: 1000;
  transition: 0.4s;
  border-radius: 5px;
  scale: 0.5;
  opacity: 0;
  visibility: hidden;
}

.modal_product_order.openPopupOrderProd {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

.modal_product_contacts.openPopupOrderProdCont {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

.overlay-bg.openPopupOrderProd,
.overlay-bg-cont.openPopupOrderProdCont {
  opacity: 0.7;
  visibility: visible;
}

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

.product_modal_contatcs a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 18px;
}

.cert {
  background: #f9f9f9;
}

.cert_item {
  border-radius: 3px;
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

.cert_item img {
  width: 100%;
}

.cert_wrapper {
  margin: 0 -45px;
}

.cert_wrapper .slick-track {
  display: flex !important;
  gap: 45px;
}

.contacts_wrapper {
  gap: 30px;
}

.contacts {
  padding-bottom: 100px;
}

.contacts_block {
  flex-basis: calc(50% - 30px);
  border-radius: 5px;
  overflow: hidden;
  transition: 0.4s;
}

.contacts_block:hover {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
  /* translate: 0 -5px; */
  /* scale: 1.02; */
}

.contacts_map {
  height: 325px;
  overflow: hidden;
}

.contacts_map iframe {
  width: 100%;
  height: 100%;
}

.contacts_block_bottom {
  padding: 40px 50px;
  background: #f9f9fa;
}

.contact_town {
  font-weight: 600;
  font-size: 30px;
  line-height: 121%;
  color: #1e1f23;
  text-align: unset;
  text-decoration: none;
  text-transform: none;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.contact_town:after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: -60px;
  width: 30px;
  border-top: 4px solid var(--main-color);
}

.addresses {
  gap: 30px;
}

.addresses_item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.addresses_item span,
.addresses_item a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  color: #1e1f23;
}

.aboutus_top_wrapper {
  gap: 45px;
}

.aboutus_top_side {
  flex-basis: 50%;
}

.aboutus_top_video {
  width: 100%;
  overflow: hidden;
}

.aboutus_top_video iframe {
  width: 100%;
  border-radius: 3px;
}

.aboutus_descr_top p {
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
  margin-bottom: 10px;
}

.aboutus_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 13px;
  background: #f9f9f9;
  padding: 20px 32px;
}

.aboutus_list li {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
  align-items: center;
  gap: 15px;
}

.aboutus_list li img {
  width: 22px;
}

.aboutus_descr_bottom {
  margin-top: 40px;
}

.aboutus_descr_bottom p {
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
  margin-bottom: 10px;
}

.aboutus_descr_bottom a {
  color: #484848;
  white-space: nowrap;
}

.about_adv {
  padding: 60px 0;
  background: #f9f9fa;
}

.about_adv .product_whywe_item_title {
  text-transform: uppercase;
}

.about_howwork {
  padding: 60px 0 100px;
}

.about_howwork_subtitle {
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
}

.about_howwork_title {
  margin-bottom: 15px;
}

.about_howwork_gallery {
  margin-top: 42px;
  gap: 38px;
}

.slider-for {
  width: calc(77% - 38px);
  /* overflow: hidden; */
}

.slider-for img {
  width: 100%;
  border-radius: 5px;
  display: block;
}

img.mfp-img {
  border-radius: 5px;
  padding: 0;
}

.mfp-close {
  top: -45px;
}

.mfp-counter {
  bottom: -65px;
  top: unset;
}

.slider-nav {
  width: 23%;
}

.slider-nav a {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.slider-nav img {
  width: 100%;
}

.slider-for .slick-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: -11px;
  z-index: 10;
  background: var(--main-color);
  border: unset;
}

.slider-for .slick-next {
  left: unset;
  right: -11px;
}

.about_howwork_blocks {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

.about_howwork_block {
  background: #f9f9fa;
  border-radius: 5px;
  padding: 20px 30px 25px 30px;
}

.about_howwork_block_t {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #1e1f24;
  margin-bottom: 15px;
  display: block;
  padding-left: 35px;
  position: relative;
}

.about_howwork_block_t:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  border-top: 2px solid var(--main-color);
}

.about_howwork_block_d {
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
  color: #5a5a5a;
}

.faq_page .prod_cat_faq {
  margin-top: 0;
  padding-top: 0;
}

.faq_page {
  padding-bottom: 100px;
}

.faq_page .prod_cat_faq:before {
  display: none;
}

.remont_wrapper {
  gap: 18px;
  flex-wrap: wrap;
}

.remont_item {
  flex-direction: column;
  flex-basis: calc(33.8% - 18px);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 290px;
}

.remont_item:hover .remont_item_info {
  height: auto;
}

.remont_item:hover .what_we_do_item_descr {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  margin-top: 12px;
}

.remont_item:nth-child(-n+2) {
  flex-basis: calc(50.7% - 18px);
}

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

.remont_item_img {
  height: 215px;
}

/* .remont_item_info {
  position: relative;

} */

.remont_title_cat a {
  text-transform: none;
}

.remont_info {
  padding: 0;
  margin: 60px 0;
}

.remont_info_wrapper {
  background: #f9f9fa;
  padding: 60px 0;
  margin-bottom: 60px;
}

.remont_info_wrapper_side_txt {
  padding-right: 50px;
}

.remont_info_wrapper_side_txt span {
  font-weight: 600;
  font-size: 30px;
  line-height: 121%;
  color: #1e1f23;
  display: block;
  margin-bottom: 35px;
}

.remont_info_wrapper_side,
.remont_about_wrapper_side {
  flex-basis: 50%;
}

.remont_info_wrapper_side_txt p {
  /* font-weight: 300; */
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
  margin-bottom: 30px;
}


.remont_info_wrapper_side_txt p:last-child {
  margin-bottom: 0;
}

.remont_info .product_fix_item_block {
  flex-direction: column;
}

.product_fix_item_block span.product_fix_item_block_title {
  text-align: center;
}

.remont_info .product_fix_item,
.remont_info .product_fix_item_blocks_wrapper {
  background: white;
}

.remont_about_wrapper_side_txt {
  padding-left: 55px;
  padding-right: 0;
}


.remont_about_wrapper .container {
  align-items: center;
}

.remont_brands_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.remont_brands_item {
  border-radius: 5px;
  height: 265px;
  background: white;
  flex-basis: calc(25.39% - 20px);
  position: relative;
  overflow: hidden;
}

.remont_brands_item_txt.what_we_do_item_txt {
  padding: 0;
  border-top: unset;
  background: white;
}

.remont_brands_item:hover .what_we_do_item_descr {
  opacity: 1;
  visibility: visible;
  max-height: 150px;
}

.remont_brands_item:hover .remont_brands_item_img {
  background: #E0E0E0;
  translate: 0 -30px;
}

.remont_brands_item_models {
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #7d7d7d;
  max-width: 247px;
  margin: 0 auto;
}

.remont_brands .remont_brands_item_btn {
  height: 40px;
  background: #1e1f23;
  border-radius: 3px;
  padding: 0 36px;
  font-weight: 600;
  font-size: 14px;
  line-height: 153%;
  text-align: center;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  margin-top: unset;
  margin: 18px 0;
  transition: 0.3s;
}

.remont_brands_item_btn:hover {
  background: #454649;
}

.remont_brands {
  padding: 60px 0;
  background: #f9f9fa;
}

.remont_brands_item_img {
  height: 185px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border-radius: 5px;
  overflow: hidden;
}

.remont_brands_item_name {
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 6px solid var(--main-color);
  font-weight: 600;
  font-size: 19px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #1e1f23;
}

.devicesfor {
  padding: 60px 0;
}

.devicesfor .services_item {
  background: #f5f5f5;
}

.devicesfor .services_wrapper {
  margin-top: 50px;
}

.post-type-archive-remont .what_we_do_title svg,
.single-remont .what_we_do_title svg {
  display: none;
}

.post-type-archive-remont .what_we_do_title,
.single-remont .what_we_do_title {
  text-transform: none;
  margin-bottom: 35px;
  text-align: left;
  justify-content: flex-start;
  font-size: 30px;
}

.post-type-archive-remont .how_we_work {
  padding: 60px 0;
  background: #f9f9fa;
}

.order_if {
  padding: 60px 0;
}

.order_if_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 35px;
  row-gap: 38px;
  margin-top: 50px;
}

.order_if_item {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  padding: 27px 35px 27px 77px;
  height: 90px;
  border-radius: 3px;
  position: relative;
  margin-left: 50px;
}

.order_if_icon {
  width: 90px;
  height: 90px;
  background: var(--main-color);
  border-radius: 3px;
  position: absolute;
  left: -50px;
  top: -17px;
}

.order_if_txt {
  font-weight: 300;
  font-size: 16px;
  line-height: 125%;
  color: #3d3d3d;
}

.remont_top_descr {
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
}

.remont_top_descr p:not(:last-child) {
  margin-bottom: 13px;
}

.remont_img_txt_blocks {
  margin-top: 40px;
}

.remont_img_txt_block {
  background: #f9f9fa;
  padding: 60px 0;
}

.remont_img_txt_block .container {
  gap: 50px;
  align-items: center;
}

.remont_img_txt_block:nth-child(even) .container {
  flex-direction: row-reverse;
}

.remont_img_txt_block:nth-child(even) {
  background: white;
}

.remont_img_txt_block_side {
  flex-basis: 50%;
}

.remont_img_txt_block_img {
  border-radius: 5px;
  overflow: hidden;
}

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

.remont_img_txt_block_title {
  font-weight: 600;
  font-size: 30px;
  line-height: 123%;
  color: #1e1f23;
  display: block;
  margin-bottom: 30px;
  text-transform: unset !important;
  text-align: left !important;
  margin-top: 0;
}

.remont_img_txt_block_descr p:not(:last-child) {
  margin-bottom: 13px;
}

.remont_img_txt_block_descr p,
.remont_img_txt_block_descr li {
  margin: 0;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
}

.remont_top_btns_order {
  border-radius: 3px;
  padding: 0 46px;
  height: 46px;
  background: #1e1f23;
  font-weight: 600;
  font-size: 16px;
  line-height: 134%;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.remont_top_btns_order:hover {
  background: #454649;
}

.remont_top_btns_cont {
  border: 1px solid #1e1f23;
  border-radius: 3px;
  padding: 0 46px;
  height: 46px;
  font-weight: 600;
  font-size: 16px;
  line-height: 134%;
  text-align: center;
  color: #1e1f23;
  background: white;
  transition: 0.3s;
}

.remont_top_btns_cont:hover {
  color: white;
  border: 1px solid #1e1f23;
  background: #1e1f23;
}

.remont_top_btns_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #1e1f23;
  display: block;
  margin-bottom: 20px;
}

.remont_top_btns_wrapper {
  gap: 20px;
}

.remont_top_btns {
  flex-direction: column;
  align-items: center;
}

.remont_s_brands {
  margin: 60px 0 0;
  padding: 60px 0;
  background: #f9f9fa;
}

.remont_s_brands_descr {
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
}

.remont_s_brands_wrapper {
  margin: 35px 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 17px;
}

.remont_s_brands_icon {
  height: 110px;
  display: block;
}

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

.remont_s_brands_item {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  flex-basis: calc(25.3% - 17px);
  transition: 0.3s;

  position: absolute;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, box-shadow 0.3s;
}

.remont_s_brands_item.visible {
  max-height: 1000px;
  opacity: 1;
  position: relative;
}

.remont_s_brands_item:hover {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

.remont_s_brands_bottom {
  border-top: 8px solid #f4ae1b;
  padding: 25px 20px;
  height: calc(100% - 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.remont_s_brands_btn {
  margin-top: auto;
  background: #1e1f23;
  border-radius: 3px;
  padding: 0 46px;
  height: 40px;
  font-weight: 600;
  font-size: 14px;
  line-height: 153%;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.remont_s_brands_btn:hover {
  background: #454649;
  color: white;
}

.remont_s_brands_models {
  margin: 0;
  margin-bottom: 25px;
  width: 100%;
}

.remont_s_brands_name {
  font-weight: 600;
  font-size: 19px;
  line-height: 100%;
  text-transform: uppercase;
  color: #1e1f23;
  margin-bottom: 20px;
  transition: 0.3s;
}

a.remont_s_brands_name {
  text-decoration: underline;
}


a.remont_s_brands_name:hover {
  color: var(--main-color);
}

.remont_s_brands_nameunhover {
  color: #1e1f23 !important;
}

.remont_s_brands_model {
  padding: 9px 0;
  border-top: 1px solid #DDDDDD;
}

.remont_s_brands_model a,
.remont_s_brands_model span {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #1e1f23;
  transition: 0.3s;
}

.remont_s_brands_model a:hover {
  color: var(--main-color);
}

.remont_s_brands_model:last-child {
  border-bottom: 1px solid #DDDDDD;
}

.show_more_btn {
  margin-bottom: 35px;
  border: 1px solid #1e1f23;
  border-radius: 3px;
  padding: 0 46px;
  height: 48px;
  background: white;
  font-weight: 600;
  font-size: 16px;
  line-height: 134%;
  text-align: center;
  color: #1e1f23;
  transition: 0.3s;
  position: relative;
  left: 50%;
  translate: -50% 0;
}

.show_more_btn:hover {
  background: #1e1f23;
  border: 1px solid #1e1f23;
  color: white;
}

.single-remont .how_we_work {
  padding: 60px 0 80px;
  background: #f9f9fa;
}

.remont_single_seo {
  margin-top: 0;
  background: white;
}

.remont_single_seo .prod_cat_att,
.remont_single_seo .product_cat_p_m_item {
  background: #f5f5f5;
}

.remont_single_seo .prod_cat_faq,
.remont_single_seo .prod_cat_faq:before {
  background: #f9f9fa;
}

.blog_cat {
  margin-bottom: 100px;
}

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

.blog_item {
  background: #f9f9fa;
  overflow: hidden;
  border-radius: 8px;
  transition: 0.3s;
}

.blog_item:hover {
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
}

.post_img {
  height: 220px;
  display: block;
  overflow: hidden;
}

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

.blog_item:hover img {
  scale: 1.04;
}

.blog_item_bottom {
  border-top: 6px solid var(--main-color);
  padding: 25px 30px 30px;
  flex-direction: column;
  height: calc(100% - 220px);
  justify-content: space-between;
}

.post_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #1e1f23;
  display: block;
  margin-bottom: 22px;
  transition: 0.3s;
}



.post_title:hover {
  color: var(--main-color);
}

.faq_ques.post_title:hover {
  color: #000;
}

.post_excerpt {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: #888;
  margin-bottom: 22px;
}

.post_btn_date {
  align-items: center;
  justify-content: space-between;
}

.post_btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: 0.02em;
  text-decoration: underline;
  color: #1e1f23;
  transition: 0.3s;
}

.post_btn:hover {
  color: var(--main-color);
  text-decoration: underline;
}

.post_date {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  text-align: right;
  color: #7d7d7d;
}

.pagination_blog {
  margin-top: 35px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-numbers {
  background: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  width: 43px;
  height: 43px;
  font-weight: 600;
  font-size: 14px;
  line-height: 133%;
  color: #1e1f23;
  transition: 0.3s;
  border: 1px solid transparent;
}

.page-numbers.current {
  background: #f4ae1b;
  border: 1px solid #f4ae1b;
}

.page-numbers:hover {
  border: 1px solid #f4ae1b;
}

.next.page-numbers,
.prev.page-numbers {
  font-size: 0;
  color: transparent;
  position: relative;
  border: 1px solid #1e1f23;
  background: white;
}

.next.page-numbers:before,
.prev.page-numbers:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background-image: url(/wp-content/uploads/2024/06/pagin-arrow.svg);
  width: 18px;
  height: 10px;
  background-size: cover;
}

.prev.page-numbers:before {
  rotate: 180deg;
}

.blog_article_wrapper {
  gap: 55px;
  margin-bottom: 80px;
}

.side_content {
  flex-basis: 70%;
}

.side_fixed {
  flex-basis: 30%;

}

.side_fixed_cont {
  background: #f9f9fa;
  border-radius: 5px;
  padding: 30px 35px;
  position: sticky;
  top: 120px;
}

.side_fixed_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 111%;
  text-align: center;
  color: #3d3d3d;
  display: block;
  margin-bottom: 25px;
}

.blog_article .article_text {
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
}

.top_txt_descr {
  margin-bottom: 35px;
}

.article_img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 7px;
}

.article_img {
  margin-bottom: 35px;
}

.blog_article_title {
  margin-bottom: 25px;
}

.article_two_btns {
  margin: 35px 0;
  background: #f9f9fa;
  border-radius: 5px;
  padding: 30px 25px;
}

.article_text a {
  color: #f4ae1b;
  text-decoration: underline;
}

.article_text_descr p {
  margin-bottom: 25px;
}

.article_text_descr ul {
  margin: 25px 0;
}

.article_text_descr ul li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #484848;
  margin-bottom: 8px;
}

.article_text_descr ul li:last-child {
  margin-bottom: 0;
}

.article_text_descr ul li:before {
  content: '';
  position: absolute;
  left: 13px;
  top: 7px;
  border-radius: 50%;
  background: var(--main-color);
  width: 7px;
  height: 7px;
}

.article_text_left_n_wrapper {
  margin: 25px 0 35px;
  flex-direction: column;
  gap: 20px;
}

.article_text_left_n {
  align-items: center;
  gap: 22px;
}

.article_text_left_number {
  background: #f4ae1b;
  border-radius: 2px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  font-weight: 700;
  font-size: 31px;
  line-height: 167%;
  text-align: center;
  color: #fff;
}

.article_similaer_wrapper {
  margin: 35px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article_similaer_item {
  background: #f9f9fa;
  border-radius: 5px;
  padding: 11px 11px 20px 11px;
}

.article_similaer_item_img {
  background: #fff;
  border-radius: 3px;
  height: 170px;
  margin-bottom: 18px;
}

.article_similaer_item_img img {
  width: 100%;
  max-width: 200px;
  display: block;
}

.article_similaer_item_name {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #1e1f23;
  transition: 0.3s;
}

.article_similaer_item:hover .article_similaer_item_name {
  color: var(--main-color);
}

.article_one_btn {
  margin: 25px 0;
  background: #f9f9fa;
  border-radius: 5px;
  padding: 30px 25px;
}

.article_two_blocks_wrapper {
  margin: 35px 0;
  gap: 25px;
}

.article_two_blocks_item {
  border: 1px solid #1e1f23;
  border-radius: 5px;
  padding: 30px 25px;
  flex-direction: column;
  align-items: center;
  flex-basis: 50%;
}

.article_two_blocks_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #1e1f23;
  display: block;
  margin-bottom: 17px;
}

.article_two_blocks_descr {
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #484848;
}

.article_two_blocks_descr p {
  margin-bottom: 0;
}

.side_fixed_item {
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: #3d3d3d;
  display: block;
  margin-bottom: 20px;
  transition: 0.3s;
}

.side_fixed_item:hover {
  color: var(--main-color);
}

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

.article_single_date {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #7d7d7d;
}

.article_title_wrapper {
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.article_title_wrapper h1 {
  margin-bottom: 0;
}

.modal_product_order_brands .modal_contactus_subtitle {
  max-width: 357px;
  margin: 0 auto 35px;
}

.modal_product_order_brands {
  max-width: 480px;
  padding: 57px 50px;
}

.modal_product_order_brands.openPopupOrderBrand {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

.closePopupProdOrderBrands.openPopupOrderBrand {
  opacity: 0.6;
  visibility: visible;
}

.form_modal.modal_product_order_brands form p {
  flex-direction: column;
  max-width: 280px;
  margin: 0 auto;
  gap: 10px;
}

.form_modal.modal_product_order_brands form p span {
  width: 100%;
}

.breadcrumbs_contract {
  position: absolute;
  top: 155px;
  z-index: 50;
}

.breadcrumbs_contract img {
  filter: brightness(100);
}

.breadcrumbs_contract #breadcrumbs a,
.breadcrumbs_contract #breadcrumbs span {
  color: white;
}

.contract_top_section .top_bg_image {
  filter: opacity(1);
}

.contract_top_section {
  overflow: hidden;
}

.contract_top_section .mid_content {
  position: relative;
  top: 0;
  translate: 0 0;
}

.contract_top_section .home_top_section_wrapper {
  align-items: center;
}

.mid_content_wrapper {
  align-items: center;
  justify-content: space-between;
}

.mid_content_wrapper .mid_content {
  flex-basis: 45%;
}

.mid_content_video {
  flex-basis: 55%;
}

.mid_video_wrapper {
  overflow: hidden;
  border-radius: 5px;
  height: 395px;
}

.mid_video_wrapper iframe {
  width: 100%;
  height: 100%;
}

.contract_work_descr p {
  /* font-weight: 500; */
  font-size: 16px;
  line-height: 150%;
  color: #464646;
}

.contract_reasons {
  margin: 50px 0 30px;
}

.contract_reasons .services_item {
  background: #f8f8f8;
  margin-bottom: 30px;
}

.contract_reasons .services_item:last-child {
  margin-bottom: 0;
}

.contract_work_title span {
  color: var(--main-color);
}

.twenty_percent {
  height: calc(100vh - 97px);
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
}

.twenty_percent_text {
  background: white;
  padding: 30px 80px;
  clip-path: polygon(33px 0%, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
}

.twenty_percent_num {
  height: 235px;
  min-width: 460px;
  position: relative;
  isolation: isolate;
  translate: 45px 0;
}

.twenty_percent_num_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.twenty_percent_wrapper {
  width: 85%;
  margin-bottom: 60px;
}

.twenty_percent_text_wrapper {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #464646;
}

.twenty_percent_text_wrapper p:not(:last-child) {
  margin-bottom: 20px;
}

.brp_wrapper {
  align-items: center;
}

.brp {
  overflow: hidden;
}

.brp_txt {
  width: 55%;
  padding-left: calc((100vw - 1310px) / 2 + 15px);
  padding-right: 70px;
}

.brp_img {
  width: 45%;
}

.brp_img img {
  width: 100%;
  display: block;
}

/* .brp {
  height: calc(100vh - 97px);
} */

.brp_title {
  font-weight: 700;
  font-size: 35px;
  line-height: 143%;
  text-transform: uppercase;
  color: #1e1f23;
  text-align: left;
  margin-bottom: 25px;
}

.brp_title span {
  color: var(--main-color);
}

.brp_descr {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #464646;
  margin-bottom: 24px;
}

.brp_descr p {
  margin-bottom: 0;
}

.brp_item {
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.brp_item_num {
  background: #f4ae1b;
  border-radius: 2px;
  width: 40px;
  min-width: 40px;
  height: 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 167%;
  text-align: center;
  color: #fff;
}

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

.brp_item_txt {
  font-weight: 300;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: 0.01em;
  color: #464646;
}

.brp_item:nth-child(even) .brp_item_num {
  background: #1e1f23;
}

.black_block {
  height: calc(100vh - 98px);
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

h2.black_block_title {
  color: white;
  line-height: 140%;
  margin-bottom: 0;
}

h2.black_block_title span {
  color: var(--main-color);
  position: relative;
}

h2.black_block_title span:before,
h2.black_block_title span:after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 10;
  background-image: url(/wp-content/uploads/2024/07/just-line.svg);
  width: 60px;
  height: 5px;
  background-size: contain;
}

h2.black_block_title span:before {
  left: -115px;
}

h2.black_block_title span:after {
  right: -115px;
}

.black_block_descr {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
  max-width: 1080px;
  width: 100%;
  margin: 30px auto;
}

.black_block_btn {
  position: relative;
  left: 50%;
  translate: -50% 0;
}

.graphics_top {
  justify-content: space-between;
  gap: 70px;
}

.graphics {
  padding: 70px 0 80px;
  background: #F8F8F8;
}

.graphics_top_side_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 111%;
  text-align: center;
  color: #1e1f23;
  margin-bottom: 130px;
  display: block;
}

.graphics_top_block {
  position: relative;
  flex-direction: column;
  align-items: center;
  padding-left: 50px;
  padding-bottom: 40px;
}

.graphic_txt_left {
  left: -4px;
  bottom: 93px;
}

.graphic_txt_s {
  position: absolute;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #464646;
}

.graphic_txt_bottom {
  bottom: 0;
}

.graphics_top_block img {
  width: 100%;
}

.graphic_txt_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #464646;
  position: absolute;
}

.graphic_txt_top1_without {
  left: 29%;
  top: -1%;
}

.graphic_txt_top2_without {
  right: 9%;
  top: -22%;
}

.graphic_txt_top1_with {
  bottom: 46%;
  left: 31%;
}

.graphic_txt_top2_with {
  bottom: 46%;
  left: 68%;
}

.graphics_bottom {
  margin-top: 70px;
}

.graphics_bottom_descr {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #464646;
  display: block;
  margin-bottom: 32px;
}

.graphics_bottom_descr span {
  color: #eba30b;
  font-weight: 500;
}

.graphics_bottom_wrapper {
  width: 100%;
  position: relative;
}

.graphics_bottom_wrapper img {
  width: 100%;
}

.graphics_bottom_txt_left {
  max-width: 100px;
  bottom: 18%;
  left: 0;
}

.graphics_bottom_txt_bottom1 {
  bottom: 4%;
  left: 17%;
}

.graphics_bottom_txt_bottom2 {
  bottom: 4%;
  left: 40%;
}

.graphics_bottom_txt_bottom3 {
  bottom: 0%;
  left: 65%;
  max-width: 240px;
  text-align: center;
  display: block;
}

.graphics_bottom_txt_top_s {
  position: absolute;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #464646;
  top: 24px;
}

.graphics_bottom_txt_top1 {
  left: 15%;
}

.graphics_bottom_txt_top2 {
  left: 40%;
}

.graphics_bottom_txt_top3 {
  left: 64%;
}

.include {
  overflow: hidden;
}

.include_txt_side {
  width: 55%;
  padding-left: calc((100vw - 1310px) / 2 + 15px);
  padding-right: 70px;
  padding-top: 78px;
  padding-bottom: 78px;
  background: #1e1f23;
  border-right: 10px solid var(--main-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.include_img_side {
  width: 45%;
  position: relative;
}

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

.include_title {
  font-weight: 700;
  font-size: 35px;
  line-height: 143%;
  text-transform: uppercase;
  text-align: left;
  color: white;
  margin-bottom: 35px;
}

.include_title span {
  color: var(--main-color);
}

.include_list_title {
  padding-left: 35px;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #fff;
  display: block;
  margin-bottom: 7px;
}

.include_list_title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  border-top: 2px solid var(--main-color);
}

.include_list_descr {
  font-weight: 300;
  font-size: 13px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #d9d9d9;
}

.include_list li:not(:last-child) {
  margin-bottom: 23px;
}

.include_img_side_block {
  position: absolute;
  right: 0;
  bottom: 60px;
  background: white;
  z-index: 10;
  border-left: 10px solid black;
  padding: 30px 50px 30px 40px;
  width: 88%;
}

.include_img_side_block ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
}

.include_img_side_block li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.include_img_side_block li svg {
  min-width: 40px;
}

.include_img_side_block li span {
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: 0.01em;
  color: #464646;
}

.can_include_title {
  color: #1e1f23;
}

.can_include_txt_side {
  background: #f8f8f8;
  padding-right: calc((100vw - 1310px) / 2 + 15px);
  padding-left: 70px;
  padding-top: 78px;
  padding-bottom: 78px;
  border-left: 10px solid var(--main-color);
  border-right: unset;
}

.can_include_txt_side .include_list_title {
  color: #1e1f23;
}

.can_include_txt_side .include_list_descr {
  color: #4c4c4c;
}

.can_include {
  height: calc(100vh - 99px);
}

.include_wrapper {
  height: 100%;
}

.can_include .include_img_side_block {
  right: unset;
  left: 0;
  border-left: unset;
  border-right: 10px solid black;
}

.how_work_contract {
  padding: 80px 0;
  overflow: hidden;
}

.how_work_contract_title {
  margin-bottom: 30px;
}

.how_work_contract_title span {
  color: var(--main-color);
}

.how_work_contract_descr {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #464646;
}

.how_work_contract_wrapper {
  gap: 30px;
  margin-top: 50px;
}

.how_work_contract_side {
  flex-basis: 50%;
}

.how_work_contract_side_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 111%;
  text-align: center;
  color: #1e1f23;
  display: block;
  margin-bottom: 25px;
}

.how_work_contract_side_item {
  background: #f9f9fa;
  border-radius: 5px;
  padding: 25px 15px 25px 30px;
  align-items: center;
  gap: 20px;
  border-left: 9px solid var(--main-color);
  margin-bottom: 12px;
}

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

.how_work_contract_side_item span {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #1e1f23;
}

.how_work_contract_side_dop .how_work_contract_side_item {
  border-left: 9px solid #d8d8d8;
}

.black_block_bottom h2.black_block_title span:before,
.black_block_bottom h2.black_block_title span:after {
  display: none;
}

.post_page {
  overflow: hidden;
}

.tnx_page_wrapper {
  flex-direction: column;
  align-items: center;
}

.middle_img_tnx {
  margin-top: 40px;
}

.tnx_title {
  font-weight: 600;
  font-size: 35px;
  line-height: 104%;
  color: #1e1f23;
  text-align: center;
  display: block;
  margin-top: 50px;
}

.tnx_subtitle {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #464646;
  display: block;
  margin-top: 25px;
}

.tnx_to_main {
  margin-top: 35px;
  height: 46px;
  padding: 0 46px;
  background: #1e1f23;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  line-height: 134%;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.tnx_to_main:hover {
  background: #45474e;
  color: #fff;
}

.page-404 {
  background-image: url(/wp-content/uploads/2024/07/p-404.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.page-404-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.page-404-text-under {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #464646;
  max-width: 640px;
  width: 100%;
  margin: 30px auto 35px;
}

.link-to-home {
  transition: 0.3s;
  height: 46px;
  border-radius: 3px;
  padding: 0 46px;
  background: #1e1f23;
  font-weight: 600;
  font-size: 16px;
  line-height: 134%;
  text-align: center;
  color: #fff;
}

.link-to-home:hover {
  background: #43454b;
  color: white;
}

.menu-header ul.sub-menu {
  background: white;
  position: absolute;
  top: 118px;
  width: 100vw;
  left: 0;
  padding-left: calc((100vw - 1310px) / 2 + 15px);
  padding-right: calc((100vw - 1310px) / 2 + 15px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transition: 0.4s;
  max-height: 0;
  overflow: hidden;
  box-shadow: 0 0px 17px 0 rgba(0, 0, 0, .3);

}

.menu-item-has-children:hover .sub-menu {
  max-height: 200px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.menu-item-has-children>a {
  position: relative;
}

.menu-item-has-children>a:after {
  content: '';
  position: absolute;
  right: -14px;
  top: 6px;
  background-image: url(/wp-content/uploads/2024/07/menu-arrow.svg);
  width: 5px;
  height: 8px;
  background-size: cover;
  transition: 0.3s;
}

.menu-item-has-children:hover a:after {
  rotate: 90deg;
}

.sub-menu a span {
  color: black;
  transition: 0.3s;
}

.menu-header ul.sub-menu li {
  padding: 10px;
  justify-content: flex-start;
}

.menu-header ul.sub-menu li:hover {
  background: var(--main-color);
}

.menu-header ul.sub-menu li:hover span {
  color: white;
}

.menu-header ul.sub-menu li a {
  display: flex;
  align-items: center;
  gap: 21px;
}

.menu-header ul.sub-menu li img {
  padding-right: 0;
  width: 65px;
  height: 65px;
  object-fit: cover;
}

.menu-header ul.sub-menu li span {
  padding: 0;
}

.sticky .menu-header ul.sub-menu {
  top: 98px;
}

.product_cat_pagin .nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}

.product_cat_pagin {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 15px;
}


.addresses_phone:nth-child(-n+2) {
  display: none !important;
}

.page-template-page-thx header {
  display: none;
}

.product_char_item_value_price {
  color: red;
}

.product_price {
  border-radius: 3px;
  padding: 0 46px;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  line-height: 134%;
  text-align: center;
  transition: 0.3s;
  width: 50%;
  background: #00b812;
  border: 1px solid #00b812;
  color: white;
}


.seo_txt {
  padding: 50px 0;
}

.top_seo_txt {
  padding: 15px 0 50px;
}

.top_seo_txt img {
  float: left;
  height: 343px;
  width: auto;
  margin-right: 50px;
  display: block;
  margin-bottom: 30px;
}

.grecaptcha-badge {
  display: none;
}

.ask_price_dn {
  display: none;
}

.product_char_item_value_price {
  color: #00b812;
  font-size: 18px;
}

.model_instr {
  padding: 60px 0;
  background: #f9f9fa;
  margin-top: 20px;
}

.model_instr_title {
  font-weight: 600;
  font-size: 30px;
  line-height: 123%;
  color: #1e1f23;
  display: block;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: center;
  text-transform: none;
}

.model_instr_wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.model_instr_item {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 13px 0;
  border-bottom: 1px solid #e2e2e2;
}

.product_img_added {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.model_instr_item_model {
  font-size: 20px;
}

.model_instr_item_instrk a {
  font-size: 20px;
  color: var(--main-color);
  transition: 0.3s;
}

.model_instr_item_instrk a:hover {
  color: #bf8101;
}

.product_item_img {
  height: 124px;
  width: 160px;
  min-width: 160px;
  border: 1px solid #cdcdcd;
  border-radius: 6px;
  overflow: hidden;
  background: white;
}

.single-katalog img.mfp-img {
  height: 82vh !important;
}

.single-katalog .mfp-figure:after {
  display: none !important;
}


.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}



table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table thead th {
  background-color: #f4f4f4;
  color: #333;
  font-weight: bold;
  padding: 12px 15px;
  text-align: left;
  border-bottom: 2px solid #ddd;
}

table tbody td {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  color: #333;
}

table tbody tr:hover {
  background-color: #f9f9f9;
}


.popup_link_prod {
  display: block;
  width: 100%;
  height: 372px;
}

.open_sub_mob {
  display: none;
}

.product_cat_top_seo {
  margin-bottom: 40px;
}

.product_cat_top_seo p {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: #484848;
}

.product_cat_top_seo_wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.product_cat_top_seo_img {
  flex-basis: 30%;
}

.product_cat_top_seo_img img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.catalog_btn_none {
  display: none !important;
}

.product_cat_top_seo_descr_top p,
.product_cat_top_seo_descr p {
  margin-bottom: 15px;
}

.product_cat_top_seo_txt {
  flex-basis: 70%;
}

.instr_btn {
  margin-top: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  padding: 0 50px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 3px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #151515;
  transition: 0.3s;
}

.catalog_btn_bottom.instr_btn {
  position: relative;
  left: 50%;
  translate: -50% 0;
}

.instr_btn:hover {
  border: 1px solid var(--main-color);
  background: transparent;
}

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

.seo_txt.bottom_seo_txt p {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #484848;
}










































@media(max-width: 1580px) {
  .can_include {
    height: auto;
  }
}

@media(max-width: 1440px) {
  .video_open {
    left: 2px;
  }

  .what_we_do_item_txt {
    padding: 28px 30px;
  }

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

  .black_block_bottom {
    background-size: 100% 101%;
  }
}

@media(max-width: 1315px) {

  .brp_txt,
  .include_txt_side {
    padding-left: 15px;
  }

  .twenty_percent_text_wrapper {
    font-size: 14px;
  }

  .can_include_txt_side {
    padding-left: 50px;
    padding-right: 15px;
  }

  .can_include {
    height: auto;
  }
}

@media(max-width: 1250px) {

  .menu-header ul li {
    padding: 12px 2.78%;
  }

  .contacts_block_bottom {
    padding: 30px 27px;
  }

  .addresses_item span,
  .addresses_item a {
    font-size: 13px;
  }

  .addresses {
    gap: 24px;
  }
}

@media(max-width: 1024px) {

  .brp_wrapper {
    align-items: stretch;
  }

  .include_title {
    font-size: 28px;
  }

  .brp_title {
    font-size: 28px;
  }

  .can_include {
    height: auto;
  }

  .graphic_txt_s {
    font-size: 12px;
  }

  .brp_img img {
    height: 100%;
  }

  .graphics_bottom_txt_top_s {
    font-size: 13px;
  }

  .brp_txt {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mid_video_wrapper {
    height: 300px;
  }

  .twenty_percent_wrapper {
    width: 100%;
  }

  button.product_btn_popup {
    font-size: 13px;
  }

  .product_fix_term {
    font-size: 20px;
    height: 50px;
    max-width: 175px;
  }

  .product_fix_item_price {
    font-size: 20px;
  }

  .product_fix_item_title {
    font-size: 18px;
  }

  .product_fix_item img {
    max-width: 110px;
  }

  .product_fix_item_block span {
    font-size: 13px;
  }

  .product_fix_item_block {
    flex-basis: 33%;
  }

  .menu-header ul li {
    padding: 12px 2.7%;
  }

  .remont_item {
    height: 265px;
  }

  .header.sticky .menu-header ul li {
    padding: 8px 2.7%;
  }

  .remont_brands_item {
    flex-basis: calc(25% - 20px);
  }

  .mid_content {
    max-width: 455px;
  }

  .what_we_do_item_descr {
    font-size: 12px;
  }

  h2 {
    font-size: 28px;
  }

  .benefits_wrapper {
    column-gap: 28px;
    row-gap: 55px;
  }

  .benefits_icon {
    width: 55px;
    height: 55px;
  }

  .benefits_icon img {
    width: 55%;
  }

  .benefits_descr {
    font-size: 11px;
    max-width: 211px;
    padding: 0 25px 0 12px;
    height: 62px;
  }

  .form_title {
    font-size: 28px;
  }

  .rev_icon {
    width: 40px;
    height: 40px;
  }

  .rev_icon svg {
    width: 50%;
  }

  .clients_wrapper {
    gap: 25px;
  }

  .rev_txt p {
    font-size: 12px;
  }

  .review_item {
    padding: 20px 25px;
  }

  .review_item:before {
    width: 45px;
    height: 40px;
  }

  .review_block {
    gap: 25px;
  }

  .main_title {
    font-size: 33px;
  }

  .what_we_do_item_txt {
    padding: 15px 18px;
  }

  .what_we_do_item_title {
    font-size: 16px;
  }

  .what_we_do_item {
    height: 215px;
  }

  .how_txt {
    padding: 0 35px;
  }

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

  .aboutus_top .aboutus_top_video {
    height: 265px;
  }

  .aboutus_top .aboutus_top_video iframe {
    height: 100%;
  }

  .aboutus_list {
    padding: 20px 15px;
  }

  .aboutus_list li {
    font-size: 12px;
    line-height: 125%;
    gap: 11px;
  }
}

@media(max-width: 992px) {

  .model_instr_title {
    font-size: 25px;
  }

  .menu-header ul.sub-menu {
    max-height: unset !important;
    padding: 0 !important;
    grid-template-columns: repeat(1, 1fr);
    top: 100px !important;
    width: 100%;
    left: 100%;
    background: #323337;
    box-shadow: unset;
    z-index: 100;
    padding-bottom: 250px !important;
  }

  .menu-header ul.sub-menu li img {
    width: 50px;
    height: auto;
  }

  .menu-item-has-children>a:after {
    display: none;
  }

  .mobileSubmenuBtn {
    width: 20px;
    height: 20px;
    /* border: 1px solid red; */
    margin-left: auto;
    position: relative;
  }

  .mobileSubmenuBtn:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    background-image: url(/wp-content/uploads/2024/07/menu-arrow.svg);
    width: 11px;
    height: 14px;
    background-size: cover;
    transition: 0.3s;
  }

  .menu-header ul.sub-menu.open_submenu_mobile {
    left: 0;
  }

  .sub-menu a span {
    color: white;
  }

  .page-404-content {
    padding: 0 15px;
  }

  .mid_video_wrapper {
    height: 245px;
  }

  .twenty_percent_text {
    padding: 18px 30px;
    clip-path: polygon(26px 0%, 100% 0, 100% 100%, 0% 100%);
  }

  .twenty_percent_text_wrapper p:not(:last-child) {
    margin-bottom: 9px;
  }

  .graphic_txt_s {
    font-size: 9px;
  }

  .twenty_percent_text_wrapper {
    font-size: 12px;
  }

  .graphics_bottom_txt_bottom3 {
    max-width: 165px;
  }

  .graphics_bottom_txt_top_s {
    font-size: 10px;
  }

  .contract_work .what_we_do_title {
    line-height: 130%;
  }

  .twenty_percent_num {
    min-width: 278px;
    height: 140px;
  }

  .graphics_bottom_txt_top_s {
    top: 12px;
  }

  .include_list_title {
    font-size: 14px;
  }

  .twenty_percent_num_per {
    width: 64%;
  }

  .blog_article_wrapper {
    flex-direction: column-reverse;
    gap: 35px;
    margin-bottom: 50px;
  }

  .include_list_descr {
    font-size: 12px;
  }

  .include_txt_side {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .include_img_side_block li span {
    font-size: 12px;
  }

  .include_img_side_block {
    padding: 30px 25px 30px 20px;
  }

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

  .black_block_title br {
    display: none;
  }

  .black_block_bottom {
    background-size: auto;
    background-position: center;
  }

  .side_fixed_item {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .side_fixed_cont {
    padding: 22px 19px;
  }

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

  .blog_cat {
    margin-bottom: 50px;
  }

  .remont_img_txt_block_title {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .remont_img_txt_block .container {
    gap: 30px;
  }

  .remont_s_brands_item {
    flex-basis: calc(51% - 17px);
  }

  .order_if {
    padding: 40px 0;
  }

  .remont_s_brands {
    margin: 40px 0 0;
    padding: 40px 0;
  }

  .remont_img_txt_block {
    padding: 35px 0;
  }

  .product_whywe_title {
    font-size: 25px;
  }

  .remont_img_txt_block_descr p {
    font-size: 13px;
  }

  .about_howwork {
    padding: 60px 0;
  }

  .aboutus_top_wrapper {
    gap: 27px;
    flex-direction: column-reverse;
  }

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

  .slider-for {
    width: 100%;
  }

  .slider-nav {
    display: none;
  }

  .contacts_wrapper {
    flex-direction: column;
  }

  .contacts_wrapper {
    gap: 50px;
  }

  .cert_wrapper .slick-track {
    gap: 25px;
  }

  .addresses_item span,
  .addresses_item a {
    font-size: 16px;
  }

  .product_fix_item {
    padding-left: 18%;
  }

  .product_whywe_icon {
    left: -35px;
  }

  .product_whywe_item {
    margin-left: 35px;
    padding: 22px 22px 22px 68px;
  }

  .product_whywe_item_descr {
    font-size: 12px;
  }

  .product_whywe_item_title {
    font-size: 14px;
  }

  .product_top_wrapper {
    flex-direction: column;
  }

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

  .vacancies_img {
    height: 130px;
  }

  .product_whywe_icon {
    width: 75px;
    height: 75px;
  }

  .product_whywe_icon img {
    width: 57%;
  }

  .vacancies_name,
  .vacancies_file {
    font-size: 13px;
  }

  .vacancies {
    margin-bottom: 60px;
  }

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

  .products_categoryes ul.parent_categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 0;
  }

  .product_cat_seo {
    margin-top: 25px;
    padding-top: 35px;
  }

  h2.h2_title_prod_cat {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .product_cat_p_m_item_icon {
    width: 60px;
    height: 60px;
    left: -20px;
  }

  .product_cat_p_m_item_icon svg {
    width: 50%;
  }

  .product_cat_p_m_item {
    margin-left: 20px;
    padding: 20px 20px 20px 50px;
  }

  .header_wrapper_top {
    margin-bottom: 0;
  }

  .inpage {
    padding-top: 95px;
  }

  .product_cat_p_m_title {
    font-size: 18px;
  }

  .product_cat_p_m_list li {
    font-size: 13px;
  }

  h2.prod_cat_faq_title {
    font-size: 26px;
  }

  .prod_cat_faq {
    margin-top: 40px;
    padding-top: 35px;
  }

  .h3_title_prod_cat {
    font-size: 20px;
  }

  .prod_cat_txt p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .products_categoryes ul li a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-size: 12px;
  }

  .child_categories {
    display: none;
  }

  .products_title {
    margin-bottom: 20px;
  }

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

  .parent_category:has(.child_categories):after,
  .products_categoryes ul li a:after {
    display: none;
  }

  .rev_name span {
    font-size: 16px;
  }

  .slick-next {
    right: 25%;
  }

  .slick-prev {
    left: 25%;
  }

  .rev_date {
    margin-top: 14px;
  }

  .how_txt_wrapper div p {
    font-size: 14px;
  }

  .how_txt_wrapper span {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .footer_form_title {
    font-size: 18px;
  }

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

  .form_wrapper .wpcf7-submit {
    width: 100%;
    max-width: 250px;
  }

  .mid_content {
    top: 28%;
  }

  .video_open {
    left: -19px;
  }

  .bot_content {
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .what_we_do_item {
    height: 178px;
  }

  .serv_txt {
    padding: 25px;
  }

  .serv_txt span {
    font-size: 18px;
  }

  .serv_txt div {
    font-size: 12px;
  }

  .bot_content_item {
    flex-basis: calc(50% - 25px);
  }

  .bot_content_item br {
    display: none;
  }

  .what_we_do_item_title {
    font-size: 13px;
  }

  .remont_wrapper .what_we_do_item_title {
    font-size: 12px;
  }

  .remont_info_wrapper .container {
    flex-direction: column;
    gap: 20px;
  }

  .remont_info_wrapper_side_txt span {
    font-size: 24px;
  }

  .remont_brands_item {
    flex-basis: calc(50.6% - 15px);
  }

  .remont_info_wrapper_side_txt {
    padding-right: 0;
  }

  .aboutus_top_video {
    height: 225px;
  }

  .aboutus_top_video iframe {
    height: 100%;
  }

  .menu-header ul li {
    padding: 16px 0;
    border-bottom: 1px solid #3f3f3f;
    width: 100%;
    justify-content: unset;
  }

  .menu-header ul li:last-child {
    border-bottom: unset;
  }

  .form_wrapper form p {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    justify-content: center;
  }

  .dropdown_lang,
  .tech_support {
    display: none;
  }

  .lang_list {
    align-items: center;
    gap: 10px;
  }

  .lang_list a {
    width: 46px;
    height: 45px;
    border-radius: 5px;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .lang_list .current-lang a {
    color: var(--main-color);
  }

  .header_btn {
    display: none;
  }

  .mobile_menu .header_btn {
    display: block;
  }

  .mobile_menu .tech_support {
    display: flex;
    margin-right: 0;
    flex-direction: column;
    gap: 10px;
  }

  .header_wrapper_bottom {
    border-top: unset;
  }

  .menu-header {
    display: none;
  }

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

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

  .mobile_menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    translate: 120% 0;
    z-index: 50;
    background-color: #323337;
    position: fixed;
    inset: 0;
    padding: 100px 15px 100px;
    overflow: hidden;
    /* align-items: center; */
    height: 100vh;
  }

  .menu-header ul li:hover {
    background: #323337;
  }

  .menu-header ul li:hover a {
    color: white;
  }

  .mobile_menu:has(.open_submenu_mobile) .menu-wrapper-mobile+.header_btn {
    opacity: 0;
    visibility: hidden;
  }


  .menu-item-has-children:has(.open_submenu_mobile) .mobileSubmenuBtn {
    position: absolute;
    top: 8%;
    rotate: 180deg;
  }

  .tech_support {
    align-items: flex-start;
  }

  .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;
    /* background: white; */
  }

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

  .mobile_menu_top {
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
  }

  .tech_support_links a {
    width: 90px;
    height: 45px;
  }

  .menu-header ul li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    width: 100%;
  }

  .header_btn {
    max-width: 100%;
    padding: 0 20px;
    height: 55px;
    font-size: 14px;
    font-weight: 600;
  }

  .footer_content_wrapper {
    flex-wrap: wrap;
  }

  .footer_contacts {
    margin-top: 30px;
    width: 100%;
  }

  .footer_contacts_wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .footer_contact_item {
    flex-basis: 50%;
  }

  .footer_contact_item:nth-child(1) {
    order: 1;
  }

  .footer_contact_item:nth-child(2) {
    order: 3;
  }

  .footer_contact_item:nth-child(3) {
    order: 2;
  }

  .footer_contact_item:nth-child(4) {
    order: 4;
  }

  .footer_contact_item:nth-child(5) {
    order: 5;
  }

  .footer_partner {
    height: 47px;
    width: 200px;
  }

  .footer_partner img {
    width: 65%;
  }

  .benefits_item {
    flex-basis: calc(36.8% - 45px);
  }
}

@media(max-width: 500px) {

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

  .inpage {
    padding-top: 80px;
  }

  .product_item_img {
    min-width: 47%;
  }

  .product_item_left {
    gap: 16px;
  }

  .product_cat_top_seo {
    margin-bottom: 25px;
  }

  .model_instr_title {
    font-size: 21px;
    text-align: left;
  }

  .tableContainer {
    overflow: auto;
  }

  .model_instr {
    padding: 45px 0;
  }

  .model_instr_item_model {
    font-size: 18px;
  }

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

  .page-404 {
    background-image: url(/wp-content/uploads/2024/07/amperservice_mob_404.jpg);
  }

  .include_wrapper {
    flex-direction: column;
  }

  .include_title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .include_txt_side {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contract_top_section .mid_content_wrapper .mid_content {
    flex-basis: 100%;
    width: 100%;
  }

  .can_include .include_wrapper {
    flex-direction: column-reverse;
  }

  .include_img_side {
    width: 100%;
  }

  .how_work_contract h2 svg {
    display: none;
  }

  .how_work_contract {
    padding: 54px 0;
  }

  .how_work_contract_wrapper {
    flex-direction: column;
    gap: 38px;
  }

  .black_block_btn {
    width: 100%;
  }

  .how_work_contract_side_item {
    padding: 20px 15px 20px 21px;
  }

  .contract_top_section .mid_content_wrapper {
    flex-direction: column;
  }

  .breadcrumbs_contract {
    top: 82px;
  }

  .contract_top_section .main_btn_top {
    width: 100%;
  }

  .contract_top_section .main_descr {
    margin-bottom: 30px;
  }

  .contract_top_section .image_btn {
    display: none;
  }

  .mid_video_wrapper {
    margin-top: 30px;
    width: 100%;
  }

  .contract_top_section .mid_content_video {
    flex-basis: 100%;
    width: 100%;
  }

  .mid_video_wrapper {
    height: 202px;
  }

  .contract_work h2 svg {
    display: none;
  }

  .brp_title {
    font-size: 22px;
  }

  .brp_img {
    width: 100%;
  }

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

  .contract_work_descr p br {
    display: none;
  }

  .remont_top_btns_title {
    font-size: 16px;
  }

  .twenty_percent_wrapper {
    flex-direction: column;
  }

  .twenty_percent {
    height: 70vh;
  }

  .twenty_percent_num_per {
    width: 40%;
  }

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

  .twenty_percent_num {
    translate: 78px 0;
  }

  .twenty_percent_text {
    clip-path: none;
  }

  .brp_wrapper {
    flex-direction: column;
  }

  .brp_txt {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }

  .article_two_blocks_wrapper {
    flex-direction: column;
  }

  .black_block h2.black_block_title span:before,
  .black_block h2.black_block_title span:after {
    display: none;
  }


  .article_two_blocks_wrapper {
    margin-bottom: 0;
  }

  .black_block {
    height: auto;
    padding: 50px 0;
  }

  .graphics_top {
    flex-direction: column;
  }

  .graphics_top_side_title {
    margin-bottom: 95px;
  }

  .graphic_txt_icon {
    font-size: 12px;
  }

  .graphic_txt_top2_without {
    right: 7%;
    top: -25%;
  }

  .graphic_txt_top1_without {
    top: -5%;
  }

  .black_block_btn.header_btn {
    display: block;
  }

  .black_block_descr {
    font-size: 14px;
  }

  .graphics {
    padding: 44px 0 60px;
  }

  .graphics_top_side_title_with {
    margin-bottom: 40px;
  }

  .graphics_bottom_wrapper {
    width: 190%;
  }

  .graphics_bottom_txt_bottom3 {
    left: 64%;
  }

  .graphics_bottom_txt_top3 {
    left: 63%;
  }

  .graphics_bottom_wrapper_s {
    overflow: scroll;
  }

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

  .post_img,
  .blog_item_bottom {
    height: auto;
  }

  .remont_img_txt_block .container,
  .remont_img_txt_block:nth-child(even) .container {
    flex-direction: column-reverse;
  }

  .post_title {
    margin-bottom: 10px;
  }

  .post_excerpt {
    font-size: 13px;
  }

  .post_btn {
    font-size: 14px;
  }

  .blog_item_bottom {
    padding: 17px;
  }

  .remont_img_txt_block .container {
    gap: 15px;
  }

  .remont_top_btns_wrapper {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .single-remont .what_we_do_title {
    font-size: 21px;
  }

  .single-remont .what_we_do_title {
    margin-bottom: 20px;
  }

  .faq_cat_item {
    padding: 1px 20px 23px 20px;
  }

  .remont_single_seo.product_seo {
    margin-top: 0;
  }

  .product_whywe_title {
    margin-bottom: 15px;
  }

  .remont_s_brands_item {
    flex-basis: 100%;
  }

  .single-remont .how_we_work {
    padding: 35px 0;
  }

  .remont_img_txt_block_descr p {
    font-size: 15px;
  }

  .what_we_do_item_title {
    font-size: 20px;
  }

  .remont_brands_item {
    height: 240px;
  }

  .remont_info_wrapper {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .remont_info {
    margin: 40px 0;
  }

  .product_cat_seo {
    margin-top: 0;
  }

  .remont_brands,
  .devicesfor {
    padding: 40px 0;
  }

  .order_if_txt {
    font-size: 14px;
  }

  .order_if_item {
    padding-left: 62px;
  }

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

  .h1_page_title:after {
    display: none;
  }

  .remont_cat .remont_item:nth-child(-n+2) {
    flex-basis: 100%;
  }

  .remont_item {
    flex-basis: 100%;
    height: 203px;
  }

  .remont_info_wrapper_side_txt span {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .remont_info_wrapper_side_txt p {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .remont_info_wrapper_side .product_fix_item_block span,
  .remont_info_wrapper_side .product_fix_item_block span.product_fix_item_block_title {
    font-size: 11px;
  }

  .remont_about_wrapper .container {
    flex-direction: column-reverse;
    gap: 14px;
  }

  .remont_about_wrapper_side .aboutus_top_video {
    height: 215px;
  }

  .remont_brands_item {
    flex-basis: 100%;
  }

  .remont_info_wrapper_side_txt {
    padding-left: 0;
  }

  .remont_info_wrapper_side,
  .remont_about_wrapper_side {
    width: 100%;
  }



  .aboutus_top_video {
    height: 228px;
  }

  .about_adv,
  .about_howwork {
    padding: 45px 0;
  }

  .about_adv {
    margin-top: 40px;
  }

  .aboutus_list {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
  }

  .aboutus_top_video iframe {
    height: 100%;
  }

  .addresses {
    gap: 18px;
    flex-direction: column;
  }

  .contact_town {
    font-size: 22px;
  }

  .contacts {
    padding-bottom: 55px;
  }

  .header_phone_nums {
    position: relative;
    z-index: 1000;
  }

  .header_phone_nums svg {
    display: none;
  }

  .top_bg_image {
    display: none;
  }

  .image_btn {
    z-index: 20;
  }

  .top_bg_image_lines {
    width: 140%;
  }

  .cert_wrapper .slick-track {
    gap: 15px;
  }

  .product_top_info_tab {
    font-size: 14px;
  }

  .home_top_section {
    height: 90vh;
  }

  .product_char_item_title,
  .product_char_item_value {
    font-size: 13px;
  }

  .product_char_item_value_price {
    font-size: 16px;
  }

  .product_top_info_values_buy {
    padding: 18px;
  }

  button.product_btn_popup {
    font-size: 13px;
    padding: 0 7px;
  }

  .product_top_info_values_btns {
    gap: 15px;
  }

  .product_fix_item_title {
    font-size: 16px;
  }

  .product_fix_item_price {
    font-size: 18px;
  }

  .product_fix_item img {
    max-width: 66px;
  }

  .product_fix_item_blocks_wrapper {
    padding: 20px 15px;
  }

  .product_fix_item_block span {
    font-size: 11px;
  }

  .h1_page_title {
    font-size: 25px;
  }

  .product_whywe_title,
  .post-type-archive-remont .what_we_do_title {
    font-size: 21px;
  }

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

  .post-type-archive-remont .how_we_work {
    padding: 40px 0;
  }

  .order_if {
    padding: 40px 0;
  }

  .product_fix_item {
    padding: 36px 0;
    padding-left: 21%;
  }

  .product_fix_term {
    font-size: 14px;
    height: 41px;
    max-width: 139px;
  }

  .product_whywe_wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
  }

  .product_seo {
    margin: 50px 0;
    padding-top: 44px;
  }

  h2.h2_title_prod_cat {
    font-size: 25px;
  }

  .product_top_image img {
    width: 100%;
    height: 360px;
    object-fit: contain;
  }

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

  .vacancies_img {
    height: 185px;
  }

  .vacancies_name,
  .vacancies_file {
    font-size: 16px;
  }

  .products_categoryes ul.parent_categories {
    grid-template-columns: repeat(1, 1fr);
  }

  .product_item {
    flex-direction: column;
    padding: 15px;
  }

  .product_title_cat a {
    font-size: 16px;
  }

  .product_item_info_title,
  .product_item_info_value {
    font-size: 11px;
  }

  .product_cat_btn_bottom {
    font-size: 12px;
  }

  .modal_remont .modal_contactus_subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .modal_remont .modal_contactus_title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .product_cat_p_m {
    flex-direction: column;
    gap: 35px;
  }

  .product_cat_seo {
    margin-bottom: 53px;
  }

  .modal_remont .modal_contactus_title a {
    display: block;
  }

  .product_item_right {
    flex-direction: row;
    width: 100%;
  }

  .product_cat_btn {
    width: 50%;
  }

  .product_item_info_item {
    margin-bottom: 4px;
  }

  .product_item_img {
    width: 100%;
  }

  .product_item_img img {
    width: 100%;
  }

  .mid_content {
    max-width: 100%;
    width: 96%;
    top: 40%;
  }

  .main_title {
    font-size: 32px;
  }

  .main_descr {
    margin-bottom: 45px;
  }

  .video_open {
    left: 103px;
    top: 56%;
    width: 55px;
    height: 55px;
  }

  .video_open svg {
    width: 40%;
  }

  .video_open:hover .round_gray {
    scale: 2;
  }

  .video_open img.border_btn {
    width: 90px;
    height: 90px;
  }

  .bot_content_item {
    flex-basis: calc(50% - 20px);
    gap: 13px;
  }

  .bot_content {
    row-gap: 20px;
  }

  .bot_content_item img {
    min-width: 40px;
  }

  .bot_content_item span {
    font-size: 10px;
  }

  h2 {
    font-size: 22px;
    line-height: 135% !important;
  }

  .header.sticky .header_wrapper_top {
    margin-bottom: 0;
  }

  .p80 {
    padding: 55px 0;
  }

  .what_we_do_title {
    margin-bottom: 30px;
  }

  .what_we_do_wrapper {
    gap: 15px;
    display: grid;
  }

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

  .what_we_do_item {
    height: 225px;
  }

  .serv_img img {
    width: 80px;
  }

  .services_item {
    flex-direction: column;
  }

  .serv_txt {
    padding: 0px 15px 15px;
  }

  .benefits_wrapper {
    flex-direction: column;
  }

  .benefits_descr {
    max-width: 300px;
    font-size: 13px;
  }

  .form_title {
    font-size: 22px;
  }

  .form_descr {
    font-size: 16px;
    margin: 15px 0 30px;
  }

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

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

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

  .review_item {
    padding: 15px;
  }

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

  .rev_name {
    gap: 10px;
  }

  .rev_icon,
  .review_item:before {
    width: 30px;
    height: 30px;
  }

  .rev_date {
    margin-top: 8px;
    font-size: 11px;
  }

  .how_we_work_item {
    flex-direction: column-reverse;
    margin-bottom: 35px;
  }

  .how_we_work_item:nth-child(even) {
    flex-direction: column-reverse;
  }

  .how_we_work_item .how_img img {
    border-radius: 10px !important;
  }

  .how_we_work_item .how_img {
    margin-bottom: 17px;
  }

  .how_we_work_item:before {
    display: none;
  }

  .how_txt {
    padding: 0;
  }

  .how_txt_wrapper span {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .how_txt_wrapper span:after {
    right: -54px;
    border-top: 2px solid #FBB21A;
  }

  .how_we_work_item:nth-child(even) .how_txt_wrapper span {
    padding-left: 0;
  }

  .how_we_work_item:nth-child(even) .how_txt_wrapper span:after {
    right: -54px;
    left: unset;
  }

  .how_we_work {
    padding-bottom: 20px;
  }

  .footer_form {
    padding: 50px 20px;
  }

  .footer_content {
    padding: 55px 0 38px;
  }

  .footer_bg {
    display: none;
  }

  .footer_form_bg {
    width: 100%;
    top: unset;
    bottom: 0;
    left: -35px;
  }

  .footer_column_logo {
    margin-bottom: 25px;
  }

  .footer_column_title {
    margin-bottom: 10px;
  }

  .footer_contact_item {
    order: unset !important;
    flex-basis: 100%;
  }

  .main_btn_footer {
    margin-top: 30px;
    width: 100%;
  }

  .footer_content_bottom {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .modal_contactus_title {
    font-size: 24px;
  }

  .form_modal {
    padding: 30px;
    width: 88%;
  }

  .modal_contactus_subtitle {
    font-size: 18px;
  }

  .modal_product_contacts {
    padding: 50px 20px;
    width: 86%;
  }

  .form_modal form p span {
    width: 100%;
  }

  .product_modal_contatcs a {
    font-size: 17px;
  }

  .form_modal form p .wpcf7-submit {
    margin-top: 0;
    max-width: 100%;
  }

  .slick-next {
    right: 14%;
  }

  .slick-prev {
    left: 14%;
  }

  .logo_wrapper img {
    width: 110px;
  }

  .burger_block {
    scale: 0.8;
    z-index: 100;
  }

  .header_phone_nums a {
    font-size: 13px;
  }

  .to_top_btn {
    bottom: 210px;
  }

  body:has(.mobile_menu.show-menu) {
    overflow: hidden;
  }

  #breadcrumbs a,
  #breadcrumbs span {
    white-space: nowrap;
  }

  #breadcrumbs {
    overflow: auto;
  }

  .header_wrapper {
    padding-bottom: 15px;
  }

  .open_sub_mob {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 10px;
    background: unset;
    border: 1px solid #000;
    z-index: 10;
    padding: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
  }

  .open_sub_mob svg {
    width: 12px;
    height: 12px;
  }

  .products_categoryes ul li a {
    padding-right: 35px;
    height: auto;
  }

  .child_categories {
    display: block;
  }

  .child_categories.show {
    /* max-height: 300px; */
    opacity: 1;
    visibility: visible;
    transition: 0.4s;
  }

  .product_cat_top_seo_btns {
    flex-direction: column;
    gap: 0;
  }

  .product_cat_top_seo_btns a {
    width: 100%;
  }

  .menu-header ul.sub-menu li:hover {
    background: transparent !important;
  }

}

@media(max-width: 320px) {

  .contract_top_section .home_top_section_wrapper {
    align-items: flex-end;
    padding-bottom: 25px;
  }

  .twenty_percent_wrapper {
    margin-bottom: 33px;
  }

  .brp_item_txt {
    font-size: 12px;
  }

  .graphic_txt_top1_without {
    top: -11%;
  }

  .h1_page_title:after {
    display: none;
  }

  .graphic_txt_top2_without {
    right: 3%;
    top: -31%;
  }

  .h1_page_title {
    font-size: 23px;
  }

  #breadcrumbs a,
  #breadcrumbs span {
    font-size: 10px;
  }

  .product_fix_item img {
    display: none;
  }

  .product_fix_item {
    padding-left: 7%;
  }

  h2.h2_title_prod_cat {
    font-size: 22px;
  }

  .product_fix_item_blocks {
    flex-direction: column;
  }

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

  .product_whywe_item_title {
    font-size: 12px;
  }

  .product_fix_btn {
    width: 100%;
  }

  .logo_wrapper img {
    width: 95px;
  }

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

  .main_descr {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .main_btn {
    height: 33px;
  }

  .mid_content {
    top: 25%;
  }

  .bot_content_item span {
    font-size: 11px;
  }

  .bot_content_item img {
    width: 24px;
  }

  .bot_content {
    row-gap: 13px;
    margin-bottom: 18px;
  }

  .video_open {
    width: 70px;
    height: 70px;
  }

  .video_open svg {
    width: 55%;
  }

  .video_open img.border_btn {
    width: 100px;
    height: 100px;
  }

  .what_we_do_title {
    margin-bottom: 17px;
  }

  h2 {
    font-size: 16px;
  }

  .service_title {
    margin-bottom: 30px;
  }

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

  .serv_txt div {
    font-size: 11px;
  }

  .mobile_menu {
    padding: 70px 15px;
  }

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

  .lang_list {
    margin-top: 0;
  }

  .product_item_img {
    min-width: 122px;
  }
}