Hi,
I can see you have added Custom JS that affects the anchor links scroll.
Please replace your Custom JS Code with this.
jQuery(document).ready(function($) {
$('a[href*="#"]').off('click touchend touchstart');
var $body = $('body');
var $bodyHeight = $body.outerHeight();
var $adminbarHeight = $('#wpadminbar').outerHeight();
var $navbarFixedTopHeight = $('.x-navbar-fixed-top-active .x-navbar').outerHeight();
var locHref = location.href;
var locHashIndex = locHref.indexOf('#');
var locHash = locHref.substr(locHashIndex);
function animateOffset( element, ms, easing ) {
$('html, body').animate({
scrollTop: $(element).offset().top - $adminbarHeight - $navbarFixedTopHeight + 1
}, ms, easing);
}
$('a[href*="#"]:not([href^="#"])').on('click touchstart',function() {
return true;
});
$('a[href^="#"]').on('click touchstart',function(e) {
$href = $(this).attr('href');
if ( $href !== '#' ) {
var $id = $href.split('#').pop();
var $el = $('#' + $id);
if ( $el.length > 0 ) {
e.preventDefault();
animateOffset( $el, 850, 'easeInOutExpo' );
$('.x-btn-navbar').click();
}
}
});
});
Hope that helps.