/* @font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/wp-bootstrap-starter/inc/assets/fonts/Gilroy-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/wp-bootstrap-starter/inc/assets/fonts/Gilroy-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/wp-bootstrap-starter/inc/assets/fonts/Gilroy-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/wp-bootstrap-starter/inc/assets/fonts/Gilroy-SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/wp-bootstrap-starter/inc/assets/fonts/Gilroy-Bold.ttf");
  font-weight: bold;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/wp-bootstrap-starter/inc/assets/fonts/Gilroy-ExtraBold.ttf");
  font-weight: 800;
} */

* {
  box-sizing: border-box;
}

/* *,
*::before,
*::after {
  box-sizing: border-box;
  outline: 2px solid lime;
} */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #232323;
}

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

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

p {
  font-weight: 500 !important;
}

h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #232323;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  translate: -50% 0;
}

.main_home h2:before,
.main_home h2:after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 46px;
  height: 6px;
  background: var(--main-color);
  border-radius: 2px;
}

.main_home h2:before {
  left: -80px;
}

.main_home h2:after {
  right: -80px;
}

.d-flex {
  display: flex;
}

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

a {
  text-decoration: none;
}

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

button {
  border: none;
  outline: none;
}

button:focus {
  outline: none;
}

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


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



/* @media (min-width: 992px) { */
.hidden-anim {
  opacity: 0;
  transition: 0.6s;
  visibility: hidden;
}

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

.rightAnim {
  translate: 50px 0;
}

.bottomAnim {
  translate: 0 50px;
}

.topAnim {
  translate: 0 -50px;
}

.scaleAnim {
  scale: 0.1;
}

.delay_03 {
  transition-delay: 0.3s;
}

.delay_05 {
  transition-delay: 0.5s;
}

.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 {
  translate: 0;
  visibility: visible;
  opacity: 1;
  scale: 1;
}




.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;
  margin-right: 15px;
}

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

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

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

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

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

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

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

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

.mobile_menu {
  display: none;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0 27px;
  /* transition: 0.8s cubic-bezier(0.01, -0.02, 0, 0.79); */
  transition: 0.4s;
  background: white;
}

.header.sticky {
  box-shadow: 0 0px 17px 0 rgba(0, 0, 0, .3);
  padding: 10px 0;
}

.header_wrapper {
  align-items: center;
  flex-direction: column;
  gap: 27px;
  transition: 0.4s;
}

.header.sticky .header_wrapper {
  gap: 7px;
}

.header_wrapper_top {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

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

.header_phones {
  align-items: center;
  gap: 35px;
  background: #f9f9f9;
  border-radius: 5px;
  padding: 12px 25px;
}

.header_phones a {
  align-items: center;
  display: flex;
  gap: 9px;
  font-weight: 600;
  font-size: 14px;
  color: #232323;
  transition: 0.3s;
}

.header_phones a:hover {
  color: #A13452;
}

.header_socials {
  align-items: center;
  gap: 13px;
}

.header_socials a {
  display: flex;
  align-items: center;
}

.header_socials a svg {
  scale: 1.2;
}

.header_socials a svg path {
  transition: 0.3s;
}

.header_socials a:hover path {
  fill: var(--main-color);
}

.header_wrapper_bottom {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 100px;
}

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

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

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

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

.menu-header {
  width: 100%;
}

/* .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: 500;
  font-size: 16px;
  line-height: 150%;
  color: #232323;
  /* padding-right: 13px; */
}

.header_lang__btn {
  /* border-radius: 30px; */
  background: transparent;
  width: 76px;
  height: 35px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header_lang__btn .lang_icon {
  /* position: absolute; */
  display: flex;
  align-items: center;
}

.header_lang__btn .lang_icon svg {
  transition: 0.3s;
}

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

.dropdown_lang .dropdown_menu {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 27px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: white;
  width: 76px;
  padding-bottom: 10px;
  padding-top: 13px;
  z-index: 1;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

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

.dropdown_lang.open .lang_icon_right svg {
  rotate: 45deg;
}

.dropdown_item.disabled {
  display: none;
}

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

.main_home {
  padding-top: 154px;
}

.slider_home {
  position: relative;
  isolation: isolate;
  height: 645px;
  padding-bottom: 25px;
  margin-bottom: 90px;
  overflow: hidden;
}

.slider_left_img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 39%;
}

.slider_right_img {
  position: absolute;
  top: 25px;
  right: 0;
  bottom: 0;
  z-index: -2;
  left: 33%;
  /* width: 66%; */
  height: 100%;
}

.slider_home_item,
.slider_home_wrapper,
.slider_home_wrapper .slick-list,
.slider_home_wrapper .slick-track {
  height: 100%;
}

.slider_home_wrapper .slick-list {
  overflow: unset;
}

.slider_home .container {
  height: 100%;
  align-items: center;
}

.slider_home_block {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  border-radius: 5px;
  padding: 50px;
  width: 100%;
  max-width: 744px;
}

.slider_home_title {
  font-weight: 700;
  font-size: 55px;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #232323;
  margin-bottom: 15px;
}

.slider_home_descr p {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #232323;
  margin-bottom: 37px;
}

.red_btn {
  background: var(--main-color);
  border-radius: 5px;
  padding: 0 35px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.red_btn:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: #7f243e;
  width: 350px;
  height: 350px;
  z-index: -1;
  transition: 0.8s;
  scale: 0;
}

.red_btn:hover {
  color: #fff;
}

.red_btn:hover:before {
  scale: 1;
}

.slider_arrows {
  position: absolute;
  bottom: 63px;
  gap: 12px;
  align-items: center;
}

.slider_arrows button {
  font-size: 0;
  color: transparent;
  background: transparent;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid white;
  cursor: pointer;
  background-image: url(/wp-content/uploads/2024/11/slider-white-arrow.svg);
  background-repeat: no-repeat;
  background-size: 28%;
  background-position: center
}

.slider_arrows button.slick-prev {
  scale: -1;
}

.slider_counter {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.services_item .container {
  align-items: center;
  gap: 65px;
  padding: 70px 15px;
}

.services_side {
  flex-basis: 50%;
}

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

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

.services_side_icon {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: #f9f9f9;
}

.services_side_icon img {
  width: 29px;
  height: 29px;
}

.services_side_title {
  flex-direction: column;
  /* gap: 10px; */
}

.services_side_title_txt {
  font-weight: 700;
  font-size: 27px;
  line-height: 130%;
  text-transform: uppercase;
  color: #141313;
}

.services_side_subtitle_txt {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #141313;
}

.services_side_descr P {
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #3b3b3b;
  margin-bottom: 15px;
}

.services_side_descr P:last-child {
  margin-bottom: 0;
}

.services_side_descr {
  margin-bottom: 20px;
}

.services_side_btns {
  align-items: center;
  gap: 30px;
}

.services_side_link {
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-color);
}

.services_side_link svg {
  margin-top: 1px;
  transition: 0.3s;
}

.services_side_link:hover svg {
  translate: 3px 0;
}

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

.services_title {
  margin-bottom: 0;
}

.services_item_gray {
  background: #f8f8f8;

}

.services_item_reverse .container {
  flex-direction: row-reverse;
}

.p80 {
  padding: 80px 0;
}

.effects_title {
  margin-bottom: 50px;
}

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

.spec_item {
  flex-direction: column;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.spec_item_img {
  width: 100%;
  height: 100%;
}

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

.spec_item_bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  background: var(--main-color);
  padding: 15px 20px;
  transition: 0.5s;
}

.spec_item_more {
  transition: 0.5s;
  font-size: 16px;
  color: white;
  opacity: 0;
  transition: 0.3s;
}

.spec_item_more:hover {
  text-decoration: underline;
}

.remont_title_cat {
  font-weight: 700;
  font-size: 21px;
  line-height: 130%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.spec_item:hover .spec_item_bottom {
  bottom: 0;
}

.spec_item:hover .spec_item_more {
  opacity: 1;
}

.spec_item:hover img {
  translate: 0 -40px;
}

.equipment_descr,
.equipment_descr_page {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #141313;
  margin: 25px 0 45px;
}

.equipment_descr_page {
  text-align: left;
  font-size: 18px;
}

.main_home .equipment_img {
  background: white;
}

.equipment_title {
  margin-bottom: 0;
}

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

.equipment_item {
  overflow: hidden;
}

.equipment_img img {
  width: 100%;
}

.equipment_img {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.equipment_img:before,
.equipment_img:after {
  content: '';
  position: absolute;
  background: var(--main-color);
  width: 100px;
  height: 100px;
  rotate: 45deg;
  transition: 0.5s ease;
}

.equipment_img:before {
  left: -70px;
  top: -70px;
}

.equipment_img:after {
  right: -70px;
  bottom: -70px;
}

.equipment_item:hover .equipment_img:before {
  left: -60px;
  top: -60px;
}

.equipment_item:hover .equipment_img:after {
  right: -60px;
  bottom: -60px;
}

.equipment_name {
  font-weight: 600;
  font-size: 27px;
  line-height: 100%;
  color: #141313;
}

.equipment_item_descr,
.equipment_format {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #141313;
  margin: 20px 0;
}

.equipment_format {
  margin: 0;
  font-style: italic;
  font-weight: 300;
}

.contacts_section_wrapper {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contacts_section_title {
  font-weight: 700;
  font-size: 42px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  text-align: left;
  left: 0;
  translate: 0;
}

.contacts_section_title:before,
.contacts_section_title:after {
  display: none;
}

.contacts_section {
  padding: 60px 0;
  background: #8f1d3c;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.contacts_title_side {
  width: 100%;
  max-width: 350px;
}

.contacts_section_descr p {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #fff;
}

.contacts_info_side {
  max-width: 820px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  padding: 50px;
  justify-content: space-around;
  gap: 20px;
}

.contact_name {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #141313;
  margin-bottom: 2px;
}

.contact_position {
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #3b3b3b;
}

.contacts_section_add {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts_section_add a {
  font-weight: 600;
  font-size: 21px;
  line-height: 150%;
  color: #141313;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
}

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

.contacts_info_side_line {
  border-right: 1px solid #909090;
}

.contacts_section_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.gallery_title {
  margin-bottom: 25px;
}

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

.gallery_wrapper {
  margin-top: 45px;
}

.gallery_tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.popup_link {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

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

.popup_link:hover img {
  scale: 1.1;
}

.popup_link:before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--main-color);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  transition: 0.5s;
  opacity: 0;
}

.popup_link svg {
  position: absolute;
  right: -2px;
  top: -2px;
  z-index: 2;
  transition: 0.5s;
  width: 29px;
  height: 29px;
}

.popup_link:hover svg {
  width: 50px;
  height: 50px;
}

.popup_link:hover:before {
  opacity: 0.5;
}

.tab_button {
  height: 72px;
  background: #f9f9f9;
  border-radius: 3px;
  height: 72px;
  justify-content: center;
  gap: 15px;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #141313;
  cursor: pointer;
  transition: 0.4s;
  border: 1px solid transparent;
}

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

.tab_button.active {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: white;
}

.tab_button.active img {
  filter: brightness(11);
}

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

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

.news_item {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.6s;
  border: 1px solid transparent;
  height: 396px;
  overflow: hidden;
}

.news_item_top {
  height: 206px;
  overflow: hidden;
}

.news_item_top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s;
  /* translate: 0 -20px; */
  /* scale: 1.25; */
}

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

.news_item:hover img {
  translate: 0;
  scale: 1.05;
}

.blog_section_title {
  margin-bottom: 50px;
}

.news_item_bottom {
  padding: 25px 30px 30px;
  position: relative;
  height: 240px;
  transition: 0.6s;
  background: white;
}

.news_item:hover .news_item_bottom {
  translate: 0 -44px;
}

.post_title {
  font-weight: 600;
  font-size: 21px;
  line-height: 150%;
  text-align: center;
  color: #141313;
  margin-bottom: 15px;
}

.post_descr {
  font-weight: 300;
  font-size: 15px;
  line-height: 130%;
  text-align: center;
  color: #3b3b3b;
}

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

.read_more {
  transition: 0.6s;
  color: var(--main-color);
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  font-variant: small-caps;
  color: #a13452;
  text-align: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  translate: -50% 10px;
  bottom: 30px;
  opacity: 0;
}

.news_item:hover .read_more {
  translate: -50% 0;
  opacity: 1;
}

.aboutus_title {
  margin-bottom: 50px;
}

.aboutus_side {
  flex-basis: 50%;
}

.aboutus_side_img {
  position: relative;
  overflow: hidden;
}

.aboutus_side_img svg {
  position: absolute;
  right: -3px;
  top: -3px;
}

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

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

.aboutus_side_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #141313;
  display: block;
  margin-bottom: 10px;
}

.aboutus_side_descr p {
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  color: #3b3b3b;
}

.aboutus_btn {
  margin-top: 50px;
  position: relative;
  left: 50%;
  translate: -50% 0;
}

footer {
  padding: 80px 0 70px;
  background: #8f1d3c;
}

.footer-logo-wrapper img {
  filter: brightness(11);
  width: 197px;
}

.footer_soc_block {
  margin-top: 20px;
  align-items: center;
  gap: 20px;
}

.footer_soc_block a svg {
  transition: 0.4s;
}

.footer_soc_block a:hover svg {
  filter: drop-shadow(0px 0px 6px white);
}

.footer_content {
  justify-content: space-between;
  gap: 10px;
}

.footer_menu_contact {
  display: flex;
  flex-direction: column;
  max-width: 180px;
}

.footer_menu_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  display: block;
  margin-bottom: 30px;
  transition: 0.3s;
}

.footer_menu_title_link:hover {
  color: white;
  text-decoration: underline;
}

.menu-footer ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  transition: 0.4s;
  position: relative;
}

.menu-footer ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  bottom: -2px;
  left: 50%;
  translate: -50% 0;
  border-top: 1px solid white;
  transition: 0.4s;
  opacity: 0;
}

.menu-footer ul li a:hover:after {
  opacity: 1;
  width: 100%;
}

.menu-footer ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_contact_item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  transition: 0.3s;
}

a.footer_contact_item:hover {
  color: white;
}

.footer_address svg {
  min-width: 16px;
}

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

.footer_content_bottom span {
  font-weight: 300;
  font-size: 16px;
  line-height: 98%;
  color: #fff;
}

.footer_content_bottom span.develop_by a {
  color: white;
}

.modal_contactus {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: white;
  z-index: 101;
  border-radius: 15px;
  padding: 50px 60px;
  max-width: 444px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  scale: 0;
  transition: 0.5s;
}

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

.overlay-bg,
.overlay-bg-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.5);
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

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

.closePopupBtn {
  position: absolute;
  top: -48px;
  right: -48px;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  background: #A13452;
  cursor: pointer;
  transition: 0.4s;
}

.closePopupBtn:hover {
  background: #831634;
}

.closePopupBtn svg {
  position: absolute;
  left: 22px;
  bottom: 22px;
}

.modal_contactus_title {
  font-weight: 600;
  font-size: 23px;
  line-height: 130%;
  text-align: center;
  color: #232323;
  margin-bottom: 25px;
  display: block;
}

.modal_contactus .wpcf7-form-control-wrap input {
  background: #f7f7f7;
  border-radius: 10px;
  width: 100%;
  height: 50px;
  border: unset;
  margin-bottom: 15px;
  padding-left: 21px;
}

.modal_contactus .wpcf7-submit {
  background: #a13452;
  border-radius: 5px;
  padding: 0 35px;
  height: 50px;
  border: unset;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  transition: 0.4s;
  margin-bottom: 25px;
}

.modal_contactus .wpcf7-submit:hover {
  background: #831634;
}

.wpcf7-spinner {
  display: none;
}

.form_modal_terms {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #232323;
}

.form_modal_terms a {
  color: #a13452;
}

.sub-menu {
  position: absolute;
  left: 50%;
  translate: -50% -70px;
  top: 39px;
  flex-direction: column;
  align-items: flex-start !important;
  padding: 25px 35px;
  gap: 15px !important;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.25);
  background: #f9f9f9;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  scale: 0.5;
  z-index: 105;
  border-radius: 5px;
}

.sub-menu a {
  text-align: left;
  white-space: nowrap;
}

/* .sub-menu.active {
  opacity: 1;
  visibility: visible;
} */

.menu-item-has-children {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: -50px;
  z-index: 105;
}

@media (min-width: 993px) {
  .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    scale: 1;
    translate: -50% 0;
  }
}

.menu-item-has-children:hover>a {
  color: white !important;
}

.menu-item-has-children:after {
  content: '';
  position: absolute;
  top: 8px;
  right: -15px;
  background-image: url(/wp-content/uploads/2024/11/plus-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 8px;
  height: 8px;
  transition: 0.5s;
}

.menu-item-has-children:hover:after {
  rotate: 45deg;
  filter: brightness(11);
}

.header_wrapper_bottom:has(.menu-item-has-children:hover) .overlay-bg-menu {
  opacity: 1;
  visibility: visible;
}

.main_pages {
  padding-top: 165px;
}

#breadcrumbs span,
#breadcrumbs a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #232323;
}

#breadcrumbs a {
  color: #c8c8c8;
}

.breadcrumbs {
  margin-bottom: 25px;
}

.page_title {
  font-weight: 700;
  font-size: 55px;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #232323;
  margin-bottom: 50px;
}

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

.page_article_title {
  margin-bottom: 40px;
}

.article_img {
  border-radius: 5px;
  overflow: hidden;
  height: 413px;
  margin-bottom: 40px;
}

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

.article_content p {
  font-size: 18px;
  line-height: 150%;
  color: #141313;
}

.article_content p span {
  margin: 20px 0;
  display: block;
  font-weight: 600;
}

.article_content h3 {
  font-size: 22px;
  margin: 20px 0;
}


.lines_title:before,
.lines_title:after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 46px;
  height: 6px;
  background: var(--main-color);
  border-radius: 2px;
}

.lines_title:before {
  left: -80px;
}

.lines_title:after {
  right: -80px;
}

.blog_other {
  margin-top: 100px;
}

.lines_title {
  margin-bottom: 40px;
}

.page-template-page-equipment .equipment_img {
  background: #f8f8f8;
}

.page-template-page-equipment .equipment {
  margin-bottom: 100px;
}

.effects_wrapper_cat {
  margin-bottom: 100px;
}

.gallery_title_page {
  margin-bottom: 45px;
}

.gallery_wrapper_page {
  margin-top: 0;
}

.special_top_content {
  gap: 50px;
  margin-bottom: 80px;
}

.gallery_page {
  margin-bottom: 80px;
}

.special_top_content_side {
  flex-basis: 50%;
}

.special_top_content_side img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 409px;
  border-radius: 5px;
}

.special_top_descr p {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #141313;
  margin-bottom: 20px;
}

.cat_news_pagin {
  margin-bottom: 100px;

}

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

.cat_news_pagin .screen-reader-text {
  display: none;
}

.cat_news_pagin .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F7F7F7;
  width: 43px;
  height: 43px;
  border-radius: 3px;
  color: #141313;
}

.cat_news_pagin .page-numbers.current {
  color: white;
  background: var(--main-color);
}

.next.page-numbers,
.prev.page-numbers {
  color: transparent;
  font-size: 0;
  background-image: url(/wp-content/uploads/2024/11/pagin-arrow.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  border: 1px solid black;
  margin-left: 25px;
}

.prev.page-numbers {
  rotate: 180deg;
  margin-left: 0;
  margin-right: 25px;
}

.article_content img {
  display: block;
  margin: 10px;
  float: inline-end;
}

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

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


.article_content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  font-family: Arial, sans-serif;
  color: #333;
}

.article_content table thead th {
  background-color: #f4f4f4;
  color: #444;
  font-weight: bold;
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.article_content table tbody tr {
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease;
}

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

.article_content table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.article_content table td:first-child {
  font-weight: bold;
  color: #555;
  width: 25%;
  background-color: #f8f8f8;
}

.article_content table td:last-child {
  font-size: 15px;
  line-height: 1.6;
}

.article_img_bottom {
  overflow: hidden;
}

.post_content_item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 74px;
}

.post_content_side {
  flex-basis: 50%;
}

.post_content_item_rev {
  flex-direction: row-reverse;
}

.post_content_side p {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: #141313;
  margin-bottom: 20px;
}

.gallery_wrapper_page {
  margin-top: 0;
}

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

/* .post_content_side p:has(+ul) {
  margin-bottom: 0;
} */

.post_content_side ul {
  list-style: disc;
  padding-left: 25px;
  margin-top: 0;
}

.post_content_side ul li {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #141313;
}

.post_content_side_img img {
  width: 100%;
}

.postdryk_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-bottom: 100px;
}

.postdryk_item {
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.postdryk_item_bottom {
  padding: 22px 30px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.postdryk_item_img {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.postdryk_item_img svg {
  position: absolute;
  right: -1px;
  top: 0;
  z-index: 5;
}

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

.postdryk_item_title_cat {
  font-weight: 700;
  font-size: 27px;
  line-height: 130%;
  text-transform: uppercase;
  color: #fff;
}

.postdryk_item_more {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
}

.short_descr_post {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #fff;
  transition: 0.6s;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  display: block;
}

.postdryk_item:hover .short_descr_post {
  max-height: 20px;
  opacity: 1;
  visibility: visible;
}

.postdryk_item:hover img {
  scale: 1.05;
}

.delivery_wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
}

.delivery_section {
  flex-basis: 50%;
}

.delivery_section p {
  font-size: 18px;
}

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

.technical_section p {
  margin-bottom: 15px;
}

.technical_section ul {
  margin-top: 0;
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

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

.cont_addr svg {
  min-width: 20px;
}

.contacts_page_info {
  flex-basis: 28%;
}

.contacts_page_map {
  flex-basis: 72%;
}

.contacts_page_wrapper {
  gap: 45px;
  margin-bottom: 100px;
}

.cont_addr span {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #141313;
}

.cont_block {
  background: #f9f9f9;
  border-radius: 5px;
  padding: 30px 40px;
  margin-bottom: 10px;
}

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

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

.contacts_page_map {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.contacts_page_map svg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}

a.footer_menu_title:hover {
  color: white;
  text-decoration: underline;
}



.wpcf7 form .wpcf7-response-output {
  margin-top: 0 !important;
  text-align: center;
  font-weight: 400;
  border-radius: 7px;
}






















































@media(max-width: 1280px) {
  .slider_right_img {
    left: 31%;
  }
}

@media(max-width: 1024px) {
  .menu-header ul {
    gap: 15px;
  }

  .services_item .container {
    gap: 33px;
  }

  .contacts_section_add a {
    font-size: 19px;
  }

  .news_item_top {
    height: 223px;
  }

  .read_more {
    translate: -50% 60px;
  }

  .news_item:hover .read_more {
    translate: -50% 50px;
  }
}

@media(max-width: 992px) {

  /* .menu-wrapper-mobile .menu-item:has(.open_submenu_mobile) {
    border: unset;
  } */

  .contacts_page_wrapper {
    flex-direction: column;
  }

  .contacts_page_map {
    flex-basis: unset;
    height: 350px;
  }

  .contacts_page_wrapper {
    margin-bottom: 50px;
  }

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

  .post_content_item_rev {
    flex-direction: column;
  }

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

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

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

  .special_top_content_side img {
    height: auto;
  }

  .header_wrapper_bottom {
    width: auto;
  }

  .slider_right_img {
    left: 26%;
  }

  .main_home {
    padding-top: 93px;
  }

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

  .aboutus_wrapper {
    flex-direction: column;
  }

  .services_item .container {
    flex-direction: column;
  }

  /* .contacts_section_wrapper {
    align-items: flex-start;
  } */

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

  .contacts_info_side {
    max-width: 100%;
  }

  .contacts_title_side {
    max-width: 100%;
  }

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

  .contacts_section_wrapper {
    flex-direction: column;
  }

  .footer_content {
    flex-wrap: wrap;
  }

  .header_wrapper {
    flex-direction: row;
  }

  .header_wrapper .header_right_side {
    display: none;
  }

  .menu-header {
    display: none;
  }

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

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

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

  .mobile_menu .header_socials {
    gap: 20px;
  }

  .mobile_menu .header_socials svg {
    filter: brightness(11);
    width: 32px;
    height: 32px;
  }

  .menu-item-has-children:after {
    width: 12px;
    height: 12px;
    top: 50%;
    translate: 0 -50%;
    right: 0;
    filter: brightness(11);
    display: none;
  }

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

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

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

  .header:has(.mobile_menu.show-menu) .header-logo-img {
    filter: brightness(11);
  }

  .dropdown_lang .dropdown_menu a,
  .header_lang__btn span {
    font-size: 25px;
  }

  .dropdown_lang {
    z-index: 55;
  }

  .burger-menu-wraper.show-menu span {
    background: white !important;
  }

  .header.sticky .header_wrapper {
    gap: 27px;
  }

  .header:has(.mobile_menu.show-menu) .header_lang__text {
    color: white;
  }

  .header:has(.mobile_menu.show-menu) .header_lang__btn svg {
    filter: brightness(11);
  }

  .menu-header ul li a {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
  }

  .menu-header ul li {
    padding: 20px 0;
    width: 100%;
  }

  .menu-header ul.sub-menu li {
    border-top: 1px solid #B8677D;
  }

  .menu-item-has-children {
    margin-bottom: 0;
  }

  .menu-header ul {
    gap: 0;
  }

  .sub-menu {
    position: fixed;
    top: 112px;
    left: 0;
    right: 0;
    translate: 100% 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    scale: 1;
    padding: 0 15px;
    gap: 0 !important;
    /* display: none !important; */
  }

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

  .menu-header ul li:first-child {
    border-top: unset;
  }

  .mobileSubmenuBtn {
    width: 25px;
    height: 25px;
    background-image: url(/wp-content/uploads/2024/11/plus-icon.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 0;
    filter: brightness(11);
  }

  .sub-menu.open_submenu_mobile {
    translate: 0 0;
  }

  .sub-menu.open_submenu_mobile+.mobileSubmenuBtn {
    position: fixed;
    top: 87px;
    right: unset;
    left: 15px;
    rotate: 45deg;
    background-size: 19px;
  }

}

@media(max-width: 500px) {

  .contacts_section .contacts_info_side {
    flex-direction: column;
  }

  .delivery_wrapper {
    flex-direction: column;
  }

  .postdryk_wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .postdryk_item {
    height: 300px;
  }

  .short_descr_post {
    height: auto;
    max-height: unset;
    opacity: 1;
    visibility: visible;
  }

  .postdryk_item_title_cat {
    font-size: 20px;
  }

  .post_content_item {
    margin-bottom: 50px;
  }

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

  .special_top_descr p {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 12px;
  }

  .page-template-page-equipment .equipment,
  .effects_wrapper_cat {
    margin-bottom: 45px;
  }

  .article_img {
    height: 230px;
    margin-bottom: 20px;
  }

  .blog_other {
    margin-top: 60px;
  }

  .main_pages {
    padding-top: 100px;
  }

  .slider_home_title,
  .page_title {
    font-size: 28px;
  }

  .page_title {
    margin-bottom: 20px;
  }



  .slider_home_descr p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .slider_home_block {
    padding: 30px;
  }

  .slick-slide img.slider_left_img {
    display: none;
  }

  .slider_right_img {
    left: -100px;
    top: 0;
  }

  h2 {
    font-size: 24px;
  }

  .main_home h2:before,
  .main_home h2:after,
  .lines_title:before,
  .lines_title:after {
    width: 34px;
    height: 3px;
  }

  .main_home h2:after,
  .lines_title:after {
    right: -50px;
  }

  .main_home h2:before,
  .lines_title:before {
    left: -50px;
  }

  .lines_title {
    margin-bottom: 20px;
  }

  .slider_home {
    margin-bottom: 30px;
  }

  .services_item .container {
    padding: 30px 15px;
  }

  .services_side_title_txt {
    font-size: 20px;
  }

  .services_side_descr P {
    font-size: 16px;
  }

  .services_side_btns {
    flex-direction: column;
  }

  .services_side_btns button {
    width: 100%;
  }

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

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

  .slider_home_btn {
    width: 100%;
  }

  .header {
    padding: 20px 0;
  }

  .main_home {
    padding-top: 84px;
  }

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

  .spec_item {
    height: 260px;
  }

  .spec_item_bottom {
    bottom: -19px;
  }

  .effects_title {
    margin-bottom: 30px;
  }

  .p80 {
    padding: 40px 0;
  }

  .equipment_wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }

  .equipment_name {
    font-size: 20px;
  }

  .equipment_item_descr,
  .equipment_format {
    font-size: 16px;
    margin: 10px 0;
  }

  .contacts_section_title {
    font-size: 24px;
  }

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

  .gallery_wrapper {
    margin-top: 30px;
  }

  .tab_button {
    font-size: 14px;
    height: 50px;
  }

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

  .news_item_bottom {
    height: auto;
  }

  .news_item {
    height: auto;
  }

  .aboutus_side_title {
    font-size: 20px;
  }

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

  .aboutus_title {
    margin-bottom: 30px;
  }

  .aboutus_wrapper {
    gap: 15px;
  }

  .aboutus_btn {
    margin-top: 35px;
  }

  .footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-menu-side {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .menu-footer ul li a {
    font-size: 18px;
  }

  .footer_menu_title {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .footer_menu_contact {
    max-width: 100%;
    text-align: center;
  }

  .footer_contact_item {
    justify-content: center;
  }

  .footer_content_bottom {
    flex-direction: column;
    margin-top: 30px;
  }

  footer {
    padding: 47px 0 50px;
  }

  .footer_address svg {
    display: none;
  }

  .popup_link img {
    height: 180px;
  }
}