@import url("https://use.typekit.net/abp1taq.css");

/****** CSS RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button {
    background-color: transparent;
    color: inherit;
    border-width: 0;
    padding: 0;
    cursor: pointer;
}

button:focus-visible, a:focus-visible {
    outline: auto 1px black;
    outline-offset: 2px;
}

figure {
    margin: 0;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin: 0;
}

ul, ol, dd {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

h4 {
    font-size: 22px;
    font-weight: 900;
    font-family: var(--header-font);
}

p {
    margin: 0;
}

cite {
    font-style: normal;
}

fieldset {
    border-width: 0;
    padding: 0;
    margin: 0;
}

/* Variables and shared styles */

:root {
    --primary-color: #0033a1;
    --hover-color: #00b3e3;
    --darkgray: #4b4c4e;
    --mediumgray: #e4e4e4;
    --lightgray: #f4f4f4;
    --pagebg: #fefefe;
    --nav-text: #424143;
    --submenu-color: #ffffff;
    --footer-gray: #424143;
    --chevron-size: 12px;
    --menu-items-font-size: 14px;
    --header-font: canada-type-gibson, sans-serif;
    --body-font: latinaires, sans-serif;
    --body-font-size: 18px;
    --footer-font-size: 14px;
    --h1-font-size: 100px;
    --h2-font-size: 40px;
    --animation-duration: 20s;
}

html {
    font-size: var(--body-font-size);
    font-family: var(--body-font);
    color: var(--darkgray);
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
}

::selection {
    background: var(--primary-color);
    color: #fff;
}

.container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    flex-grow: 1;
}

.grid-2, .grid-2a, .grid-3, .grid-4 {
    display: grid;
    grid-template-columns: auto;
    gap: 30px;
}

.grid-gap-5 {
    gap: 5px;
}

.mt40 {
    margin-top: 40px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.w-100 {
    width: 100%;
}

.overflow-hidden {
  overflow: hidden !important;
}

overflow-y-scroll {
  overflow-y: scroll !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

a {
    color: var(--primary-color);
}

.text-link {
    text-decoration: underline;
}

.h1 {
    color: var(--primary-color);
    font-weight: 900;
    font-size: calc(var(--h1-font-size) / 3);
    font-family: var(--header-font);
    line-height: 1;
}

.h2 {
    color: var(--darkgray);
    font-weight: 900;
    font-family: var(--header-font);
    font-size: calc(var(--h2-font-size) * .75);
}

.loadingSection {
    background: url(/img/progress-circle-lg-master.svg) no-repeat top left;
    margin: 50px auto 0px auto;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(255,255,255,0.8);
    padding: 0px;
    background-position: center;
    z-index: 999;
}

.lds-ring {
    display: inline-block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    z-index: 999;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #6edbd4;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #6edbd4 transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

.subheader {
    font-style: italic;
}

.row-gap-10 {
    row-gap: 10px;
}

.h3 {
    font-size: 1.25rem;
    font-weight: 900;
    font-family: var(--header-font);
    color: var(--primary-color);
}

.h2, .h3 {
    margin-bottom: .5em;
}

.text-primary {
    color: var(--primary-color);
}

.text-gray {
    color: var(--darkgray);
}

.text-black {
    color: #000;
}

.text-white {
  color: #fff !important;
}

.text-center {
    text-align: center;
}

.justify-center {
    justify-items: center;
}

.text-small {
    font-size:12px;
}

.text-body {
    font-family: var(--body-font);
}

.lh-1 {
    line-height: 1 !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-200 {
    margin-bottom: 200px;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fs-14 {
    font-size: 14px !important;
}

.pstrong {
    font-family: var(--header-font);
    font-weight: 900;
    color: var(--primary-color);
}

.separator {
    margin: 40px auto;
    border-top: solid 3px var(--darkgray);
    border-bottom: solid 3px var(--darkgray);
    max-width: 150px;
}

.separator.--extra-margin {
  margin: 60px auto;
}

.btn-primary {
    background-color: var(--primary-color);
    font-family: var(--header-font);
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 4px;
    font-weight: 900;
}

    .btn-primary:hover {
        background-color: #002470;
    }

.hero {
    margin-bottom: 40px;
}

.hero__img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: 500px;
    object-fit: cover;
}

.blue-bullet {
    list-style: none;
    padding: 0 1em;
}

.blue-bullet__li {
    margin-bottom: .5em;
}

    .blue-bullet__li::before {
        content: "";
        border-color: transparent #0033A1;
        border-style: solid;
        border-width: 0.35em 0 0.35em 0.45em;
        display: block;
        height: 0;
        width: 0;
        left: -1em;
        top: 1.05em;
        position: relative;
    }

.equipment {
    position: relative;
}

.equipment__img {
    width: 100%;
    aspect-ratio: 5/3;
    object-fit: cover;
    object-position: center 35%;
}

.equipment__title {
    position: absolute;
    bottom: 1rem;
    text-align: center;
    width: 100%;
    z-index: 1;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}

.hiit__intro {
    margin-bottom: 30px;
}

.hiit__gradient {
    height: 62px;
    background: #0033a1;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(111,111,113,1) 30%, rgba(0,51,161,1) 60%, rgba(0,0,0,1) 100%);
    margin-bottom: 30px;
}

.hiit__phase {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--header-font);
    font-style: italic;
    text-align: center;
    padding: 24px 10px;
    margin-bottom: 30px;
}

.hiit__1 {
    border: solid 1px #6F6F71;
    color: #6F6F71;
}

.hiit__2 {
    background-color: #afb2b9;
    color: #000;
}

.hiit__3 {
    background-color: #0033a1;
    color: #fff;
}

.hiit__4 {
    background-color: #000;
    color: #fff;
}

.referralFormBox {
    background-color: aliceblue;
    border-radius: 10px;
    padding: 30px;
    max-width: 450px;
    margin: auto;
}

.referral {
    position: relative;
}

.referral__img {
    width: 100%;
}

.referral__title {
    position: absolute;
    bottom: 20%;
    text-align: center;
    width: 100%;
    z-index: 1;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
    left: 0px;
    font-size: 43px;
    font-weight: bold;
}
.referral__xymogym_logo {
    position: absolute;
    bottom: 50%;
    left:50%;
    transform: translateX(-50%);
    text-align: center;
    width: 125px;
    z-index: 1;
}

.referral-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

@media (max-width: 1100px) {
  .referral-grid {
    grid-template-columns: 1fr;
  }
}

/* Coaches Styles*/
.coaches-sh {
    letter-spacing: 11.5px;
    color: var(--darkgray);
}

.coaches-h {
    margin-top: 0;
}

.coach-item {
    text-align: center;
}

.coach-img-container {
    position: relative;
    display: block;
    overflow: hidden;
}

.coach-img__overlay {
    position: absolute;
    background-color: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    right: 0;
    bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: .3s ease-in-out;
}

    .coach-img__overlay > i {
        transform: translateY(-100%);
        transition: .3s ease-in-out;
    }

.coach-img-container:hover > .coach-img__overlay {
    opacity: 1;
    transition: .3s ease-in-out;
}

    .coach-img-container:hover > .coach-img__overlay > i {
        transform: translateY(0);
    }


.coach-img {
    width: 370px;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.coach-name {
    font-weight: 900;
    display: block;
    padding: 30px 0;
    font-size: larger;
}

.coach-title {
    padding-bottom: 10px;
}

.coaches-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.coach-details-img {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 570px;
}

.coach-details-name {
    font-weight: 900;
    margin-bottom: 20px;
}

.coach-details-title {
    display: block;
    margin-bottom: 20px;
}

.health-coach-view-all {
    text-align: center;
    margin-top: 40px;
}


/* Coaches Styles*/

/* Pricing & Membership styles */

table.pricing {
    color: #000;
    margin: auto;
    line-height: 1.25;
    font-family: "canada-type-gibson", Arial, Helvetica, Verdana;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 50px;
}

    table.pricing .small {
        font-size: .75em;
        color: #5b5b5b;
        font-weight: 500;
        line-height: 1;
    }

    table.pricing .price {
        font-size: 1.2em;
        line-height: 1;
    }

    table.pricing .fa-check-circle {
        color: #22b573;
        font-size: 24px;
    }

    table.pricing .fa-times-circle {
        color: #c1272d;
        font-size: 24px;
    }

    table.pricing td,
    table.pricing th {
        padding: .75rem;
        border: solid 1px #ededed;
    }

    table.pricing thead th {
        background-color: none;
    }

    table.pricing th,
    table.pricing tr td:not(:first-child) {
        border-left: solid 2px #737373;
        border-right: solid 2px #737373;
    }

    table.pricing th {
        border-top: solid 2px #737373;
    }

    table.pricing tr:last-child td:not(:first-child) {
        border-bottom: solid 2px #737373;
    }

    table.pricing thead th:first-child {
        border: none;
        text-align: right;
        font-size: 1.2em;
    }

    table.pricing tbody tr td {
        text-align: center;
    }

        table.pricing tbody tr td:first-child {
            text-align: right;
        }

        table.pricing th,
        table.pricing tbody tr td:first-child,
        table.pricing tr:last-child {
            font-weight: 900;
        }

    table.pricing tbody tr:nth-child(odd) {
        background-color: #E5E7EE;
    }


    table.pricing tr:nth-child(even) {
        background-color: #F3F4F6;
    }

    table.pricing .rel {
        position: relative;
    }

    table.pricing .ast-abs {
        position: absolute;
        top: 50%;
        left: calc(50% + 20px);
        transform: translate(-50%,-50%);
        font-size: 13px;
        text-align: left;
    }

    .pricing__multiple {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .pricing__classpack {
        display: flex;
        flex-direction: column;
    }

p.disclaimer {
    font-size: 13px;
}

.mem-opts-container {
    max-width: 752.5px;
    margin: auto;
    margin-bottom: 30px;
    font-family: "canada-type-gibson", Arial, Helvetica, Verdana;
}

div.mem-opts {
    padding: 16px;
    background-color: #F3F4F6;
}

    div.mem-opts .msrow {
        display: flex;
        align-items: center;
    }

    div.mem-opts .ms,
    div.mem-opts .mspr {
        color: #000;
        font-size: 1.4em;
        font-weight: 900;
        font-family: var(--header-font);
    }

    div.mem-opts .mspr {
        display: flex;
        margin-left: 1rem;
        align-items: center;
    }

    div.mem-opts .mspm {
        color: #000;
        font-size: .5em !important;
        font-weight: 900;
        line-height: 1;
        margin-left: .5em;
    }

    div.mem-opts .ms .md {
        font-weight: 500 !important;
    }

    div.mem-opts .cross {
        font-size: .5em;
        font-weight: 500 !important;
        position: relative;
        bottom: 1em;
    }

    div.mem-opts .msdescription {
        color: #4d4d4d;
        font-weight: 500;
        margin-bottom: 15px;
    }

.m-limited-offer {
    background-color: var(--primary-color);
    color: #fff;
    text-transform:uppercase;
    font-style: italic;
    padding: 5px;
    font-size: 14px;
    position: relative;
    top: -4px;
}

.m-classpack {
    background-color: #E5E7EE;
    margin-top: -15px;
    padding: 16px;
}

.m-cpa {
    font-weight: 900;
    font-size: 1.2em;
}

#mindbody_branded_web_cart_modal {
    width: 1920px;
    max-width: 100%;
    height: 770px;
    display: block;
    margin: auto;
}

a.feed-powered-by-es.feed-powered-by-es-slider-new {
    display: none;
}

/* Back to top button */
#backToTopBtn {
    font-size: 24px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px;
    border-radius: 4px;
    position: fixed;
    bottom: 16px;
    right: 16px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    border: 1px solid var(--pagebg);
}

    #backToTopBtn:hover {
        background-color: #002470;
    }

.backToTopBtn--show {
    visibility: visible !important;
    opacity: 1 !important;
    transition: all .3s ease-in-out;
}

/************************************** THE STORY */
.container.story {
    margin-bottom: 80px;
}

    .container.story img {
        width: 100%;
        max-width: 570px;
    }


/* ================================================================
    TABLET
   ================================================================ */
@media screen and (min-width: 576px) {
    .h1 {
        font-size: calc(var(--h1-font-size) * .75);
    }

    .container {
        margin-left: auto;
        margin-right: auto;
        max-width: min(90vw, 688px);
    }

    .grid-2, .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-2a {
        grid-template-columns: 2fr 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hiit__gradient {
        margin-bottom: 0;
    }

    .hiit__phase {
        margin: 30px 0;
    }
    .coaches-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 700px) {
    .grid-3.photos {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
}

/* ================================================================
    DESKTOP
   ================================================================ */

@media screen and (min-width: 992px) {
    .h1 {
        font-size: var(--h1-font-size);
    }

    .h2 {
        font-size: var(--h2-font-size);
    }

    .container {
        max-width: min(85vw, 1170px);
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .coaches-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ================================================================
    TOP MENU
   ================================================================ */

.menu-drop-shadow {
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

.navigation-container {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--pagebg);
  background: linear-gradient(0deg, rgba(255,255,255,1) 3%, rgba(255,255,255,1) 73%, rgba(238,241,246,1) 73%);
  align-items: center;
}

.navigation-menus {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  width: 100%;
  max-width: 1140px;
}

.mini-nav {
  width: 100%;
  display: flex;
  font-size: 13px;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  color: #424143;
}

.mini-nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

  .mini-nav__link, .mini-nav .healcode-link.loginRegister {
    color: #424143;
    text-transform: uppercase;
  }

    .mini-nav__link:hover,
    .mini-nav .healcode-link.loginRegister:hover {
      text-decoration: underline;
    }

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 88px;
    position: sticky;
    top: 0;
    padding: 10px;
    color: var(--nav-text);
    text-rendering: optimizeLegibility;
    background-color: var(--pagebg);
    font-family: var(--header-font);
    width: 100%;
}

#menu li.main-menu__item--from-mini-nav {
    display: none;
}

@media (max-width: 590px) {
    .mini-nav {
        justify-content: center;
    }

    .mini-nav__right {
        display: none;
    }

    #menu li.main-menu__item--from-mini-nav {
        display: block;
    }
}

/*************************************** TOP BANNER */
#top-banner{
    font-family: var(--header-font);
    background-color: var(--primary-color);
    width: 100%;
    font-size: 18px;
    text-align: center;
    padding: 15px 0;
    color: var(--lightgray);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    gap: 16px;
}

.top-banner-ph {
    color: var(--lightgray);
    text-decoration: underline;
}

.top-banner-btn {
    display: inline-flex;
    background-color: var(--pagebg);
    color: var(--primary-color);
    padding: .5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-banner-btn:hover {
    background-color: var(--lightgray);
}

#top-banner strong {
    font-weight: 700;
}

.top-banner__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.top-banner__cta-copy {
    line-height: 1 !important;
}

.top-banner__contact {
  font-weight: 400;
  font-size: 14px;
}

.top-banner__contact a {
  color: var(--lightgray);
  text-decoration: underline;
}

/************************************** BOTTOM BAR */
.bottom-banner {
  font-family: var(--header-font);
  background-color: var(--primary-color);
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  padding: 15px 10px;
  color: var(--lightgray);
  margin-top: 40px;
}

.bottom-banner a {
  color: var(--lightgray);
  text-decoration: underline;
}

/************************************** MOBILE MENU */

.chevron-down {
    width: var(--chevron-size);
    height: var(--chevron-size);
    background-image: url('../img/chevron-down-solid.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: var(--chevron-size);
    margin-left: auto;
}

.chevron-up {
    width: var(--chevron-size);
    height: var(--chevron-size);
    background-image: url('../img/chevron-up-solid.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: var(--chevron-size);
    margin-left: auto;
}

#menu {
    position: absolute;
    left: 0;
}

#main-menu-button {
    position: absolute;
    left: 20px;
    transform: translateY(50%);
}

#mobile-menu {
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    border: none;
    transform: translateY(50%);
}

.bar1,
.bar2,
.bar3 {
    width: 20px;
    height: 4px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
    border-radius: 2px;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-8px, 6px);
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-5px, -3px);
    transform: rotate(45deg) translate(-5px, -3px);
}

#menu {
    position: absolute;
    top: 0;
}

    #menu ul {
        margin: 0;
        padding: 0;
    }

    #menu .main-menu {
        display: none;
        background-color: white;
        position: relative;
        box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.1);
        top: 15px;
    }

.logo {
    width: 100%;
    max-width: 73px;
}

.logo img {
    width: 100%;
    object-fit: contain;
}
#mobile-menu[aria-expanded="true"] + .main-menu {
    display: block;
}


#menu .sub-menu {
    margin-left: 20px;
}

#menu li,
#toggle-menu,
#menu a,
.main-menu-btn {
    position: relative;
    display: block;
    color: var(--nav-text);
    font-weight: 500;
    text-decoration: none;
    font-size: var(--menu-items-font-size);
}

.main-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: var(--header-font);
}

#mobile-menu {
    padding: 5px 20px;
}

#menu,
#toggle-menu {
    background-color: transparent;
}

    #toggle-menu,
    #menu a,
    .main-menu-btn {
        padding: 10px;
    }

    #menu a,
    .main-menu-btn {
        transition: all .125s ease-in-out;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    #menu a:hover,
    .main-menu-btn:hover {
        background-color: var(--lightgray);
        color: var(--primary-color);
    }

    .main-menu-btn i {
        position: relative;
        top: -2px;
    }

.main-menu-btn[aria-expanded="false"] + .sub-menu {
    display: none;
}

.main-menu-btn[aria-expanded="true"] + .sub-menu[hidden="false"] {
    display: block;
}

    

    #toggle-menu .drop-icon,
    #menu li label.drop-icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    #menu label.drop-icon,
    #toggle-menu span.drop-icon {
        cursor: pointer;
    }

/* ================================================================
    FOOTER
   ================================================================ */

.pre-footer {
    display: flex;
    flex-direction: column;
    background-image: url('/img/Background-blue.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 5vmin;
    gap: 30px;
}

.pre-footer > * {
    width: 100%;
}

.pre-footer__left {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pre-footer__headers {
    align-self: start;
    margin-bottom: 30px;
}

.pre-footer__header {
    margin-bottom: 0;
}

.pre-footer__subheader {
    font-size: 20px;
    color: var(--darkgray);
}

.footer-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

.footer-form__label {
    display: block;
    line-height: 1;
}

.footer-form__input {
    display: block;
    margin-bottom: 25px;
    width: 100%;
    padding: 15px 10px;
    border-radius: 5px;
    border: solid 1px var(--darkgray);
    background-color: #fff;
    font-family: var(--body-font);
    font-size: 16px;
}

.footer-form__input.--error {
    border-color: #D10028;
}

.footer-form__input.--textarea {
    margin-bottom: 16px;
}

.footer-form__submit {
    width: 100%;
}

#ContactSuccessDIV {
    align-self: start;
}

.alert {
    padding: 10px;
    border-radius: 5px;
}

.alert-danger {
    border: solid 1px #D10028;
    background-color: #FFF0F2;
    color: #D10028;
}

.alert-success {
    border: solid 1px #205E3B;
    background-color: #E6F9F1;
    color: #205E3B;
}

footer {
    background-color: var(--footer-gray);
    width: 100%;
    padding: 50px 50px 20px 50px;
    font-family: var(--header-font);
    font-weight: 100;
    font-size: var(--footer-font-size);
}

#footer-content {
    display: grid;
    gap: 50px;
    color: var(--lightgray);
    width: fit-content;
    max-width: 1000px;
    margin: 0 auto;
}

footer,
footer a {
    color: var(--lightgray);
    text-decoration: none;
    text-align: center;
    text-rendering: optimizeLegibility;
}

    footer-title {
        font-size: 14px;
        font-weight: 200;
        margin-bottom: 10px;
    }

    footer a {
        display: block;
        margin-bottom: 10px;
    }
    
    .footer-contact {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
    }

/* ================================================================
    TOP MENU AND FOOTER MEDIA QUERIES
   ================================================================ */
@media only screen and (max-width: 500px) {
    #top-banner strong {
        display: block;
    }
}

@media only screen and (min-width: 501px) {
    #footer-content {
        grid-template-areas:
            'more follow'
            'resources hours'
            'copyright copyright';
        column-gap: 150px;
    }

    footer,
    footer a {
        text-align: left;
    }

    #follow-us {
        grid-area: follow;
    }

    #more {
        grid-area: more;
    }

    #resources {
        grid-area: resources;
    }

    #hours {
        grid-area: hours;
    }

    #copyright {
        grid-area: copyright;
        text-align: center;
    }
}

@media (min-width: 576px) {
    .footer-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 768px) {
    #footer-content {
        grid-template-columns: auto auto auto auto;
        grid-template-areas:
            'more follow resources hours'
            'copyright copyright copyright copyright';
    }

    #top-banner {
        flex-direction: row;
    }

    .top-banner-btn {
        margin-right: 0;
        margin-top: 0;
    }

    .top-banner__contact {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
    }
}

@media (min-width: 992px) {
    .pre-footer {
        flex-direction: row;
    }

    .footer-form__submit {
        width: auto;
    }
}

@media only screen and (min-width: 1250px) {

    #mobile-menu {
        display: none;
    }

    #menu {
        position: relative;
        order: 2;
        flex-grow: 1;
    }

        #menu .main-menu {
            display: flex;
            box-shadow: none;
            justify-content: space-between;
            align-items: center;
            top: 0;
        }

        #toggle-menu,
        #menu label.drop-icon,
        .chevron-down,
        .chevron-up {
            display: none;
        }

    .logo {
        order: 1;
    }

    #menu .sub-menu {
        background-color: var(--submenu-color);
        position: absolute;
        margin-left: 0;
        min-width: 200px;
        font-size: 16px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        padding: 10px;
        box-shadow: 6px 6px 4px 2px rgba(0,0,0,.2);
    }

        #menu .sub-menu a {
            font-weight: 500;
            text-transform: uppercase;
        }

   
}

@media (max-width: 1249px) {
  .navigation-menus, .navigation {
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {

    /************************************** THE STUDIO */
    #studio-grid {
        grid-template-areas:
            'nat'
            'nat-t'
            'gia'
            'gia-t';
    }

        #studio-grid #natalie-photo {
            grid-area: nat;
        }

        #studio-grid #natalie-text {
            grid-area: nat-t;
        }

        #studio-grid #gia-photo {
            grid-area: gia;
        }

        #studio-grid #gia-text {
            grid-area: gia-t;
        }
}

/* ================================================================
    GOOGLE MAP
   ================================================================ */
#xymogym-map {
    width: 100%;
    height: 500px;
    border: none;
    outline: none;
}

/* ================================================================
    ACCORDION
   ================================================================ */
.accordion {
    background-color: var(--lightgray);
    font-family: var(--header-font);
    font-weight: 900;
    font-size: 16px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: 1px solid var(--mediumgray);
    outline: none;
    transition: 0.4s;
    display: flex;
    align-items: center;
}

    .accordion::before {
        content: '+';
        margin-right: 10px;
        display: inline-block;
        width: 20px;
        text-align: center;
    }

    /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
    .accordion:hover {
        color: var(--hover-color);
        border-color: var(--hover-color);
    }

.active {
    color: var(--darkgray);
    border-color: var(--lightgray);
}

    .active:before {
        content: '-';
        text-align: center;
    }

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: var(--pagebg);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

    .panel p {
        padding: 20px;
    }

.faq-element {
    margin-bottom: 20px;
}
/* ================================================================
    THE ZONE FAQ
   ================================================================ */
#the-zone-faq {
    margin-bottom: 50px;
}

/* ================================================================
    THE SCHEDULE
   ================================================================ */
#schedule-date {
    color: var(--primary-color);
    font-weight: 900;
    font-family: var(--header-font);
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
}

.book-now-button {
    background-color: var(--primary-color);
    color: var(--lightgray);
    padding: 20px;
    font-family: var(--header-font);
    font-weight: 900;
    font-size: 24px;
    margin: 30px auto;
    display: block;
    border: 2px solid var(--primary-color);
    width: fit-content;
    margin: 0 auto;
    margin: 30px auto;
}

    .book-now-button:hover {
        background-color: var(--pagebg);
        color: var(--primary-color);
    }

.schedule {
    display: grid;
    grid-template-columns: 10% 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 16px;
    font-family: var(--header-font);
    background: var(--primary-color);
    background: radial-gradient(circle, var(--primary-color) 60%, #191f2d 100%);
    padding: 80px 30px;
    margin-left: -30px;
    margin-right: -30px;
}

.schedule__day {
    background-color: #fff;
    writing-mode: vertical-lr;
    color: var(--primary-color);
    font-weight: 900;
    padding: 30px 15px;
    font-size: 1.55rem;
    transform: rotate(180deg);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-block {
    background: #000;
    background: linear-gradient(to right, #000, #191F2D);
    padding: 15px;
    font-weight: 700;
    color: #fff;
}

.schedule-block__ampm {
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 1.4rem;
}

.schedule-block__class {
    font-size: 1.25rem;
    font-style: italic;
}

.schedule-block__time {
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
}

.schedule__day.--saturday {
    background-color: var(--primary-color);
    color: #fff;
}

.schedule-block.--saturday {
    background: #fff;
    color: #000;
}

.schedule-block.--saturday .schedule-block__ampm {
    -webkit-text-stroke: 1px #000;
}

.schedule-block.--blank {
    background: none;
    color: #fff;
    font-style: italic;
    font-size: min(5vw, 1.55rem);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-row: 5 / 7;
    grid-column: 3;
}

.blank-title {
    font-weight: 900;
    font-size: min(6vw, 2rem);
}

.new-schedule {
  display: flex;
  margin-left: -30px;
  margin-right: -30px;
}

.new-schedule__block {
  width: 100%;
  background: linear-gradient(180deg, #323232, #1a1a1a);
  display: flex;
  flex-direction: column;
}

.new-schedule.--yoga .new-schedule__block {
  max-width: 250px;
}

.new-schedule__block:not(:last-child) .new-schedule__content::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  height: 75%;
  transform: translateY(-50%);
  width: 1px;
  background: var(--lightgray);
}

.new-schedule__day {
  color: white;
  font-weight: 900;
  font-size: 30px;
  font-family: var(--header-font);
  text-align: center;
  padding: 5px 30px 0px 30px;
  background: linear-gradient(270deg, rgba(1,51,255,1) 0%, var(--primary-color) 100%);
}

.new-schedule__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  padding: 30px;
  color: white;
  font-family: var(--header-font);
  position: relative;
  height: 100%;
}

.new-schedule__phase {
  font-size: 1.2rem;
  font-weight: 700;
}

.new-schedule__subphase {
  font-size: .8rem;
  font-weight: 500;
  color: var(--mediumgray);
}

.new-schedule__times {
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .new-schedule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-left: 0;
    margin-right: 0;
  }

  .new-schedule__block:nth-child(3) .new-schedule__content::after {
    content: none;
  }
}

@media screen and (max-width: 991px) {
    .schedule {
        margin-left: 0;
        margin-right: 0;
    }

    .referral__title {
        font-size: 30px;
    }

    .referral__xymogym_logo {
        width: 80px;
    }
}

@media (max-width: 730px) {
  .new-schedule {
    grid-template-columns: 1fr 1fr;
  }

  .new-schedule.--yoga .new-schedule__block {
    max-width: 100%;
  }

  .new-schedule__block:nth-child(3) .new-schedule__content::after {
    content: '';
  }

  .new-schedule__block:nth-child(2n) .new-schedule__content::after {
    content: none;
  }
}

@media screen and (max-width: 575px) {
    .schedule {
        margin-left: -18px;
        margin-right: -18px;
        grid-template-columns: auto;
        grid-auto-rows: auto;
    }

    .schedule__day {
        transform: initial;
        writing-mode: initial;
        padding: 15px;
    }

    .schedule-block.--blank {
        grid-row: 18;
        grid-column: 1;
    }

    .referral__title {
        font-size: 20px;
    }

    .referral__xymogym_logo {
        width: 55px;
    }

    .new-schedule {
      grid-template-columns: auto;
    }

  .new-schedule__content::after {
    content: none !important;
  }
}

.court-qr-code {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 3fr;
}

.court-qr-code img {
  width: 100%;
}

/* ================================================================
    THE LEADERBOARD
   ================================================================ */
.leaderboard-container {
    position: relative;
    width: 100%;
    max-width: 777px;
    background-color: #0d1b2a; /* Default dark blue fallback color */
    background-image: radial-gradient(circle, var(--primary-color) 0%, #191f2d 100%);
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    color: #fff;
    font-family: var(--header-font);
}

.leaderboard-container.--challenge-open:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.65);
    z-index: 1;
}

.leaderboard-wrapper {
    position: relative;
}

.lb-recent-challenges {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 24px;
    font-family: var(--header-font);
    font-weight: bold;
}

.lb-challenges {
    height: 216px;
}

.lb-challenge-card {
    transition: all .3s ease;
    position: absolute;
    height: 98px;
    width: calc(50% - 7px);
    overflow: hidden;
    background-color: #000;
    padding: 20px 16px;
    border: 0;
}

.lb-challenge-card:not(.--active) {
    cursor: pointer;
}

.lb-challenge-card * {
    transition: all .3s ease;
}

.lb-challenge-card.--first-row {
    top: 40px;
}

.lb-challenge-card.--second-row {
    top: 158px;
}

.lb-challenge-card.--second-column {
    left: calc(50% + 7px);
}

.lb-challenge-card.--active {
    width: 100%;
    height: 100%;
    top: 0;
}

.lb-challenge-card.--second-column.--active {
    left: 0;
}

.lb-challenge-card:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to right, rgba(0,0,0,1), 70%, rgba(0,0,0,0));
    z-index: 2;
}

.lb-challenge-card:not(.--active):hover:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,.15), rgba(0,0,0,0));
    z-index: 3;
}

.lb-challenge-card__close {
    display: none;
}

.lb-challenge-card__close-btn {
    font-weight: 700;
}

.lb-challenge-card__img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: right;
    opacity: .5;
    z-index: 1;
}

.lb-challenge-card__title {
    font-size: 24px;
    font-weight: 900;
}

.lb-challenge-card__subtitle {
    color: #C7C4C4;
    font-size: 16px;
}

.lb-challenge-card__description {
    opacity: 0;
    margin-top: 24px;
    visibility: hidden;
}

.lb-challenge-card__top {
    display:  contents;
}

.lb-challenge-card__top-text {
    position: relative;
    z-index: 4;
}

.lb-challenge-card__table {
    opacity: 0;
    display: contents;
    visibility: hidden;
}

.lb-table-wrapper {
    overflow: auto;
    scrollbar-width: thin;
}

/* width */
.lb-table-wrapper::-webkit-scrollbar {
    width: 6px;
    height:6px;
}

.lb-table-wrapper::-webkit-scrollbar-corner {
    display: none;
}
/* Track */
.lb-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle */
.lb-table-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* Handle on hover */
.lb-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.lb-table {
    border-spacing: 0;
    font-size: 14px;
    width: 100%;
}

.lb-table th {
    border-bottom: solid 2px #fff;
}

.lb-table tr td {
    border-bottom: solid 1px #fff;
    text-align: center;
}

.lb-table th,
.lb-table td {
    padding: 18px;
    white-space: nowrap;
}

.lb-table td:first-child {
    min-width: 200px;
    font-weight: 700;
    display: flex;
    gap: 8px;
}

.lb-table__rank {
    color: #C7C4C4;
}

.lb-table__medal {
    width: 14px;
}

.lb-table .fa-caret-up {
    color: #12FF31;
}

.lb-table .fa-caret-down {
    color: #FF0D0D;
}

.lb-challenge-card.--active {
    z-index: 100;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.lb-challenge-card.--active:before {
    content: "";
    z-index: -1;
    background-image: none;
    background-color: rgba(0,0,0,0.75);
}

.lb-challenge-card.--active .lb-challenge-card__close {
    display: flex;
    justify-content: end;
    margin-bottom: 10px;
}

.lb-challenge-card.--active .lb-challenge-card__top {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 30px;
}

.lb-challenge-card.--active .lb-challenge-card__title {
    font-size: 32px;
}

.lb-challenge-card.--active .lb-challenge-card__img {
    opacity: 1;
    position: static;
}

.lb-challenge-card.--active .lb-challenge-card__table,
.lb-challenge-card.--active .lb-challenge-card__description {
    opacity: 1;
    visibility: visible;
}

.lb-challenge-card.--active .lb-challenge-card__content {
    display: contents;
}

.lb-active-challenge-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
    margin-bottom: 32px;
}

.active-challenge {
    color: #12FF31;
    font-size: 16px;
    display: flex;
    align-items: end;
    gap: 2px;
    margin-bottom: 8px;
}

.active-circle-animation {
    position: relative;
    width: 30px;
    height: 30px;
    display: inline-block;
}

.active-circle-animation > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: #12FF31;
    opacity: 0;
    transform: scale(0.1);
}

.active-circle-animation > div:first-child {
    animation: 3s ease-in infinite forwards active-circle;
}

.active-circle-animation > div:nth-child(2) {
    animation: 3s ease-in .75s infinite forwards active-circle;
}

.active-circle-animation > div:nth-child(3) {
    animation: 3s ease-in 1.5s infinite forwards active-circle;
}

@keyframes active-circle {
    0% {
        opacity: .75;
        transform: scale(0.1);
    }
/*    30%{
        opacity: .75;
    }*/
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.lb-active-challenge-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 38px;
}

.lb-active-challenge-description {
    font-size: 18px;
}

.lb-table-select-container {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.lb-table-select {
    padding: 20px;
    border-radius: 4px;
    background-color: #fff;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-family: var(--header-font);
    font-size: 18px;
}

.lb-table-select:not(.--active):hover {
    filter: brightness(.8);
}

.lb-table-select.--active {
    background-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 677px) {
    .container.--leaderboard-page {
        margin: 0;
        max-width: 100%;
    }
    .leaderboard-container {
        padding: 30px 15px;
    }
    .lb-challenges {
        height: 422px;
    }

    .lb-challenge-card {
        width: 100%;
    }

    .lb-challenge-card.--first-row.--second-column {
        top: 148px;
        left: 0;
    }

    .lb-challenge-card.--second-row.--first-column {
        top: 256px;
    }

    .lb-challenge-card.--second-row.--second-column {
        top: 364px;
        left: 0;
    }

    .lb-challenge-card.--active {
        top: 0 !important;
    }

    .lb-challenge-card.--active .lb-challenge-card__top {
        grid-template-columns: 1fr;
    }

    .lb-challenge-card:before {
        background-image: linear-gradient(to right, rgba(0,0,0,1), 85%, rgba(0,0,0,0));
    }

    .lb-active-challenge-top {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
    THE HERO SLIDER
   ================================================================ */
.hero-slider {
    max-height: 800px;
    min-height: 600px;
    height: 100%;
    overflow: hidden;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #000;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 800px;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero-1 {
    background-image: url('/img/hero-1.jpg');
    background-image: url('/img/hero-1.webp');
    animation: hero-1-animation var(--animation-duration) infinite;
}

#hero-2 {
    background-image: url('/img/cryo-moov-labs-hero.webp');
    animation: hero-2-animation var(--animation-duration) infinite;
}

#hero-3 {
    background-image: url('/img/hero-2.jpg');
    background-image: url('/img/hero-2.webp');
    animation: hero-3-animation var(--animation-duration) infinite;
}

#hero-4 {
    background-image: url('/img/Xceed.jpg');
    background-image: url('/img/Xceed.webp');
    animation: hero-4-animation var(--animation-duration) infinite;
}

.hero-text {
    font-family: var(--header-font);
    font-weight: 900;
    text-align: center;
    color: var(--pagebg);
    font-size: min(10vw, 150px);
    line-height: 1;
    text-shadow: 10px 10px 20px #000;
}

    .hero-text:first-of-type {
        font-size: min(5vw, 80px);
    }

.hero-button {
    font-family: var(--header-font);
    background-color: var(--primary-color);
    padding: 20px 40px;
    color: var(--pagebg);
    font-size: 14px;
    border: 1px solid var(--primary-color);
    width: fit-content;
    margin: 0 auto;
    font-weight: 900;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

    .hero-button:hover {
        background-color: var(--hover-color);
        border-color: var(--pagebg);
    }

@media (max-width: 575px) {
    .hero-button {
        width: 90%;
    }
}
    
#hero-1 .hero-text:first-of-type {
    animation: hero-1-text-animation-1 var(--animation-duration) infinite;
}

#hero-1 .hero-text:not(:first-of-type) {
    animation: hero-1-text-animation-2 var(--animation-duration) infinite;
}

#hero-2 .hero-text:first-of-type {
    animation: hero-2-text-animation-1 var(--animation-duration) infinite;
}

#hero-2 .hero-text:not(:first-of-type) {
    animation: hero-2-text-animation-2 var(--animation-duration) infinite;
}

#hero-3 .hero-text:first-of-type {
    animation: hero-3-text-animation-1 var(--animation-duration) infinite;
}

#hero-3 .hero-text:not(:first-of-type) {
    animation: hero-3-text-animation-2 var(--animation-duration) infinite;
}


#hero-4 .hero-text:first-of-type {
    animation: hero-4-text-animation-1 var(--animation-duration) infinite;
}

#hero-4 .hero-text:not(:first-of-type) {
    animation: hero-4-text-animation-2 var(--animation-duration) infinite;
}

/************************************** FIRST SLIDE */
@keyframes hero-1-animation {
    0% { opacity: 1; visibility: visible; }
    23% { opacity: 1; visibility: visible; }
    25% { opacity: 0; visibility: hidden; }
    48% { opacity: 0; visibility: hidden;}
    50% { opacity: 0; visibility: hidden;}
    73% { opacity: 0; visibility: hidden;}
    75% { opacity: 0; visibility: hidden;}
    98% { opacity: 0; visibility: hidden;}
    100% { opacity: 1; visibility: visible; }
}

@keyframes hero-1-text-animation-1 {
    0% { transform: translateX(-100%); }
    3% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    100% { transform: translateX(-100%); }
}

@keyframes hero-1-text-animation-2 {
    0% { transform: translateX(100%); }
    5% { transform: translateX(100%); }
    8% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

/************************************** SECOND SLIDE */
@keyframes hero-2-animation {
    0% { opacity: 0; visibility: hidden;}
    23% { opacity: 0; visibility: hidden;}
    25% { opacity: 1; visibility: visible;}
    48% { opacity: 1; visibility: visible;}
    50% { opacity: 0; visibility: hidden;}
    73% { opacity: 0; visibility: hidden;}
    75% { opacity: 0; visibility: hidden;}
    98% { opacity: 0; visibility: hidden;}
    100% { opacity: 0; visibility: hidden;}
}

@keyframes hero-2-text-animation-1 {
    0% { transform: translateX(-100%); }
    25% { transform: translateX(-100%); }
    28% { transform: translateX(0); }
    45% { transform: translateX(0); }
    50% { transform: translateX(-100%); }
    100% { transform: translateX(-100%); }
}

@keyframes hero-2-text-animation-2 {
    0% { transform: translateX(100%); }
    30% { transform: translateX(100%); }
    33% { transform: translateX(0); }
    45% { transform: translateX(0); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

/************************************** THIRD SLIDE */
@keyframes hero-3-animation {
    0% { opacity: 0; visibility: hidden;}
    23% { opacity: 0; visibility: hidden;}
    25% { opacity: 0; visibility: hidden;}
    48% { opacity: 0; visibility: hidden;}
    50% { opacity: 1; visibility: visible;}
    73% { opacity: 1; visibility: visible;}
    75% { opacity: 0; visibility: hidden;}
    98% { opacity: 0; visibility: hidden;}
    100% { opacity: 0; visibility: hidden;}
}

@keyframes hero-3-text-animation-1 {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(-100%); }
    53% { transform: translateX(0); }
    70% { transform: translateX(0); }
    75% { transform: translateX(-100%); }
    100% { transform: translateX(-100%); }
}

@keyframes hero-3-text-animation-2 {
    0% { transform: translateX(100%); }
    55% { transform: translateX(100%); }
    58% { transform: translateX(0); }
    70% { transform: translateX(0); }
    75% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

/************************************** FOURTH SLIDE */
@keyframes hero-4-animation {
    0% { opacity: 0; visibility: hidden;}
    23% { opacity: 0; visibility: hidden;}
    25% { opacity: 0; visibility: hidden;}
    48% { opacity: 0; visibility: hidden;}
    50% { opacity: 0; visibility: hidden;}
    73% { opacity: 0; visibility: hidden;}
    75% { opacity: 1; visibility: visible;}
    98% { opacity: 1; visibility: visible;}
    100% { opacity: 0; visibility: hidden;}
}

@keyframes hero-4-text-animation-1 {
    0% { transform: translateX(-100%); }
    75% { transform: translateX(-100%); }
    78% { transform: translateX(0); }
    95% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes hero-4-text-animation-2 {
    0% { transform: translateX(100%); }
    80% { transform: translateX(100%); }
    83% { transform: translateX(0); }
    95% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}


/* ================================================================
    YOUTUBE WIDGET
   ================================================================
*/

.yt-widget {
  margin-top: 40px;
  margin-bottom: 60px;
  font-family: "roboto", sans-serif;
  font-size: 16px;
}

.yt-widget__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
}

.yt-widget__profile {
  display: flex;
  gap: 10px;
  align-items: center;
}

.yt-widget__profile-pic {
  width: 60px;
  aspect-ratio: 1;
}

.text-bold {
  font-weight: 700;
}

.yt-widget__btn {
  color: #fff;
  background-color: #0033ff;
  padding: 10px 14px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
}

.yt-widget__btn:hover {
  background-color: #1947ff; 
}

.yt-widget__videos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.yt-widget__card {
  display: flex;
  min-width: 268px;
  width: 24%;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  background: #FFF;
  text-decoration: none;
  color: #000;
}

.yt-widget__card:hover > .yt-widget__thumbnail::before {
  content: "\f04b";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font: var(--fa-font-solid);
  font-size: 40px;
}

.yt-widget__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.yt-widget__date {
  font-size: 14px;
}

.yt-widget__thumbnail {
  width: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.yt-widget__thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-widget__title {
  font-weight: 700;
}

@media (max-width: 991px) {
  .yt-widget__header {
    flex-direction:column;
    align-items: stretch;
  }

  .yt-widget__videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .yt-widget__card {
    width: 100%;
    min-width: unset;
  }
}

@media (max-width: 575px) {
  .yt-widget__card {
    gap: 16px;
   
  }
}

/* ================================================================
    error pages
   ================================================================
*/

.error-page-container {
  max-width: 550px;
  margin-inline: auto;
  margin-block: 50px;
  text-align: center;
  padding: 0 16px;
}

.error-page-icon {
  position: relative;
  height: 120px;
  margin-bottom: 20px;
}

.error-page-icon__weight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--primary-color);
  font-size: 120px;
}

.error-page-icon__error {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-size: 40px;
  z-index: 2;
}

.simple-nav {
  background-color: #fff;
  padding: 10px 50px;
}

@media (max-width: 575px) {

  .error-page-icon {
    height: 80px;
  }

  .error-page-icon__weight {
    font-size: 80px;
  }

  .error-page-icon__error {
    font-size: 30px;
  }
}

/* ================================================================
    MASSAGE SERVICE
   ================================================================ */

.massage-service__img {
  width: 50%;
  float:right;
  margin-left: 15px;
  margin-bottom: 15px;
}

@media (max-width:575px) {
  .massage-service__img {
    float: unset;
    width: 100%;
    margin-left: 0;
  }
}

/* ================================================================
    PAID MEDIA LANDING PAGE
   ================================================================ */

.pml-header {
  background-color: #0033A1;
  background-image: url("/img/pml/bg-hero-image.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 63px;
  padding-bottom: 63px;
  position: relative;
}

  .pml-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0033A1;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
  }

.pml-h1 {
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  font-family: var(--header-font);
}

.pml-header__logo {
  width: 100%;
  max-width: 147px;
}

.pml-header__content {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  font-size: 24px;
}

.pml-header__content-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.pml-mobile-btn {
  display: none;
  background-color: #fff;
  color: #0033a1;
  padding: 8px 16px;
  font-family: var(--header-font);
  font-weight: 900;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
}

.pml-mobile-btn:hover {
  filter: brightness(.85);
}

.pml-header__list {
  padding-left: 20px;
}

.pml-header__list > li {
  padding-left: 10px;
}

.pml-header__list > li::marker {
  font: var(--fa-font-sharp-light);
  content: '\f00c';
}

.pml-form-wrapper {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0px 4px 10px 10px rgba(0, 0, 0, 0.08);
  color: #000;
  width: 100%;
  max-width: 526px;
  position: relative;
  z-index: 2;
  bottom: -275px;
  align-self: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 596px;
}

.pml-form__header {
  max-width: 450px;
  line-height: 1.25;
  margin-bottom: 0;
}

.pml-form__contact {
  font-size: 20px;
  margin-block: 1rem;
}

.pml-form__contact a {
  text-decoration: underline;
  color: #424143;
  font-weight: 700;
}

.pml-input {
  padding: 15px 20px;
  background-color: #EAEAEA;
  border: 0;
  width: 100%;
  font-size: 20px;
  color: #6e6f71;
}

.pml-input:not(:first-of-type) {
  margin-top: 30px;
}

.pml-input::placeholder {
  color: #6e6f71;
}

.pml-input:hover {
  background-color: #E6E6E6;
}

.pml-input:active, .pml-input:focus {
  border: 0;
  outline: 1px solid var(--primary-color);
  background-color: #E6E6E6;
  color: #000;
}

.pml-input--error {
  outline: 1px solid #D10028 !important;
}

.pml-form__error-msg {
  font-size: 16px;
  color: #D10028;
}

.pml-form__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-size: 14px;
  margin-top: 30px;
}

.pml-form--submit {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
}

.pml-form__alert {
  font-size: 18px;
}

.pml-form__alert.alert-danger {
  margin-top: 20px;
}

.pml-subheader {
  background-color: #424143;
  padding-top: 44px;
  padding-bottom: 44px;
  color: #fff;
  margin-bottom: 96px;
}

.pml-subheader__h {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--header-font);
}

.pml-section {
  margin-top: 64px;
  margin-bottom: 64px;
}

.pml-h3, .pml-h2 {
  font-family: var(--header-font);
  font-weight: 900;
}

.pml-h3 {
  color: #424143;
  font-size: 24px;
}

.pml-h2 {
  color: var(--primary-color);
  font-size: 48px;
}

.pml-slider {
  display: flex;
  gap: 24px;
  align-items: stretch;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin-top: 24px;
  padding-bottom: 40px;
  position: relative;
  scrollbar-color: #E6E6E6 transparent;
  scrollbar-width: thin;
}

.pml-slider::-webkit-scrollbar {
  height: 5px;
}

.pml-slider::-webkit-scrollbar-thumb {
  background-color: #ededed;
  border-radius: 10px;
}

.pml-slider:hover::-webkit-scrollbar-thumb {
  background-color: #e6e6e6;
}

.pml-slider:hover::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color);
}

.csm-slider::-webkit-scrollbar-track {
  background: transparent;
}

.pml-slider-wrapper {
  position: relative;
}

.pml-slider-wrapper::before {
  content: '';
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
  z-index: 1;
}

  .pml-slider-wrapper.pml-slider--shadow::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 45px;
    width: 49px;
    background: linear-gradient(270deg, rgba(119, 119, 119, 0.30) 0%, rgba(119, 119, 119, 0.00) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
  }

.pml-slider__slide {
  background-image: url('/img/Background-blue.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 400px;
  width: 100%;
  scroll-snap-align: start;
}

.pml-slide__img {
  width: 100%;
  height: 207px;
  object-fit: cover;
  object-position: center 35%;
}

.pml-slide__content {
  padding: 16px 24px 24px 24px;
  color: #000;
}

.pml-slide__h {
  font-size: 20px;
  font-family: var(--header-font);
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 900;
}

.pml-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.pml-bg-x {
  overflow: hidden;
  position: relative;
}

.pml-bg-x__img {
  content: '';
  position: absolute;
  height: 865px;
  object-fit: contain;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: .25;
  pointer-events: none;
}

.pml-carousel {
  position: relative;
  height: 303px;
}

.pml-carousel__img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 303px;
  width: 100%;
  object-fit: cover;
  transition: all .4s ease;
}

.pml-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  background-color: #424143;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pml-carousel__btn:hover {
  background-color: #000;
}

.pml-carousel__btn.--prev {
  left: 0;
}

.pml-carousel__btn.--next {
  right: 0;
}

.pml-carousel__img.--show {
  opacity: 1;
  visibility: visible;
  transition: all .4s ease;
}

.pml-offer-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 24px 0 24px;
}

.pml-footer {
  background-color: var(--primary-color);
  margin-bottom: -50px;
}

.pml-footer__content {
  display: flex;
  gap: 60px;
  color: #fff;
}

.pml-footer__copy {
  align-self: center;
  font-size: 32px;
}

.pml-footer__img {
  width: 100%;
  max-width: 220px;
  margin-top: 48px;
}

.pml-subheader.--footer {
  margin: 0;
  padding-top: 16px;
  padding-bottom: 16px;
}

.pml-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.pml-form-wrapper.--footer {
  bottom: 0;
  top: -50px;
}

.pml-footer__link {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 1200px) {

  .pml-header {
    padding-top: 40px;
  }

  .pml-h1 {
    font-size: 40px;
  }

  .pml-header__content {
    flex-direction: column;
    font-size:20px;
  }

  .pml-form-wrapper {
    align-self: center;
    bottom: 0;
  }

  .pml-subheader {
    margin-bottom: 0;
    font-size: 16px;
  }

  .pml-subheader__h {
    font-size: 18px;
  }

  .pml-h3 {
    font-size: 18px;
  }

  .pml-h2 {
    font-size: 32px;
  }

  .pml-slide__content {
    font-size: 16px;
  }

  .pml-slide__h {
    font-size: 18px;
  }

  .pml-offers {
    grid-template-columns: auto;
  }

  .pml-bg-x__img {
    right: -400px;
  }

  .pml-offer-info {
    font-size: 16px;
  }

  .pml-footer {
    margin-bottom: 0;
  }

  .pml-footer__copy {
    font-size: 20px;
  }

  .pml-footer__img {
    width: 100%;
    max-width: 250px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .pml-form-wrapper.--footer {
    top: 0;
  }

  .pml-footer__content {
    flex-direction: column;
    padding-top: 64px;
    gap: 45px;
  }

  .pml-footer-container {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .pml-slider__slide {
    min-width: 280px;
  }
}

@media (max-width: 730px) {
  .pml-bg-x__img {
    right: -700px;
  }

  .pml-mobile-btn {
    display: inline-flex;
  }
}

/* ================================================================
    PRICING PAGE
   ================================================================ */
.pricing-cards-section {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
    align-items: stretch;
    justify-content: center;
}
.pricing-card {
    background-color: #fff;
    width: 100%;
    min-width: 320px;
    max-width: 375.72px;
    border: solid 4px #03c;
    display: flex;
    flex-direction: column;
}

.pricing-card:nth-of-type(1) {
    background-color: rgba(255, 255, 255, 0.20);
}
.pricing-card:nth-of-type(2) {
    background-color: #EDF0F2;
}
.pricing-card:nth-of-type(3) {
    background-color: #DFE5E8;
}
.pricing-card:nth-of-type(4) {
    background-color: #D0D9DE;
}
.pricing-card:not(.pricing-card--popular) {
    margin-top: 43px;
}
.pricing-card--popular {
    border: 12px solid var(--primary-color);
}
.pricing-card--popular__header {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    font-family: var(--header-font);
    font-weight: 700;
    padding-bottom: 8px;
    text-align: center;
}
.pricing-card__header {
    text-align: center;
    font-family: var(--header-font);
    color: #424143;
    font-size: 30px;
    font-weight: 700;
    padding: 32px 24px 16px 24px;
}

.pricing-card__header-details {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--body-font);
}

.pricing-card__body {
    padding: 0 24px 24px 24px;
}
.pricing-card__item {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    text-align: left;
    gap: 16px;
    font-size: 18px;
    color: #000;
    padding: 16px 0;
    font-weight: 400;
}

.pricing-card__icon {
  margin-top: .2em;
}

.pricing-card__item-list {
    margin-left: 16px;
}

.pricing-card__cta {
  display: block;
  font-size: 18px;
  margin: 10px auto 0 auto;
}

.pricing-card__footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 32px 24px;
    font-size: 24px;
    font-family: var(--header-font);
    font-weight: 700;
    text-align: center;
    margin-top: auto;
}
.class-packages {
    background: radial-gradient(50% 50% at 50% 50%, #0033A1 0%, #191F2D 100%);
    background-color: #000;
    padding: 32px;
    color: #fff;
}
.class-packages__header {
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    font-family: var(--header-font);
    text-align: center;
}
.class-packages__content {
    display: grid;
    grid-template-columns: 1fr 1.73fr;
    gap: 40px;
    margin-top: 32px;
}
.pricing-card__item.--class-packages {
    color: #fff;
    justify-content: center;
}
.pricing-card__item.--class-packages:not(:last-child) {
    border-bottom: solid 1px #fff;
}
.class-packages__price {
    background-color: var(--primary-color);
    color: #fff;
    padding: 32px;
    text-align: center;
    font-family: var(--header-font);
    font-size: 24px;
    font-weight: 700;
    margin-top: 16px;
}
.class-packages__price-per {
    font-weight: 400;
    font-size: 18px;
}
.class-packages__img {
    height: 100%;
    object-fit: cover;
}
.pricing-disclaimer {
    font-size: 16px;
    font-family: var(--header-font);
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.pricing-cta {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-family: var(--header-font);
    font-weight: 700;
}
.pricing-cta__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
}
.pricing-cta .top-banner-btn {
    padding: 16px 24px;
}

.trial-cta {
  border-radius: 4px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
  gap: 32px;
  text-align: center;
}

.trial-cta__header {
  font-family: var(--header-font);
  font-weight: 900;
  font-size: 32px;
  color: #000;
}

.day-pass-container {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    align-items: start;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.day-pass {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #eeeff7;
    border-radius: 8px;
    border: solid 1px #a4a4aa;
    padding: 20px;
    align-items: start;
    max-width: 450px;
    position: relative;
    color: #656667;
}

    .day-pass:hover, .day-pass:focus-within {
        background-color: #e5e7f6;
        box-shadow: 1px 5px 10px rgba(0,0,0,0.2);
    }

.day-pass__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    color: #000;
}

.day-pass__title {
    font-family: var(--header-font);
    font-size: 24px;
    font-weight: 700;
}

.day-pass__price {
    font-family: var(--header-font);
    font-size: 30px;
    font-weight: 700;
}

.day-pass__cta {
    font-size: 20px;
    padding: 8px 24px;
}

.day-pass__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@media (max-width: 1375px) {
    .pricing-cards-section {
        flex-wrap: wrap;
    }
}

@media (max-width: 1080px) {
    .pricing-card {
        min-width: auto;
        max-width: 400px;
    }
    .pricing-card:not(.pricing-card--popular) {
        margin-top: 0;
    }
    .pricing-card__header {
        font-size: 24px;
    }
    .class-packages__header {
        font-size: 30px;
    }
    .class-packages__content {
        grid-template-columns: auto;
    }
    .pricing-cta {
        font-size: 28px;
    }
    .pricing-cta__container {
        flex-direction: column;
        gap: 16px;
    }

    .trial-cta {
      flex-direction: column;
    }
}

/* 
    gym widgets ADA overrides 9/20/24 ======================================
*/

/* class schedule widget */
.bw-calendar__day {
    font-weight: 700;
}

    .bw-calendar__day.bw-calendar__day--past {
        color: #6e6e6e;
        font-weight: 400;
    }

/* appointment scheduler (services pages) */
div.healcode.appointments.modern-theme-wrapper .ui-datepicker-unselectable .ui-state-default {
    color: #70777f !important;
    font-weight: normal;
}

div.healcode .ui-state-default, div.healcode .ui-widget-content .ui-state-default, div.healcode .ui-widget-header .ui-state-default {
    font-weight: bold;
}

/* chat */
#bowtie-cta #bowtie-cta-bubble #bowtie-cta-title {
    color: #72767e !important;
}


/* Newsletter sign up modal */
#newsletterModal {
    display: grid;
    visibility: hidden;
    width: 100%;
    max-width: 960px;
    grid-template-columns: .68fr 1fr;
    border: 0;
    padding: 0;
    outline: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 400ms ease-in-out, transform 400ms ease-in-out;
}

#newsletterModal[open] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

#newsletterModal::backdrop {
    background: #000;
    opacity: 0.35;
}

.newsletter-modal__img {
    width: 100%;
    max-width: 390px;
    height: 100%;
    object-fit: cover;
}

.newsletter-modal__content {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    min-height: 571px;
}

.newsletter-modal__copy > h2 {
    font-size: 56px;
    font-weight: 700;
    font-family: var(--header-font);
    line-height: 1;
}

.newsletter-modal__close-btn {
    padding: 8px;
    font-size: 24px;
    color: #000;
    position: absolute;
    top: 8px;
    right: 8px;
}

@media (max-width: 575px) {
    #newsletterModal { 
        grid-template-columns: auto;
    }
    
    .newsletter-modal__img {
        display: none;
    }
    
    .newsletter-modal__copy > h2 {
        font-size: 32px;
    }
}