The ABOUT page on mobile does not let you click on the menu

When I land on the ABOUT page on mobile, the menu is not clickable. It was happening on my former about page, so I copied a page where the menu was clickable and added the rows.

Here is the link:
http://ethos.cwpdev.xyz/about/

How can this be fixed?

The problem is you’re using negative margins on the content in the row below the header and this is overlapping preventing you from clicking. If you add the CSS below this should resolve your issue.

header.fl-builder-content-62 {
    position: relative;
    z-index: 1000;
}