/* Fonts */
@font-face {
  font-family: "Akira-font", sans-serif;
  src: url(../assets/fonts/Akira\ Expanded\ Super\ Bold.ttf);
}

@font-face {
  font-family: "Clash Display", sans-serif;
  src: url(../assets/fonts/ClashDisplay-Variable.ttf);
}

/* Colors */
:root {
  --fit-yellow: #f2ff00;
  --fit-green: #22c55e;
  --color-black: #000;
  --color-bg: #0f0f0f;
  --color-text: #fff;
  --color-muted: #cfcfcf;

  --glass-top: rgba(255, 255, 255, 0.1);
  --glass-bottom: rgba(255, 255, 255, 0.05);
  --overlay-bg: rgba(0, 0, 0, 0.92);
  --border-y-35: rgba(242, 255, 0, 0.35);
  --border-y-25: rgba(242, 255, 0, 0.25);

  --dd-grad-start: #2a2a00;
  --dd-grad-end: #121200;
  --dd-sub-yellow-start: rgba(56, 56, 0, 0.96);
  --dd-sub-yellow-end: rgba(24, 24, 0, 0.88);
  --shadow-strong: rgba(0, 0, 0, 0.6);
  --banner-img: url("../assets/images/workout-page-section/Hero-Section.png");
  --hdr-h: 76px;
}

html,
body {
  height: auto;
  overflow-y: auto;
  font-family: "Akira Expanded", sans-serif;
}

/* Common class */
body {
  font-family: "Akira-font", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  display: inline-block;
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

body::before {
  background-image: var(--banner-img);
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translate3d(0, var(--bg-shift), 0);
}

/* Header Section */
.hdr-sec {
  position: relative;
  top: auto;
  z-index: auto;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
}

.navbar {
  padding: 14px 0;
  position: relative;
  z-index: 1060;
}

.nav-logo {
  width: 120px;
  margin-bottom: -10px;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-nav {
  background: linear-gradient(180deg, var(--glass-top), var(--glass-bottom));
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-y-35);
  border-radius: 999px;
  padding: 0.35rem;
}

.navbar-nav .nav-link {
  color: var(--color-text);
  text-transform: capitalize;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  transition: 0.25s ease;
  display: inline-block;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--color-black);
  background: var(--fit-yellow);
}

.navbar-nav .nav-link.active {
  background: var(--fit-yellow);
  color: var(--color-black) !important;
}

.nav-link {
  font-size: 14px;
  margin-right: 14px;
  color: var(--color-text);
}

.nav-item.dropdown.dropdown-hover > .nav-link.dropdown-toggle:hover::after {
  border-top: 0.45em solid var(--color-black) !important;
  border-right: 0.45em solid transparent;
  border-left: 0.45em solid transparent;
  transition: transform 0.2s ease, border-top-color 0.2s ease;
}

.nav-item.dropdown.dropdown-hover > .nav-link.dropdown-toggle::after {
  border-top: 0.45em solid var(--color-text) !important;
  border-right: 0.45em solid transparent;
  border-left: 0.45em solid transparent;
  transition: transform 0.2s ease, border-top-color 0.2s ease;
}

.nav-item.dropdown.dropdown-hover.show > .nav-link.dropdown-toggle::after {
  border-top-color: var(--color-black) !important;
  transform: rotate(180deg);
}

.overlay-collapse {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1040;
  padding: 12px 1rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid var(--border-y-25);
  border-top: none !important;
  box-shadow: none !important;
  overflow: visible;
}

.dropdown-menu {
  position: absolute;
  background: radial-gradient(
    120% 120% at 0% 0%,
    var(--dd-grad-start) 0%,
    var(--dd-grad-end) 70%
  );
  border: 1px solid var(--fit-yellow);
  border-radius: 24px;
  min-width: 280px;
  padding: 0.5rem 0.25rem;
  box-shadow: 0 16px 40px var(--shadow-strong);
}

.nav-item.dropdown
  > .dropdown-menu
  > .dropdown-submenu:nth-of-type(1)
  > .dropdown-menu,
.nav-item.dropdown
  > .dropdown-menu
  > .dropdown-submenu:nth-of-type(2)
  > .dropdown-menu {
  background: radial-gradient(
    120% 120% at 0% 0%,
    var(--dd-sub-yellow-start) 0%,
    var(--dd-sub-yellow-end) 70%
  );
  border-color: var(--fit-yellow);
}

.dropdown-item.pill {
  position: relative;
  margin: 0.4rem 0;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--fit-yellow);
  border-radius: 40px;
  color: var(--color-muted);
  text-transform: capitalize;
  transition: 0.25s ease;
  line-height: 1.25;
}

.dropdown-item.pill:hover {
  background: var(--fit-yellow);
  color: var(--color-black);
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.35rem;
  vertical-align: 0.2em;
  content: "";
  border-top: 0.45em solid var(--color-black);
  border-right: 0.45em solid transparent;
  border-left: 0.45em solid transparent;
  transition: transform 0.2s ease, border-top-color 0.2s ease;
}

.show > .dropdown-toggle::after {
  transform: rotate(180deg);
  border-top-color: var(--color-black);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.5rem;
  margin-top: -0.25rem;
}

.dropdown-item.pill::before {
  content: none;
}

.dropdown-item.pill.dd-check[data-group="workouts"] {
  padding-left: 2rem;
}

.dropdown-item.pill.dd-check[data-group="workouts"]::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.dropdown-item.pill.dd-check[data-group="workouts"].is-checked::before {
  background: var(--fit-green);
  border-color: var(--fit-green);
}

.dropdown-item.pill.dd-check[data-group="workouts"].is-checked {
  color: var(--color-black);
  border-color: var(--fit-yellow);
}

.search-group {
  display: flex;
  align-items: center;
  background: var(--color-black);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.search-group img {
  display: block;
}

.search-group .input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-text);
  width: 160px;
}

.search-group .input::placeholder {
  color: #bdbdbd;
}

.bag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--fit-yellow);
  box-shadow: 0 0 0 2px var(--fit-yellow) inset;
}

.bag-btn img {
  width: 20px;
  height: 20px;
}

.animated-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  border: 4px solid transparent;
  font-size: 16px;
  background-color: transparent;
  border-radius: 999px;
  font-weight: 600;
  color: var(--fit-yellow);
  box-shadow: 0 0 0 2px var(--fit-yellow);
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    color 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.2s ease;
}

.animated-button:active {
  transform: scale(0.97);
  box-shadow: 0 0 0 4px var(--fit-yellow);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: var(--fit-yellow);
  z-index: 1;
  transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    right 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    fill 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.animated-button .arr-1 {
  right: 16px;
  opacity: 1;
}

.animated-button .arr-2 {
  left: -40px;
  opacity: 0;
}

.animated-button .text {
  position: relative;
  z-index: 2;
  transform: translateX(-12px);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  background: var(--fit-yellow);
  color: var(--color-black);
}

.animated-button:hover .arr-1 {
  right: -40px;
  opacity: 0;
}

.animated-button:hover .arr-2 {
  left: 16px;
  opacity: 1;
}

.animated-button:hover svg {
  fill: var(--color-black);
}

.animated-button:hover .text {
  transform: translateX(12px);
}

#mainNav > .ms-xl-3 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
}

.navbar-toggler {
  border: 1px solid var(--fit-yellow);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.navbar-toggler i {
  color: var(--color-text);
}

.navbar-toggler-icon {
  background: transparent;
}

.cart-item img {
  transition: transform 0.25s;
}

.cart-item img:hover {
  transform: scale(1.08);
}

.hdr-sec,
.navbar,
.navbar::after,
.navbar::before,
.hdr-sec::after,
.hdr-sec::before {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Banner Section */
:root {
  --about-yellow: #f2ff00;
  --about-white: #ffffff;
  --about-black: #000000;
  --about-banner-bg: url("../assets/images/workout-page-section/Hero-Section.png");
}

.bnr-sec {
  position: relative;
  background: var(--about-banner-bg) no-repeat center/cover;
  background-attachment: fixed;
  color: var(--about-white);
  overflow: hidden;
  font-family: "Akira-font", sans-serif;
  padding-top: 350px;
}

.bnr-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
  pointer-events: none;
}

.hero-cntn {
  position: relative;
  z-index: 1;
  min-height: 58vh;
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 120px) 0;
  text-align: center;
  row-gap: clamp(16px, 3vw, 28px);
}

.title-1 {
  font-family: "Akira-font", "Akira Expanded", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
  font-size: 7rem;
  margin-bottom: -20px;
}

.title1-span {
  color: var(--about-yellow);
  margin-right: 0.3ch;
  font: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

.breadcrumb {
  margin: 25px auto;
  display: flex;
  justify-content: center;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px !important;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.breadcrumb-item > *:not(:last-child) {
  margin-right: 12px;
}

.breadcrumb,
.breadcrumb-item,
.breadcrumb-item li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.breadcrumb-link {
  font-family: "Akira Expanded", sans-serif;
  font-weight: 900;
  font-size: clamp(12px, 1.2vw, 16px);
  color: var(--about-white);
  text-decoration: none;
  display: inline-block;
}

.breadcrumb-active {
  color: var(--about-yellow);
}

.square {
  width: 8px;
  height: 8px;
  background: #f2ff00;
  margin: 0 12px;
  display: inline-block;
  animation: glowPulse 1.8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(242, 255, 0, 0.4), 0 0 12px rgba(242, 255, 0, 0.25);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 14px rgba(242, 255, 0, 1), 0 0 28px rgba(242, 255, 0, 0.9);
  }
}

.banner-stripes-unique {
  display: block;
  margin: clamp(8px, 2.4vw, 18px) auto 0 auto;
  width: 74px;
  animation: aboutStripe 2.5s ease-in-out infinite;
  transform-origin: center;
  margin-top: -20px;
}

@keyframes aboutStripe {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(242, 255, 0, 0));
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(242, 255, 0, 0.9));
  }
}

.abt-link {
  color: var(--about-yellow);
}

/* Workout Stats Section */
.ff-stats-section {
  padding: 48px 0;
  background: var(--about-black);
}

.ff-stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -18px;
  margin-right: -18px;
}
.ff-stats-item {
  flex: 1 1 25%;
  min-width: 240px;
  padding-left: 18px;
  padding-right: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 24px;
}
.ff-stats-item:first-child {
  border-left: none;
}

.ff-stripes {
  width: 34px;
  display: block;
  margin: 0 0 12px 0;
  animation: aboutStripe 2.5s ease-in-out infinite;
  transform-origin: center;
}

.ff-stats-value {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  margin: 8px 0 6px;
}

.ff-stats-label {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
  font-size: 16px;
}

/* Workout Dropdown Section*/
.who-dot {
  width: 26px;
  margin-right: 10px;
  animation: pulseDot 2.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(242, 255, 0, 0));
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(242, 255, 0, 0.9));
  }
}
.who-stripes {
  width: 70px;
  margin-left: 12px;
  animation: stripeSlide 2.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes stripeSlide {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(242, 255, 0, 0));
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(242, 255, 0, 0.9));
  }
}

:root {
  --fit-yellow: #f2ff00;
  --ff-border: rgba(255, 255, 255, 0.18);
  --ff-border-strong: rgba(255, 255, 255, 0.28);
  --ff-bg: #0f0f0f;
  --ff-menu-bg: #ffffff;
  --ff-text: #fff;
  --ff-muted: #cfcfcf;
}

.ff-filters-section {
  background: transparent;
  padding: clamp(48px, 7vw, 86px) 0;
  background: var(--about-black);
  position: relative;
  z-index: 40;
}

.ff-container {
  max-width: 1280px;
  margin: 0 auto;
}

.ff-eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 28px 0;
}
.ff-eyebrow-title {
  font-family: "Akira-font", sans-serif;
  color: var(--fit-yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 8px 0 0;
  font-size: clamp(18px, 2vw, 26px);
}

.ff-filter-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
  z-index: 41;
}
.ff-filter-col {
  flex: 1 1 25%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 16px;
  min-width: 260px;
  position: relative;
}

.ff-filter-toggle {
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border: 1px solid var(--ff-border);
  background: transparent;
  color: var(--ff-text);
  font-family: "Clash Display", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ff-filter-toggle:hover {
  border-color: var(--ff-border-strong);
  box-shadow: inset 0 0 0 2px rgba(242, 255, 0, 0.12);
}
.ff-filter-toggle[aria-expanded="true"] {
  border-color: var(--fit-yellow);
}

.ff-filter-toggle i {
  font-size: 14px;
  color: var(--ff-text);
  transition: transform 0.3s ease;
}

.ff-filter-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.ff-filter-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
}
.ff-filter-menu.open {
  display: block;
}

.ff-menu-card {
  margin-top: 0;
  background: var(--ff-menu-bg);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  padding: 18px 16px;
  min-width: min(420px, 92vw);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.ff-menu-title {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 16px;
  text-transform: capitalize;
  margin: 0 0 10px 0;
}
.ff-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ff-menu-list li {
  margin: 6px 0;
}

.ff-check {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-family: "Clash Display", sans-serif;
  color: #222;
}
.ff-check input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 14px;
  height: 14px;
  margin: 0 10px 0 0;
  border-radius: 2px;
  border: 1.6px solid rgba(0, 0, 0, 0.4);
  background: #fff;
  position: relative;
  transition: all 0.2s ease;
}
.ff-check input:checked {
  background: var(--fit-yellow);
  border-color: var(--fit-yellow);
}
.ff-check input:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 6px;
  height: 6px;
  background: var(--fit-yellow);
}
.ff-check span {
  line-height: 1.1;
}

/* Workout ISO Section */
.workouts-iso {
  background: #000;
  padding-top: 20px;
}
.workouts-iso .container {
  max-width: 1420px;
  margin: auto;
  padding: 10px 16px;
}

.filter-strip {
  margin-bottom: 28px;
  overflow: hidden;
}
.btn-slideWidth {
  width: auto !important;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  gap: 10px;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  transition: all 0.25s ease;
  text-transform: capitalize;
}
.filter-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.06);
}
.filter-btn.is-active {
  background: #eef523;
  color: #000;
  border-color: #eef523;
}
.filter-btn.is-active::before {
  border-color: #eef523;
}

.isoSwiper {
  padding: 6px 0;
}
.isoSwiper .swiper-wrapper {
  align-items: center;
}

.iso-grid {
  position: relative;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.iso-card {
  box-sizing: border-box;
  width: calc(50% - 12px);
  max-width: none;
  margin: 10px 0 70px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px;
}

.iso-grid .iso-card {
  margin-bottom: 100px !important;
}

.iso-card__frame {
  position: relative;
  height: 360px;
  background: #0e0e0e;
  overflow: visible;
  padding: 18px;
}

.iso-card__frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
}

.iso-card__frame .badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #eef523;
  color: #000;
  font-weight: 800;
  font-size: 12px;
  z-index: 250;
  border-radius: 0;
}
.iso-card__frame .author {
  position: absolute;
  right: 28px;
  bottom: 28px;
  font-family: "Akira Expanded", sans-serif;
  font-weight: 900;
  font-size: 12px;
  z-index: 300;
}
.iso-card__frame .marks {
  position: absolute;
  right: 38px;
  bottom: 70px;
  color: #eef523;
  font-weight: 900;
}

.banner-stripes {
  display: block;
  width: 80px;
  height: auto;
  animation: aboutStripe 2.5s ease-in-out infinite;
  transform-origin: center;
  margin-top: -20px;
  position: absolute;
  right: 38px;
  bottom: 70px;
  z-index: 125;
}

@keyframes aboutStripe {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(242, 255, 0, 0));
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(242, 255, 0, 0.9));
  }
}

.iso-card__frame .noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  pointer-events: none;
}

.hero {
  position: absolute;
  bottom: -6px;
  left: 8%;
  z-index: 1;
  width: 300px;
}
.hero img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.hero-1 {
  left: 34px;
  width: 350px;
}
.hero-2 {
  right: 40px;
  width: 250px;
}
.hero-3 {
  left: 38px;
  width: 280px;
}
.hero-4 {
  left: 0;
  width: 400px;
}
.hero-5 {
  left: 34px;
  width: 350px;
}
.hero-6 {
  left: 38px;
  width: 350px;
}
.hero-7 {
  left: 14px;
  bottom: -16px;
}

.iso-card__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 6px 0;
}

.iso-card__bottom .left {
  display: contents;
}

.iso-card__bottom .num {
  grid-column: 1;
  background: #eef523;
  color: #000;
  font-weight: 800;
  font-size: 12px;
  padding: 10px 12px;
  margin: 0 0 12px 0;
  width: 40px;
}

.iso-card__bottom .text {
  grid-column: 1 / 2;
  margin: 0;
}
.iso-card__bottom .text h4 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 6px 0;
  font-family: "Clash Display", sans-serif;
}
.iso-card__bottom .text p {
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  font-family: "Clash Display", sans-serif;
}

.enroll-btn {
  grid-column: 2 / 3;
  margin-left: 24px;
  margin-top: 0;
  padding: 12px 26px;
}
.iso-card.is-hidden {
  display: none !important;
}
.iso-empty__eyebrow img:first-child {
  animation: isoDotPulse 2.2s ease-in-out infinite;
  transform-origin: center;
  width: 100%;
}

.iso-empty__eyebrow img:last-child {
  width: 22px;
  height: 12px;
  animation: aboutStripe 2.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes isoDotPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(242, 255, 0, 0));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(242, 255, 0, 0.9));
  }
}

@keyframes aboutStripe {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(242, 255, 0, 0));
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(242, 255, 0, 0.9));
  }
}

.animated-button-enroll {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 4px solid transparent;
  background: transparent;
  color: #eef523;
  font-weight: 700;
  gap: 6px;
  box-shadow: 0 0 0 2px #eef523;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    color 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.2s ease;
  white-space: nowrap;
  border-radius: 0;
}

.animated-button-enroll:active {
  transform: scale(0.98);
  box-shadow: 0 0 0 4px #eef523;
}

.animated-button-enroll svg {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: #eef523;
  z-index: 1;
  transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    right 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    fill 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-enroll .arr-1 {
  right: 16px;
  opacity: 1;
}
.animated-button-enroll .arr-2 {
  left: -40px;
  opacity: 0;
}

.animated-button-enroll .text {
  position: relative;
  z-index: 2;
  transform: translateX(-12px);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-enroll:hover {
  background: #eef523;
  color: #000;
}

.animated-button-enroll:hover .arr-1 {
  right: -40px;
  opacity: 0;
}
.animated-button-enroll:hover .arr-2 {
  left: 16px;
  opacity: 1;
}
.animated-button-enroll:hover svg {
  fill: #000;
}
.animated-button-enroll:hover .text {
  transform: translateX(12px);
}

.rate-btn {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.rate-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px 80px;
  position: relative;
  z-index: 2;
}

.cta-fill-btn {
  --line: #f2ff00;
  --text: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1420px;
  height: 56px;
  font-family: "Clash Display", sans-serif;
  color: var(--text);
  background: transparent;
  border-left: 2px solid var(--line);
  border-right: 2px solid var(--line);
  box-shadow: inset 0 0 8px rgba(242, 255, 0, 0.4);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease;
}

.cta-fill-btn::before,
.cta-fill-btn::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--line);
  box-shadow: 0 0 10px var(--line), 0 0 20px var(--line);
  transition: width 0.4s ease;
}

.cta-fill-btn::before {
  left: 0;
}
.cta-fill-btn::after {
  right: 0;
}

.cta-fill-btn:hover::before,
.cta-fill-btn:hover::after {
  width: 50%;
}

.cta-fill-btn:hover {
  color: #000;
  background: rgba(242, 255, 0, 0.1);
}

.cta-fill-btn span {
  position: relative;
  z-index: 2;
}

.iso-empty {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  border-radius: 8px;
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.5s ease,
    margin 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  position: relative;
  z-index: 1;
}

.iso-empty.is-visible {
  opacity: 1;
  transform: translateY(0);
  max-height: 250px;
  margin: 40px auto 40px;
  padding: 40px 20px;
  border-color: rgba(255, 255, 255, 0.18);
}

.iso-empty__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.iso-empty__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  color: #ccc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.iso-empty__eyebrow img {
  width: 20px;
  height: auto;
}

.iso-empty p {
  font-family: "Akira Expanded", sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 900;
  color: #eef523;
  margin: 0;
  letter-spacing: 0.06em;
}

@keyframes eyebrowPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(242, 255, 0, 0));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(242, 255, 0, 0.7));
    transform: scale(1.02);
  }
}

.enroll-btn {
  grid-column: 2 / 3;
  margin-left: 24px;
  margin-top: 0;
  padding: 10px 26px;
}

.iso-empty.is-visible {
  margin: 28px auto 32px;
  padding: 28px 16px;
}

/* Discover Scetion */
.discover-section {
  width: 100%;
  position: relative;
  background: #000;
  overflow: hidden;
}

.discover-bg {
  background: url("../assets/images/workout-page-section/YFJ.png") center/cover
    no-repeat;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 10vw, 140px) 20px;
}

.discover-overlay {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  max-width: 1000px;
  width: 100%;
  text-align: left;
  color: #fff;
  padding: clamp(30px, 6vw, 60px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.discover-overlay h2 {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #fff;
}

.discover-overlay p {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 800px;
  font-size: 22px;
}

.discover-btn {
  position: relative;
  font-size: 1.1em;
  padding: 0.8em 1.8em;
  background: rgba(239, 255, 0, 0.2);
  border: 2px solid rgba(239, 255, 0, 0.9);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 0.5em;
  box-shadow: 0 0 15px rgba(239, 255, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.discover-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 0, 0.4) 0%,
    rgba(255, 255, 0, 0.4) 50%,
    rgba(255, 255, 0, 0.8) 50%,
    rgba(239, 255, 0, 1) 60%
  );
  border-radius: 0 0 0.5em 0;
  transition: 0.3s;
}

.discover-btn:hover::before {
  width: 1.6em;
  height: 1.6em;
}

.discover-btn:hover {
  background: rgba(239, 255, 0, 0.4);
  color: #000;
  box-shadow: 0 0 20px rgba(239, 255, 0, 0.6);
}

.discover-btn:active {
  transform: scale(0.97);
}

/* Common Questions Section */
:root {
  --fit-yellow: #f2ff00;
  --faq-pill: #6f6f6f;
  --faq-pill-txt: #111;
  --faq-parchment: rgba(255, 255, 255, 0.06);
  --faq-border: rgba(255, 255, 255, 0.14);
}

.faq-section {
  background: #000;
  color: #fff;
  padding: clamp(56px, 7vw, 96px) 16px;
}

.faq-container {
  max-width: 1280px;
  margin: 0 auto;
}

.faq-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.faq-eyebrow h3 {
  font-family: "Akira-font", "Akira Expanded", sans-serif;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(14px, 1.4vw, 18px);
  margin-top: 10px;
}

.who-dot {
  width: 22px;
  height: 22px;
  transform-origin: center;
  animation: isoDotPulse 2.5s ease-in-out infinite;
}
@keyframes isoDotPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(242, 255, 0, 0));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(242, 255, 0, 0.9));
  }
}

h3 {
  font-size: 16px;
  font-family: "Akira-font", sans-serif;
  font-weight: 700;
}

.faq-title {
  font-family: "Clash Display", system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.15;
  margin: 100px 0;
  color: #e9e9e9;
  font-size: 26px;
  letter-spacing: 1.3px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.faq-item {
  width: 100%;
}

.faq-q {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: #9b9b9b;
  color: #1a1a1a;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: filter 0.2s ease, transform 0.08s ease;
}
.faq-q:hover {
  filter: brightness(1.05);
}
.faq-q:active {
  transform: scale(0.99);
}

.faq-q .chev {
  --s: 10px;
  width: var(--s);
  height: var(--s);
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-q[aria-expanded="true"] .chev {
  transform: rotate(-135deg);
}

.faq-a {
  background: var(--faq-parchment);
  border: 1px solid var(--faq-border);
  border-radius: 12px;
  margin-top: 12px;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  backdrop-filter: blur(6px);
  transition: max-height 0.4s ease, opacity 0.25s ease, transform 0.25s ease;
}
.faq-a p {
  font-family: "Clash Display", sans-serif;
  color: #cfcfcf;
  line-height: 1.6;
  font-size: clamp(13px, 1.2vw, 16px);
  margin: 16px 0 18px;
}

.faq-a.open {
  opacity: 1;
  transform: translateY(0);
  padding-top: 14px;
  padding-bottom: 16px;
}

/* Footer Section */
.site-footer {
  background: var(--color-black);
  color: var(--fit-white);
  padding: 40px 0 70px;
  overflow: hidden;
}

.site-footer__top {
  padding-bottom: 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1 1 40%;
  text-align: left;
  margin-bottom: 30px;
}

.footer-navwrap {
  flex: 1 1 50%;
  text-align: right;
}

.footer-social {
  margin-top: 16px;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.newsletter__copy {
  flex: 1 1 45%;
  text-align: left;
  margin-bottom: 20px;
}

.newsletter__form {
  flex: 1 1 50%;
  justify-content: flex-end;
}

.cta-button:hover {
  background: var(--fit-yellow);
  color: var(--fit-black);
}

.cta-button:hover .cta-button__arr {
  fill: var(--fit-black);
}

.footer-brand {
  min-width: 280px;
  margin-right: 30px;
}

.footer-brand__copy {
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  text-decoration: none;
  color: var(--fit-white);
  line-height: 1.2;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand__copy span {
  font-weight: 400;
  color: #e1e1e1;
}

.footer-social__item {
  margin-top: 12px;
}

.footer-social__link {
  position: relative;
  color: var(--fit-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: clamp(15px, 1.4vw, 18px);
  transition: all 0.3s ease;
}

.footer-social__icon {
  margin-left: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social__link:hover {
  color: var(--fit-yellow);
}

.footer-social__link:hover .footer-social__icon {
  color: var(--fit-yellow);
  transform: translateX(5px) rotate(-25deg);
}

.footer-navwrap {
  text-align: right;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 45px;
  width: 500px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-menu {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-menu__item {
  margin: 5px 10px;
}

.footer-menu__link {
  color: var(--fit-white);
  text-decoration: none;
  font-size: clamp(14px, 1.2vw, 16px);
  transition: color 0.3s ease;
}

.footer-menu__link:hover {
  color: var(--fit-yellow);
}

.footer-menu__divider {
  height: 1px;
  width: 16px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 5px;
}

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 30px;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  flex-wrap: nowrap;
}

.newsletter__copy {
  margin-right: 20px;
}

.newsletter__title {
  font-weight: 800;
  font-size: clamp(26px, 3vw, 42px);
}

.newsletter__lede {
  color: #bfbfbf;
  font-size: clamp(14px, 1.2vw, 18px);
  margin-top: 6px;
  max-width: 600px;
}

.newsletter__form {
  display: inline-flex;
  align-items: center;
  background: #0e0e0e;
  border-radius: 999px;
  padding: 10px;
  margin-left: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.newsletter__input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--fit-white);
  font-size: 16px;
  padding: 10px 18px;
  width: clamp(200px, 30vw, 480px);
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 4px solid transparent;
  background: transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  color: var(--fit-yellow);
  box-shadow: 0 0 0 2px var(--fit-yellow);
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.6s, color 0.6s, transform 0.2s;
}

.cta-button:active {
  transform: scale(0.97);
}

.cta-button__text {
  position: relative;
  z-index: 2;
  transform: translateX(-10px);
  transition: transform 0.7s;
}
.cta-button__arr {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: var(--fit-yellow);
  transition: all 0.7s;
}

.cta-button__arr--in {
  right: 6px;
  opacity: 1;
}

.cta-button__arr--out {
  left: -26px;
  opacity: 0;
}

.cta-button:hover {
  background: var(--fit-yellow);
  color: var(--fit-black);
}

.cta-button:hover .cta-button__arr--in {
  right: -36px;
  opacity: 0;
}

.cta-button:hover .cta-button__arr--out {
  left: 16px;
  opacity: 1;
}

.cta-button:hover .cta-button__text {
  transform: translateX(12px);
  color: var(--color-black);
}

.cta-button:hover .cta-button__arr {
  fill: var(--fit-black);
}

/* Media Queries */
/* <=1400px */
@media screen and (max-width: 1400px) {
  /* header Section */
  .nav-link,
  .text,
  #search,
  .dropdown-item {
    font-size: 10px;
  }

  /* Banner Scetion */
  .bag-btn > img,
  .search-group > img {
    width: 15px;
    height: 15px;
  }
  .bnr-row > .col + .col {
    margin-left: 1.2rem;
  }
  .banner-hdr {
    text-align: left;
  }
  .title-one {
    display: inline-block;
    margin-right: 18px;
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  }
  .title1-span {
    font-size: clamp(3.4rem, 7.2vw, 5.6rem);
  }
  .visit-btn-transparent {
    display: inline-flex;
    margin-top: 0;
    vertical-align: baseline;
  }
  .visit-btn-transparent .text p {
    font-size: 1.05em;
  }
}

/* <=1200px */
@media screen and (max-width: 1200px) {
  /* Header Section */
  .overlay-collapse {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1040;
    background: var(--overlay-bg);
    padding: 12px 1rem;
    border: 1px solid var(--border-y-25);
    border-radius: 20px;
    overflow-y: auto;
    max-height: 85vh;
    overscroll-behavior: contain;
    margin-top: 12px;
  }
  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 20px;
    padding: 0.5rem;
  }
  .overlay-collapse .nav-item {
    width: 100%;
    text-align: center;
  }
  .overlay-collapse .nav-link {
    display: inline-block;
    width: auto;
    margin: 0.15rem auto;
    padding: 0.55rem 0.95rem;
    font-size: 14px;
  }
  .overlay-collapse .dropdown-menu {
    position: static !important;
    display: none;
    margin: 0.5rem auto 0 auto;
    width: min(92%, 720px);
    border-radius: 18px;
    padding: 0.5rem 0.35rem;
    box-shadow: none;
    transform: none !important;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .overlay-collapse .dropdown.show > .dropdown-menu {
    display: block;
  }
  .overlay-collapse .dropdown-submenu {
    position: static;
  }
  .overlay-collapse .dropdown-submenu > .dropdown-menu {
    position: static !important;
    display: none;
    margin: 0.4rem auto 0 auto;
    padding: 0.4rem 0.3rem 0.6rem 0.3rem;
    border-left: 2px solid var(--fit-yellow);
    border-radius: 14px;
    width: min(92%, 680px);
    max-height: 55vh;
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .overlay-collapse .dropdown-submenu.open > .dropdown-menu {
    display: block;
  }
  .overlay-collapse .dropdown-item.pill {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 13.5px;
    padding: 0.55rem 0.85rem;
    border-radius: 26px;
    margin: 0.3rem 0rem;
  }
  .nav-item.dropdown
    > .dropdown-menu
    > .dropdown-submenu:nth-of-type(1)
    > .dropdown-menu
    .dropdown-item.pill,
  .nav-item.dropdown
    > .dropdown-menu
    > .dropdown-submenu:nth-of-type(2)
    > .dropdown-menu
    .dropdown-item.pill {
    font-size: 13px;
    padding: 0.5rem 1.5rem;
    border-radius: 22px;
    margin: 0.3rem 0rem;
  }
  .overlay-collapse .dropdown-item.pill.dd-check[data-group="workouts"] {
    padding-left: 1.7rem;
  }
  .overlay-collapse
    .dropdown-item.pill.dd-check[data-group="workouts"]::before {
    left: 0.7rem;
    width: 10px;
    height: 10px;
  }
  #mainNav > .ms-xl-3 {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
  }
  .overlay-collapse .search-group {
    margin-left: auto;
    margin-right: auto;
  }
  .overlay-collapse .cart-item {
    align-self: center;
  }
  .search-group .input {
    width: 80px;
  }
  .nav-item.dropdown.dropdown-hover > .nav-link.dropdown-toggle::after {
    border-top: 0.45em solid var(--color-text) !important;
    border-right: 0.45em solid transparent;
    border-left: 0.45em solid transparent;
    transition: transform 0.2s ease, border-top-color 0.2s ease;
  }
  .nav-item.dropdown.dropdown-hover.show > .nav-link.dropdown-toggle::after {
    border-top-color: var(--color-black) !important;
    transform: rotate(180deg);
  }

  /* Banner Section */
  .banner-hdr {
    text-align: left;
  }
  .title-one {
    display: inline-block;
    margin-right: 18px;
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  }
  .title1-span {
    font-size: clamp(3.4rem, 7.2vw, 5.6rem);
  }
  .visit-btn-transparent {
    display: inline-flex;
    margin-top: 0;
    vertical-align: baseline;
  }
  .visit-btn-transparent .text p {
    font-size: 1.5rem;
  }
  .slider-one-section .swiper-slide {
    width: clamp(260px, 42vw, 460px);
    margin-right: 14px;
  }
  .about-gym__content {
    margin-left: 18px;
  }
  .hero-cntn {
    min-height: 52vh;
  }
  .title1-span {
    font-size: inherit !important;
  }
  .title-1 {
    font-size: 76px;
    margin-bottom: 1px;
  }
  .banner-stripes {
    margin-top: 10px;
  }

  /* Workout ISO Scetion */
  .iso-card {
    width: calc(50% - 16px);
    margin: 10px 8px 70px;
  }

  .iso-card__frame {
    height: 340px;
    padding: 16px;
  }
  .hero {
    width: 280px;
  }
  .hero-1 {
    width: 320px;
  }
  .hero-2 {
    width: 250px;
  }
  .hero-3 {
    width: 250px;
  }
  .hero-4 {
    width: 380px;
  }
  .hero-5 {
    width: 320px;
  }
  .hero-6 {
    width: 350px;
  }
  .hero-7 {
    width: 320px;
  }

  
  /* Footer Section */
  .footer-grid {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-navwrap {
    text-align: center;
    margin-top: 30px;
  }

  .footer-menu {
    justify-content: center;
  }
  .newsletter {
    flex-direction: column;
    align-items: center;
  }
  .newsletter__form {
    margin-top: 20px;
    margin-left: 0;
  }
}

/* <=992px */
@media screen and (max-width: 992px) {
  /* Banner Scetion */
  .bnr-row {
    flex-direction: column;
    align-items: center;
  }
  .bnr-row > .col + .col {
    margin-left: 0;
    margin-top: 20px;
  }
  .banner-hdr {
    text-align: center;
  }
  .title-one {
    display: block;
    margin-right: 0;
    font-size: clamp(2.2rem, 7.2vw, 3.6rem);
  }
  .title1-span {
    font-size: clamp(2.2rem, 9vw, 3.8rem);
  }
  .visit-btn-transparent {
    display: block;
    margin: 10px auto 0 auto;
  }
  .visit-btn-transparent .inner-wrapper {
    margin: 0 auto;
  }
  .bnr-para {
    width: auto;
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .gym-img img {
    width: 42px;
    height: 42px;
  }
  .hero-cntn {
    min-height: 46vh;
  }
  .title1-span {
    font-size: inherit !important;
  }

  /* Workout Stats Section */
  .ff-stats-item {
    flex: 1 1 50%;
  }
  .ff-stats-item:nth-child(odd) {
    border-left: none;
  }

  /* Workout ISO Section */
  .iso-card {
    width: 100%;
    margin: 10px 0 60px;
  }
  .ff-filter-col {
    flex: 1 1 50%;
  }
  .iso-grid {
    margin-top: 60px;
  }

  .iso-card {
    width: 100%;
    max-width: 720px;
    margin: 10px auto 70px;
  }

  .iso-card__frame {
    height: 320px;
    padding: 16px;
  }

  .hero {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: min(72vw, 300px);
    bottom: -6px;
  }

  .iso-card__bottom {
    grid-template-columns: 1fr;
    padding: 16px 4px 0;
  }

  /* Discover Scetion */
  .discover-overlay {
    text-align: center;
  }

  /* Common Questions Section */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  
  /* Footer Section */
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-navwrap {
    text-align: center;
    margin: 0 auto 25px;
  }

  .newsletter {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .newsletter__copy {
    text-align: center;
    margin-bottom: 20px;
  }

  .newsletter__form {
    justify-content: center;
    margin: 0;
  }
}

/* <=768px */
@media screen and (max-width: 768px) {
  /* Banner Scetion */
  .gym-img img {
    width: 42px;
    height: 42px;
  }
  .services__label {
    font-size: 14px;
  }
  .services__dot {
    width: 16px;
    height: 16px;
  }
  .services__stripes {
    width: 36px;
  }

  .service-item {
    padding: 44px 0;
  }
  .service-title {
    font-size: 10px;
  }
  .service-arrow i {
    font-size: 20px;
  }
  .service-arrow {
    right: 4%;
  }

  .service-item--featured .service-preview {
    width: min(150px, 64vw);
  }
  .service-line {
    top: 30px;
  }
  .hero-cntn {
    row-gap: 16px;
  }
  .breadcrumb-item {
    padding: 6px 12px !important;
  }
  .breadcrumb-item > *:not(:last-child) {
    margin-right: 10px;
  }
  .square {
    width: 7px;
    height: 7px;
  }
  .title-1 {
    font-size: clamp(28px, 11vw, 44px);
  }

  /* Workout Dropdown Section */
  .ff-filter-col {
    flex: 1 1 50%;
  }

  /* Workout ISO Section */
  .iso-card {
    max-width: 640px;
    margin: 10px auto 60px;
    padding: 18px;
  }

  .iso-card__frame {
    height: 300px;
    padding: 14px;
  }

  .iso-card__frame .badge,
  .iso-card__frame .author {
    font-size: 11px;
  }

  .iso-card__bottom .text h4 {
    font-size: 20px;
  }
  .iso-card__bottom .text p {
    font-size: 13px;
  }

  .hero {
    width: min(78vw, 280px);
  }

   /* Footer Section */
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-navwrap {
    text-align: center;
    margin: 0 auto 30px;
  }

  .footer-menu {
    justify-content: center;
  }

  .newsletter {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .newsletter__copy {
    margin: 0 0 20px;
  }

  .newsletter__form {
    width: 100%;
    justify-content: center;
  }

  .newsletter__input {
    width: 90%;
    text-align: center;
  }
  .footer-logo {
    width: 200px;
  }
}

/* <=576px */
@media screen and (max-width: 576px) {
  /* Header Scetion */
  .nav-logo img {
    width: 76px;
  }
  .search-group .input {
    width: 120px;
  }
  .dropdown-menu {
    max-height: 70vh;
    overflow: auto;
  }
  .overlay-collapse .nav-link {
    font-size: 12px;
    padding: 0.45rem 0.7rem;
  }
  .overlay-collapse .dropdown-item.pill {
    font-size: 12px;
    padding: 0.4rem 0.7rem;
    border-radius: 22px;
  }
  .overlay-collapse .dropdown-item.pill.dd-check[data-group="workouts"] {
    padding-left: 1.5rem;
  }
  .overlay-collapse
    .dropdown-item.pill.dd-check[data-group="workouts"]::before {
    left: 0.55rem;
    width: 9px;
    height: 9px;
  }
  .overlay-collapse .dropdown-menu {
    width: 95%;
  }

  /* Banner Scetion */
  .bnr-row {
    min-height: calc(80vh - var(--hdr-h));
  }
  .title-one {
    font-size: 2rem;
  }
  .title1-span {
    font-size: 1.9rem;
  }
  .title1-span .frame-icon {
    width: 38px;
  }
  .bnr-para {
    width: 300px;
  }
  .hero-cntn {
    min-height: 42vh;
    padding: 56px 0;
  }
  .title-1 {
    font-size: clamp(28px, 11vw, 44px);
  }
  .breadcrumb-link {
    font-size: 12px;
  }
  .banner-stripes {
    width: clamp(44px, 14vw, 72px);
  }

  /* Workout Dropdown Section */
  .ff-eyebrow {
    justify-content: center;
    margin-bottom: 18px;
  }
  .ff-filter-row {
    margin-left: 0;
    margin-right: 0;
  }
  .ff-filter-col {
    padding-left: 0;
    padding-right: 0;
  }
  .ff-menu-card {
    min-width: 100%;
  }

  /* Workout ISO Scetion */
  .ff-menu-card {
    min-width: 100%;
  }
  .iso-card__frame {
    height: 320px;
  }
  .workouts-iso .container {
    padding: 0 12px;
  }
  .iso-grid {
    margin-top: 44px;
  }
  .iso-card {
    max-width: 520px;
    margin: 8px auto 52px;
    padding: 16px;
    border-width: 1px;
  }

  .iso-card__frame {
    height: 280px;
    padding: 12px;
  }

  .iso-card__bottom .num {
    font-size: 11px;
    padding: 8px 10px;
    width: 36px;
  }
  .iso-card__bottom .text h4 {
    font-size: 18px;
  }
  .iso-card__bottom .text p {
    font-size: 12.5px;
  }

  .hero {
    width: min(82vw, 260px);
  }
  .banner-stripes {
    right: 24px;
    bottom: 64px;
    width: 64px;
  }
  .iso-empty.is-visible {
    margin: 24px auto 28px;
    padding: 24px 14px;
  }
  .enroll-btn {
    grid-column: 1 / 3;
    margin: 10px auto;
  }

  /* Discover Scetion */
  .discover-bg {
    min-height: 80vh;
  }
  .discover-overlay {
    padding: 24px 18px;
  }
  .discover-overlay h2 {
    font-size: 22px;
  }
  .discover-overlay p {
    font-size: 14px;
  }
  .discover-btn {
    font-size: 0.95em;
    padding: 0.6em 1.3em;
  }

  /* Footer Section */
  .footer-menu__divider {
    display: none;
  }

  .footer-menu__item {
    margin: 4px 6px;
  }

  .cta-button {
    padding: 10px 24px;
  }

  .newsletter__input {
    width: 100%;
  }

  .footer-brand__copy {
    font-size: 22px;
  }

  .newsletter__title {
    font-size: 28px;
  }

  .footer-logo {
    width: 150px;
  }
  .cta-button__text {
    font-size: 8px;
  }
  .cta-button__arr {
    height: 14px;
    width: 14px;
  }
  .cta-button__arr--out {
    height: 14px;
    width: 14px;
  }
}

@media screen and (max-width: 425px) {
  .ff-stats-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--hdr-h, 76px));
    padding: 40px 0;
  }

  .ff-stats-section .container {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .ff-stats-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }

  .ff-stats-item {
    width: min(360px, 100%);
    margin: 14px auto;
    text-align: center;
    border-left: none;
  }

  .ff-stats-item:first-child {
    margin-top: 0;
  }
  .ff-stats-item:last-child {
    margin-bottom: 0;
  }

  .ff-stats-value {
    font-size: clamp(28px, 10vw, 42px);
  }
  .ff-stats-label {
    font-size: clamp(12px, 3.6vw, 16px);
  }

  .ff-stripes,
  .banner-stripes-unique {
    display: block;
    margin: 10px auto 0;
  }
}

@media screen and (max-width: 375px) {
  /* Workout ISo Scetion */
  .iso-card {
    max-width: 340px;
    margin: 8px auto 44px;
    padding: 14px;
  }

  .iso-card__frame {
    height: 250px;
    padding: 10px;
  }

  .hero {
    width: min(86vw, 210px);
  }

  .iso-card__bottom .text h4 {
    font-size: 17px;
  }
  .iso-card__bottom .text p {
    font-size: 12px;
  }

  .banner-stripes {
    right: 18px;
    bottom: 58px;
    width: 56px;
  }
}

/* >=1200 (min-width) */
@media screen and (min-width: 1200px) {
  /* Header Scetion */
  .overlay-collapse {
    position: static !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }
  .navbar .dropdown-menu {
    position: absolute !important;
  }
  .dropdown-submenu > .dropdown-menu {
    position: absolute !important;
    top: 0;
    left: 100%;
    margin-left: 0.5rem;
    margin-top: -0.25rem;
  }
  .navbar-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
  }
  .navbar-nav > li,
  .navbar-nav > form,
  .navbar-nav > .cart-item {
    flex: 0 0 auto;
  }
  .search-group .input {
    width: 150px;
  }
}
