@import url("https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "SN Pro", sans-serif;
    background: #000000;
}

h1,
h2 {
    font-size: 42px;
    line-height: 1.2;
}

@media screen and (max-width: 1024px) {

    h1,
    h2 {
        font-size: 32px;
    }
}

p {
    font-size: 17px;
}

ul,
ol {
    list-style-position: outside;
    padding-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.whiteBtn {
    display: inline-block;
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #000000;
    padding: 5px 40px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whiteBtn:hover {
    background: #cccccc;
    border-color: #cccccc;
}

.blackBtn {
    display: inline-block;
    background: #000000;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 5px 40px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blackBtn:hover {
    background: #333333;
    border-color: #333333;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
}

header ul {
    padding: 0;
}

header .headRow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 40px;
    gap: 50px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    header .headRow {
        padding: 10px 20px;
    }
}

header .headRow .logoCol {
    width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
}

header .headRow .logoCol img {
    width: 150px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    header .headRow .logoCol {
        width: 50%;
        justify-content: flex-start;
    }

    header .headRow .logoCol img {
        width: 70%;
    }
}

header .headRow .navCol {
    display: flex;
    justify-content: center;
    flex: 1;
}

@media screen and (max-width: 1024px) {
    header .headRow .navCol {
        width: 50%;
        align-items: center;
        justify-content: flex-end;
    }

    header .headRow .navCol .mainNav {
        display: none;
    }
}

header .headRow .navCol #openOffCanvas {
    display: none;
}

@media screen and (max-width: 1024px) {
    header .headRow .navCol #openOffCanvas {
        display: block;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    header .headRow .navCol #openOffCanvas:hover {
        color: #cccccc;
    }
}

header .headRow .navCol .mainNav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

header .headRow .navCol .mainNav ul a {
    color: #ffffff;
    font-size: 17px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

header .headRow .navCol .mainNav ul a:hover {
    color: #cccccc;
}

@keyframes menu2 {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

header .headRow .navCol ul.drop-menu {
    display: none;
    position: absolute;
    left: 46.5%;
    width: 8%;
    padding: 0;
    transform: translateX(-50%);
    z-index: 20;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header .headRow .navCol ul.drop-menu.wellness-menu {
    width: 8%;
    left: 51%;
}

header .headRow .navCol ul.drop-menu li {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 8px 20px;
}

header .headRow .navCol ul.drop-menu li a {
    font-size: 16px;
}

header .headRow .navCol ul.drop-menu li:hover {
    background: #000000;
}

header .headRow .navCol li:hover > ul.drop-menu {
    display: block;
}

header .headRow .navCol li:hover > ul.drop-menu li {
    display: block;
}

header .headRow .navCol li:hover > ul.drop-menu.menu-2 li {
    opacity: 0;
    transform-origin: top center;
}

header .headRow .navCol li:hover > ul.drop-menu.menu-2 li:nth-child(1) {
    animation-name: menu2;
    animation-duration: 300ms;
    animation-delay: -100ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

header .headRow .navCol li:hover > ul.drop-menu.menu-2 li:nth-child(2) {
    animation-name: menu2;
    animation-duration: 300ms;
    animation-delay: 100ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

header .headRow .navCol li:hover > ul.drop-menu li {
    opacity: 0;
    transform-origin: top center;
}

header .headRow .navCol li:hover > ul.drop-menu li:nth-child(1) {
    animation-name: menu2;
    animation-duration: 300ms;
    animation-delay: -170ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

header .headRow .navCol li:hover > ul.drop-menu li:nth-child(2) {
    animation-name: menu2;
    animation-duration: 300ms;
    animation-delay: -40ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

header .headRow .navCol li:hover > ul.drop-menu li:nth-child(3) {
    animation-name: menu2;
    animation-duration: 300ms;
    animation-delay: 90ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

header .headRow .navCol li:hover > ul.drop-menu li:nth-child(4) {
    animation-name: menu2;
    animation-duration: 300ms;
    animation-delay: 220ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

header .headRow .navCol li:hover > ul.drop-menu li:nth-child(5) {
    animation-name: menu2;
    animation-duration: 300ms;
    animation-delay: 350ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

header .headRow .navCol li:hover > ul.drop-menu li:nth-child(6) {
    animation-name: menu2;
    animation-duration: 300ms;
    animation-delay: 480ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@media (max-width: 768px) {
    header .headRow .navCol ul.drop-menu {
        width: 100%;
        left: 0;
        transform: none;
    }

    header .headRow .navCol li {
        padding: 10px;
    }

    header .headRow .navCol li:hover > ul.drop-menu {
        display: block;
        position: relative;
    }

    header .headRow .navCol li:hover > ul.drop-menu li {
        display: block;
        padding: 10px;
        background: #ffffff;
    }

    header .headRow .navCol li:hover > ul.drop-menu li a {
        color: #cca567;
        text-shadow: none;
    }
}

@media (max-width: 480px) {
    header .headRow .navCol ul.drop-menu {
        font-size: 14px;
    }

    header .headRow .navCol li {
        padding: 5px;
    }

    header .headRow .navCol li:hover > ul.drop-menu li {
        padding: 5px;
    }
}

header .headRow .buttonCol {
    width: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

@media screen and (max-width: 1024px) {
    header .headRow .buttonCol {
        display: none;
    }
}

header .headRow .buttonCol .bookTour {
    background: #ffffff;
    color: #000000;
    padding: 5px 40px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
}

header .headRow .buttonCol .bookTour:hover {
    background: #cccccc;
}

header.sticky {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

header.sticky .headRow {
    padding: 10px 30px;
}

header.sticky .headRow .logoCol img {
    width: 100px;
}

#offCanvasMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    color: #ffffff;
    padding: 20px;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
}

#offCanvasMenu.open {
    right: 0;
}

#offCanvasMenu .offCanvasContent {
    height: 80%;
    width: 90%;
    text-align: center;
}

#offCanvasMenu .offCanvasLogo {
    text-align: center;
    margin: 20px auto 30px;
    width: 200px;
}

#offCanvasMenu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}

#offCanvasMenu ul a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

#offCanvasMenu ul a:hover {
    color: #cccccc;
}

#offCanvasMenu ul .nav-item .mobileDrop {
    opacity: 0;
    max-height: 0;
    top: 10px;
    padding: 0;
    z-index: 1;
    cursor: pointer;
    pointer-events: none;
}

#offCanvasMenu ul .nav-item .mobileDrop li:last-child {
    margin-bottom: 0;
}

#offCanvasMenu ul .nav-item .mobileDrop.open {
    padding: 20px;
    opacity: 1;
    max-height: 500px;
    pointer-events: all;
    transition: all 0.3s ease;
    gap: 10px;
}

#offCanvasMenu ul .nav-item .mobileDropOpen.active {
    text-decoration: underline;
}

#offCanvasMenu #closeOffCanvas {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

#offCanvasMenu #closeOffCanvas:hover {
    color: #cccccc;
}

.formPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
}

.formPopup.active {
    display: flex;
}

.formPopup .formContainer {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
    position: relative;
}

.formPopup .formContainer .closePopup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
}

.formPopup .formContainer .closePopup:hover {
    color: #333333;
}

.formPopup .formContainer h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.formPopup .formContainer form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.formPopup .formContainer form input,
.formPopup .formContainer form select,
.formPopup .formContainer form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: "SN Pro", sans-serif;
}

.formPopup .formContainer form input.half,
.formPopup .formContainer form select.half,
.formPopup .formContainer form textarea.half {
    width: calc(50% - 5px);
}

.formPopup .formContainer form input.full,
.formPopup .formContainer form select.full,
.formPopup .formContainer form textarea.full {
    width: 100%;
}

.formPopup .formContainer form .checkbox-group,
.formPopup .formContainer form .radio-group {
    border: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.formPopup .formContainer form .checkbox-group legend,
.formPopup .formContainer form .radio-group legend {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
}

.formPopup .formContainer form .checkbox-group label,
.formPopup .formContainer form .radio-group label {
    display: block;
    cursor: pointer;
    width: 50%;
}

.formPopup .formContainer form .checkbox-group input,
.formPopup .formContainer form .radio-group input {
    margin-right: 8px;
}

.formPopup .formContainer form button {
    background: #000000;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.formPopup .formContainer form button:hover {
    background: #333333;
}

footer {
    background: #ffffff;
    padding: 20px;
}

footer ul {
    padding: 0;
}

footer .footerCta {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: #000000;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 20px;
}

footer .footerCta h2 {
    font-size: 32px;
}

footer .footerCta p {
    font-size: 18px;
    margin-bottom: 10px;
}

footer .footerCta .btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 1024px) {
    footer .footerCta .btns {
        flex-direction: column;
        gap: 10px;
    }

    footer .footerCta .btns a {
        width: 100%;
    }
}

footer .footerCta .btns .blackBtn {
    border-color: #000000;
}

footer .footerCta .btns .blackBtn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

footer .footerLinks {
    max-width: 1400px;
    margin: 20px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 10px;
}

footer .footerLinks nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

footer .footerLinks nav.fullWidth {
    flex: 100%;
}

footer .footerLinks nav.fullWidth ul {
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    footer .footerLinks nav.fullWidth ul li {
        text-align: center;
    }
}

@media screen and (max-width: 1024px) {

    footer .footerLinks .footerNav,
    footer .footerLinks .policyNav {
        width: calc(50% - 40px);
    }

    footer .footerLinks .footerNav ul,
    footer .footerLinks .policyNav ul {
        flex-wrap: wrap;
        gap: 5px;
    }

    footer .footerLinks .footerNav ul li,
    footer .footerLinks .policyNav ul li {
        width: 100%;
        text-align: center;
    }
}

footer .footerLinks p,
footer .footerLinks a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
}

footer .footerLinks a:hover {
    color: #333333;
}

.hero {
    background: no-repeat center center/cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.hero h1,
.hero h2 {
    color: #ffffff;
    text-align: center;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.hero p {
    color: #ffffff;
    text-align: center;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.hero .btns {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero .btns a {
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .hero .btns {
        flex-direction: column;
    }
}

.hero.dark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta {
    padding: 50px 20px;
    color: #ffffff;
}

.cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.cta .container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.cta .container p {
    text-align: center;
    margin-bottom: 20px;
}

.cta .container p.contactDetails {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cta .container p.contactDetails a {
    text-decoration: none;
    color: #ffffff;
}

.cta .container .btns {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cta .container .btns .whiteBtn {
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .cta .container .btns {
        flex-direction: column;
        gap: 10px;
    }
}

.homeCarouselsSlides {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.homeCarouselsSlides img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.homeCarouselsSlides::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.8) 5%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: background 0.3s ease;
    pointer-events: none;
}

.homeCarouselsSlides .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffffff;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    padding-right: 75px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.homeCarouselsSlides .content h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.homeCarouselsSlides .content p,
.homeCarouselsSlides .content ul {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    transition: max-height 0.3s ease;
}

.homeCarouselsSlides .content p.marginBottom,
.homeCarouselsSlides .content ul.marginBottom {
    margin-bottom: 5px;
}

.homeCarouselsSlides .content ul {
    list-style-type: disc;
}

.homeCarouselsSlides .content i {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: color 0.3s ease;
}

.homeCarouselsSlides:hover .content p,
.homeCarouselsSlides:hover .content ul {
    max-height: 100vh;
}

.underHero {
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .underHero {
        padding: 50px 20px;
    }
}

.underHero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 475px;
    height: 325px;
    opacity: 0.2;
    background: url("/img/white-w.png") no-repeat center center/contain;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .underHero::before {
        display: none;
    }
}

.underHero .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
}

.underHero .container h2 {
    font-size: 38px;
}

@media screen and (max-width: 1024px) {
    .underHero .container h2 {
        font-size: 28px;
    }
}

.underHero .container p {
    font-size: 17px;
}

.underHero .container .btns {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media screen and (max-width: 1024px) {
    .underHero .container .btns {
        flex-direction: column;
        align-items: center;
    }

    .underHero .container .btns a {
        width: 100%;
    }
}

.staggeredBlocks {
    padding: 100px 20px;
    background: #ffffff;
}

@media screen and (max-width: 1024px) {
    .staggeredBlocks {
        padding: 50px 20px;
    }
}

.staggeredBlocks .headingContainer {
    max-width: 1400px;
    margin: 0 auto 40px;
    text-align: center;
}

.staggeredBlocks .container {
    max-width: 1400px;
    margin: 0 auto;
}

.staggeredBlocks .block {
    display: flex;
    gap: 150px;
    margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
    .staggeredBlocks .block {
        flex-direction: column;
        gap: 20px;
    }
}

.staggeredBlocks .block:last-child {
    margin-bottom: 0;
}

.staggeredBlocks .block .img,
.staggeredBlocks .block .content {
    flex: 1;
}

.staggeredBlocks .block .img {
    padding: 10px;
    position: relative;
}

.staggeredBlocks .block .img::before,
.staggeredBlocks .block .img::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 50%;
    background: #000000;
    z-index: 1;
}

.staggeredBlocks .block .img::before {
    top: 0;
    left: 0;
}

.staggeredBlocks .block .img::after {
    bottom: 0;
    right: 0;
}

.staggeredBlocks .block .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    position: relative;
    z-index: 2;
}

.staggeredBlocks .block .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.staggeredBlocks .block .content h3 {
    font-size: 24px;
}

.staggeredBlocks .block .content a.blackBtn {
    width: -moz-fit-content;
    width: fit-content;
}

.staggeredBlocks .block .content .images {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.staggeredBlocks .block .content .images a {
    height: 50px;
}

.staggeredBlocks .block .content .images a img {
    height: 50px;
    width: auto;
}

.staggeredBlocks .block .content .btns {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

@media screen and (max-width: 1024px) {
    .staggeredBlocks .block .content .btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .staggeredBlocks .block .content .btns a {
        width: 100%;
        text-align: center;
    }
}

.staggeredBlocks .block:nth-child(even) {
    flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
    .staggeredBlocks .block:nth-child(even) {
        flex-direction: column;
    }
}

.staggeredBlocks .block:nth-child(even) .img::before {
    top: 0;
    right: 0;
    left: auto;
}

.staggeredBlocks .block:nth-child(even) .img::after {
    bottom: 0;
    left: 0;
}

.classesSection {
    background: #ffffff;
    padding: 50px 20px;
}

.classesSection .container {
    max-width: 1600px;
    margin: 0 auto;
}

.classesSection .container .classInfo {
    text-align: center;
    margin: 0 auto 30px;
    position: relative;
    width: 800px;
}

@media screen and (max-width: 1024px) {
    .classesSection .container .classInfo {
        width: 100%;
    }
}

.classesSection .container .classInfo .information {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.classesSection .container .classInfo .information.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.classesSection .container .classInfo .information h3 {
    margin-top: 10px;
}

.classesSection .container .classesRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.classesSection .container .classesRow .class {
    width: calc(25% - 20px);
    box-shadow: 3px 3px 15px rgba(58, 58, 58, 0.5);
    padding: 20px;
    border-radius: 10px;
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .classesSection .container .classesRow .class {
        width: 100%;
    }
}

.classesSection .container .classesRow .class.show {
    display: block;
}

.classesSection .container .classesRow .class.visible {
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.classesSection .container .classesRow .class.visible h3 {
    font-size: 24px;
}

.classesSection .container .classesRow .class.visible h4 {
    font-size: 18px;
}

.classesSection .container .classesRow .class.visible a {
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
}

.mapSection {
    padding: 50px;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .mapSection {
        padding: 25px;
    }
}

.mapSection .mapBg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.mapSection .mapBg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 4;
}

.mapSection .topMapRow {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 100px;
}

@media screen and (max-width: 1024px) {
    .mapSection .topMapRow {
        flex-direction: column;
        gap: 20px;
    }
}

.mapSection .topMapRow .infoCol {
    width: 40%;
}

@media screen and (max-width: 1024px) {
    .mapSection .topMapRow .infoCol {
        width: 100%;
    }
}

.mapSection .topMapRow .mapColOuter {
    width: 60%;
}

@media screen and (max-width: 1024px) {
    .mapSection .topMapRow .mapColOuter {
        width: 100%;
    }
}

.mapSection .textCol {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.mapSection .textCol .inner {
    width: 80%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1024px) {
    .mapSection .textCol .inner {
        width: 100%;
    }
}

.mapSection .textCol .inner h2 {
    color: #ffffff;
    font-size: 24px;
    margin-top: 15px;
}

.mapSection .textCol .inner h2:first-child {
    margin-top: 0;
}

.mapSection .textCol .inner p {
    color: #ffffff;
}

.mapSection .textCol .inner p a {
    text-decoration: none;
    color: #ffffff;
}

.mapSection .textCol .inner .socials {
    margin-top: 15px;
}

.mapSection .textCol .inner a i {
    color: rgba(0, 0, 0, 0.8);
    background: #fff;
    border-radius: 50%;
    font-size: 20px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
}

.mapSection .mapCol {
    padding-left: 100px;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .mapSection .mapCol {
        padding-left: 0;
    }
}

.mapSection .mapCol > div {
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
}

.home .heroCarousel .heroSlide {
    background: no-repeat center center/cover;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media screen and (max-width: 1800px) {
    .home .heroCarousel .heroSlide {
        height: 700px;
    }
}

@media screen and (max-width: 1400px) {
    .home .heroCarousel .heroSlide {
        height: 600px;
    }
}

@media screen and (max-width: 1024px) {
    .home .heroCarousel .heroSlide {
        height: auto;
        padding: 125px 20px 50px;
    }
}

.home .heroCarousel .heroSlide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.home .heroCarousel .heroSlide.gym {
    background-image: url("/img/home/hero/gym.jpg");
}

.home .heroCarousel .heroSlide.reformer {
    background-image: url("/img/home/hero/reformer.jpg");
}

.home .heroCarousel .heroSlide.spa {
    background-image: url("/img/home/hero/spa.jpg");
}

.home .heroCarousel .heroSlide.cafe {
    background-image: url("/img/home/hero/cafe.jpg");
}

.home .heroCarousel .heroSlide.business-club {
    background-image: url("/img/home/hero/business-club.jpg");
}

.home .heroCarousel .heroSlide .content {
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 600px;
}

.home .facilities {
    padding: 50px 0;
    padding-left: 20px;
    color: #ffffff;
}

@media screen and (max-width: 1024px) {
    .home .facilities {
        padding: 20px;
    }
}

.home .facilities .container .titles {
    max-width: 1700px;
    margin: 0 auto 20px;
}

.home .facilities .container .titles h1 {
    width: 45%;
}

@media screen and (max-width: 1024px) {
    .home .facilities .container .titles h1 {
        width: 100%;
    }
}

.home .classes {
    padding: 50px 0;
    padding-left: 20px;
    background: #ffffff;
}

@media screen and (max-width: 1024px) {
    .home .classes {
        padding: 20px;
    }
}

.home .classes .container .titles {
    max-width: 1700px;
    margin: 0 auto 20px;
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 1024px) {
    .home .classes .container .titles {
        flex-direction: column;
        gap: 20px;
    }
}

.home .classes .container .titles .text {
    width: 50%;
}

.home .classes .container .titles .text p {
    margin-bottom: 5px;
}

.home .classes .container .titles .text p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1800px) {
    .home .classes .container .titles .text {
        width: 70%;
    }
}

@media screen and (max-width: 1024px) {
    .home .classes .container .titles .text {
        width: 100%;
    }
}

.home .classes .container .titles .btns {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 1800px) {
    .home .classes .container .titles .btns {
        width: 30%;
        padding-right: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .home .classes .container .titles .btns {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        padding-right: 0;
    }

    .home .classes .container .titles .btns a {
        width: 100%;
        text-align: center;
    }
}

.home .classes .container .titles .btns .whiteBtn {
    border-color: #000000;
}

.home .classes .container .titles .btns .whiteBtn:hover {
    background: #000000;
    color: #ffffff;
}

.home .classes .container .titles .btns .blackBtn {
    border-color: #000000;
}

.home .classes .container .titles .btns .blackBtn:hover {
    background: #ffffff;
    color: #000000;
}

.home .wellness {
    padding: 50px 0;
    padding-left: 20px;
    color: #ffffff;
}

@media screen and (max-width: 1024px) {
    .home .wellness {
        padding: 20px;
    }
}

.home .wellness .container .titles {
    max-width: 1700px;
    margin: 0 auto 20px;
}

.home .business-club {
    padding: 50px 20px;
    background: #ffffff;
}

@media screen and (max-width: 1024px) {
    .home .business-club {
        padding: 20px;
    }
}

.home .business-club .container .titles {
    max-width: 1700px;
    margin: 0 auto 20px;
    display: flex;
}

@media screen and (max-width: 1024px) {
    .home .business-club .container .titles {
        flex-direction: column;
        gap: 20px;
    }
}

.home .doubleBlock {
    display: flex;
    flex-direction: column;
}

.home .doubleBlock .wellness,
.home .doubleBlock .business-club {
    flex: 1;
    position: relative;
}

.home .doubleBlock .wellness img,
.home .doubleBlock .business-club img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.home .doubleBlock .wellness .content,
.home .doubleBlock .business-club .content {
    height: 200px;
    width: 600px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

@media screen and (max-width: 1024px) {

    .home .doubleBlock .wellness .content,
    .home .doubleBlock .business-club .content {
        width: 90%;
        height: auto;
    }
}

.home .doubleBlock .wellness .content h3,
.home .doubleBlock .business-club .content h3 {
    font-size: 24px;
}

.home .doubleBlock .wellness .content a,
.home .doubleBlock .business-club .content a {
    margin-top: 10px;
}

.memberships .hero {
    background-image: url("/img/memberships/hero.jpg");
}

.memberships .underHero {
    padding: 25px 20px 35px;
}

.memberships .underHero::before {
    display: none;
}

.memberships .underHero .container {
    max-width: 1100px;
}

.memberships .underHero .container p {
    font-size: 18px;
}

.memberships .membershipOptions {
    background: #ffffff;
    padding: 50px 20px;
}

.memberships .membershipOptions .container {
    max-width: 1700px;
    margin: 0 auto;
}

.memberships .membershipOptions .container .membershipRow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.memberships .membershipOptions .container .membershipRow .membership {
    width: calc(25% - 20px);
    box-shadow: 3px 3px 15px rgba(58, 58, 58, 0.5);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    border-radius: 10px;
}

.memberships .membershipOptions .container .membershipRow.top .membership {
    width: calc(20% - 20px);
}

@media screen and (max-width: 1024px) {

    .memberships .membershipOptions .container .membershipRow .membership,
    .memberships .membershipOptions .container .membershipRow.top .membership {
        width: 100%;
    }
}

.memberships .membershipOptions .container .membershipRow .membership .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.memberships .membershipOptions .container .membershipRow .membership .blackBtn {
    width: -moz-fit-content;
    width: fit-content;
    border-color: #000000;
    padding: 5px 30px;
}

.memberships .membershipOptions .container .membershipRow .membership .blackBtn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

.memberships .membershipOptions .container .flexible {
    margin-top: 30px;
    text-align: center;
}

.memberships .compareMemberships {
    padding: 60px 20px;
}

.memberships .compareMemberships h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.memberships .compareMemberships .container {
    max-width: 1600px;
    margin: 0 auto;
}

.memberships .compareMemberships .table-responsive {
    overflow-x: auto;
}

.memberships .compareMemberships .membershipTable {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    font-family: inherit;
}

.memberships .compareMemberships .membershipTable th,
.memberships .compareMemberships .membershipTable td {
    padding: 16px;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.memberships .compareMemberships .membershipTable thead th {
    background: #111;
    color: #fff;
    font-weight: 600;
}

.memberships .compareMemberships .membershipTable tbody tr {
    background: #ffffff;
    transition: all 0.3s ease;
}

.memberships .compareMemberships .membershipTable tbody tr:hover {
    background: #000000;
    color: #ffffff;
}

.memberships .compareMemberships .membershipTable tbody td:first-child {
    text-align: left;
    font-weight: 600;
}

.memberships .compareMemberships .tableNote {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
    color: #ffffff;
}

.memberships .faqSection {
    background: #ffffff;
    padding: 50px 20px;
}

.memberships .faqSection h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.memberships .faqSection .container {
    max-width: 1200px;
    margin: 0 auto;
}

.memberships .faqSection .container .faqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 15px;
}

.memberships .faqSection .container .faqQuestion {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(58, 58, 58, 0.5);
    margin-bottom: 20px;
}

.memberships .faqSection .container .faqItem {
    margin-bottom: 0;
}

.memberships .faqSection .container .faqItem.isOpen {
    margin-bottom: 20px;
}

.memberships .faqSection .container .faqItem.isOpen .faqAnswer {
    max-height: 500px;
    opacity: 1;
}

.gym .hero {
    background-image: url("/img/gym/hero.jpg");
    height: 600px;
}

.gym .growInto {
    background: url("/img/gym/grow-in-to-bg.jpg") fixed no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    text-align: center;
    color: #ffffff;
}

.gym .growInto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.gym .growInto .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.gym .growInto .container p {
    margin-top: 10px;
}

.spa .hero {
    background-image: url("/img/spa/hero.jpg");
}

.spa .experience {
    background: url("/img/spa/experience-bg.jpg") fixed no-repeat center center/cover;
    padding: 75px 20px;
    color: #ffffff;
    position: relative;
}

.spa .experience::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.spa .experience .container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.spa .experience .container .blocks {
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.spa .experience .container .blocks .block {
    width: calc(20% - 20px);
    background: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 10px;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .spa .experience .container .blocks .block {
        width: calc(50% - 20px);
        flex-grow: 1;
    }
}

.spa .experience .container .blocks .block:hover {
    transform: translateY(-5px);
}

.spa .experience .container .blocks .block h3 {
    font-size: 20px;
    line-height: 1.2;
}

.spin-studio .hero {
    background-image: url("/img/spin-studio/hero.jpg");
}

.reformer-pilates-studio .hero {
    background-image: url("/img/reformer-pilates-studio/hero.jpg");
}

.the-vault .hero {
    background-image: url("/img/the-vault/hero.jpg");
}

.the-vault .structuredSessions {
    background: url("/img/the-vault/structured-sessions-bg.jpg") fixed no-repeat center center/cover;
    padding: 75px 20px;
    color: #ffffff;
    position: relative;
}

.the-vault .structuredSessions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.the-vault .structuredSessions .container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.the-vault .structuredSessions .container .blocks {
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.the-vault .structuredSessions .container .blocks .block {
    width: calc(20% - 20px);
    background: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 10px;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .the-vault .structuredSessions .container .blocks .block {
        width: calc(50% - 20px);
        flex-grow: 1;
    }
}

.the-vault .structuredSessions .container .blocks .block:hover {
    transform: translateY(-5px);
}

.the-vault .structuredSessions .container .blocks .block h3 {
    font-size: 20px;
    line-height: 1.2;
}

.the-vault .doubleBlock {
    display: flex;
    color: #ffffff;
}

@media screen and (max-width: 1024px) {
    .the-vault .doubleBlock {
        flex-direction: column;
    }
}

.the-vault .doubleBlock .design,
.the-vault .doubleBlock .performance {
    flex: 1;
    position: relative;
}

.the-vault .doubleBlock .design img,
.the-vault .doubleBlock .performance img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.the-vault .doubleBlock .design .content,
.the-vault .doubleBlock .performance .content {
    height: 200px;
    width: 600px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

@media screen and (max-width: 1024px) {

    .the-vault .doubleBlock .design .content,
    .the-vault .doubleBlock .performance .content {
        width: 90%;
        height: auto;
    }
}

.the-vault .doubleBlock .design .content h3,
.the-vault .doubleBlock .performance .content h3 {
    font-size: 24px;
}

.the-vault .doubleBlock .design .content a,
.the-vault .doubleBlock .performance .content a {
    margin-top: 10px;
}

.the-vault .doubleBlock .design .content ul,
.the-vault .doubleBlock .performance .content ul {
    list-style: none;
}

.the-vault .doubleBlock .design .content ul li,
.the-vault .doubleBlock .performance .content ul li {
    margin-top: 5px;
}

.mind-body-studio .hero {
    background-image: url("/img/mind-body-studio/hero.jpg");
}

.mind-body-studio .classInfo {
    padding: 50px 20px;
    background: #ffffff;
}

.mind-body-studio .classInfo h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #000000;
}

.mind-body-studio .classInfo .filter {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

@media screen and (max-width: 1024px) {
    .mind-body-studio .classInfo .filter {
        flex-direction: column;
        gap: 10px;
    }
}

.mind-body-studio .classInfo .filter .serviceNavItem {
    border-radius: 25px;
    background: #fff;
    color: #000000;
    border: 1px solid #000000;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.mind-body-studio .classInfo .filter .serviceNavItem.active,
.mind-body-studio .classInfo .filter .serviceNavItem:hover {
    background: #000000;
    color: #fff;
}

.mind-body-studio .classInfo .serviceInformation {
    margin: 25px 0;
    border-radius: 25px;
    overflow: hidden;
}

.mind-body-studio .classInfo .serviceInformation .serviceContent {
    display: flex;
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.mind-body-studio .classInfo .serviceInformation .serviceContent.active {
    max-height: 100vh;
}

@media screen and (max-width: 1024px) {
    .mind-body-studio .classInfo .serviceInformation .serviceContent {
        flex-direction: column;
    }
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .imgColumn {
    width: 100%;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .mind-body-studio .classInfo .serviceInformation .serviceContent .imgColumn {
        width: 100%;
    }
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .imgColumn img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 75px;
    width: 100%;
    display: flex;
    gap: 50px;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1600px) {
    .mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn {
        padding: 50px;
    }
}

@media screen and (max-width: 1024px) {
    .mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn {
        padding: 25px;
        flex-direction: column;
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        text-align: center;
        gap: 20px;
        align-items: center;
        justify-content: center;
        background: #000000;
    }
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn .main,
.mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn .secondary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    width: 30%;
}

@media screen and (max-width: 1600px) {

    .mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn .main,
    .mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn .secondary {
        width: 50%;
    }
}

@media screen and (max-width: 1024px) {

    .mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn .main,
    .mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn .secondary {
        width: 100%;
    }
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn h3 {
    color: #ffffff;
    font-size: 36px;
    line-height: 1.2;
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn h4 {
    font-size: 24px;
    color: #fff;
    margin-top: 10px;
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn p {
    font-size: 17px;
    color: #fff;
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn ul {
    list-style-position: outside;
    padding-left: 20px;
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn ul li {
    color: #fff;
    font-size: 17px;
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn .pink {
    padding: 12px 20px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    border-radius: 25px;
}

.mind-body-studio .classInfo .serviceInformation .serviceContent .contentColumn .pink:hover {
    background: #fff;
    color: #000;
}

.mind-body-studio .complementsTraining {
    background: url("/img/mind-body-studio/complements-training-bg.jpg") fixed no-repeat center center/cover;
    padding: 75px 20px;
    color: #ffffff;
    position: relative;
}

.mind-body-studio .complementsTraining::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.mind-body-studio .complementsTraining .container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.mind-body-studio .complementsTraining .container .blocks {
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.mind-body-studio .complementsTraining .container .blocks .block {
    width: calc(27% - 20px);
    background: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 10px;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .mind-body-studio .complementsTraining .container .blocks .block {
        width: calc(50% - 20px);
        flex-grow: 1;
    }
}

.mind-body-studio .complementsTraining .container .blocks .block:hover {
    transform: translateY(-5px);
}

.mind-body-studio .complementsTraining .container .blocks .block h3 {
    font-size: 20px;
    line-height: 1.2;
}

.the-lab .hero {
    background-image: url("/img/the-lab/hero.jpg");
}

.cafe-revive .hero {
    background-image: url("/img/cafe-revive/hero.jpg");
}

.cafe-revive .underHero .container {
    max-width: 1000px;
}

.cafe-revive .underHero .container p {
    font-size: 20px;
}

.cafe-revive .extraBlocks {
    padding: 60px 20px;
}

.cafe-revive .extraBlocks .container {
    max-width: 1650px;
    margin: 0 auto;
}

.cafe-revive .extraBlocks h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.cafe-revive .extraBlocks .blocks {
    display: flex;
    justify-content: center;
    gap: 30px;
}

@media screen and (max-width: 1024px) {
    .cafe-revive .extraBlocks .blocks {
        flex-direction: column;
    }
}

.cafe-revive .extraBlocks .blocks .block {
    width: calc((100% - 60px) / 4);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 3px 3px 15px rgba(58, 58, 58, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

@media screen and (max-width: 1024px) {
    .cafe-revive .extraBlocks .blocks .block {
        width: 100%;
    }
}

.cafe-revive .extraBlocks .blocks .block:hover {
    transform: translateY(-10px);
}

.cafe-revive .extraBlocks .blocks .block img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}

.cafe-revive .extraBlocks .blocks .block .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cafe-revive .extraBlocks .blocks .block h3 {
    font-size: 28px;
}

.cafe-revive .extraBlocks .blocks .block h4 {
    font-size: 20px;
}

.business-club .hero {
    background-image: url("/img/business-club/hero.jpg");
}

.business-club .underHero .container {
    max-width: 1000px;
}

.business-club .extraBlocks {
    padding: 60px 20px;
}

.business-club .extraBlocks .container {
    max-width: 1400px;
    margin: 0 auto;
}

.business-club .extraBlocks .blocks {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

@media screen and (max-width: 1024px) {
    .business-club .extraBlocks .blocks {
        flex-direction: column;
    }
}

.business-club .extraBlocks .blocks .block {
    width: calc((100% - 60px) / 3);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 3px 3px 15px rgba(58, 58, 58, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

@media screen and (max-width: 1024px) {
    .business-club .extraBlocks .blocks .block {
        width: 100%;
    }
}

.business-club .extraBlocks .blocks .block:hover {
    transform: translateY(-10px);
}

.business-club .extraBlocks .blocks .block img {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
}

.business-club .extraBlocks .blocks .block .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.business-club .extraBlocks .blocks .block h2 {
    font-size: 32px;
}

.business-club .extraBlocks .blocks .block h3 {
    font-size: 24px;
}

.business-club .process {
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}

.business-club .process .verticalDashedLine {
    height: 75px;
    width: 100%;
}

.business-club .process .verticalDashedLine hr {
    width: 1px;
    height: 75px;
    border: 2px dashed #000000;
    opacity: 1;
    margin: 0 auto;
}

.business-club .process .verticalDashedLine {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.business-club .process .verticalDashedLine:last-of-type {
    margin-bottom: 0;
}

.business-club .process .processRow {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.business-club .process .accCol {
    width: 100%;
}

.business-club .process .accCol h2 {
    margin-bottom: 15px;
    text-align: center;
}

.business-club .process .accCol .amenitiesRow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.business-club .process .accCol .amenitiesRow .amenity {
    width: calc(16.6666666667% - 15px);
    position: relative;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .business-club .process .accCol .amenitiesRow .amenity {
        width: 100%;
    }
}

.business-club .process .accCol .amenitiesRow .amenity::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.6) 90%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 1;
    transition: all 1s ease;
    z-index: 1;
}

.business-club .process .accCol .amenitiesRow .amenity img {
    position: relative;
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
}

.business-club .process .accCol .amenitiesRow .amenity .content {
    z-index: 2;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 10px;
    padding-right: 10px;
    transition: transform 1s;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-club .process .accCol .amenitiesRow .amenity .content h3 {
    font-size: 20px;
    margin: 0;
    transition: all 1s ease;
    padding-bottom: 10px;
    color: #ffffff;
}

.business-club .process .accCol .amenitiesRow .amenity .content p {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    max-height: 0px;
    overflow: hidden;
    transition: all 1s ease;
    color: #ffffff;
}

.business-club .process .accCol .amenitiesRow .amenity:hover::before {
    opacity: 1;
    background: rgba(0, 0, 0, 0.9);
}

.business-club .process .accCol .amenitiesRow .amenity:hover .content {
    top: 50%;
    transform: translateY(-50%);
}

.business-club .process .accCol .amenitiesRow .amenity:hover .content h3 {
    padding-bottom: 0;
}

.business-club .process .accCol .amenitiesRow .amenity:hover .content p {
    opacity: 1;
    visibility: visible;
    overflow: visible;
    max-height: 300px;
}

.classes .hero {
    background-image: url("/img/classes/hero.jpg");
}

.classes .hero p {
    margin-top: 10px;
}

.classes .underHero {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.classes .underHero h3 {
    font-size: 24px;
}

.classes .classesSection {
    background: #ffffff;
    padding: 50px 20px;
}

.classes .classesSection .container {
    max-width: 1600px;
    margin: 0 auto;
}

.classes .classesSection .container .classesFilter {
    margin-bottom: 30px;
}

.classes .classesSection .container .classesFilter .classFilterNav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
}

.classes .classesSection .container .classesFilter .classFilterNav ul li {
    padding: 10px 20px;
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.classes .classesSection .container .classesFilter .classFilterNav ul li:hover {
    background: rgba(0, 0, 0, 0.6);
}

.classes .classesSection .container .classesFilter .classFilterNav ul li.active {
    background: #ffffff;
    color: #000000;
}

.classes .classesSection .container .classInfo {
    text-align: center;
    margin: 0 auto 30px;
    position: relative;
    width: 800px;
}

.classes .classesSection .container .classInfo .information {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.classes .classesSection .container .classInfo .information.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.classes .classesSection .container .classInfo .information h3 {
    margin-top: 10px;
}

.classes .classesSection .container .classesRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.classes .classesSection .container .classesRow .class {
    width: calc(25% - 20px);
    box-shadow: 3px 3px 15px rgba(58, 58, 58, 0.5);
    padding: 20px;
    border-radius: 10px;
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .classes .classesSection .container .classesRow .class {
        width: 100%;
    }
}

.classes .classesSection .container .classesRow .class.show {
    display: block;
}

.classes .classesSection .container .classesRow .class.visible {
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.classes .classesSection .container .classesRow .class.visible h3 {
    font-size: 24px;
}

.classes .classesSection .container .classesRow .class.visible h4 {
    font-size: 18px;
}

.classes .classesSection .container .classesRow .class.visible a {
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
}

.classes .startWhere {
    background: url("/img/classes/start-where-bg.jpg") fixed no-repeat center center/cover;
    padding: 75px 20px;
    color: #ffffff;
    position: relative;
}

.classes .startWhere::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.classes .startWhere .container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.classes .startWhere .container .blocks {
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.classes .startWhere .container .blocks .block {
    width: calc(20% - 20px);
    background: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 10px;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .classes .startWhere .container .blocks .block {
        width: calc(50% - 20px);
        flex-grow: 1;
    }
}

.classes .startWhere .container .blocks .block:hover {
    transform: translateY(-5px);
}

.classes .startWhere .container .blocks .block h3 {
    font-size: 20px;
    line-height: 1.2;
}

.timetable .hero {
    background-image: url("/img/timetable/hero.jpg");
}

.timetable .underHero {
    color: #ffffff;
}

.timetable .underHero p {
    margin-bottom: 10px;
}

.timetable .underHero::before {
    display: none;
}

.timetable .timetableFrame {
    background: #ffffff;
}

.timetable .classesSection {
    background: #ffffff;
    padding: 50px 20px;
}

.timetable .classesSection .container {
    max-width: 1600px;
    margin: 0 auto;
}

.timetable .classesSection .container .classInfo {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.timetable .classesSection .container .classInfo .information {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.timetable .classesSection .container .classInfo .information.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.timetable .classesSection .container .classInfo .information h3 {
    margin-top: 10px;
}

.timetable .classesSection .container .classesRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.timetable .classesSection .container .classesRow .class {
    width: calc(25% - 20px);
    box-shadow: 3px 3px 15px rgba(58, 58, 58, 0.5);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (max-width: 1024px) {
    .timetable .classesSection .container .classesRow .class {
        width: 100%;
    }
}

.timetable .classesSection .container .classesRow .class h3 {
    font-size: 24px;
}

.timetable .classesSection .container .classesRow .class h4 {
    font-size: 18px;
}

.timetable .classesSection .container .classesRow .class a {
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
}

.timetable #bookingNotesPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10;
}

.timetable #bookingNotesPopup.active {
    display: block;
}

.timetable #bookingNotesPopup #bookingNotesPopupClose {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
}

.timetable #bookingNotesPopup #bookingNotesPopupClose i {
    font-size: 24px;
    color: #000000;
}

.timetable #bookingNotesPopup .popupContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(58, 58, 58, 0.5);
    max-width: 400px;
    width: 100%;
}

.timetable #bookingNotesPopup .popupContent h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.contact .hero {
    background-image: url("/img/contact/hero.jpg");
    height: 400px;
}

.contact .contactSection {
    background: #ffffff;
    padding: 50px 20px;
}

.contact .contactSection .container {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 3px 3px 15px rgba(58, 58, 58, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.contact .contactSection .container .contactDetails {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.contact .contactSection .container .contactDetails h3 {
    font-size: 24px;
}

.contact .contactSection .container .contactDetails ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact .contactSection .container .contactDetails ul a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact .contactSection .container .contactDetails ul a:hover {
    color: #585858;
}

.contact .contactSection .container .contactDetails ul.socialLinks {
    display: flex;
    gap: 10px;
}

.contact .contactSection .container .contactDetails ul.socialLinks li {
    font-size: 24px;
}

.contact .contactSection .container .contactRow {
    display: flex;
}

@media screen and (max-width: 1024px) {
    .contact .contactSection .container .contactRow {
        flex-direction: column;
    }
}

.contact .contactSection .container .contactRow .contactForm {
    width: 50%;
}

.policy {
    background: #ffffff;
}

.policy .hero {
    background-image: url("/img/policy/hero.jpg");
    height: 400px;
}

.policy .content {
    padding: 50px 20px;
}

.policy .content .container {
    max-width: 1140px;
    margin: 0 auto;
}

.policy .content .container h2 {
    margin-bottom: 5px;
    margin-top: 10px;
}

.policy .content .container h3 {
    margin-bottom: 5px;
    margin-top: 10px;
}

.policy .content .container p {
    margin-bottom: 5px;
}

.policy .content .container p.backHome {
    margin-bottom: 20px;
}

.policy .content .container ul,
.policy .content .container ol {
    margin-bottom: 5px;
}

.thank-you {
    background: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.thank-you .hero {
    background-image: url("/img/thank-you/hero.jpg");
}

.thank-you .content {
    padding: 50px 20px;
}

.thank-you .content .container {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.thank-you .content .container h2 {
    margin-bottom: 5px;
    margin-top: 10px;
}

.thank-you .content .container .blackBtn {
    margin-top: 10px;
}

.thank-you .footer {
    background: #fff;
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.thank-you .footer p {
    color: #000;
    font-size: 15px;
}

.thank-you .footer p a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.thank-you .footer p a:hover {
    text-decoration: underline;
}

.cky-btn-revisit-wrapper {
    background: #000000 !important;
}

.cky-prefrence-btn-wrapper .cky-btn,
.cky-btn-accept,
.cky-btn-reject {
    background: #000000 !important;
    border-color: #000000 !important;
}

.cky-prefrence-btn-wrapper .cky-btn:hover,
.cky-btn-accept:hover,
.cky-btn-reject:hover {
    background: rgba(0, 0, 0, 0.8);
}

.cky-btn-customize {
    border-color: #000000 !important;
    color: #000000 !important;
}

.cky-btn-customize:hover {
    background: rgba(0, 0, 0, 0.1) !important;
}

.cky-switch input[type=checkbox]:checked {
    background: #000000 !important;
}

.cky-preference-content-wrapper .cky-show-desc-btn,
.cky-notice-des a.cky-policy {
    color: #000000 !important;
    font-weight: 600 !important;
}

.cky-preference-content-wrapper .cky-show-desc-btn:hover,
.cky-notice-des a.cky-policy:hover {
    color: rgba(0, 0, 0, 0.8) !important;
}

/*# sourceMappingURL=style.css.map */