/*
 Theme Name:     MASMA Theme
 Theme URI:      https://masmaplaster.com
 Description:    The custom theme for MASMA
 Author:         JHCHOI
 Author URI:     https://jhchoi.com/
 Template:       Divi
*/

#et-boc .et_pb_section_0_tb_header {
  z-index: 5;
}
.mobile_nav.opened .mobile_menu_bar {
  z-index: 2;
}

.mobile_nav.opened #mobile_menu1 {
  animation: mobile-menu-slide-down 0.35s ease-out both;
  border: 0;
  bottom: 0;
  display: block;
  left: 0;
  overflow-x: scroll;
  padding: 0;
  position: fixed;
  right: 0;
  top: 17rem;
  z-index: 0;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  background: white;
  content: "";
  display: block;
  height: 100vh;
  position: absolute;
  top: 0;
  width: 100vw;
  animation: mobile-menu-slide-down 0.25s ease-out both;
}

.et_pb_menu__logo-wrap {
  background: white;
  padding-bottom: 1rem;
  z-index: 2;
}

#mobile_menu1 li a {
  border: none;
  font-size: 25px;
  padding: 1.5rem 5%;
}
#et-boc .mobile_menu_bar:before {
  display: inline-block;
  top: 0;
  transition: transform 0.3s ease;
}
#et-boc .mobile_nav.opened .mobile_menu_bar::before {
  content: "\4d";
  transform: rotate(180deg);
}

@keyframes mobile-menu-slide-down {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
