Hi there,
Thanks for writing in! To expand the mobile menu by default you’ll need to add the following jQuery script in your Customizer via Appearance > Customize > Custom > Javascript
jQuery(document).ready(function($){
$('.x-nav-wrap.mobile').addClass("in");
});
Don’t forget to clear your browser’s cache after adding the code.
Let us know how this goes!