;(w => { let $, $scrollToTriggers; w.addEventListener('DOMContentLoaded', () => { $ = jQuery; init(); }); const init = () => { console.info('INIT - Scroll To Smooth with offset'); $scrollToTriggers = $(".scroll-to"); $scrollToTriggers.on('click', (e) => { e.preventDefault(); const {currentTarget} = e; const $currentTarget = $(currentTarget); const hash = currentTarget.hash; const target = $(hash)[0]; const offset = $currentTarget.data('top-offset'); const pos = target.getBoundingClientRect().top + window.scrollY - offset; window.scrollTo({ top: pos, behavior: "smooth" }); }) } })(window);

It looks like nothing was found at this location. Maybe try one of the links below or a search?