You’ll need to adjust this css in the responsive.css file:
@media only screen and (min-width: 992px) {
.mobile-menu-open #container {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
#mobile-menu-wrap {
visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
display: none;
}
}
Likely:
@media only screen and (min-width: 1025px) {
.mobile-menu-open #container {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
#mobile-menu-wrap {
visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-webkit-transition: none;
transition: none;
-webkit-transform: none;
transform: none;
display: none;
}
}