Hi there,
the issue arises because of the sticky navigation, once the navigation is stuck you cannot scroll the menu.
Options:
1. Do not use sticky navigation on mobile.
2. Add some CSS to make the menu scrollable:
.main-navigation.is_stuck .main-nav>ul {
max-height: calc(100vh - 60px);
overflow-y: auto;
}
3. Use the Off Canvas Panel on mobile instead as this is its own fixed element. And doesn’t have the issue.
Of all the options if sticky navigation is a must have then i would go for #3.