Hello,
Thank You so much for the Kind Words! :)
We have just checked out your Websites along with the Codes you are using and the issue is that you are using the data-scrollto Functionality in the Primary Menu whereas it is intended to be used only for Anchor Links/Buttons which you plan to add in your Content Area.
For the Primary Menu, you will simply need to use the .one-page-menu Class along with the data-href Functionality. Here's an Example Code:
<nav id="primary-menu">
<ul class="one-page-menu" data-easing="easeInOutExpo" data-speed="1250" data-offset="65">
<li><a href="#" data-href="#wrapper"><div>Home</div></a></li>
<li><a href="#" data-href="#section-about"><div>About</div></a></li>
<li><a href="#" data-href="#section-works"><div>Works</div></a></li>
<li><a href="#" data-href="#section-services"><div>Services</div></a></li>
<li><a href="#" data-href="#section-blog"><div>Blog</div></a></li>
<li><a href="#" data-href="#section-contact"><div>Contact</div></a></li>
</ul>
</nav>
This will definitely work fine. Let us know if we can help you with anything else or if you find any further issues.