We work with TeamUp to manage our classes. Payment is taken via GoCardless, which may take a few days to come out of your account. Any questions? Let us know!
We are
CLOSED FOR SUMMER
Any questions? Please get in touch at studio@emdorphinsfit.com
We'll see you soon!
document.addEventListener("DOMContentLoaded", function () {
const links = document.querySelectorAll(".elementor-nav-menu a");
links.forEach(function (link) {
const href = link.getAttribute("href");
if (href && href.includes("#") && href.startsWith(window.location.origin)) {
link.addEventListener("click", function () {
const html = document.documentElement;
const navMenu = document.querySelector(".elementor-nav-menu--dropdown");
const toggle = document.querySelector(".elementor-menu-toggle");
// Close Elementor mobile menu
if (html.classList.contains("elementor-html--overflow-hidden")) {
html.classList.remove("elementor-html--overflow-hidden");
}
if (navMenu) {
navMenu.classList.remove("elementor-nav-menu--dropdown");
}
if (toggle && getComputedStyle(toggle).display !== "none") {
toggle.classList.remove("elementor-active"); // Fallback
}
});
}
});
});