@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:wght@700&display=swap');

:root {
  --feat: #259ed9;
  --gradient: linear-gradient(90deg, #3957B0 0%, #48D0D9 100%);
  --bg: #eaeaea;
  --box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.12);
}
html {
  scroll-behavior: smooth;
}
body {
  padding-top: 0;
  padding-bottom: 0;
}
.ht {
  background-color: #fff;
}
.wrap {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}
.container {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}
.container--alt {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
img {
  margin-bottom: 0;
}
a img:hover {
  opacity: 1;
}
.ht__btn {
  display: inline-block;
  background-image: var(--gradient);
  border-radius: 30px;
  padding: 15px 30px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .05rem;
  font-weight: bold;
  cursor: pointer;
  transition: 450ms;
}
.ht__btn:hover {
  filter: brightness(1.1);
  transition: 125ms;
}
.ht__btn--alt {
  border: 2px solid #fff;
  padding: 13px 28px;
  background-image: unset;
  background-color: transparent;
}
.ht__btn--alt:hover {
  border-color: var(--feat);
}
.ht__btn--play {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px; 
}
.ht__h1 {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 73px;
  text-align: center;
  color: #fff;
  padding-bottom: 0;
}
.ht__h2 {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 55px;
  color: #000;
  text-align: center;
  padding-bottom: 0;
}
.ht__h3 {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  padding-bottom: 0;
}
.ht__h4 {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  padding-bottom: 0;
}
.ht__h5 {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  padding-bottom: 0;
}
.ht .lightbox {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.8);
  display: grid;
  align-items: center;
  justify-content: center;
}
.ht .lightbox__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: minmax( min-content, 940px );
  margin: 0 40px;
}
.ht .lightbox__close {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  gap: 12px;
  padding: 12px;
  width: max-content;
  margin-left: auto;
  margin-right: -12px;
}
.ht .lightbox__close .lightbox__close-icon {
  transition: 450ms;
}
.ht .lightbox__close:hover .lightbox__close-icon {
  transform: translate3d(4px,0,0);
  transition: 125ms;
}

@media(max-width: 600px) {
  .ht .lightbox__wrapper {
    margin: 0;
  }
}
@keyframes show {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Header */
.ht__header {
  background-color: var(--bg);
  padding-top: 50px;
}
.ht__header-wrapper {
  border-radius: 30px;
  padding-top: 16px;
  position: relative;
  z-index: 2;
}
.ht__header-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 40px;
}
.ht__header-logo {
  max-width: 223px;
}
.ht__header-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.ht__header-link {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .05rem;
  font-weight: bold;
}
.ht__header-link:hover:not(.ht__btn) {
  color: var(--feat);
}
.ht__intro {
  display: grid;
  justify-items: center;
  margin-top: 60px;
}
.ht__intro-title {
  margin-top: 16px;
  max-width: 760px;
}
.ht__intro-subtitle {
  max-width: 660px;
  margin-top: 16px;
  font-style: italic;
}
.ht__intro-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 32px;
  margin-bottom: 170px;
}
.ht__header-icons {
  position: relative;
  z-index: 2;
}
.ht__header-icons-container {
  background-color: #fff;
  padding: 18px 40px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-top: -40px;
  box-shadow: var(--box-shadow);
}
.ht__header-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.ht__header-icon-build-trust {
  max-width: 72px;
}
.ht__header-icon-earn-respect {
  max-width: 64px;
}
.ht__header-icon-empower-discipleship {
  max-width: 36px;
}
.ht__header__video {
  border-radius: 30px;
}
.ht__btn-mobile {
  display: none;
  border-radius: .2rem;
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  transition: 100ms;
  cursor: pointer;
  color: #fff;
}
.ht__btn-mobile::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background-color: currentColor;
  box-shadow: 0 8px currentColor, 0 -8px currentColor;
}

@media(max-width: 1460px) {
  .ht__header-wrapper {
    margin-right: 60px;
    margin-left: 60px;
  }
}
@media(max-width: 1320px) {
  .ht__header-icons-container {
    margin-right: 130px;
    margin-left: 130px;
  }
}
@media(max-width: 1280px) {
  .ht__btn-mobile {
    display: flex;
  }
  .ht__header-container {
    align-items: center;
  }
  .ht__header-nav {
    display: none;
  }
}
@media(max-width: 1200px) {
  .ht__header {
    padding-top: 0;
  }
  .ht__header-wrapper {
    border-radius: 0;
    margin-right: 0;
    margin-left: 0;
  }
  .ht__header-icons-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media(max-width: 900px) {
  .ht__header-menu {
    flex-direction: column;
    gap: 20px;
  }
  .ht__header-icons-container {
    flex-direction: column;
    align-items: center;
  }
}
@media(max-width: 600px) {
  .ht__intro-btns {
    justify-content: center;
    gap: 20px;
  }
}
@media(max-width: 500px) {
  .ht__header-container {
    gap: 30px;
  }
}
@media(max-width: 400px) {
  .ht__header-logo {
    max-width: 160px;
  }
}

/* List */
.ht__list {
  background-color: #fff;
  margin-top: -180px;
  padding-bottom: 100px;
}
.ht__list-wrapper {
  padding-top: 280px;
  display: grid;
  justify-items: center;
}
.ht__list-title {
  max-width: 910px;
}
.ht__list-subtitle {
  color: #000;
  max-width: 840px;
  margin-top: 24px;
}
.ht__list-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1px;
  background-color: #bababa;
  box-shadow: var(--box-shadow);
  margin-top: 50px;
}
.ht__list-item {
	background-color: #fff;
  font-size: 1.25rem;
  color: var(--feat);
  font-weight: 600;
  line-height: 1.2;
  padding: 20px 28px 20px 44px;
  position: relative;
}
.ht__list-item::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--feat);
  border-radius: 50%;
  position: absolute;
  top: 26px;
  left: 24px;
}
.ht__list-content {
  color: #000;
  max-width: 840px;
  margin-top: 50px;
}
.ht__list-cta {
  margin-top: 40px;
}

@media(max-width: 900px) {
  .ht__list {
    margin-top: -230px;
  }
  .ht__list-list {
    grid-template-columns: 1fr;
  }
}

/* Blurbs */
.ht__blurbs {
  padding-bottom: 100px;
}
.ht__blurbs-wrapper {
  display: grid;
  justify-items: center;
}
.ht__blurbs-title {
  max-width: 950px;
}
.ht__blurbs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px;
  justify-content: space-between;
  margin-top: 70px;
}
.ht__blurbs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ht__blurbs-item-img {
  width: 316px;
  height: 188px;
  background-position: center;
  background-size: cover;
}
.ht__blurbs-item-title {
  font-size: 1.375rem;
  color: var(--feat);
  margin-top: 24px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 320px;
  padding-bottom: 0;
}
.ht__blurbs-item-description {
  font-size: 1.0625rem;
  font-weight: 300;
  margin-top: 24px;
  text-align: center;
}
.ht__blurbs-cta {
  margin-top: 24px;
}

@media(max-width: 1300px) {
  .ht__blurbs-list {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .ht__blurbs-item {
    max-width: 400px;
  }
}
@media(max-width: 400px) {
  .ht__blurbs-item-img {
    width: 250px;
    height: 148px;
  }
}

/* Hero */
.ht__hero {
  background-color: var(--bg);
  padding-top: 50px;
}
.ht__hero-wrapper {
  padding-top: 180px;
  padding-bottom: 140px;
  border-radius: 30px;
  position: relative;
  z-index: 2;
}
.ht__hero-container {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 20px;
}
.ht__hero-text {
  text-align: start;
}
.ht__hero-title {
  text-align: start;
  color: #fff;
  max-width: 660px;
  margin-top: 16px;
}
.ht__hero-subtitle {
  font-style: italic;
  text-align: start;
  margin-top: 16px;
}
.ht__hero-content p {
  max-width: 620px;
  color: #fff;
  margin-top: 24px;
}
.ht__hero-cta {
  margin-top: 50px;
}
.ht__hero-img-container {
  position: relative;
  bottom: -140px;
}

@media(max-width: 1460px) {
  .ht__hero-wrapper {
    margin-right: 60px;
    margin-left: 60px;
  }
}
@media(max-width: 1200px) {
  .ht__hero {
    padding-top: 0;
  }
  .ht__hero-wrapper {
    border-radius: 0;
    margin-right: 0;
    margin-left: 0;
  }
  .ht__hero-container {
    grid-template-columns: 1fr;
  }
  .ht__hero-img-container {
    bottom: unset;
    grid-row: 1;
  }
}

/* Toggle */
.ht__toggle {
  background-color: #fff;
  margin-top: -220px;
  padding-top: 310px;
  padding-bottom: 100px;
}
.ht__toggle-title {
  max-width: 920px;
  margin: 0 auto;
}
.ht__toggle-info {
  display: grid;
  grid-template-columns: 390px 1fr;
  align-items: start;
  gap: 60px;
  margin-top: 80px;
}
.ht__toggle-btns {
  padding: 30px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.ht__toggle-btn {
  font-size: 1.25rem;
  color: #000;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 25px;
  background-color: #fff;
  border-radius: 30px;
  cursor: pointer;
}
.ht__toggle-btn:hover {
  background: var(--bg);
}
.ht__toggle-btn--active {
  background-color: #000;
  color: #fff;
}
.ht__toggle-btn--active:hover {
  background-color: #000;
  color: #fff;
}
.ht__toggle-section {
  border-radius: 30px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  animation: show 300ms;
  will-change: transform;
}
.ht__toggle-section-info {
  padding: 50px 40px 60px;
}
.ht__toggle-section-img {
  height: 340px;
  background-size: cover;
  background-position: center;
}
.ht__toggle-section-title {
  color: var(--feat);
  text-align: start;
}
.ht__toggle-section-description {
  font-size: 1.875rem;
  margin-top: 16px;
  line-height: 1.3;
}
.ht__toggle-section-cta {
  margin-top: 24px;
}

@media(max-width: 1100px) {
  .ht__toggle-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media(max-width: 400px) {
  .ht__toggle-section-info {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Steps */
.ht__steps {
  padding-bottom: 100px;
}
.ht__steps-wrapper {
  display: grid;
}
.ht__steps-title {
  max-width: 920px;
  margin: 0 auto;
}
.ht__steps-subtitle {
  font-size: 1.875rem;
  line-height: 1.3;
  font-style: italic;
  text-align: center;
  margin-top: 32px;
}
.ht__steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
.ht__step {
  display: grid;
  grid-template-columns: max-content 250px;
  gap: 8px;
}
.ht__step-title {
  color: var(--feat);
  text-align: start;
}
.ht__step-description {
  margin-top: 16px;
  font-size: 1.0625rem;
}
.ht__steps-cta {
  color: #000;
  max-width: 840px;
  margin: 40px auto 0;
}
.ht__steps-btn {
  margin: 32px auto 0;
}

@media(max-width: 1200px) {
  .ht__steps-list {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
  }
}
@media(max-width: 600px) {
  .ht__step {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .ht__step-title {
    text-align: center;
  }
  .ht__step-description {
    text-align: center;
  }
}

/* Testimonials */
.ht__testimonials-min-height {
  min-height: 700px;
}
.ht__testimonials {
  padding-bottom: 100px;
  position: relative;
}
.ht__testimonials-container {
  padding: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}
.ht__testimonials-list {
  margin-bottom: -20px;
}
.ht__testimonial {
  display: grid !important;
  height: unset !important;
  grid-template-columns: 1fr 400px;
  gap: 20px;
}
.ht__testimonial-info {
  padding: 50px 50px 80px;
}
.ht__testimonial-content {
  font-size: 1.875rem;
  line-height: 1.3;
  max-width: 560px;
  position: relative;
  margin-bottom: 0;
}
.ht__testimonial-content::before {
  content: '“';
  position: absolute;
  top: 0;
  left: -12px;
}
.ht__testimonial-name {
  display: block;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--feat);
  text-transform: uppercase;
  margin-top: 50px;
}
.ht__testimonial-img {
  background-size: cover;
  background-position: center;
}
.ht__testimonials-arrows {
  position: absolute;
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  top: calc(50% - 25px);
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.ht__testimonials-arrow-left {
  pointer-events: auto;
  transform: rotate(180deg) translate3d(0,0,0);
  transition: 425ms;
}
.ht__testimonials-arrow-left:hover {
  transform: rotate(180deg) translate3d(4px,0,0);
  opacity: 1;
  transition: 125ms;
}
.ht__testimonials-arrow-right {
  pointer-events: auto;
  transform: translate3d(0,0,0);
  transition: 425ms;
}
.ht__testimonials-arrow-right:hover {
  transform: translate3d(4px,0,0);
  transition: 125ms;
}
.ht__testimonial-btn {
  margin-top: 32px;
}

@media(max-width: 1280px) {
  .ht__testimonials {
    margin-left: 40px;
    margin-right: 40px;
  }
  .ht__testimonials-arrows {
    padding: 0;
  }
  .ht__testimonials-arrow-left {
    position: relative;
    left: -20px;
  }
  .ht__testimonials-arrow-right {
    position: relative;
    right: -20px;
  }
}
@media(max-width: 900px) {
  .ht__testimonial {
    grid-template-columns: 1fr;
  }
  .ht__testimonial-img {
    height: 800px;
    grid-row: 1;
  }
}
@media(max-width: 600px) {
  .ht__testimonials {
    margin-left: 0px;
    margin-right: 0px;
  }
  .ht__testimonials-arrows {
    top: 800px;
  }
  .ht__testimonials-arrow-left {
    left: 20px;
  }
  .ht__testimonials-arrow-right {
    right: 20px;
  }
  .ht__testimonials-container {
    border-radius: 0;
  }
  .ht__testimonial-info {
    padding: 30px 30px 60px;
  }
  .ht__testimonial-content {
    font-size: 1.5rem;
  }
}

/* Roadmap */
.ht__roadmap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px 100px;
}
.ht__roadmap-wrapper {
  padding: 50px 70px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 30px;
}
.ht__roadmap-title {
  text-align: start;
}
.ht__roadmap-content {
  margin-top: 40px;
}
.ht__roadmap-content p {
  font-size: 1.0625rem;
}
.ht__roadmap-btn {
  display: inline-block;
  font-size: 1.25rem;
  color: var(--feat);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05rem;
  border-bottom: 2px solid var(--feat);
  margin-top: 16px;
}
.ht__roadmap-btn:hover {
  color: #000;
  border-bottom: 2px solid #000;
}
.ht__roadmap-cta {
  display: block;
  width: max-content;
  margin: 50px auto 0;
}

@media(max-width: 600px) {
  .ht__roadmap-wrapper {
    padding: 40px 30px 50px;
  }
}
@media(max-width: 400px) {
  .ht__roadmap {
    padding-left: 0;
    padding-right: 0;
  }
  .ht__roadmap-wrapper {
    border-radius: 0;
  }
}

/* Benefits */
.ht__benefits {
  padding-bottom: 60px;
}
.ht__benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr 660px;
  align-items: start;
  gap: 20px;
}
.ht__benefits-title {
  text-align: start;
}
.ht__benefits-list {
  display: grid;
  grid-gap: 1px;
  background-color: #bababa;
  border-radius: 30px;
  box-shadow: var(--box-shadow);
  margin-top: 50px;
  max-width: 510px;
  overflow: hidden;
}
.ht__benefits-item {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  background-color: #fff;
  padding: 25px 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.ht__benefits-cta {
  margin-top: 50px;
}

@media(max-width: 1200px) {
  .ht__benefits-wrapper {
    grid-template-columns: 1fr;
  }
  .ht__benefits-info {
    display: grid;
    justify-items: center;
  }
  .ht__benefits-list {
    margin: 50px auto 0;
  }
  .ht__benefits-title {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
  }
  .ht__benefits-img-container {
    display: grid;
    justify-content: center;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    grid-row: 1;
  }
}
@media(max-width: 600px) {
  .ht__benefits-wrapper {
    padding: 0;
  }
}
@media(max-width: 420px) {
  .ht__benefits-wrapper {
    border-radius: 0;
  }
  .ht__benefits-list {
    border-radius: 0;
    width: 100%;
  }
  .ht__benefits-item {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Footer */
.ht__footer {
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 80px;
}
.ht__footer-wrapper {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 20px;
  justify-content: space-between;
}
.ht__footer-logo {
  max-width: 287px;
}
.ht__footer-info {
  justify-self: center;
}
.ht__footer-info p {
  color: #fff;
  font-size: 1.0625rem;
}
.ht__footer-info a {
  color: #fff;
  text-decoration: underline;
}
.ht__footer-cta {
  justify-self: end;
}
.ht__footer-cta-link {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin-top: 24px;
}
.ht__footer-cta-link a {
  color: #fff;
  text-decoration: underline;
}

@media(max-width: 1000px) {
  .ht__footer {
    padding-bottom: 120px;
  }
  .ht__footer-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 60px;
  }
  .ht__footer-cta {
    justify-self: unset;
  }
}

/* Membership */
.ht__membership {
  padding-top: 40px;
  padding-bottom: 160px;
}
.ht__membership-text {
  color: var(--feat);
}
.ht__membership-title {
  margin-top: 16px;
}
.ht__membership-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}
.ht__membership-toggle {
  display: block;
  width: 80px;
  height: 50px;
  border: 6px solid #000;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}
.ht__membership-toggle-ball {
  display: block;
  width: 26px;
  height: 26px;
  background-color: #000;
  border-radius: 50%;
  margin: 0 6px;
  transition: 125ms;
}
.ht__membership-toggle-ball--monthly {
  transform: translate3d(-30px,0,0);
}
.ht__membership-plan {
  color: #000;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.2;
  text-transform: uppercase;
  transition: 300ms;
}
.ht__membership-plan--active {
  color: var(--feat);
}
.ht__membership-list {
  display: grid;
  grid-template-columns: 1fr 540px 1fr;
  align-items: start;
  gap: 40px;
  margin-top: 90px;
}
.ht__membership-item {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  padding: 30px 0 50px;
  display: grid;
  animation: show 300ms;
  will-change: transform;
}
.ht__membership-item:nth-child(2) {
  margin-top: -40px;
}
.ht__membership-item-category {
  color: var(--feat);
}
.ht__membership-item-title {
  color: #000;
  font-weight: bold;
  margin-top: 10px;
}
.ht__membership-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  line-height: 1.2;
  margin-top: 32px;
}
.ht__membership-price-number {
  font-size: 3.75rem;
  color: var(--feat);
  font-weight: bold;
}
.ht__membership-price-plan {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: bold;
}
.ht__membership-benefit {
  padding: 26px;
  border-bottom: 1px solid #bababa;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: start;
  gap: 24px;
}
.ht__membership-benefit:last-child {
  border-bottom: unset;
}
.ht__membership-cta {
  margin: 16px auto 0;
}

@media(max-width: 1200px) {
  .ht__membership-list {
    grid-template-columns: 1fr;
  }
  .ht__membership-item:nth-child(2) {
    margin-top: 0;
  }
}
@media(max-width: 600px) {
  .ht__membership-toggle-container {
    display: grid;
    justify-items: center;
    gap: 20px;
  }
  .ht__membership-plan--monthly {
    grid-row: 1;
  }
  .ht__membership-plan--annual {
    grid-row: 2;
  }
  .ht__membership-toggle {
    grid-row: 3;
  }
  .ht__membership-list {
    margin-top: 40px;
  }
}

/* Mobile Menu Sidebar */
.ht__header-sidebar {
  background-color: #fff;
  width: 300px;
}
.ht__header-sidebar h2 {
  padding-bottom: 0;
}
.ht__mobile-btn {
  font-size: 1.25rem;
  color: #000;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .05rem;
  font-weight: bold;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
.ht__mobile-btn:hover {
  color: var(--feat);
}
.ht__mobile-btn::after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 100%;
  background: var(--bg);
  position: absolute;
  bottom: 0;
  left: 0;
}
.ht__mobile-btn--feat {
  background-image: var(--gradient);
  color: #fff;
}
.ht__mobile-btn--feat:hover {
  color: #fff;
  filter: brightness(1.1);
}

@media(max-width: 400px) {
  .ht__mobile-btn {
    font-size: 1.125rem;
  }
}

/* Media Queries */
@media(max-width: 900px) {
  .ht__h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  .ht__h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .ht__h3 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .ht__h4 {
    font-size: 1.125rem;
  }
}
@media(max-width: 400px) {
  .ht__btn {
    font-size: 1rem;
  }
}