/* Hide the submenu by default */
.subnav {
  display: none !important;
}

/* Show the submenu when the .is-open class is added */
.subnav.is-open {
  display: block !important; /* Or whatever display value your menu uses */
}