Skip to content
Scroll to top
jQuery(document).ready(function($) {
$('a[href*="#"]').on('click', function(e) {
e.preventDefault();
var target = this.hash;
$('html, body').animate({
scrollTop: $(target).offset().top
}, 1000, function(){
window.location.hash = target;
});
});
});