Hi,
Thanks for writing in!
Your menu doesn’t fit on smaller screens which makes other items go down.
We can make the mobile button appear earlier.
You can add this under Custom > CSS in the Customizer.
@media (max-width: 1200px) {
.x-nav-wrap.desktop {
display: none;
}
.masthead-stacked .x-btn-navbar {
display: inline-block;
}
.masthead-stacked .x-navbar {
text-align: center;
}
.x-nav-wrap.mobile.in {
display: block !important;
}
}
Hope that helps.