*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #E31E24;
  --dred: #C0181D;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --white: #FFFFFF;
  --pinkbg: #fce8e8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  color: #111111;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
}

/* NAV */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #000;
  height: 115px;
  width: 98%;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav-logo img {
  height: auto;
  width: 65%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: color .2s, transform .2s;
}

.nav-links a:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 16px;
  letter-spacing: 1px !important;
}

.nav-cta:hover {
  background: var(--dred) !important;
}

.hb {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hb span {
  width: 22px;
  height: 2px;
  background: #111111;
  display: block;
}

/* HERO */
.hero {
  position: relative;
  padding: 8rem 0 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-grad {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  width: 100%;
}

.hero-h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 90px;
  line-height: .98;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 22px;
}


.hero-sub {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  max-width: 450px;
  margin-bottom: 32px;
}

.btn-r {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: background .2s;
}

.btn-r:hover {
  background: var(--dred);
}

/* TICKER */
.ticker {
  background: var(--red);
  height: 70px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 0 0 1.8rem;
}

.ticker-wrap {
  display: flex;
  white-space: nowrap;
  animation: tick 30s linear infinite;
}

.ticker-item {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
}

.ticker-item .dot {
  color: rgba(255, 255, 255, .4);
  font-size: 16px;
}

@keyframes tick {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ABOUT */
.about {
  background: #fff;
  margin-bottom: 1.8rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-img {
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.about-txt {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 18px;
}

.h2 span {
  color: var(--red);
  font-style: normal;
}

.h2.wh {
  color: #fff;
}

.p {
  font-size: 16px;
  line-height: 1.9;
  color: #000;
  margin-bottom: 14px;
}

.p.wh {
  color: #fff;
}

/* COMMUNITY */
.community {
  background-image: url('../imgs/about-gym.png');
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  padding: 6rem 0;
  margin: 0 1.8rem;
}

.comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 40px 0 0;
  align-items: center;
  gap: 40px;
}

.comm-txt {
  padding: 70px 0px 0 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comm-list {
  list-style: none;
  margin: 16px 0 28px;
}

.comm-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #bbb;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.comm-img-col {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.comm-img-col img.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.comm-circle-wrap {
  position: absolute;
  bottom: 30px;
  right: 20px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--red);
  z-index: 2;
}

.comm-circle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comm-red-swoosh {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  background: var(--red);
  clip-path: ellipse(80% 100% at 100% 100%);
  z-index: 1;
  opacity: .9;
}

/* PROGRAMS */
.programs {
  background: #fff;
  padding: 80px 0;
}

.cont {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec-hd {
  text-align: center;
  margin-bottom: 44px;
}

.sec-hd .ey {
  text-align: center;
}

.prog-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.prog-bot {
  display: grid;
  grid-template-columns: 66% 32%;
  gap: 14px;
  margin: 0 auto;
}

.pcard {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 14px;
  box-shadow: 0 18px 32px rgba(17, 17, 17, 0.14);
  border: 1px solid rgba(227, 30, 36, 0.12);
  background: #fff;
}

.pcard img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}

.pcard:hover img {
  transform: scale(1.06);
}

.pcard-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(227, 30, 36, 0.96) 0%, rgba(192, 24, 29, 0.98) 100%);
  padding: 11px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
}

.pnote {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin: 22px 0 16px;
}

.pcta {
  text-align: center;
  margin-top: 6px;
}

/* LES MILLS */
.lm {
  background-image: url('../imgs/certified.png');
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  min-height: 800px;
}

.lm-hard {
  background-image: none;
  padding: 80px 0;
}

.lm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.lm-side {
  position: absolute;
  left: 0px;
  top: 60%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  z-index: 2;
  text-align: center;
}

.lm-txt {
  padding: 190px 0px 0px 208px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lm-list {
  list-style: none;
  margin: 16px 0 28px;
}

.lm-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 9px;
}

.lm-txt-hard {
  padding: 0px 60px 0px 140px;
}

.lm-txt-hard h2,
.lm-txt-hard p {
  color: #000 !important;
}

.lm-img {
  overflow: hidden;
  padding: 0 40px 0 00px;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.schedule-section {
  padding: 70px 0;
}

.schedule-title {
  text-align: center;
  margin-bottom: 35px;
}

.schedule-title h2 {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
}

.schedule-title p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

.schedule-table-wrap {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  cursor: grab;
}

.schedule-table-wrap.dragging {
  cursor: grabbing;
}

.schedule-table {
  width: 100%;
  min-width: 1250px;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  border: 1px solid #e4e4e4;
  padding: 16px 12px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.4;
}

.schedule-table thead th {
  background: #111;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.schedule-table .day-col {
  background: #d71920;
  color: #fff;
  position: sticky;
  left: 0;
  z-index: 3;
}

.schedule-table .day-name {
  background: #f1f1f1;
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  position: sticky;
  left: 0;
  z-index: 2;
}

.schedule-table tbody td:not(.day-name) {
  font-weight: 600;
  color: #222;
}

.schedule-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.schedule-table tbody tr:hover {
  background: #fff4f4;
}

.schedule-table td:empty {
  background: #fcfcfc;
}

.schedule-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px 20px 0;
}

.schedule-details-col h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.about-txt ul li {
  color: #000;
}

.main-classes-list {
  list-style: disc inside;
  columns: 2;
  column-gap: 24px;
  margin: 0;
  padding: 0;
}

.main-classes-list li {
  margin-bottom: 10px;
  font-weight: 600;
  color: #111;
}

.special-class {
  background: #fafafa;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #ececec;
  margin-bottom: 16px;
}

.special-class strong {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.special-class p {
  margin: 0;
  color: #333;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .schedule-details {
    grid-template-columns: 1fr;
  }

  .main-classes-list {
    columns: 1;
  }
}

@media (max-width: 1024px) {
  .schedule-table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-table {
    min-width: 1100px;
  }

  .table-progress-container {
    display: block;
    width: 100%;
    height: 8px;
    background: #ccc;
    margin-top: 12px;
    border-radius: 30px;
    overflow: hidden;
  }

  .table-progress-bar {
    height: 8px;
    background: #04AA6D;
    width: 0%;
    border-radius: 30px;
  }

  .schedule-table-wrap::-webkit-scrollbar {
    height: 8px;
  }

  .schedule-table-wrap::-webkit-scrollbar-track {
    background: #eee;
  }

  .schedule-table-wrap::-webkit-scrollbar-thumb {
    background: #04AA6D;
    border-radius: 20px;
  }
}

@media (min-width: 1025px) {
  .table-progress-container {
    display: none;
  }
}

.lm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
  display: block;
  margin: 0 auto;
}

/* METABOLIC */
.metabolic {
  background: var(--pinkbg);
  padding: 80px 0;
}

.meta-badge {
  display: inline-block;
  border: 1px solid #dab0b0;
  background: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  padding: 6px 18px;
  margin-bottom: 16px;
}

.meta-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.mcard {
  flex: 1 1 250px;
  max-width: 285px;
  background: #111;
  padding: 36px 18px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  border-radius: 6px;
  box-shadow: 0 18px 32px rgba(17, 17, 17, 0.14);
  transition: .1s;
}

.mcard:hover {
  background: var(--red);
}

.mcard:hover,
.mcard2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(17, 17, 17, 0.18);
}

.mcard img {
  margin: 0 auto 16px;
}

.mcard h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.5;
}

/* WORKOUT */
.workout {
  background: #fff;
}

.wk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.wk-img {
  position: relative;
  overflow: hidden;
}

.wk-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  display: block;
}

.wk-txt {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MEMBERSHIP */
.membership {
  background: #fff;
  padding: 80px 0;
}

.mem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px 0 36px;
}

.mcard2 {
  border: 1px solid #e0e0e0;
  padding: 34px 18px;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  border-radius: 6px;
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.08);
  background: #fff;
}

.mcard2:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.mcard2 img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.mcard2 h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 8px;
}

.mcard2 p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

/* FINAL CTA */
.fcta {
  background: #111;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ticker-2 {
  background: #000;
  margin: 0;
}

.fcta-bg {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: .92;
}

.fcta-in {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fcta-in .h2 {
  font-size: 150px !important;
  color: #fff;
  display: block;
}

.fcta-p {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
  max-width: 480px;
  margin: 14px auto 30px;
}

.fcta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-o {
  background: none;
  border: 2px solid #fff;
}

/* FOOTER */
.footer {
  background: #0a0a0a;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1a1a1a;
}

.foot-logo img {
  height: 85px;
  object-fit: contain;
  margin-bottom: 14px;
}

.foot-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.9;
}

.fc h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.fc ul {
  list-style: none;
}

.fc ul li {
  margin-bottom: 9px;
}

.fc ul li a {
  font-size: 16px;
  color: #fff;
  transition: color .2s;
}

.fc ul li a:hover {
  color: var(--red);
}

.fci {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.fci .ico {
  color: var(--red);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fci span {
    color: #fff !important;
}

.fci span a {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
}

.foot-bot {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.foot-copy {
  font-size: 16px;
  color: #fff;
}

.schedule-title-2{
  padding-top: 40px;
}

.foot-copy em {
  color: var(--red);
  font-style: normal;
}

.about-banner {
  background-image: url(../imgs/about-banner2.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 8rem 0 4rem;
}

.about-hero-bg {
  background: #0000007d;
}

.contact-ban {
  background-image: url('../imgs/contact-banner.jpg');
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

.metabolic-ban {
  background-image: url('../imgs/metabolic-banner.jpg');
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

.classes-ban {
  background-image: url('../imgs/classes-banner.jpg');
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

.about-text p {
  max-width: max-content;
}

.about-text {
  text-align: center;
}

.copy-set {
  margin-bottom: 4rem !important;
}

.add-set {
  color: #000;
  padding-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

.subtitle {
  display: inline-block;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact-content h2 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.1;
  margin-bottom: 25px;
}

.contact-content p {
  color: #c8c8c8;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 500px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: .3s;
}

.cta-btn:hover {
  background: var(--dred);
  transform: translateY(-3px);
}

.contact-form-wrap {
  background: var(--dark2);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.contact-form-wrap h3 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
}

.contact-form-wrap p {
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  transition: .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, .15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8e8e8e;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: .3s;
}

.submit-btn:hover {
  background: var(--dred);
}


/* RESPONSIVE */
@media(max-width:1024px) {
  .meta-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .mem-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content h2 {
    font-size: 48px;
  }
}

@media(max-width:768px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-form-wrap {
    padding: 25px;
  }

  .contact-content h2 {
    font-size: 38px;
  }

  .contact-form-wrap h3 {
    font-size: 28px;
  }

  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #111;
    padding: 16px 20px;
    border-top: 2px solid var(--red);
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid #222;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .hb {
    display: flex;
  }

  .cont {
    padding: 0 20px;
  }

  .hero-inner {
    padding: 80px 20px 50px;
  }

  .about-grid,
  .comm-grid,
  .lm-grid,
  .wk-grid {
    grid-template-columns: 1fr;
  }

  .about-img img,
  .lm-img img,
  .wk-img img {
    min-height: 280px;
    height: 280px;
  }

  .about-txt,
  .comm-txt,
  .lm-txt,
  .wk-txt {
    padding: 40px 24px;
  }

  .lm-side {
    display: none;
  }

  .lm-txt {
    padding-left: 24px;
  }

  .comm-img-col {
    min-height: 340px;
  }

  .comm-circle-wrap {
    width: 200px;
    height: 200px;
    right: 10px;
    bottom: 20px;
  }

  .prog-top {
    grid-template-columns: 1fr 1fr;
  }

  .prog-bot {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .meta-cards {
    grid-template-columns: 1fr 1fr;
  }

  .mem-cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .fcta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width:480px) {

  .prog-top,
  .prog-bot {
    grid-template-columns: 1fr;
  }

  .meta-cards,
  .mem-cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-h1 {
    font-size: 40px;
  }
}