.club-landing {
  background-color: #F9FAFB;
}
@media screen and (max-width: 992px) {
  .club-landing {
    gap: 24px;
  }
}

.club-hero {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  background-color: white;
  max-width: 1100px;
  padding: 0px 24px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .club-hero {
    flex-direction: column;
    padding-bottom: 24px;
  }
}
.club-hero .left-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
}
.club-hero .price-info {
  color: var(--Text-Primary, #111928);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}
.club-hero .subtitle {
  color: var(--Text-Primary, #111928);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.club-hero .book-now-btn {
  width: 100%;
  max-width: 200px;
  padding: 12px;
  text-align: center;
  padding: 12px;
  color: white;
  border-radius: 8px;
  background: #166447;
  border-width: 0px;
}
@media screen and (max-width: 576px) {
  .club-hero .book-now-btn {
    max-width: 100%;
  }
}
.club-hero .hero-image-container {
  width: 372px;
  max-height: 264px;
  aspect-ratio: 31/22;
  border-radius: 8px;
  background-image: url("/static/hero-img/club_hero_image.png"), url("/hero-img/club_hero_image.png");
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 992px) {
  .club-hero .hero-image-container {
    width: 100%;
  }
}

.club-benefits {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  background-color: white;
  max-width: 1100px;
  padding: 0px 24px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 80px;
  gap: 40px;
}
@media screen and (max-width: 1400px) {
  .club-benefits {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 992px) {
  .club-benefits {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
  }
}
.club-benefits .benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--Border, #E5E7EB);
  background: #FFF;
  align-self: stretch;
}
@media screen and (min-width: 1400px) {
  .club-benefits .benefit-card {
    flex: 1 0 0;
  }
}
@media screen and (max-width: 1400px) and (min-width: 992px) {
  .club-benefits .benefit-card {
    width: calc(50% - 40px);
  }
}
.club-benefits .benefit-card .benefit-text h3 {
  color: var(--Text-Primary, #111928);
  text-align: start;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  margin: 0px;
  padding: 0px;
  margin-bottom: 8px;
}
.club-benefits .benefit-card .benefit-text p {
  color: var(--Text-Primary, #111928);
  text-align: start;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 0px;
  padding: 0px;
}

.club-why {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0px;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  .club-why {
    gap: 24px;
    padding: 32px 16px;
    align-items: center;
  }
}
.club-why .title {
  color: var(--Text-Primary, #111928);
  text-align: center;
  margin: 0px;
  padding: 0px;
}
.club-why .why-card-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .club-why .why-card-container {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}
.club-why .why-card-container .why-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
}
.club-why .why-card-container .why-card .why-icon {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--Button-CTA-Hover, #D0EDE2);
}
.club-why .why-card-container .why-card .why-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.club-why .why-card-container .why-card .why-content h3 {
  color: var(--Text-Primary, #111928);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 0px;
  padding: 0px;
}
.club-why .why-card-container .why-card .why-content p {
  color: var(--Text-Primary, #111928);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0px;
  padding: 0px;
}
.club-why .sign-up-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .club-why .sign-up-container {
    width: 100%;
  }
}
.club-why .sign-up-container .sign-up-btn {
  color: white;
  display: flex;
  width: 290px;
  height: 48px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-width: 0px;
  border-radius: 8px;
  background: var(--Primary, #166447);
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  .club-why .sign-up-container .sign-up-btn {
    width: 100%;
  }
}
.club-why .sign-up-container .subtitle {
  color: var(--Text-Primary, #111928);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.club-cta-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--Border, #E5E7EB);
  background: #FFF;
  flex: 1 0 0;
}
.club-cta-card .book-now-btn {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .club-cta-card {
    flex: auto;
    width: 100%;
  }
}

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