.header-menu__wrapper {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   width: 100%;
   position: relative;
}
.catalog-section_hover {
   position: relative;
}
.catalog-section_hover:hover {
   background: var(--gray1);
}
.list_section-menu_desctop {
   display: flex;
   flex-direction: column;
   position: absolute;
   width: 100%;
   background: #fff;
   z-index: 1;
   
   padding: 0;
   align-items: flex-start;
   height: auto;
   top: 100%;
   left: 0;
   transition: top 0.7s;
   width: max-content;
   -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
   -moz-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
   box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}


.list_section-menu>.list_section-menu__item {
   display: flex;
   flex-direction: column;
   /*align-items: center;*/
   align-items: flex-start;
   padding: 1.2vw;
   width: 100%;
}
.list_section-menu>.list_section-menu__item:hover{
   background: var(--gray1);
}

.list_section-menu>.list_section-menu__item img {
   display: none;
   width: 80px;
   height: 60px;
   margin-bottom: 15px;
   border-radius: 10px;
}

.list_section-menu>.list_section-menu__item a,
.list_section-menu>.list_section-menu__item span {
   --a: var(--black);
   --aHover: var(--black);
   --aUnderline: none;
   --aUnderlineHover: none;
   font-weight: 500;
   font-size: 0.80527086vw;
   line-height: 1.02489019vw;
   font-weight: bold;
   display: flex;
   align-items: center;
   gap: 0.58565154vw;
   /* padding: 0 1.75695461vw; */
   padding: 0;
   text-transform: uppercase;
   transition: all 0.3s ease;
}
@media(max-width: 767px){
   .mobil-wrapper__showSection {
      display: flex;
   }
   .mobil-wrapper__showSection .catalog-section_click{
      margin-left: 10px;
   }
   .catalog-section_click {
      position: relative;
      z-index: 999;
      cursor: pointer;
   }
   .list_section-menu_mobil {
      display: flex;
      position: static;
      width: 100%;
      background: #000;
      z-index: 1;
      padding: 0;
      align-items: center;
      height: auto;
      transition: top 0.7s;
      flex-direction: column !important;
   }
   .list_section-menu_mobil>.list_section-menu__item a,
   .list_section-menu_mobil>.list_section-menu__item span {
      --a: var(--vitaminE);
      --aHover: var(--vitaminE);
      --aUnderline: none;
      --aUnderlineHover: none;
      font-weight: 500;
      font-size: 3.55555556vw;
      line-height: 2;
      font-weight: bold;
      display: flex;
      align-items: center;
      padding: 1vw;
      text-transform: uppercase;
      transition: all 0.3s ease;
   }
   .list_section-menu_mobil>.list_section-menu__item img {
      display: none;
   }
   
   .mobil-wrapper__showSection .catalog-section_click img {
      width: 10vw;
      height: 10vw;
   }
}


.hide_subMenu {
   display: none !important;
   height: 0%;
   top: 0% !important;
   transition: top 0.7s;
}