.mobile_header_wrap {
    display: none;    
}

@media (max-width:767px) {
    
    .mobile_header_wrap {
        display: flex;
    }
    
    .header__btn_block {
        display: none !important;
    }    

}

.humburger {
  width: 24px;
  height: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-right: 5px;
  transition: 0.5s all ease-in;
  z-index: 5555;
}
.humburger:after {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scale(0);
  transition: 0.5s all ease-in;
  z-index: 1;
}
.humburger .line {
  height: 2px;
  width: 100%;
  background: #fff;
  display: flex;
  transition: 0.5s all ease-in;
  position: relative;
  z-index: 2;
}
.humburger .line:after {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background: white;
  width: 0;
  transition: 0.5s all ease-in-out;
  z-index: 1;
}
.humburger:hover:after {
  transform: scale(1.4);
}
.humburger:hover .line:after {
  width: 100%;
}
.humburger.open .line {
  background: white;
}
.humburger.open .line:nth-of-type(1) {
  transform: rotate(45deg);
  margin-top: 12px;
}
.humburger.open .line:nth-of-type(2) {
  transform: rotate(-45deg);
  margin-top: -6px;
}
.humburger.open .line:nth-of-type(3) {
  visibility: hidden;
  opacity: 0;
}

.humburger.open.fixed {
   position: fixed;
   top: 20px;
   right: 15px; 
}

.menu_body {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 350px;
  height: 100vh;
  display: flex;
  background: rgba(25, 25, 25, 0.95);
  transform: translateX(100%);
  transition: 0.5s all ease;
  z-index: 100;
}
.menu_body.open {
  transform: translateX(0);
  z-index: 100;
}
.menu_body__item_wrapper {
  padding: 40px 40px 40px 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}
.menu_body__item_wrapper .menu_list {
  list-style: none;
  width: 100%;
  padding: 0 0 0 0;
  position: fixed;
  top: 80px;
  left: 0px;
}
.menu_body__item_wrapper .menu_list li {
  margin-bottom: 10px;
  padding-top: 10px;
  position: relative;
  padding-left: 0px;
  border-top: 1px solid hsla(0,0%,100%,.03);
}
.menu_body__item_wrapper .menu_list li:last-child {
  margin-bottom: 0;
}
.menu_body__item_wrapper .menu_list li a {
  color: white;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  padding-left: 20px;
  transition: 0.5s all ease;
}

.menu_body__item_wrapper .menu_list li a:hover:after {
  width: 100%;
}
.menu_body__item_wrapper .menu_list li.has_child .sub-menu {
  position: absolute;
  background: black;
  list-style: none;
  padding: 30px;
  left: unset;
  top: 0;
  right: 100%;
  min-width: 135px;
  opacity: 0;
  visibility: hidden;
}
.menu_body__item_wrapper .menu_list li.has_child .sub-menu li {
  padding-left: 0;
  margin-bottom: 15px;
}
.menu_body__item_wrapper .menu_list li.has_child .sub-menu li a:after {
  display: none;
}
.menu_body__item_wrapper .menu_list li.has_child:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.menu_body.open {
    display: none;    
}


@media (max-width: 767px) {
  
  .menu_body.open {
        display: block;
  }   
  
  body .menu_body {
    width: 55%;
  }
  body .menu_body__item_wrapper .menu_list li.has_child {
    position: relative;
  }
  body .menu_body__item_wrapper .menu_list li.has_child a {
    position: relative;
  }
  body .menu_body__item_wrapper .menu_list li.has_child a:after {
    content: "+";
    color: white;
    left: calc(100% + 25px);
    position: absolute;
    top: 0;
    width: 0;
  }
  body .menu_body__item_wrapper .menu_list li.has_child .sub-menu {
    position: relative;
    background: transparent;
    list-style: none;
    padding: 0;
    left: unset;
    top: unset;
    right: unset;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
    padding-left: 25px;
    display: none;
  }
}