.header-menu {
  position: fixed;
  top: 130px;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
} .header-menu.active {
  opacity: 1;
  pointer-events: auto;
} .header-menu .header-menu__sides {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  height: fit-content;
  max-height: 80vh;
  overflow: auto;
  display: flex;
  gap: 35px;
  background: #FFFFFF;
  padding: 30px 15px 0;
  border-radius: 15px;
  margin: 10px auto;
} .header-menu .header-menu__sides.container::after,
  .header-menu .header-menu__sides.container::before {
  display: none;
} .header-menu__sides_left {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-bottom: 30px;
} .header-menu__first-level {
  display: flex;
  gap: 35px;
} .header-menu__first-level__item {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #DADADE;
  border-radius: 0;
  padding: 23px 30px;
  text-decoration: none;
} .header-menu__first-level__item:hover {
  background: #FDD292A1;
  border-radius: 10px;
  text-decoration: none;
} .header-menu__first-level__item:hover svg {
  color: #EFB400;
} .header-menu__first-level__item_text {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
} .header-menu__first-level__item_text svg {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  color: #373E44;
} .header-menu__first-level__item_text h2 {
  font-family: 'Roboto';
  font-size: 20px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 1%;
  color: #373E44;
  text-decoration: none;
  margin: 0;
} .header-menu__first-level__item > svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  color: #373E44;
} .header-menu__sides_right {
  max-width: 672px;
  width: 100%;
} .header-menu__second-level {
  /* position: absolute;
  top: 30px;
  right: 30px; */
  display: none;
  flex-direction: column;
  gap: 20px;
  max-width: 672px;
  width: 100%;
} .header-menu__second-level.active {
  display: flex;
  padding-bottom: 30px;
} .header-menu__second-level h3 {
  font-family: 'Open Sans';
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #354D66;
  margin: 0;
} .header-menu__second-level svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  color: #373E44;
} .header-menu__second-level > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 10px;
  margin-bottom: 0;
} .header-menu__second-level > ul li {
  display: flex;
  width: 100%;
  height: fit-content;
} .header-menu__second-level > ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 20px 10px;
  border: 1px solid #F4F4F4;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #00000017;
  text-decoration: none;
} .header-menu__second-level > ul li:hover a {
  background: rgba(255, 227, 186, 0.5);
} .header-menu__second-level > ul li a img {
  max-width: 112px;
  width: 100%;
  max-height: 72px;
  height: auto;
  margin-right: 10px;
} .header-menu__second-level > ul li a h4 {
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #354D66;
  text-decoration: none;
  margin: 0;
} .header-menu__second-level > ul li a svg {
  margin-left: auto;
} .header-menu_button {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px;
  font-family: 'Roboto';
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  background: #EFB400;
  border: 2px solid #EFB400;
  border-radius: 15px;
  text-decoration: none;
} .header-menu_button:hover {
  color: #EFB400;
  background: #FFFFFF;
  text-decoration: none;
} .header-menu_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(55, 62, 68, 0.5);
  z-index: 1;
} @media (max-width: 1200px) {
  .header-menu .header-menu__sides {
    justify-content: space-between;
  } .header-menu__sides_left {
    max-width: 300px;
  }
}



.header-menu_mobile {
  position: fixed;
  top: 0;
  left: -120%;
  z-index: 105;
  width: 100%;
  height: 100%;
  overflow: auto;

  display: flex;
} .header-menu_mobile.active {
  left: 0;
} .header-menu_mobile-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 420px;
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  padding: 20px 15px 30px;
  background: #FFFFFF;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
} .header-menu_mobile-content_top > ul li {
  text-decoration: none;
  margin-left: 10px;
} .header-menu_mobile-content_top > ul > li a {
  text-decoration: none;
} .header-menu_mobile-text {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #DADADE;
  border-radius: 0;
  padding: 22px;
  text-decoration: none;
} .header-menu_mobile-text:hover {
  background: #FDD292A1;
  border-radius: 10px;
} .header-menu_mobile-text:hover svg {
  color: #EFB400;
} .header-menu_mobile-text .header-menu__first-level__item_text {
  text-decoration: none;
} .header-menu_mobile-text span {
  font-family: 'Roboto';
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 1%;
  color: #373E44;
  text-decoration: none;
  margin: 0;
} .header-menu_mobile-text svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  color: #373E44;
  text-decoration: none;
} .header-menu_mobile-text > a svg {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  color: #373E44;
  text-decoration: none;
} .header-menu_mobile-catalog > .header-menu__first-level {
  display: flex;
  flex-direction: column;
  gap: 0;
} .header-menu_mobile-catalog > .header-menu__first-level > ul a {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #DADADE;
  border-radius: 0;
  padding: 22px 10px;
  text-decoration: none;
} .header-menu_mobile-catalog > .header-menu__first-level > ul a:hover {
  background: #FDD292A1;
  border-radius: 10px;
} .header-menu_mobile-catalog > .header-menu__first-level > ul a:hover svg {
  color: #EFB400;
} .header-menu_mobile-catalog > .header-menu__first-level > ul a span {
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 1%;
  color: #373E44;
  margin: 0;
} .header-menu_mobile-catalog > .header-menu__first-level > ul a img {
  width: 85px;
  height: auto;
} .header-menu_mobile .arrow-right {
  padding: 10px;
  cursor: pointer;
} .is-open > .header-menu_mobile-text .arrow-right {
  transform: rotate(90deg);
}

.header-mobile-close {
  display: flex;
  justify-content: end;
  width: 100%;
  cursor: pointer;
} .header-mobile-close svg {
  width: 30px;
  height: 30px;
  max-width: 30px;
  max-height: 30px;
} .header-menu_mobile-content_bottom {
  display: flex;
  flex-direction: column;
  gap: 17px;
} .header-menu_mobile-numbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
} .header-menu_mobile-numbers a {
  font-family: 'Roboto';
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 5%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #EFB400;
} .header-menu_bg {

}