Hi @TangledWeb,
This issue generally occurs due to the way browsers calculate height on page load based on the content on the page.
There are quite a few images that are set to lazy load on your page. This allows for images to be loaded on scroll instead of all at once when the page is loaded.
In this situation, the browser is not accounting for the height of those images and therefore the calculation that is done for page scrolling is a bit off when the link is first clicked.
In order to fix this issue, I recommend setting the images on your page to “Eager: loads with page” to see if the browser better calculates the height of the page on load.
Another option is to add an attribute to the body element on the page that will remove smooth scrolling. Add the attribute with the name: "data-scroll-time " and set the value to "0 ". See a screenshot of this setup here:
Hope this helps!