.mobile_menu__new {
  /*  z-index: 1000;
  margin-top: 0;
  cursor: pointer;*/
}
.mobile_menu__new .mobile_menu__new__hamburger {
  padding: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.mobile_menu__new .mobile_menu__new__hamburger input {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
  padding: unset;
  margin: unset;
}
.mobile_menu__new .mobile_menu__new__hamburger span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #000000;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.mobile_menu__new .mobile_menu__new__hamburger span:first-child {
  transform-origin: 0% 100%;
}
.mobile_menu__new .mobile_menu__new__hamburger span:nth-last-child(2) {
  transform-origin: 0% 0%;
}
.mobile_menu__new .mobile_menu__new__hamburger input:checked ~ span {
  opacity: 1;
  background: #000000;
}
.mobile_menu__new .mobile_menu__new__hamburger input:checked ~ span:nth-last-child(3) {
  opacity: 1;
  transform: rotate(45deg) translate(2px, 0px);
}
.mobile_menu__new .mobile_menu__new__hamburger input:checked ~ span:nth-last-child(2) {
  opacity: 0;
}
.mobile_menu__new .mobile_menu__new__hamburger input:checked ~ span:nth-child(4) {
  opacity: 1;
  transform: rotate(-45deg) translate(-1px, 0px);
}
.mobile_menu__new .mobile_menu__new__hamburger input:checked ~ ul {
  transform: none;
}
.mobile_menu__new__active {
  transform: translateX(0%) !important;
  transition: 0.5s;
}
.mobile_menu__new__content {
  transform: translateX(100%);
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 1;
  overflow: auto;
  flex-direction: column;
  justify-content: center;
  display: flex;
}
.mobile_menu__new__content a {
  padding: 20px 0;
  font-size: 1rem;
  line-height: 14px;
  color: #000;
  transition: 0.5s all;
  text-decoration: none;
  font-family: 'SF UI Display Medium', Arial sans-serif;
  text-transform: uppercase;
}
.mobile_menu__new__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.nav__menu {
  z-index: 100;
}
@media (max-width: 991px) {
  .nav__menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
/*# sourceMappingURL=menu.css.map */