:root {
  --black: #212322;
  --red: #ee212d;
  --white: white;
  --grey: #707372;
  --medium-gray: #949695;
  --blue: #00a3e1;
  --soft-gray: #eaeaea;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--black);
  text-decoration: underline;
}

a:hover {
  color: var(--red);
}

.logo-link {
  flex: 0 auto;
  margin-top: 0;
  transition: opacity .2s;
}

.logo-link:hover {
  opacity: .9;
}

.nav-content {
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  margin-right: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.logo {
  display: inline-block;
}

.nav-container {
  flex-flow: row;
  flex: 0 auto;
  order: 1;
  place-content: stretch center;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  min-height: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 0;
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.nav-container.top-banner {
  background-color: #0000;
  align-items: flex-start;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  display: flex;
}

.navigation {
  z-index: 200;
  background-color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.navigation.pre-header {
  background-color: #f8f8f8;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  display: block;
}

.nav-button-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  min-height: 0%;
  margin-left: 10px;
  padding-right: 0;
  font-family: Pepi, sans-serif;
  font-size: 13px;
  display: flex;
}

.nav {
  align-items: center;
  display: flex;
}

.nav-link {
  color: #212322;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0 12px;
  font-family: Pepi, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: opacity .2s, color .2s;
  display: flex;
}

.nav-link:hover {
  opacity: 1;
  color: #ee212d;
}

.nav-link:focus {
  color: #ee212d;
}

.nav-link.w--current {
  color: var(--red);
  padding-left: 12px;
}

.nav-link.w--current:hover {
  color: #ee212d;
}

.nav-link.w--current:focus {
  color: var(--red);
}

.nav-link.w--current:visited {
  color: var(--red);
  font-weight: 400;
}

.nav-link.cta {
  background-color: var(--red);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: auto;
  align-items: center;
  height: auto;
  min-height: 100%;
  margin: auto -1px auto auto;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  transition: background-color .2s, color .2s;
  display: flex;
  overflow: visible;
  box-shadow: 0 1px 12px #0000000f;
}

.nav-link.cta:hover {
  background-color: var(--black);
  box-shadow: none;
  opacity: 1;
  color: #fff;
}

.nav-link.cta:active {
  background-color: #1c4881;
  box-shadow: 0 0 #0000001a;
}

.nav-link.cta.w--current {
  box-shadow: none;
  color: var(--white);
  transition: none;
}

.nav-link.cta.short {
  letter-spacing: .5px;
  padding-left: 7px;
  padding-right: 7px;
}

.nav-link.tertiary {
  color: #707372;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 400;
}

.nav-link.tertiary:hover {
  opacity: 1;
  color: #ee212d;
}

.nav-link.tertiary.bold {
  color: var(--grey);
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 700;
}

.nav-link.tertiary.bold:hover, .nav-link.tertiary.bold.w--current {
  color: var(--red);
}

.nav-link.tertiary.phone {
  color: #ca1b25;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 700;
}

.nav-link.location {
  color: #212322;
  padding-left: 0;
}

.nav-link.location:hover {
  color: var(--red);
}

.nav-link.hide, .nav-link.dropdown {
  display: none;
}

.nav-link.join-now {
  background-color: var(--black);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: auto;
  align-items: center;
  height: auto;
  min-height: 100%;
  margin: auto -1px auto auto;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
  transition: background-color .2s, color .2s;
  display: none;
  overflow: visible;
  box-shadow: 0 1px 12px #0000000f;
}

.nav-link.join-now:hover {
  background-color: var(--red);
  box-shadow: none;
  opacity: 1;
  color: #fff;
}

.nav-link.join-now:active {
  background-color: #1c4881;
  box-shadow: 0 0 #0000001a;
}

.nav-link.join-now.w--current {
  box-shadow: none;
  color: var(--white);
  transition: none;
}

.nav-link.join-now.hide {
  display: none;
}

.nav-link.get-started {
  background-color: var(--black);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: auto;
  align-items: center;
  height: auto;
  min-height: 100%;
  margin: auto -1px auto auto;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 700;
  transition: background-color .2s, color .2s;
  display: none;
  overflow: visible;
  box-shadow: 0 1px 12px #0000000f;
}

.nav-link.get-started:hover {
  background-color: var(--red);
  box-shadow: none;
  opacity: 1;
  color: #fff;
}

.nav-link.get-started:active {
  background-color: #1c4881;
  box-shadow: 0 0 #0000001a;
}

.nav-link.get-started.w--current {
  box-shadow: none;
  color: var(--white);
  transition: none;
}

.body {
  color: #212322;
  background-color: #212322;
  font-family: Pepi, sans-serif;
}

.logo-mobile {
  display: none;
}

.nav-menu-left {
  flex: 1;
}

.nav-menu-right {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.location-icon {
  color: #212322;
  margin-bottom: 5px;
  padding-right: 5px;
}

.heading {
  color: var(--black);
  letter-spacing: -.5px;
  margin-top: 10px;
  font-family: Pepi, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
}

.heading.area {
  color: var(--white);
  text-transform: uppercase;
  font-family: Pepi, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2em;
}

.heading.secondary {
  text-align: center;
  margin-top: 0;
  font-size: 28px;
  text-decoration: none;
}

.heading.secondary.white {
  color: #fff;
  max-width: 85%;
  display: inline-block;
}

.heading.secondary.white.list {
  max-width: 100%;
}

.heading.terciary {
  color: #212322;
  margin-top: 10px;
  font-size: 34px;
  text-decoration: none;
}

.heading.terciary.white {
  color: #fff;
}

.heading.cta {
  color: #212322;
  text-align: center;
  font-family: Pepi, sans-serif;
  font-size: 48px;
  line-height: 1.2em;
}

.heading.point {
  line-height: 1em;
}

.heading.counter {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 20px;
  font-size: 60px;
  line-height: 60px;
}

.intro-buttons {
  color: var(--black);
  align-items: flex-start;
  display: flex;
}

.intro-buttons.cta {
  justify-content: center;
}

.intro-buttons._1-col.cta {
  justify-content: flex-start;
}

.intro-buttons._1-col.cta.center {
  justify-content: center;
}

.section {
  z-index: 0;
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.section.black {
  color: #2b1e1e;
  background-color: #212322;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 120px;
  font-size: 13px;
  display: flex;
}

.section.black.locations {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.section.black.contact {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.white {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #2b1e1e;
  background-color: #fff;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  height: 100%;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 80px;
  font-size: 13px;
  display: flex;
  position: static;
  inset: 80px 0% 0%;
}

.section.grey {
  background-color: var(--medium-gray);
  color: #2b1e1e;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 120px;
  font-size: 13px;
  display: flex;
}

.section.image-right {
  background-image: url('../images/SS-Gym-Old-Gal.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.image-left {
  background-image: url('../images/SS-Gym-Rack-Training.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.red {
  background-color: var(--red);
  color: #2b1e1e;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 120px;
  font-size: 13px;
  display: flex;
}

.section.blue {
  background-color: var(--blue);
  color: #2b1e1e;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 120px;
  font-size: 13px;
  display: flex;
}

.section.slider {
  color: #212322;
  background-color: #212322;
  height: 80%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 40px;
}

.section.slider.white {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.section.livedata {
  color: #2b1e1e;
  background-color: #fff;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 80px;
  font-size: 13px;
  display: flex;
}

.section.livedata.franchise {
  background-color: var(--blue);
  padding-bottom: 120px;
}

.section.white-reviews {
  color: #2b1e1e;
  background-color: #fff;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 120px;
  font-size: 13px;
  display: flex;
}

.section.calculator {
  background-image: url('../images/SS-Gym-Member-Training.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.soft-grey {
  background-color: var(--soft-gray);
  color: #2b1e1e;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 80px;
  font-size: 13px;
  display: flex;
}

.section.soft-grey.sign-in {
  align-items: center;
  height: auto;
}

.section.dark {
  background-color: var(--black);
  color: #2b1e1e;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 120px;
  font-size: 13px;
  display: flex;
}

.section.red {
  color: #2b1e1e;
  background-color: #ee212d;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 120px;
  font-size: 13px;
  display: flex;
}

.spacer {
  background-color: #0000;
  width: 8px;
  height: 8px;
}

.spacer._16 {
  background-color: #0000;
  width: 16px;
  height: 20px;
}

.spacer._32 {
  width: 32px;
  height: 32px;
}

.spacer._24 {
  background-color: #0000;
  width: 24px;
  height: 24px;
}

.spacer._44 {
  width: 64px;
  height: 44px;
}

.spacer._8 {
  background-color: #0000;
  width: 16px;
  height: 8px;
}

.spacer._10 {
  background-color: #0000;
  width: 16px;
  height: 20px;
}

.spacer._6 {
  background-color: #0000;
  width: 10px;
  height: 20px;
}

.feature-right {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 2fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: center;
  display: grid;
}

.container {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  min-height: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  position: relative;
}

.container.animated {
  flex: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.container.animated-hero-image {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.container.testimonials-slider {
  height: auto;
  padding-left: 0;
  padding-right: 0;
}

.container.scroll-down {
  align-self: center;
  margin-top: 60px;
  display: none;
}

.hero-image-div {
  flex: 0 auto;
  position: relative;
}

.hero-image-div.inverse {
  display: none;
}

.paragraph {
  color: #212322;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Pepi, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
}

.paragraph.hero {
  color: #fff;
  padding-bottom: 0;
}

.paragraph.counter {
  color: #212322;
  text-align: left;
  padding-bottom: 0;
}

.paragraph.secondary {
  text-transform: none;
  padding-bottom: 0;
  font-size: 16px;
}

.paragraph.secondary.center {
  text-align: left;
}

.paragraph.point {
  margin-top: 10px;
}

.paragraph.contact-info {
  text-transform: none;
  padding-bottom: 0;
  font-size: 16px;
  text-decoration: none;
}

.paragraph.opening-info {
  text-transform: none;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.paragraph.caption-regular {
  align-self: center;
  font-size: 14px;
  font-weight: 400;
}

.paragraph.caption-bold {
  font-size: 14px;
  font-weight: 700;
}

.paragraph.white {
  color: var(--white);
}

.text-box {
  z-index: 1;
  width: 100%;
  max-width: 750px;
  position: relative;
}

.text-box._600px {
  max-width: 600px;
}

.text-box.white._600px {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 40px;
  display: grid;
}

.text-box._100 {
  max-width: 100%;
}

.text-box.small {
  flex-direction: column;
  display: flex;
}

.text-box.black._600px {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--soft-gray);
  background-color: var(--black);
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 40px;
  display: grid;
}

.center-image {
  border-radius: 10px;
  margin: auto auto 0;
  display: block;
}

.button {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #000;
  border-style: none;
  border-radius: 0;
  flex: none;
  margin-bottom: 0;
  padding: 20px 30px;
  font-family: Pepi, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  transition: color .2s, box-shadow .2s, background-color .2s;
  box-shadow: 0 4px 8px #00000014;
}

.button:hover {
  background-color: var(--red);
  color: var(--white);
  box-shadow: 0 7px 20px -10px #0003;
}

.button:active {
  box-shadow: none;
  background-color: #1c4881;
}

.button.w--current {
  border-width: 1px;
  border-color: var(--black);
  background-color: var(--black);
  box-shadow: none;
  margin-bottom: 0;
}

.button.w--current:hover {
  color: var(--white);
  background-color: #ee212d;
}

.button.hero {
  box-shadow: none;
  color: #212322;
  background-color: #fff;
  transition: opacity .2s, color .2s, box-shadow .2s, background-color .2s;
}

.button.hero:hover {
  color: #fff;
  background-color: #ee212d;
}

.button.hero.outline {
  border: 1px none var(--white);
  outline-color: var(--white);
  outline-offset: 0px;
  color: var(--white);
  background-color: #0000;
  outline-width: 1px;
  outline-style: solid;
  margin-top: 1px;
  margin-bottom: 0;
  margin-left: 20px;
  padding: 19px 16px;
}

.button.hero.outline.big {
  padding-left: 25px;
  padding-right: 25px;
}

.button.hero-red {
  box-shadow: none;
  color: #fff;
  background-color: #212322;
  margin-bottom: 0;
}

.button.hero-red:hover {
  color: #fff;
  background-color: #ee212d;
}

.button.hero-white {
  box-shadow: none;
  color: #fff;
  background-color: #212322;
}

.button.hero-white:hover {
  color: #212322;
  background-color: #fff;
}

.button.hero-white.w--current {
  background-color: #212322;
}

.button.hero-white.w--current:hover {
  color: #212322;
  background-color: #fff;
}

.button.full-width {
  background-color: var(--red);
  flex: 1;
  margin-bottom: 0;
}

.button.full-width:hover {
  background-color: var(--black);
  color: var(--white);
}

.button.full-width.white {
  background-color: var(--red);
  color: var(--white);
}

.button.full-width.white:hover {
  background-color: var(--white);
  color: var(--black);
}

.button.form {
  background-color: var(--black);
  flex: 1;
}

.button.form:hover {
  background-color: var(--red);
}

.tagline {
  color: #212322;
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Pepi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  display: block;
}

.tagline.hero {
  color: #fff;
  font-weight: 700;
}

.tagline.secondary {
  text-align: center;
  margin-bottom: 0;
  font-weight: 400;
}

.tagline.secondary.left {
  text-align: left;
  position: static;
}

.tagline.white {
  color: #fff;
  justify-content: center;
  display: block;
}

.tagline.counter {
  text-align: left;
  margin-bottom: 20px;
}

.tagline.records {
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}

.tagline.testimonial {
  text-align: center;
}

.tagline.testimonial.white {
  margin-bottom: 12px;
}

.tagline.news {
  color: var(--medium-gray);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-decoration: none;
}

.tagline.cta {
  color: #212322;
  text-align: center;
  font-weight: 700;
}

.tagline.city-gym {
  line-height: 19px;
}

.tagline.white {
  text-transform: none;
}

.div-invert {
  display: none;
}

.slide {
  height: auto;
}

.slider {
  background-color: #0000;
  height: auto;
}

.testimonial-slide {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  background-color: #fff;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: stretch center;
  place-items: center;
  height: 100%;
  display: grid;
}

.testimonial-slide.black {
  color: #0000;
  background-color: #212322;
  align-content: stretch;
  align-items: center;
  height: auto;
}

.slider-testimonial-tags {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  margin-bottom: 20px;
  display: block;
}

.div-black {
  border: .5px solid #212322;
  margin-top: 10px;
  margin-bottom: 10px;
}

.icon-2 {
  color: #000;
}

.icon-2.white {
  color: #fff;
}

.icon-3 {
  color: #000;
}

.icon-3.white {
  color: #fff;
}

.slider-testimonial-buttons {
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
}

.slider-nav {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 10px;
  display: flex;
}

.slider-nav.white {
  align-items: center;
}

.testimonial-image {
  border-radius: 100%;
  margin-bottom: 20px;
}

.mask {
  height: 100%;
}

.left-arrow {
  color: #0000;
}

.testimonial-data {
  color: #000;
  border: 1px solid #000;
  border-radius: 20px;
  margin: 0 5px 10px 0;
  padding: 10px 15px;
  font-family: Pepi, sans-serif;
  line-height: 1.7;
  display: inline-block;
}

.testimonial-data.white {
  color: #fff;
  border-color: #fff;
}

.number-counter {
  color: #000;
  letter-spacing: -.5px;
  margin-top: 10px;
  font-family: Pepi, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
}

.number-counter.counterup {
  color: #212322;
  text-align: left;
  margin-top: 0;
  margin-bottom: 13px;
  font-size: 70px;
  line-height: 96px;
}

.number-counter.counterup.franchise {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  line-height: 60px;
}

.live-data {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 2fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: center;
  display: grid;
}

.live-data.franchise {
  align-items: start;
}

.lifts-data {
  color: #fff;
  background-color: #212322;
  border: 1px #000;
  border-radius: 20px;
  flex: 1;
  justify-content: center;
  margin: 0 5px 10px 0;
  padding: 10px 15px;
  font-family: Pepi, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  display: flex;
}

.leaderboard {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  display: flex;
}

.lifts-tagline {
  color: #212322;
  border: 1px #000;
  border-radius: 20px;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  margin: 0 5px 0 0;
  padding: 0 15px;
  font-family: Pepi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
}

.section-news {
  z-index: 0;
  background-color: #e2e3e3;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.collection-list {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.collection-list-wrapper {
  overflow: visible;
}

.image-cover {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  text-decoration: none;
}

.card-text-container {
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 22px;
  text-decoration: none;
}

.card-thumbnail {
  border-radius: 5px 5px 0 0;
  height: 22vw;
  max-height: 250px;
  text-decoration: none;
  position: relative;
}

.float-card {
  color: #343a3d;
  background-color: #fff;
  border: 1px #edf0f3;
  border-radius: 10px;
  flex-direction: column;
  width: 100%;
  min-width: 50px;
  height: 100%;
  min-height: 50px;
  text-decoration: none;
  transition: transform .2s;
  overflow: hidden;
}

.float-card:hover {
  transform: translate(0, -5px);
}

.div-block-2 {
  text-decoration: none;
}

.feature-cta {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: center;
  display: grid;
}

.footer-link {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-family: Pepi, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4em;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
  display: block;
}

.footer-link:hover {
  opacity: 1;
}

.footer-link.w--current {
  opacity: 1;
  color: var(--red);
  font-weight: 700;
}

.footer-link.secondary {
  color: #585a59;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}

.footer-link.secondary.last, .footer-link.secondary.hide {
  display: none;
}

.footer-link.secondary.copyright {
  cursor: auto;
  margin-right: 0;
}

.footer-link.last {
  margin-right: 0;
}

.column {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  width: 120px;
  min-height: 24px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desk-6 {
  background-color: #0000;
  flex: none;
  align-items: flex-start;
  width: 50%;
}

.column.desk-6.tab-6 {
  align-items: flex-end;
  padding-left: 0;
  padding-right: 20px;
  display: flex;
}

.column.desk-3 {
  background-color: #0000;
  flex: none;
  width: 25%;
}

.social-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 24px 24px 24px 24px;
  grid-auto-columns: 24px;
  justify-content: end;
  place-items: start end;
  width: auto;
  display: grid;
}

.social-link {
  opacity: 1;
  cursor: pointer;
  width: 24px;
  height: 24px;
  transition: opacity .2s;
}

.social-link:hover {
  opacity: .8;
}

.footer-section {
  z-index: 0;
  color: #000;
  background-color: #212322;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.footer-container {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  position: relative;
}

._12-columns {
  flex-flow: wrap;
  place-content: stretch space-between;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

.simple-footer-links {
  text-align: right;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto auto auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: flex-end;
  place-items: center end;
  margin-right: -24px;
  display: flex;
}

.simple-footer-links.center-align {
  justify-content: center;
  margin-right: 0;
}

.div-white {
  border: .5px solid #585a59;
  margin-top: 20px;
  margin-bottom: 20px;
}

.marquee-horizontal {
  z-index: 200;
  background-color: #0000;
  flex: 0 auto;
  justify-content: space-between;
  align-self: center;
  align-items: stretch;
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-loop {
  height: 100%;
}

.track-horizontal {
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.html-embed {
  margin-top: 20px;
}

.top-banner-button {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #212322;
  flex: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding-left: 1vw;
  padding-right: 1vw;
  font-size: 13px;
  display: flex;
}

.top-banner-button.w--current:hover {
  background-color: #212322;
}

.main-container {
  background-color: #0000;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 20px;
  display: flex;
  position: relative;
}

.left {
  margin-bottom: 0;
  position: sticky;
  top: 150px;
}

.left.point {
  margin-bottom: 0;
}

.right {
  flex: 0 auto;
  margin-bottom: 0;
  display: block;
}

.right-card {
  width: 600px;
  margin-bottom: 40px;
  padding: 0;
}

.right-card.bottom {
  margin-bottom: 0;
}

.right-image {
  border-radius: 10px;
  margin: auto auto 20px;
  display: block;
}

.sticky-section {
  background-color: var(--white);
}

.sticky-section.gray {
  background-color: var(--grey);
}

.sticky-section.red {
  background-color: var(--red);
}

.sticky-section.blue {
  background-color: var(--blue);
}

.sticky-section.soft-gray {
  background-color: var(--soft-gray);
}

.sticky-section.black {
  background-color: var(--black);
}

.right-card-two-col {
  grid-column-gap: 16px;
  grid-row-gap: 7px;
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 2fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 600px;
  margin-bottom: 70px;
  padding: 0;
  display: grid;
}

.right-card-two-col.bottom {
  margin-bottom: 0;
}

.right-card-two-col.bulletpoint {
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 3.25fr;
  margin-bottom: 40px;
}

.right-card-two-col.bulletpoint.bottom-box {
  margin-bottom: 0;
}

.numberpoint {
  border: 3px dotted var(--black);
  color: var(--black);
  text-align: center;
  letter-spacing: -.5px;
  border-radius: 50px;
  width: 75px;
  height: 73px;
  margin-top: 0;
  margin-left: auto;
  margin-right: 0;
  padding-top: 10px;
  padding-left: 0;
  font-family: Pepi, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
}

.video-modal-a {
  z-index: 99999;
  background-color: #212322f2;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.pop-up-video {
  background-color: #000;
  border-radius: 0;
  align-self: auto;
  width: 70%;
  min-width: 0%;
  padding-top: 0;
  position: relative;
}

.youtube {
  padding-bottom: 0;
}

.button-close {
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  border-radius: 40px;
  padding: 12px 12px 7px;
  font-size: 22px;
  display: none;
  position: absolute;
  inset: -10% -5% auto auto;
}

.text-field {
  border-radius: 5px;
}

.form {
  display: block;
}

.age-field, .sex-field {
  flex: 1;
}

.calculator-fields {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.form-block {
  width: 100%;
  margin-bottom: 0;
}

.gym-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 2fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: center;
  display: grid;
}

.gym-details {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0000;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 0;
  text-decoration: none;
  display: block;
}

.list-image {
  background-image: url('../images/SS-Gym-Facility.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px #000;
  border-radius: 5px;
}

.list-image.custom {
  height: 200px;
}

.list-image.custom.forth-worth {
  background-image: url('../images/SS_Fort_Worth_1SS_Forth_Worth.webp');
}

.list-image.plano {
  background-image: url('../images/SS-Gyms-no-table.webp');
}

.list-image.dallas {
  background-image: url('../images/SS-Gym-Equipment-Line-1.webp');
}

.coming-soon-gym-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: center;
  display: grid;
}

.feature-form {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 2fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  display: grid;
}

.name-field {
  color: var(--black);
  border-radius: 5px;
  width: 100%;
}

.email-field {
  border-radius: 5px;
}

.point-icon {
  height: 32px;
}

.div-gray {
  border: .5px solid #70737236;
  margin-top: 10px;
  margin-bottom: 10px;
}

.feature-plans {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: space-between;
  align-items: start;
  margin-top: 40px;
  display: flex;
}

.rich-text-block {
  color: var(--black);
  border-radius: 0;
  font-family: Pepi, sans-serif;
}

.blog-spacer {
  background-color: #0000;
  width: 8px;
  height: 8px;
}

.blog-spacer._32 {
  width: 32px;
  height: 32px;
}

.category {
  color: var(--medium-gray);
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 0;
  font-family: Pepi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  display: block;
}

.filters-wrapper {
  z-index: 9999;
  justify-content: flex-start;
  margin-bottom: 60px;
  display: flex;
  position: sticky;
  top: 100px;
}

.sort-button {
  border: .5px solid var(--soft-gray);
  background-color: var(--white);
  box-shadow: none;
  color: var(--black);
  letter-spacing: 1px;
  border-radius: 20px;
  flex: 0 auto;
  margin-right: 5px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.sort-button:hover {
  border-color: var(--black);
  background-color: var(--black);
  color: var(--white);
}

.news-name {
  color: var(--black);
  letter-spacing: -.5px;
  margin-top: 10px;
  font-family: Pepi, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
}

.link {
  text-decoration: none;
}

.link.red {
  text-decoration: underline;
}

.link.red:hover {
  color: var(--white);
}

.link.black {
  color: var(--white);
  text-decoration: underline;
}

.link.black:hover {
  color: var(--red);
}

.feature-sign-in {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 2fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: stretch;
  display: grid;
}

.gym-box {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 40px;
  display: grid;
}

.gym-box.coming-soon {
  background-color: var(--soft-gray);
  grid-template-columns: 1fr;
}

.gym-box.soft-gray {
  background-color: var(--soft-gray);
}

.details-button {
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.phone-field, .message-field {
  border-radius: 5px;
}

.youtube-videos {
  background-image: none;
  background-size: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.question {
  color: #343a3d;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.question-container {
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #edf0f3;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 15px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.question-container.soft-gray {
  border-bottom-color: #d8d5d5;
}

.answer {
  color: #4c5458;
  padding-right: 40px;
  display: block;
  overflow: hidden;
}

.questions-section {
  text-align: left;
  width: 600px;
  margin-bottom: 36px;
}

.question-arrow-icon {
  color: var(--black);
  margin-top: 4px;
}

.faq-container {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  min-height: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
}

.scroll-down {
  align-self: center;
}

.testimonial-picture {
  border-radius: 10px;
  max-width: 400px;
  margin: auto;
  display: block;
}

.success-message {
  background-color: var(--white);
}

.bold-text, .bold-text-2 {
  color: var(--black);
}

.bold-text-3, .bold-text-4 {
  color: var(--white);
}

.live-data-black {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: flex;
}

.data-box {
  margin-bottom: 60px;
}

.data-box.bottom {
  margin-bottom: 10px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.small-button-container {
  margin-left: 0;
}

.small-button {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #212322;
  border-style: none;
  border-radius: 0;
  flex: none;
  margin-bottom: 0;
  margin-left: 0;
  padding: 10px 40px;
  font-family: Pepi, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  transition: color .2s, box-shadow .2s, background-color .2s;
  box-shadow: 0 4px 8px #00000014;
}

.small-button:hover {
  background-color: var(--red);
  color: var(--white);
  box-shadow: 0 7px 20px -10px #0003;
}

.small-button:active {
  box-shadow: none;
  background-color: #1c4881;
}

.small-button.w--current {
  box-shadow: none;
  background-color: #212322;
  border-width: 1px;
  border-color: #212322;
  margin-bottom: 0;
}

.small-button.w--current:hover {
  color: #fff;
  background-color: #ee212d;
}

.small-button.big {
  padding-left: 20px;
  padding-right: 20px;
}

.city-link {
  text-decoration: none;
}

.details-box {
  background-color: var(--white);
  border-radius: 10px;
}

.details-box:hover {
  transform: translate(0, -5px);
}

.map-box {
  padding: 0 40px 40px;
}

.embed-map {
  height: 400px;
}

.email-field-2 {
  border-radius: 5px;
  overflow: visible;
}

.button-3 {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #000;
  border-style: none;
  border-radius: 0;
  flex: none;
  margin-bottom: 0;
  padding: 20px 30px;
  font-family: Pepi, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  transition: color .2s, box-shadow .2s, background-color .2s;
  box-shadow: 0 4px 8px #00000014;
}

.button-3:hover {
  color: #fff;
  background-color: #ee212d;
  box-shadow: 0 7px 20px -10px #0003;
}

.button-3:active {
  box-shadow: none;
  background-color: #1c4881;
}

.button-3.w--current {
  box-shadow: none;
  background-color: #212322;
  border-width: 1px;
  border-color: #212322;
  margin-bottom: 0;
}

.button-3.w--current:hover {
  color: #fff;
  background-color: #ee212d;
}

.button-3.form {
  background-color: #212322;
}

.name-field-2 {
  border-radius: 5px;
}

.paragraph-2 {
  color: #212322;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Pepi, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
}

.paragraph-2.secondary {
  text-transform: none;
  padding-bottom: 0;
  font-size: 16px;
}

@media screen and (min-width: 1280px) {
  .nav-content {
    justify-content: flex-end;
  }

  .nav-container {
    padding-left: 20px;
  }

  .nav-container.pre-header {
    background-color: #fafafa;
  }

  .nav-container.top-banner {
    background-color: #212322;
    flex: 1;
    max-width: 100%;
  }

  .nav-link {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-link.cta {
    font-size: 13px;
  }

  .nav-link.tertiary {
    color: #707372;
  }

  .nav-link.location {
    padding-left: 0;
  }

  .nav-link.join-now, .nav-link.get-started {
    font-size: 13px;
  }

  .body {
    background-color: var(--black);
  }

  .center-image {
    margin-bottom: 0;
  }

  .right-image {
    margin-bottom: 20px;
  }

  .sticky-section {
    background-color: var(--white);
  }

  .sticky-section.gray {
    background-color: var(--grey);
  }

  .right-card-two-col {
    grid-template-columns: .25fr 2fr;
  }

  .numberpoint {
    border: 3px dotted var(--black);
    color: var(--black);
    text-align: center;
    background-color: #0000;
    border-radius: 50px;
    width: auto;
    margin-top: 0;
    margin-left: -7px;
    padding-top: 10px;
    padding-bottom: 0;
    padding-left: 0;
    line-height: 57px;
    display: block;
  }

  .gym-details {
    background-color: #0000;
    border-radius: 10px;
    padding: 0;
  }

  .link:hover {
    color: var(--red);
  }

  .gym-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    transition: transform .3s;
  }

  .gym-box:hover {
    transform: translate(0, -5px);
  }

  .testimonial-picture {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 991px) {
  .logo-link {
    text-align: center;
    flex: 1;
    width: 150px;
    display: block;
  }

  .nav-content {
    background-color: #fafafa;
    flex: 0 auto;
    width: 100vw;
    height: 80vh;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    position: absolute;
    box-shadow: 0 3px 3px #01080b1a;
  }

  .nav-container {
    padding-left: 30px;
    padding-right: 0;
  }

  .nav-container.pre-header, .nav-container.top-banner {
    bottom: 0;
  }

  .dropdown {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .navigation {
    background-color: #fff;
  }

  .nav-button-container {
    background-color: #ebebeb;
    display: flex;
  }

  .nav {
    text-align: center;
    background-color: #0000;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: auto;
    margin-top: 4vw;
    padding-left: 0;
    display: block;
  }

  .nav-link {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px 0;
    font-size: 16px;
    display: block;
  }

  .nav-link.cta {
    margin-right: auto;
  }

  .nav-link.tertiary {
    flex-direction: row;
    flex: none;
    align-items: center;
    padding: 0 15px;
    font-size: 12px;
  }

  .nav-link.location {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    font-size: 12px;
  }

  .nav-link.hide {
    display: flex;
  }

  .nav-link.dropdown {
    color: #fff;
    background-color: #212322;
    justify-content: center;
    width: auto;
    margin: 20px 20px 40px;
    display: flex;
  }

  .nav-link.join-now, .nav-link.get-started {
    margin-right: auto;
  }

  .logo-mobile {
    display: none;
  }

  .menu-button {
    color: #000;
    background-color: #0000;
    flex: 0 auto;
    align-self: center;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 20px;
    font-size: 30px;
  }

  .menu-button.w--open {
    background-color: #0000;
    align-self: center;
  }

  .nav-menu-right {
    flex-direction: row;
    flex: none;
    order: 0;
    align-self: auto;
    height: 100%;
    display: flex;
    position: relative;
  }

  .location-icon {
    margin-bottom: 5px;
  }

  .heading {
    text-align: center;
  }

  .intro-buttons, .intro-buttons._1-col.cta {
    justify-content: center;
  }

  .section.black {
    padding-top: 20px;
  }

  .section.black.locations {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.white, .section.grey, .section.red {
    padding-top: 20px;
  }

  .section.blue {
    padding-top: 70px;
  }

  .section.livedata {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.white-reviews {
    padding-top: 20px;
  }

  .section.soft-grey {
    padding-top: 120px;
  }

  .section.soft-grey.sign-in {
    height: auto;
  }

  .section.dark {
    padding-top: 70px;
  }

  .section.red {
    padding-top: 20px;
  }

  .spacer._16 {
    display: block;
  }

  .spacer._8 {
    height: 10px;
  }

  .spacer._10, .spacer._6 {
    display: flex;
  }

  .feature-right {
    text-align: center;
    order: 1;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container.animated {
    flex: 1;
  }

  .container.scroll-down {
    display: flex;
  }

  .hero-image-div.inverse {
    display: block;
  }

  .hero-image-div.desktop {
    display: none;
  }

  .paragraph {
    text-align: center;
    padding-bottom: 10px;
  }

  .paragraph.secondary {
    text-align: left;
  }

  .paragraph.secondary.white.center, .paragraph.secondary.center {
    text-align: center;
  }

  .paragraph.contact-info, .paragraph.opening-info {
    text-align: left;
    line-height: 1em;
  }

  .text-box._600px {
    max-width: 100%;
  }

  .text-box._100 {
    max-width: 80%;
  }

  .button {
    box-shadow: none;
    position: relative;
  }

  .button.form {
    width: 100%;
  }

  .tagline, .tagline.secondary.left {
    text-align: center;
  }

  .tagline.city-gym {
    text-align: left;
  }

  .testimonial-slide {
    text-align: center;
    order: 1;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .slider-testimonial-tags, .slider-testimonial-buttons {
    justify-content: center;
  }

  .testimonial-data.white {
    margin-left: 3px;
  }

  .live-data {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    order: 1;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .leaderboard {
    justify-content: center;
  }

  .collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .feature-cta {
    text-align: center;
    order: 1;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .logo-white {
    display: block;
  }

  .column {
    width: 50%;
  }

  .column.desk-6 {
    flex-wrap: nowrap;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 30px;
    margin-bottom: 40px;
  }

  .column.desk-6.tab-6 {
    align-items: center;
    width: 50%;
  }

  .column.desk-3 {
    flex-wrap: nowrap;
  }

  .footer-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  .simple-footer-links.center-align {
    flex-direction: column;
  }

  .hamburger-icon {
    width: 100%;
  }

  .main-container {
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 30px;
    position: static;
  }

  .left {
    margin-bottom: 40px;
    position: static;
  }

  .right {
    align-self: center;
    display: block;
  }

  .right-card {
    width: auto;
    margin-bottom: 40px;
  }

  .right-image {
    margin-bottom: 20px;
  }

  .right-card-two-col {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-bottom: 40px;
    display: flex;
  }

  .numberpoint {
    text-align: center;
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 70px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .field-label {
    text-align: left;
  }

  .gym-list, .coming-soon-gym-list {
    text-align: center;
    order: 1;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .feature-form, .feature-plans {
    text-align: center;
    order: 1;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .mobile-menu-items {
    width: 100vw;
    height: auto;
    position: absolute;
  }

  .category, .news-name {
    text-align: center;
  }

  .feature-sign-in {
    text-align: center;
    order: 1;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .details-button {
    justify-content: flex-start;
  }

  .faq-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .small-button-container {
    margin-left: 0;
  }

  .small-button {
    box-shadow: none;
    display: block;
    position: relative;
  }

  .button-3 {
    box-shadow: none;
    position: relative;
  }

  .paragraph-2 {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .logo-link {
    margin-top: 0;
    margin-right: 20px;
  }

  .dropdown, .nav-button-container {
    display: flex;
  }

  .nav-link.cta {
    align-self: auto;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .nav-link.location {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-link.join-now {
    align-self: auto;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: none;
  }

  .nav-link.get-started {
    align-self: auto;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .logo-mobile {
    display: none;
  }

  .heading.area, .heading.cta {
    font-size: 38px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.white {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .section.soft-grey {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .section.soft-grey.sign-in {
    height: auto;
  }

  .spacer {
    height: 32px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-image-div {
    margin-top: 0;
    margin-bottom: 0;
  }

  .paragraph {
    font-size: 15px;
  }

  .button {
    box-shadow: none;
  }

  .section-news {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .collection-list {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .card-thumbnail {
    height: 30vw;
  }

  .column.desk-6.tab-6, .column.desk-3 {
    width: 100%;
  }

  .social-grid {
    justify-content: center;
    justify-items: center;
  }

  .footer-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  .simple-footer-links {
    justify-content: center;
    display: flex;
  }

  .blog-spacer {
    height: 32px;
  }

  .faq-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .small-button, .button-3 {
    box-shadow: none;
  }

  .paragraph-2 {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  .logo-link {
    margin-right: 0;
  }

  .logo-link.w--current {
    padding-bottom: 0;
  }

  .nav-content {
    height: 80vh;
  }

  .logo {
    display: block;
  }

  .nav-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-container.pre-header {
    padding-left: 7px;
    padding-right: 10px;
  }

  .nav-container.top-banner {
    height: 35px;
  }

  .navigation {
    height: 66px;
  }

  .navigation.pre-header {
    background-color: #f8f8f8;
    height: 32px;
  }

  .nav-button-container {
    margin-left: 10px;
    display: flex;
  }

  .nav-link {
    padding-top: 12px;
    padding-bottom: 15px;
    padding-left: 0;
    font-size: 13px;
  }

  .nav-link.w--current {
    padding-left: 0;
  }

  .nav-link.cta {
    letter-spacing: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 10px;
    font-size: 11px;
    display: flex;
  }

  .nav-link.cta:active {
    background-color: #ee212d;
  }

  .nav-link.cta.w--current {
    box-shadow: none;
    color: var(--white);
    transition: none;
  }

  .nav-link.tertiary {
    letter-spacing: .5px;
    flex: none;
    align-self: auto;
    align-items: center;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 11px;
    display: flex;
  }

  .nav-link.tertiary.bold {
    color: var(--grey);
    letter-spacing: .5px;
    padding-left: 7px;
    padding-right: 0;
  }

  .nav-link.tertiary.phone {
    letter-spacing: .5px;
    padding-left: 7px;
    padding-right: 7px;
    font-weight: 700;
  }

  .nav-link.location {
    text-align: left;
    letter-spacing: .5px;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 11px;
  }

  .nav-link.hide {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 13px;
    display: flex;
  }

  .nav-link.dropdown {
    color: #fff;
    background-color: #212322;
    margin: 0 20px 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 13px;
  }

  .nav-link.dropdown:hover {
    opacity: 1;
    background-color: #ee212d;
  }

  .nav-link.join-now {
    letter-spacing: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 10px;
    font-size: 11px;
    display: none;
  }

  .nav-link.join-now:active {
    background-color: #ee212d;
  }

  .nav-link.join-now.w--current {
    box-shadow: none;
    color: var(--white);
    transition: none;
  }

  .nav-link.get-started {
    letter-spacing: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 10px;
    font-size: 11px;
    display: none;
  }

  .nav-link.get-started:active {
    background-color: #ee212d;
  }

  .nav-link.get-started.w--current {
    box-shadow: none;
    color: var(--white);
    transition: none;
  }

  .logo-mobile {
    max-width: 100%;
    margin-right: 0;
    display: none;
  }

  .menu-button {
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-menu-right {
    align-items: center;
  }

  .location-icon {
    padding-right: 3px;
  }

  .heading {
    text-align: center;
    margin-top: 10px;
    font-size: 26px;
  }

  .heading.area {
    margin-top: 10px;
    font-size: 8vw;
  }

  .heading.secondary {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
  }

  .heading.secondary.white {
    max-width: 95%;
  }

  .heading.secondary.faq {
    text-align: left;
  }

  .heading.terciary {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 24px;
  }

  .heading.cta {
    margin-top: 10px;
    font-size: 26px;
  }

  .heading.counter {
    text-align: left;
    align-self: auto;
    margin-left: 10px;
    font-size: 36px;
    line-height: 40px;
  }

  .intro-buttons {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    display: grid;
  }

  .intro-buttons._1-col {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-left: 25%;
    padding-right: 25%;
  }

  .intro-buttons._1-col.cta {
    padding-left: 15%;
    padding-right: 15%;
  }

  .section.black {
    background-color: #212322;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 90vh;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 0;
    display: flex;
  }

  .section.black.locations {
    flex-direction: row;
    justify-content: center;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section.black.contact {
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.white {
    background-color: #fff;
    flex-direction: row;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .section.grey {
    background-color: var(--medium-gray);
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.image-right {
    background-position: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.image-left {
    background-position: 40%;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.blue {
    background-color: #00a3e1;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.slider {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: auto;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 100px;
    padding-bottom: 40px;
    display: flex;
  }

  .section.livedata, .section.white-reviews {
    background-color: #fff;
    flex-direction: row;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.calculator {
    background-position: 70%;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.soft-grey {
    background-color: #eaeaea;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .section.soft-grey.sign-in {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.dark {
    background-color: var(--black);
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.red {
    background-color: #ee212d;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .spacer {
    display: none;
  }

  .spacer._16 {
    height: 16px;
    display: block;
  }

  .spacer._16.point {
    display: none;
  }

  .spacer._32 {
    display: block;
  }

  .spacer._8 {
    width: 5px;
    height: 7px;
  }

  .spacer._10 {
    width: 10px;
    height: 10px;
    display: block;
  }

  .spacer._6 {
    width: 6px;
    height: 10px;
    display: block;
  }

  .feature-right {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container.animated {
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    height: auto;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container.testimonials-slider {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    height: 100%;
    min-height: 0;
    margin-bottom: 0;
    display: flex;
  }

  .container.scroll-down {
    flex-wrap: nowrap;
    flex: 0 auto;
    justify-content: flex-start;
    margin-top: 5%;
    margin-bottom: 0%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: sticky;
    top: 83vh;
    bottom: auto;
  }

  .hero-image-div, .hero-image-div.inverse {
    display: block;
  }

  .hero-image-div.desktop {
    display: none;
  }

  .paragraph {
    letter-spacing: -.5px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .paragraph.hero {
    letter-spacing: -.5px;
    font-size: 4vw;
  }

  .paragraph.counter {
    text-align: center;
  }

  .paragraph.secondary {
    text-align: left;
    font-size: 14px;
    line-height: 1.5em;
  }

  .paragraph.secondary.center {
    text-align: center;
  }

  .paragraph.point {
    margin-top: 0;
    padding-bottom: 0;
  }

  .paragraph.contact-info {
    text-align: left;
    font-size: 3.8vw;
    line-height: 16px;
  }

  .paragraph.opening-info {
    text-align: left;
    font-size: 14px;
    line-height: 16px;
  }

  .paragraph.caption-regular {
    font-size: 13px;
  }

  .paragraph.blog {
    text-align: left;
    padding-bottom: 0;
  }

  .paragraph.blog.center {
    text-align: center;
  }

  .text-box._600px {
    max-width: 100%;
  }

  .text-box.white._600px {
    padding: 30px 20px;
  }

  .text-box._100 {
    max-width: 85%;
  }

  .text-box.black._600px {
    padding: 30px 20px;
  }

  .center-image {
    border-radius: 5px;
  }

  .button {
    margin-bottom: 0;
    padding: 15px 20px;
  }

  .button.w--current {
    border-width: 1px;
    border-color: #0000;
  }

  .button.hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button.hero.outline {
    margin-left: 0;
    padding: 14px 0;
  }

  .button.hero.outline.big {
    padding-left: 0;
    padding-right: 0;
  }

  .button.full-width {
    width: 100%;
  }

  .button.form {
    background-color: var(--black);
    width: 100%;
  }

  .tagline {
    text-align: center;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .tagline.hero {
    font-weight: 700;
  }

  .tagline.counter {
    text-align: center;
    margin-bottom: 10px;
  }

  .tagline.records {
    font-size: 12px;
  }

  .tagline.news {
    text-align: center;
  }

  .tagline.cta {
    font-weight: 700;
  }

  .tagline.city-gym {
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-size: 3.7vw;
    line-height: 5vw;
  }

  .slider {
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    align-items: stretch;
    height: 100%;
    display: flex;
  }

  .testimonial-slide {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    height: 100%;
  }

  .testimonial-slide.black {
    align-content: stretch;
    align-items: center;
  }

  .slider-testimonial-tags {
    flex-direction: row;
  }

  .div-black {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .icon-2 {
    margin: auto 5px;
    font-size: 20px;
    inset: 0% auto 0% 0%;
  }

  .icon-3 {
    margin: auto 5px;
    font-size: 20px;
    inset: 0% 0% 0% auto;
  }

  .icon-3.white {
    font-size: 24px;
  }

  .slider-testimonial-buttons {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 0;
    padding-left: 20%;
    padding-right: 20%;
    display: grid;
  }

  .slider-nav {
    flex-direction: row;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 10px;
    font-size: 7px;
    display: block;
    inset: auto 0% 0%;
  }

  .slider-nav.white {
    flex-direction: row;
    align-items: flex-end;
    margin-top: 0;
    margin-bottom: auto;
    padding-top: 0;
    display: flex;
    position: static;
    inset: auto 0%;
  }

  .mask {
    height: auto;
  }

  .testimonial-data {
    margin: 0 3px 6px;
    font-size: 12px;
  }

  .testimonial-data.white {
    margin-top: 0;
    margin-bottom: 6px;
    margin-left: 3px;
    padding: 6px 14px 5px;
    font-size: 12px;
  }

  .number-counter {
    margin-top: 10px;
    font-size: 26px;
  }

  .number-counter.counterup {
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 40px;
  }

  .number-counter.counterup.franchise {
    font-size: 36px;
    line-height: 40px;
  }

  .live-data {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .lifts-data {
    flex-direction: row;
    flex: 1;
    justify-content: center;
    margin: 0 0 6px;
    padding: 10px 5px;
    font-size: 12px;
  }

  .leaderboard {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: row;
    justify-content: space-between;
  }

  .div-block {
    display: none;
  }

  .lifts-tagline {
    flex-direction: row;
    flex: 1;
    justify-content: center;
    margin: 0 3px 0 0;
    padding: 5px 5px 0;
    font-size: 14px;
  }

  .section-news {
    padding-top: 70px;
    padding-bottom: 100px;
  }

  .collection-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .card-text-container {
    padding: 15px 15px 10px;
  }

  .card-thumbnail {
    height: 50vw;
  }

  .float-card {
    border-radius: 5px;
  }

  .feature-cta {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .footer-link {
    margin-right: 0;
  }

  .footer-link.secondary.copyright {
    text-align: center;
    font-size: 12px;
  }

  .logo-white {
    text-align: center;
    width: 100%;
    max-width: none;
  }

  .logo-white.mobile {
    margin-bottom: 16px;
  }

  .column {
    margin-bottom: 0;
  }

  .column.desk-6 {
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 30px;
    margin-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .column.desk-6.tab-6 {
    justify-content: center;
    align-self: stretch;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .column.desk-3 {
    align-items: center;
  }

  .social-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .footer-section {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 40px 10px;
    display: block;
  }

  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .simple-footer-links.center-align {
    flex-direction: column;
    margin-right: 0;
  }

  .div-white {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .marquee-horizontal {
    align-items: center;
    height: 35px;
  }

  .track-horizontal {
    align-self: center;
    height: 100%;
  }

  .top-banner-button {
    letter-spacing: 1px;
    height: 40px;
    padding-left: 2vw;
    padding-right: 2vw;
    font-size: 11px;
  }

  .top-banner-button.w--current {
    height: 35px;
  }

  .main-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .main-container.blog {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .left.point {
    margin-bottom: 20px;
  }

  .right, .right-card.bottom {
    margin-bottom: 0;
  }

  .right-image {
    border-radius: 5px;
  }

  .right-card-two-col {
    margin-bottom: 40px;
  }

  .right-card-two-col.bottom {
    margin-bottom: 0;
  }

  .right-card-two-col.bulletpoint {
    margin-bottom: 40px;
  }

  .numberpoint {
    border-radius: 50px;
    width: 75px;
    height: 75px;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 48px;
    line-height: 1.2em;
  }

  .video-modal-a {
    display: none;
  }

  .pop-up-video {
    width: 95%;
  }

  .button-close {
    padding: 7px 8px 2px;
    font-size: 18px;
    inset: -20% 0% auto auto;
  }

  .field-label {
    text-align: left;
  }

  .form-block {
    width: 100%;
  }

  .gym-list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-auto-flow: row;
    justify-items: stretch;
  }

  .gym-details {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    border-radius: 5px;
    grid-template-columns: 1.25fr 1fr;
    padding: 0;
  }

  .gym-details:hover {
    transform: none;
  }

  .list-image.custom.forth-worth {
    height: auto;
  }

  .coming-soon-gym-list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-auto-flow: row;
    justify-items: stretch;
  }

  .feature-form {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .div-gray {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .feature-plans {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 40px;
    display: grid;
  }

  .mobile-menu-items {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    height: auto;
    display: grid;
  }

  .blog-spacer {
    display: none;
  }

  .blog-spacer._32 {
    display: block;
  }

  .category {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 0;
    font-size: 14px;
  }

  .filters-wrapper {
    z-index: 9999;
    justify-content: space-around;
    margin-bottom: 50px;
    position: sticky;
    top: 87px;
  }

  .sort-button {
    box-shadow: none;
    text-align: center;
    border-style: solid;
    border-width: .7px;
    flex: 1;
    margin-left: 2px;
    margin-right: 2px;
    padding-top: 13px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.7em;
  }

  .news-name {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .link {
    font-size: 3.7vw;
    line-height: 4.2vw;
  }

  .feature-sign-in {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .gym-box {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    grid-template-columns: 1fr .75fr;
    padding: 16px;
  }

  .details-button {
    flex-direction: row;
    justify-content: flex-start;
  }

  .question-container.soft-gray {
    flex-wrap: nowrap;
  }

  .answer {
    padding-left: 0;
  }

  .questions-section {
    width: auto;
    max-width: 100%;
  }

  .question-arrow-icon {
    margin-left: 16px;
  }

  .faq-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-picture {
    border-radius: 5px;
    max-width: 80%;
    margin-bottom: 20px;
  }

  .right-arrow {
    position: absolute;
  }

  .live-data-black {
    justify-content: center;
  }

  .small-button {
    letter-spacing: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding: 8px 10px;
    font-size: 3vw;
  }

  .small-button.w--current {
    border-width: 1px;
    border-color: #0000;
  }

  .small-button.big {
    padding-left: 8px;
    padding-right: 8px;
  }

  .details-box:hover {
    transform: none;
  }

  .map-box {
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .embed-map {
    height: 250px;
  }

  .button-3 {
    margin-bottom: 0;
    padding: 15px 20px;
  }

  .button-3.w--current {
    border-width: 1px;
    border-color: #0000;
  }

  .button-3.form {
    background-color: #212322;
    width: 100%;
  }

  .field-label-2 {
    text-align: left;
  }

  .paragraph-2 {
    letter-spacing: -.5px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .paragraph-2.secondary {
    text-align: left;
    font-size: 14px;
    line-height: 1.5em;
  }
}

#w-node-_8930cf76-0a5f-2a66-c372-21c46a8656de-8c81454c, #w-node-_51e07f1c-6a5f-0c61-10e8-37a1ecd8e557-8c81454c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cd47684e-57e0-be09-d38c-ef585adf36fb-8c81454c {
  align-self: stretch;
}

#w-node-cd47684e-57e0-be09-d38c-ef585adf370f-8c81454c, #w-node-_99c99ba8-832c-d0cb-0315-3674555c519a-56a00ea8, #w-node-c7572b11-c832-2215-3699-723e76218a45-76218a26 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1280px) {
  #w-node-_8930cf76-0a5f-2a66-c372-21c46a8656de-8c81454c, #w-node-_51e07f1c-6a5f-0c61-10e8-37a1ecd8e557-8c81454c, #w-node-cd47684e-57e0-be09-d38c-ef585adf370f-8c81454c {
    align-self: auto;
  }
}


@font-face {
  font-family: 'Pepi';
  src: url('../fonts/Pepi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pepi';
  src: url('../fonts/Pepi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}