Oops! Something went wrong while submitting the form.
We use cookies to improve your experience and for marketing purposes. Read our Privacy Policy. By clicking ‘Accept’, you agree to our use of these technologies.
Decline
Accept
// typer.js initialization (delayed slightly)
setTimeout(function () {
const elements = document.querySelectorAll('.typer-js-wrapper');
elements.forEach((el) => {
const text = el.getAttribute('data-typer-text');
if (typeof typer !== "undefined" && text) {
typer(el).line(text);
} else {
console.warn('[typer.js] Missing text or typer not loaded for:', el);
}
});
}, 200); // slight delay to let Webflow render everything
};