Group Fitness Classes
Explore our extensive monthly class selection, ensuring there’s a perfect fit for everyone. Your unique fitness journey is honored with a diverse array of options. Uncover the elements that ignite your passion and drive, leading you to a fitter and healthier self. Join us in creating a personalized path to wellness that suits your individual needs and goals.
Classes Included in Your Membership:
Small Group/ Team Training
Unlock elite training in a group setting with added flexibility at a modest additional cost. Our team training program connects you with top trainers, offering classes tailored to fit your schedule and interests. Elevate your fitness journey by complementing it with personalized training for extra perks. Reach your goals with ease, seizing the opportunity for expert guidance and a bespoke approach to fitness on your terms.
Class Schedule
function hasQueryParam(param, value) {
// Construct the query string to search for
var queryString = param + “=” + value;
// Check if the URL contains the query string
return window.location.search.indexOf(queryString) > -1;
}
// Check if ‘category=9’ is already in the URL
if (!hasQueryParam(“category”, “”)) {
// Check if the URL already contains a query string
if (window.location.search === “”) {
// If not, append “?category=9” to the end of the URL
window.location.search = “?category=9”;
} else {
// If there’s already a query string, append “&category=9”
window.location.search += “&category=9”;
}
}