Hi,
By default, the mobile menu items should show when click once but since you are using third party plugin ubermenu you need click it twice.
We can hide the xtheme mobile button and show ubermenu button instead.
You can add this under Custom > CSS in the Customizer.
@media (max-width: 979px) {
body .x-nav-wrap.mobile.collapse {
display:block !important;
}
body .masthead-inline .x-btn-navbar {
display: none !important;
}
}
Hope that helps.