Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Webflow.push(function() { document.querySelectorAll("a[href^='#']").forEach(anchor => { anchor.addEventListener("click", function (e) { e.preventDefault(); // Prevent default behavior (vertical scroll) const targetID = this.getAttribute("href").substring(1); // Get target ID (remove '#') const targetElement = document.getElementById(targetID); // Find target element by ID const scrollContainer = document.querySelector(".norightpadding"); // Scroll container class (norightpadding) if (targetElement && scrollContainer) { const targetPosition = targetElement.offsetLeft; // Get horizontal position of target element // Smoothly scroll the container horizontally to the target position scrollContainer.scrollTo({ left: targetPosition, behavior: "smooth" }); } }); }); });