.menu {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2em 1.5em;
  z-index: 9999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.menu_slide_up.menu_slide_down {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu__opener {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  z-index: 10000;
}
/* Override hamburger to use only two lines */
.mobile-menu__opener span,
.mobile-menu__opener::before,
.mobile-menu__opener::after {
  height: 4px;
  background: #33414a;
  border-radius: 2px;
  content: '';
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
}
.mobile-menu__opener span {
  display: none;
}
.mobile-menu__opener::before {
  top: 35%;
  width: 32px;
}
.mobile-menu__opener::after {
  top: 65%;
  width: 22px;
  left: 0px;
}
.mobile-menu__opener_menu_open::before {
  top: 50%;
  transform: rotate(45deg);
  width: 28px;
  left: 2px;
}
.mobile-menu__opener_menu_open::after {
  top: 50%;
  transform: rotate(-45deg);
  width: 28px;
  left: 2px;
}
.mobile-menu__opener_menu_open span {
  opacity: 0;
}
.menu__item {
  display: block;
  font-size: 1.5em;
  font-weight: 500;
  padding: 0.5em 0.25em;
  color: #33414A;
  border-bottom: 1px solid #eee;
  position: relative;
  transition: background 0.3s;
}
.menu__item:hover {
  background: #f2f2f2;
}
#menu .sub-menu {
  display: none;
  margin-left: 0;
  padding-left: 1em;
  border-left: 2px solid #ddd;
  background: #fafafa;
  width: 100%;
}
.sub-menu .menu__item {
  font-size: 0.95em;
  color: #444;
  padding-left: 2em;
}
.submenu-arrow {
  font-family: 'ETmodules';
  font-size: 1em;
  float: right;
  transition: transform 0.3s ease;
  color: #33414a;
  margin-left: 0.5em;
}
.submenu-arrow.open {
  transform: rotate(90deg);
}
.mobile-menu__logo img {
  padding-top: 25px;
  max-width: 300px;
  height: auto;
  margin-left: -15px;
}
.menu__inner {
  width: 100%;
  max-width: 100%;
}

/* Mobile Menu Contact Section */
.mobile-menu__contact-info {
    padding: 20px 0;
    margin: 0 auto;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.clever-button-wrapper.align-left {
    margin: 0 0 15px 0;
    text-align: center;
}

.contact-details {
    text-align: left;
    font-size: 0.9em;
    line-height: 1.6;
    color: #33414A;
}

.contact-details div {
    margin-bottom: 8px;
}

.contact-phone {
    font-weight: 600;
}

.contact-email {
    word-break: break-all;
}

@media (max-width: 480px) {
    .mobile-menu__contact-info {
        padding: 15px 0;
    }
    
    .contact-details {
        font-size: 1em;
    }
}


/* UNIVERSAL DIVI HEADER HIDE */
body.chm-menu-open .et_pb_menu,
body.chm-menu-open .et_pb_image {
  display: none !important;
}

/* And add this to protect Divi menus: 
@media (min-width: 981px) {
  .et_pb_menu .sub-menu {
    display: none !important;
  }
  .et_pb_menu li:hover > .sub-menu {
    display: block !important;
  }
}*/