Webflow's 'tram.js' causing conflict with script

Well, any link to a section will have a Webflow scroll to section behaviour on click.

To disable that, just paste this code in Page Footer Code

<script>
$('.link-item').click(function() {
   return false; 
});
</script>