Hi I noticed that not the menu items are not 100% clickable.
Example:

Clickable area:

Suggested fix:
HTML: Add a class to each anchor inside li element
CSS: Add display:block and height:100%
.menu-link {
display: block;
height: 100%;
}
Example:

Clickable area:

Suggested fix:
HTML: Add a class to each anchor inside li element
CSS: Add display:block and height:100%
.menu-link {
display: block;
height: 100%;
}