/* =============== VARIABLES ===============  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --clr-primary-400: #D4FD07;
  --clr-primary-500: #77B938;
  --clr-secondary-400: #FF0C67;
  --clr-info-400: #64D7D1;
  --clr-neutral-100: #ffffff;
  --clr-neutral-200: #E0E0E0;
  --clr-neutral-300: #E4E4E4;
  --clr-neutral-400: #CECECE;
  --clr-neutral-500: #D2D2D2;
  --clr-neutral-550: #bebebe;
  --clr-neutral-600: #707070;
  --clr-neutral-700: #404040;
  --clr-neutral-800: #0D1116;
  --clr-neutral-900: #0F1116;
  --clr-neutral-950: #000000;
  --bg-gd-primary-400: linear-gradient(90deg, #A00021 0%, #CC1221 47.92%, #CC3621 100%);
  --btn-primary-bg: var(--clr-primary-400);
  --btn-primary-txt: var(--clr-neutral-800);
  /* Font family */
  --ff-primary: "ITC Avant Garde Gothic LT";
  --ff-secondary: "Poppins", sans-serif;
  --ff-heading: var(--ff-primary);
  --fs-50: 1.1rem;
  --fs-100: 1.4rem;
  --fs-150: 1.6rem;
  --fs-200: 1.8rem;
  --fs-250: 2.5rem;
  --fs-300: 3rem;
  --fs-350: 4rem;
  --fs-400: 5rem;
  --fs-450: 6rem;
  --fs-500: 7rem;
  --fs-600: 8rem;
  --fs-700: 11rem;
  --fs-800: 14rem;
  --fs-900: 30.8rem;
  --radius-100: 1.6rem;
  --radius-200: 2rem;
  --radius-300: 2.4rem;
  --radius-400: 2.7rem;
  --radius-500: 3rem;
  --radius-600: 3.8rem;
  --bigger-heading: clamp(var(--fs-350), 6vw, var(--fs-600));
  --secondary-heading: clamp(var(--fs-250), 6vw, var(--fs-450));
  --sub-heading: clamp(var(--fs-250), 5vw, var(--fs-400));
  --tertari-heading: clamp(var(--fs-150), 6vw, var(--fs-200));
  --shadow-400: 0px 0px 100px rgba(0, 0, 0, 0.25);
  --bf-400: blur(30px);
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(40px);
    /* Moves the image 500px to the right */
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
/* box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*reset font sizes of all tags*/
* {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

/* reset font size 1rem to 10px */
html {
  font-size: 62.5%;
}

body,
html {
  min-height: 100%;
}

/* remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* set core body defaults */
body {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-style: normal;
}

.chosen__slider .swiper-wrapper { transform: translate3d(88px, 0px, 0px); }

/* a elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* avoid text overflows */
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-size: inherit;
}

div, .header__toggle-btn, .offcanvas__close-btn { user-select: none; }

.d-lg-none { display: flex; }
.d-lg-none .header__nav { margin-left: 28px; }

.mybtn { white-space: nowrap; }
.signup { color: white; }
.inside { max-width: 420px; margin: auto; }
.signup input, .signup textarea { font-size: 20px; padding: 10px; border-radius: 5px; background-color: transparent; border: 1px solid #ffffff40; }
.signup input:focus, .signup textarea:focus { border-bottom: 5px solid #d4fd04; }
.txtGrp { margin: 10px 0px; min-height: 52px; }
#asteriskField { display:none; }
.mybtn--secondary { color: #ffffff !important; }
.member a { color: #d4fd04; }
.member { color: #ffffff }
.errorList { text-align: left; }
.member input, .member textarea { width: 100%; color: #ffffff !important; }

input:focus {
    outline: none;    
}

.country-link {
        background: none;
        border: none;
        color: #333;
        font-size: 14px;
        cursor: pointer;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px; /* Adds space between flag and text */
        font-family: inherit;
        padding: 5px 10px;
    }
    .country-link:hover {
        color: #0056b3;
    }
    .flag img {
        display: inline-block;
        vertical-align: middle;
    }
    .country-name {
        display: inline-block;
        vertical-align: middle;
    }

/* remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "ITC Avant Garde Gothic LT";
  src: url("../font/AvantGardeLT-Book.woff2") format("woff2"), url("../font/AvantGardeLT-Book.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Pro Bk";
  src: url("../font/ITCAvantGardePro-Demi.woff2") format("woff2"), url("../font/ITCAvantGardePro-Demi.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
body {
  font-size: var(--fs-150);
  font-weight: 400;
  font-family: var(--ff-secondary);
  color: var(--clr-neutral-800);
  background-color: var(--clr-neutral-300);
}

.bigger-heading {
  font-size: var(--bigger-heading);
  font-family: var(--ff-primary);
  font-weight: 600;
  line-height: clamp(4.5rem, 7vw, 9.6rem);
}

.secondary-heading {
  font-size: var(--secondary-heading);
  font-family: var(--ff-primary);
  font-weight: 500;
  line-height: clamp(3rem, 8vw, 7rem);
}

.sub-heading {
  font-size: var(--sub-heading);
  font-family: var(--ff-primary);
  font-weight: 500;
  line-height: clamp(3rem, 7vw, 5.5rem);
}

.text-neutral-100 {
  color: var(--clr-neutral-100);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.text-neutral-200 {
  color: var(--clr-neutral-200);
}

.bg-neutral-200 {
  background-color: var(--clr-neutral-200);
}

.text-neutral-300 {
  color: var(--clr-neutral-300);
}

.bg-neutral-300 {
  background-color: var(--clr-neutral-300);
}

.text-neutral-400 {
  color: var(--clr-neutral-400);
}

.bg-neutral-400 {
  background-color: var(--clr-neutral-400);
}

.text-neutral-500 {
  color: var(--clr-neutral-500);
}

.bg-neutral-500 {
  background-color: var(--clr-neutral-500);
}

.text-neutral-550 {
  color: var(--clr-neutral-550);
}

.bg-neutral-550 {
  background-color: var(--clr-neutral-550);
}

.text-neutral-600 {
  color: var(--clr-neutral-600);
}

.bg-neutral-600 {
  background-color: var(--clr-neutral-600);
}

.text-neutral-700 {
  color: var(--clr-neutral-700);
}

.bg-neutral-700 {
  background-color: var(--clr-neutral-700);
}

.text-neutral-800 {
  color: var(--clr-neutral-800);
}

.bg-neutral-800 {
  background-color: var(--clr-neutral-800);
}

.text-neutral-900 {
  color: var(--clr-neutral-900);
}

.bg-neutral-900 {
  background-color: var(--clr-neutral-900);
}

.text-neutral-950 {
  color: var(--clr-neutral-950);
}

.bg-neutral-950 {
  background-color: var(--clr-neutral-950);
}

.text-primary-400 {
  color: var(--clr-primary-400);
}

.text-primary-500 {
  color: var(--clr-primary-500);
}

.text-secondary-400 {
  color: var(--clr-secondary-400);
}

.text-info-400 {
  color: var(--clr-info-400);
}

.bg-primary-400 {
  background-color: var(--clr-primary-400);
}

.bg-primary-500 {
  background-color: var(--clr-primary-500);
}

.bg-secondary-400 {
  background-color: var(--clr-secondary-400);
}

.bg-info-400 {
  background-color: var(--clr-info-400);
}

.section-gap {
  margin: var(--section-gap) 0;
}

.grid {
  display: grid;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.fs-50 {
  font-size: var(--fs-50);
}

@media (min-width: 1200px) {
  .fs-xl-50 {
    font-size: var(--fs-50);
  }
}
@media (min-width: 992px) {
  .fs-lg-50 {
    font-size: var(--fs-50);
  }
}
.fs-100 {
  font-size: var(--fs-100);
}

@media (min-width: 1200px) {
  .fs-xl-100 {
    font-size: var(--fs-100);
  }
}
@media (min-width: 992px) {
  .fs-lg-100 {
    font-size: var(--fs-100);
  }
}
.fs-150 {
  font-size: var(--fs-150);
}

@media (min-width: 1200px) {
  .fs-xl-150 {
    font-size: var(--fs-150);
  }
}
@media (min-width: 992px) {
  .fs-lg-150 {
    font-size: var(--fs-150);
  }
}
.fs-200 {
  font-size: var(--fs-200);
}

@media (min-width: 1200px) {
  .fs-xl-200 {
    font-size: var(--fs-200);
  }
}
@media (min-width: 992px) {
  .fs-lg-200 {
    font-size: var(--fs-200);
  }
}
.fs-250 {
  font-size: var(--fs-250);
}

@media (min-width: 1200px) {
  .fs-xl-250 {
    font-size: var(--fs-250);
  }
}
@media (min-width: 992px) {
  .fs-lg-250 {
    font-size: var(--fs-250);
  }
}
.fs-300 {
  font-size: var(--fs-300);
}

@media (min-width: 1200px) {
  .fs-xl-300 {
    font-size: var(--fs-300);
  }
}
@media (min-width: 992px) {
  .fs-lg-300 {
    font-size: var(--fs-300);
  }
}
.fs-350 {
  font-size: var(--fs-350);
}

@media (min-width: 1200px) {
  .fs-xl-350 {
    font-size: var(--fs-350);
  }
}
@media (min-width: 992px) {
  .fs-lg-350 {
    font-size: var(--fs-350);
  }
}
.fs-400 {
  font-size: var(--fs-400);
}

@media (min-width: 1200px) {
  .fs-xl-400 {
    font-size: var(--fs-400);
  }
}
@media (min-width: 992px) {
  .fs-lg-400 {
    font-size: var(--fs-400);
  }
}
.fs-450 {
  font-size: var(--fs-450);
}

@media (min-width: 1200px) {
  .fs-xl-450 {
    font-size: var(--fs-450);
  }
}
@media (min-width: 992px) {
  .fs-lg-450 {
    font-size: var(--fs-450);
  }
}
.fs-500 {
  font-size: var(--fs-500);
}

@media (min-width: 1200px) {
  .fs-xl-500 {
    font-size: var(--fs-500);
  }
}
@media (min-width: 992px) {
  .fs-lg-500 {
    font-size: var(--fs-500);
  }
}
.fs-600 {
  font-size: var(--fs-600);
}

@media (min-width: 1200px) {
  .fs-xl-600 {
    font-size: var(--fs-600);
  }
}
@media (min-width: 992px) {
  .fs-lg-600 {
    font-size: var(--fs-600);
  }
}
.fs-700 {
  font-size: var(--fs-700);
}

@media (min-width: 1200px) {
  .fs-xl-700 {
    font-size: var(--fs-700);
  }
}
@media (min-width: 992px) {
  .fs-lg-700 {
    font-size: var(--fs-700);
  }
}
.fs-800 {
  font-size: var(--fs-800);
}

@media (min-width: 1200px) {
  .fs-xl-800 {
    font-size: var(--fs-800);
  }
}
@media (min-width: 992px) {
  .fs-lg-800 {
    font-size: var(--fs-800);
  }
}
.fs-900 {
  font-size: var(--fs-900);
}

@media (min-width: 1200px) {
  .fs-xl-900 {
    font-size: var(--fs-900);
  }
}
@media (min-width: 992px) {
  .fs-lg-900 {
    font-size: var(--fs-900);
  }
}
.radius-100 {
  border-radius: var(--radius-100);
}

.radius-200 {
  border-radius: var(--radius-200);
}

.radius-300 {
  border-radius: var(--radius-300);
}

.radius-400 {
  border-radius: var(--radius-400);
}

.radius-500 {
  border-radius: var(--radius-500);
}

.bf-400 {
  -webkit-backdrop-filter: var(--bf-400);
          backdrop-filter: var(--bf-400);
}

@media (min-width: 768px) {
  .grid--md {
    display: grid;
  }
  .grid--md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid--md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid--lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1025px) {
  .grid-xl {
    display: grid;
  }
  .grid--xl-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--xl-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--xl-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.mybtn {
  font-size: var(--fs-100);
  width: 18.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-neutral-800);
  border-radius: var(--radius-600);
  height: 4.1rem;
  border: 2px solid transparent;
  transition: all 0.3s;
  margin: auto;
}
.mybtn--primary {
  background-color: var(--clr-primary-400);
}
.mybtn--primary:hover {
  background-color: transparent;
  border-color: var(--clr-neutral-800);
}
.mybtn--primary:hover span {
  transform: translateY(-4px);
}
.mybtn--secondary {
  background: var(--clr-secondary-400);
  color: var(--clr-neutral-100);
  font-weight: 700;
  font-size: var(--fs-100);
  width: 16.1rem;
  justify-content: flex-start;
  padding: 6px 1.8rem;
  border: 1px solid transparent;
}
.mybtn--secondary:hover {
  color: var(--clr-secondary-400);
  border-color: var(--clr-secondary-400);
  background: transparent;
}
.mybtn--white {
  background-color: var(--clr-neutral-100);
  color: var(--clr-neutral-800);
  margin: unset;
  border: 1px solid transparent;
  gap: 5px;
}
.mybtn--white span {
  display: none;
}
.mybtn--white:hover {
  background-color: transparent;
  border-color: var(--clr-neutral-800);
}
.mybtn--white:hover span {
  display: inline-flex;
}
.mybtn--hover-dark:hover {
  color: var(--clr-neutral-100);
  border-color: var(--clr-neutral-100);
}
.mybtn span {
  transition: all 0.3s;
}

@media (min-width: 992px) {
  .mybtn {
    font-size: var(--fs-200);
    width: 21.7rem;
    height: 5rem;
  }
  .mybtn--secondary {
    font-size: var(--fs-150);
    width: 17.6rem;
    padding: 7px 1.8rem;
    color: var(--clr-neutral-100);
  }
}
.content-box__head {
  overflow: hidden;
}
.content-box__desc {
  margin-top: 3rem;
  font-size: 24px;
  display: grid;
}
.content-box__btn {
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .content-box__desc {
    margin-top: 4rem;
  }
  .content-box__btn {
    margin-top: 4rem;
  }
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-top: 2rem;
  overflow: hidden;
  padding-top: 17rem;
  /* Right move animation class */
}
.hero__img {
  position: absolute;
  top: 41%;
  width: 50%;
  min-height: 46rem;
  left: 62%;
  translate: -50% -50%;
  cursor: pointer;
  transition: transform 1s ease-in-out;
  width: 450px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .move-right {
  animation: moveRight 3s forwards ease-in-out;
}

@media (min-width: 1025px) {
  .hero {
    padding-top: 17rem;
  }
  .hero__img {
    top: 42%;
    width: 50%;
    min-height: 46rem;
    left: 60%;
    width: 580px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-top: 20rem;
  }
  .hero__img {
    top: 20%;
    left: 51%;
    min-height: 100%;
    width: 280px;
  }
}
#progress-bar,
#progress-bar-2 {
  display: none;
  justify-content: center;
  align-items: center;
  height: 90px;
  opacity: 0;
}

#progress-bar.active,
#progress-bar-2.active {
  display: flex;
}

.odometer-circle {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SVG Circle Progress */
.circle-background {
  fill: none;
  stroke: #ddd;
  stroke-width: 8;
}

.circle-progress {
  fill: none;
  stroke: var(--clr-secondary-400);
  stroke-width: 8;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.percent {
  position: absolute;
  font-size: 40px;
  font-weight: bold;
  color: var(--clr-secondary-400);
  line-height: 1;
}

/* Customize the unchecked background color */
.custom-switch {
  background-color: var(--clr-neutral-100);
  /* Light gray for unchecked state */
  border-color: var(--clr-neutral-100);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.custom-switch:checked {
  background-color: var(--clr-neutral-800);
  border-color: var(--clr-neutral-800);
  box-shadow: none;
}

.custom-switch::before {
  background-color: #fff;
}

.custom-switch {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#store-progress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

.store-circle {
  position: relative;
  width: 211px;
  height: 211px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store-background {
  fill: none;
  stroke: #E5B3C1;
  stroke-width: 20px;
}

.store-progress {
  fill: none;
  stroke: var(--clr-secondary-400);
  stroke-width: 20px;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.5s ease;
}

.store-percent {
  position: absolute;
  font-size: 70px;
  /* Slightly larger for better visibility */
  font-weight: 500;
  color: var(--clr-secondary-400);
}

.store-percent:last-child {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clr-secondary-400);
  margin-top: 8rem;
}

@media (max-width: 768px) {
  .store-circle {
    width: 80px;
    /* Adjust for mobile */
    height: 80px;
  }
  .store-background,
  .store-progress {
    stroke-width: 15px;
    /* Thinner stroke for smaller size */
  }
  .store-percent {
    font-size: 2rem;
    /* Smaller text size */
  }
  .store-percent:last-child {
    font-size: 8px;
    /* Smaller secondary text */
    margin-top: 3rem;
  }
  #progress-bar,
  #progress-bar-2 {
    display: none;
    justify-content: center;
    align-items: center;
    height: 50px;
    opacity: 0;
  }
  #progress-bar.active,
  #progress-bar-2.active {
    display: flex;
  }
  .odometer-circle {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .percent {
    position: absolute;
    font-size: 14px;
  }
}
.swiper-button-next,
.swiper-button-prev {
  position: unset;
  right: unset;
  margin: 0;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  font-size: unset;
  font-family: unset;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-next::after {
  background-image: url("../img/arrow-right.svg");
}

.swiper-button-prev::after {
  background-image: url("../img/arrow-right.svg");
  rotate: -180deg;
}

.swiper-pagination {
  position: unset;
  background: #CECECE;
  border-radius: 3rem;
  overflow: hidden;
  height: 5px !important;
}

.swiper-pagination-progressbar-fill {
  background: var(--clr-neutral-800) !important;
}

@media (max-width: 991px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    width: 2rem;
    height: 2rem;
  }
}
.pricing .accordion {
  border: 0;
  background-color: transparent;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  --bs-accordion-btn-icon-transform: rotate(45deg);
}
.pricing .accordion .accordion-item {
  border: 0;
  background-color: transparent;
  padding: 0;
}
.pricing .accordion .accordion-item .accordion-button {
  padding: 0;
  border: unset;
  box-shadow: unset;
  background: transparent;
  font-size: 1.2rem;
  color: #0D1116;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
}
.pricing .accordion .accordion-item .accordion-button::after {
  left: 0;
  margin-left: 0;
  background-image: url("../img/pluse-white.svg");
  background-color: var(--clr-secondary-400);
  padding: 4px;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  background-position: center;
  background-size: 7px;
}
.pricing .accordion .accordion-item .accordion-body p {
  font-size: 1.2rem;
}

.footer {
  padding: 4.7rem 0 3rem;
  background: var(--clr-neutral-800);
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.footer__link {
  color: #707070;
  font-size: var(--fs-100);
}
.footer__link:hover {
  color: var(--clr-neutral-100);
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  border: 2px solid var(--clr-primary-400);
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social-link:hover {
  background-color: var(--clr-primary-400);
}
.footer__social-link:hover .footer__social-ic {
  filter: invert(100%);
  background-blend-mode: darken;
}
.footer__input {
  background: transparent !important;
  color: #707070 !important;
  border: 1px solid var(--clr-neutral-100) !important;
  padding: 1.7rem 2rem;
  border-radius: 2.4rem !important;
  font-size: 1.4rem;
  opacity: 9;
}
.footer__input::-moz-placeholder {
  color: #707070 !important;
}
.footer__input::placeholder {
  color: #707070 !important;
}
.footer__input:focus {
  outline: none !important;
  border: 1px solid var(--clr-primary-400) !important;
  box-shadow: none;
}
.footer__input-btn {
  background: var(--clr-primary-400) !important;
  border-radius: 2.4rem !important;
  height: 100%;
  border: 1px solid var(--clr-primary-400);
  box-shadow: none;
  width: 14rem;
  margin-top: 3rem;
  padding: 1.4rem 1rem;
}
.footer__cpy {
  margin-top: 5rem;
  padding: 4rem 0 0;
  border-top: 1px solid #707070;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--clr-neutral-100);
  align-items: start;
  font-size: 1.2rem;
  flex-direction: column;
  text-align: left;
  gap: 2rem;
  justify-content: start;
}
.footer__logo {
  filter: invert(100%);
}

@media (min-width: 992px) {
  .footer {
    padding: 8.7rem 0 5rem;
    background: var(--clr-neutral-800);
  }
  .footer__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  .footer__link {
    color: #707070;
    font-size: var(--fs-100);
  }
  .footer__link:hover {
    color: var(--clr-neutral-100);
  }
  .footer__input-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    margin: 0;
  }
  .footer__cpy {
    margin-top: 5rem;
    padding: 4rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0;
  z-index: 999;
  /* */
  /* */
}
.header__logo {
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__toggle-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 9;
}
.header__toggle-btn:hover .header__toggle-line--slider::before {
  transform: translateX(200%);
  width: 1rem;
}
.header__toggle-line {
  position: relative;
  width: 3rem;
  height: 4px;
  background-color: black;
  border-radius: 3rem;
}
.header__toggle-line--slider {
  overflow: hidden;
}
.header__toggle-line--slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
  border-radius: 3rem;
  background-color: var(--clr-primary-400);
  transition: transform 0.3s ease-in-out;
}
.header__btn {
  font-size: 1.4rem;
  background-color: var(--clr-primary-400);
  color: var(--clr-neutral-800);
  width: 11rem;
  height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.8rem;
  font-weight: 500;
  transition: all 0.3s;
  margin: auto;
  border: 2px solid transparent;
}
.header__btn:hover {
  background-color: transparent;
  border-color: var(--clr-neutral-800);
}
.header__btn:hover span {
  transform: translateY(-2px);
}
.header__btn span {
  transition: all 0.3s;
}
.header__menu {
  gap: 2.7rem;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.header__nav-item {
  position: relative;
}
.header__nav-item:hover .header__nav-dropdown {
  visibility: visible;
  opacity: 9;
}
.header__nav-link {
  font-size: var(--fs-100);
  color: var(--clr-neutral-800);
  position: relative;
  top: -1px; /* optically align Pricing / Contact Us / flag with the Get Started pill */
  display: inline-block;
}
.header__nav-link:hover {
  color: var(--clr-primary-500);
}
.header__nav-dropdown {
  position: absolute;
  top: 4rem;
  width: 190px;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  /* -20px = the flag column's inset inside the dropdown, so the popup flags
     line up directly beneath the header flag */
  left: -20px;
  translate: 0 0;
  right: auto;
  margin: 0;
  transition: all 0.3s;
  background-color: var(--clr-neutral-100);
}
/* Mobile header (below lg): the flag sits at the right edge, so the
   left-anchored dropdown pokes ~65px past the viewport. Even hidden
   (visibility:hidden is still laid out) that overflow summons a horizontal
   scrollbar on every narrow window — right-align it instead. */
.d-lg-none .header__nav-dropdown {
  left: auto;
  right: 0;
}
.header__social {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__social-link {
  width: 3.5rem;
  height: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  border: 2px solid var(--clr-neutral-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.header__social-link:hover {
  background-color: var(--clr-primary-400);
  border-color: var(--clr-primary-400);
}

.offcanvas {
  border-radius: 2rem 0 0 2rem;
  width: 270px !important;
  z-index: 1000;
  border: 0 !important;
  /**/
}
.offcanvas-body {
  padding: 4.5rem 4.3rem 4rem;
  position: relative;
}
.offcanvas__close-btn {
  display: flex;
  justify-content: end;
  padding: 2.8rem 3.8rem 0;
  position: relative;
}
.offcanvas__close-btn:hover .offcanvas__close-ic {
  transform: rotate(180deg);
}
.offcanvas__close-ic {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: width 2s, height 2s, transform 0.3s;
}
.offcanvas__nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2rem;
}
.offcanvas__nav-list {
  display: flex;
  flex-direction: column;
}
.offcanvas__nav-item {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.offcanvas__nav-item:nth-child(1), .offcanvas__nav-item:nth-child(2), .offcanvas__nav-item:nth-child(3) {
  border-bottom: 1px solid var(--clr-neutral-600);
}
.offcanvas__nav-item .accordion__content {
  max-height: 0;
  overflow: hidden;
  color: #555;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.offcanvas__nav-item .accordion__input {
  display: none;
}
.offcanvas__nav-item .accordion__input:checked + .offcanvas__nav-link + .accordion__content {
  max-height: 500px;
}
.offcanvas__nav-item .accordion__input:checked + .offcanvas__nav-link .accordion__toggle::after {
  content: "";
  rotate: 45deg;
}
.offcanvas__nav-item .accordion__toggle {
  margin-left: auto;
  flex-grow: 1;
  transition: all 0.3s;
}
.offcanvas__nav-item .accordion__toggle::after {
  content: "";
  position: absolute;
  right: 0;
  font-size: 18px;
  transition: transform 0.3s ease;
  background-image: url("../img/pluse.svg");
  background-size: contain;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
}
.offcanvas__nav-link {
  color: var(--clr-neutral-800);
  padding: 1.2rem 0;
  display: block;
  cursor: pointer;
}
.offcanvas__nav-link--btn {
  margin: 1.2rem 0;
}
.offcanvas__nav-link:hover {
  color: var(--clr-primary-500);
}
.offcanvas__nav-ic {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.offcanvas__inner-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.offcanvas__inner-link {
  color: var(--clr-neutral-800);
  display: block;
}
.offcanvas__inner-link:hover {
  color: var(--clr-primary-500);
}

@media (min-width: 992px) {
  .header {
    padding: 2.4rem 20px;
  }
  .header__logo {
    width: 2.6rem;
    height: 2.6rem;
  }
  .header__toggle-btn {
    display: flex;
    flex-direction: column;
  }
  .header__toggle-line {
    width: 3rem;
    height: 4px;
  }
  .header__menu {
    gap: 3rem;
  }
  .offcanvas {
    width: 330px !important;
  }
  .offcanvas-body {
    padding: 4.5rem 4.7rem 4rem;
  }
}
.container {
  width: min(113rem, 100% - 2.5rem) !important;
  margin-inline: auto;
  max-width: 100%;
}

.gym {
  padding: 6.6rem 0 5.2rem;
  background-image: url("../img/video-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  margin-top: -1px;
}
.gym__box {
  border: 15px solid rgba(13, 17, 22, 0.2);
  border-radius: 4.5rem;
  position: relative;
  z-index: 9;
  filter: drop-shadow(0px 0px 94px rgba(0, 0, 0, 0.25));
}
.gym__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  background: #fff;
  z-index: -1;
  border-radius: 4.5rem;
}
.gym__box.shadow::before {
  content: "";
  height: 150%;
  width: 150%;
  position: absolute;
  background: #000000;
  opacity: 0.5;
  transition: all 0.4s;
  filter: blur(192px);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  z-index: -1;
}
.gym__box-btn {
  position: absolute;
  width: 6rem;
  height: 6rem;
  background-color: var(--clr-neutral-800);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gym__box-ic {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.gym__video {
  width: 100%;
  height: 100%;
  border-radius: 2.7rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.gym__mute-btn {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.8rem;
  background-color: rgba(13, 17, 22, 0.65);
  color: #fff;
  border: 0;
  border-radius: 5rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.gym__mute-btn:hover {
  background-color: var(--clr-neutral-800);
}
.gym__mute-btn:not(.gym__mute-btn--muted) .gym__mute-ic--muted {
  display: none;
}
.gym__mute-btn:not(.gym__mute-btn--muted) .gym__mute-ic--sound {
  display: block;
}
.gym__mute-ic {
  width: 2rem;
  height: 2rem;
}
.gym__mute-ic--sound {
  display: none;
}

.member {
  background-color: var(--clr-neutral-800);
  padding: 4rem 0rem;
}
.member__offcanvas {
  z-index: 2000 !important;
  background-color: var(--clr-neutral-100) !important;
  width: 90% !important;
  margin: auto;
  border-radius: 3rem 3rem 0 0;
  height: 60vh !important;
  text-align: start;
  filter: drop-shadow(0px 0px 99px rgba(0, 0, 0, 0.271));
}
.member .offcanvas-header {
  padding: 0 !important;
}
.member .offcanvas-body {
  padding: 5.8rem 3rem !important;
  position: unset;
}
.member__header {
  padding-bottom: 3.2rem;
  border-bottom: 1px solid var(--clr-neutral-800);
}
.member__header-ic-box {
  width: 7.5rem;
  height: 7.5rem;
  background-color: var(--clr-primary-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
  margin: auto;
}
.member__header-ic {
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.member__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0 3.8rem;
}
.member__list-item {
  position: relative;
  padding-left: 4.2rem;
  font-size: var(--fs-50);
}
.member__list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.3rem;
  height: 2.3rem;
  background-image: url("../img/check-ic.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.week {
  padding: 6rem 0;
  background-color: var(--clr-neutral-800);
  position: relative;
  overflow: hidden;
}
.week::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 9;
}
.week__wrapper {
  border-radius: 2rem;
  background-color: var(--clr-neutral-100);
  padding: 3rem 2rem 2rem;
  position: relative;
  z-index: 999;
}
.week__wrapper table tr td {
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 2rem;
  width: 300px;
  white-space: nowrap;
}
.week__wrapper table tr td:last-child {
  text-align: end;
}
.week__wrapper table .table-border {
  border-bottom: 1px solid #BEBEBE;
}
.week .week-item {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 11;
  display: flex;
  justify-content: center;
  width: 80%;
}
.week__img-box {
  flex-shrink: 0;
}
.week__img {
  width: 65%;
  margin: auto;
}
.week__days {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.week__day {
  border: 1px solid #BEBEBE;
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  font-size: 8px;
  font-weight: bold;
  color: #BEBEBE;
  background: transparent;
  border-radius: 50%;
}
.week__day--btn {
  background-color: var(--clr-primary-400) !important;
  border-color: var(--clr-primary-400) !important;
}
.week__day-ic {
  width: 1.4rem;
  height: 1.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
.week__table-head {
  font-size: var(--fs-100);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.week__table-date {
  font-size: var(--fs-50);
  color: #BEBEBE;
}
.week__divider {
  margin: 2rem 0;
}
.week__trainer-img {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--clr-primary-400);
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.week__book-btn {
  background: var(--clr-primary-400);
  border-radius: 3rem;
  border: 0;
  padding: 4px 1rem;
  width: 10.6rem;
  font-size: 1rem;
}
.week__badge {
  background-color: #AACCFF;
  padding: 5px 20px;
  font-size: 8px;
  font-weight: 600;
  color: #4F4F4F;
  border-radius: 3rem;
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.week__profile {
  position: absolute;
  margin-top: auto;
  margin-bottom: 3rem;
  flex-shrink: 0;
  bottom: 0;
}
.week__profile-ic {
  border: 2px solid var(--clr-primary-400);
  border-radius: 50%;
  width: 4.4rem;
  height: 4.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  scale: 0;
  transition: all 0.5s ease-in-out;
}
.week__profile-ic.active {
  scale: 1;
}
.week__popup {
  position: absolute;
  top: -12rem;
  left: 3rem;
  padding: 1rem;
  transform: translate(-50%, -20%);
  background: var(--clr-neutral-100);
  border-radius: 1rem;
  z-index: 10;
  opacity: 0;
  box-shadow: var(--shadow-400);
  width: 14rem;
  transition: all 0.6s ease-in-out;
}
.week__popup.active {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.week__popup-arw {
  width: 18px;
  height: 18px;
  background-color: var(--clr-neutral-100);
  position: absolute;
  bottom: -1.2rem;
  left: 1.3rem;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.week__right {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  right: 0;
  width: 42%;
  right: -30%;
}
.week__box-title {
  font-weight: 700;
  color: var(--clr-neutral-100);
  background: rgba(255, 255, 255, 0.4);
  padding: 5px 1.2rem;
  border-radius: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1rem;
}
.week__scale {
  transform: translateX(5%);
  opacity: 0;
  transition: all 0.8s ease-in-out;
  margin-top: 2rem;
  scale: 0;
  display: flex;
  flex-direction: column;
}
.week__scale.active {
  transform: translateX(-4.3rem);
  scale: 1;
  opacity: 1;
}
.week__msg-box {
  width: auto;
  background-color: var(--clr-neutral-100);
  border-radius: 1.2rem;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-400);
}
.week__msg-box p {
  font-size: 1rem;
}
.week__title {
  background-color: var(--clr-primary-400);
  padding: 1rem 1.3rem 1rem;
  font-weight: 600;
  color: #0E1116;
}
.week__msg-item {
  padding: 1rem;
}
.week__msg-head {
  font-size: 7px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.week__msg-btn {
  padding: 5px 2rem;
  border-radius: 3rem;
  font-size: 7px;
  color: var(--clr-neutral-800);
  font-weight: 500;
  background-color: var(--clr-primary-400);
  margin-left: auto;
}

.product {
  background: var(--clr-neutral-800);
  padding: 1rem 0 12rem;
}
.product__slider {
  margin-top: 6rem;
  height: 310px;
}
.product__slider .swiper-slide-active .product__box::before {
  content: "";
  background: unset;
}
.product__box {
  background-color: var(--clr-neutral-100);
  position: relative;
  padding: 2rem 1rem 6rem;
  border: 1px solid #BEBEBE;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.product__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9;
}
.product__tools {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 2rem;
  width: 100%;
  gap: 5rem;
  background-color: var(--clr-neutral-300);
}
.product__tools-btn {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  gap: 3px;
  font-size: var(--fs-100);
}
.product__tools-ic {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.cta {
  padding: 8rem 0 14rem;
  background-color: var(--clr-primary-400);
}
.cta__img-box {
  overflow: hidden;
  margin-bottom: 2.6rem;
}
.cta__img {
  width: 4.6rem;
  height: 4.6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta__img--first {
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.cta__img--two {
  animation: mover 1s infinite alternate;
}
.cta__sub-heading {
  font-size: 3rem;
  font-weight: 500;
}

.success {
  background: var(--clr-neutral-800);
  color: var(--clr-neutral-100);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.success__heading {
  font-size: var(--fs-500);
  font-weight: 400;
  position: relative;
  right: -400px;
  white-space: nowrap;
}
.success__wrapper {
  padding-top: 4rem;
}
.success__img {
  height: 35rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.6rem;
  border: 1px solid #707070;
  width: 100%;
}
.success .swiper-slide {
  overflow: hidden;
  border-radius: 1.6rem;
}
.success .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.success .swiper-slide-active {
  opacity: 9 !important;
  transform: translate3d(0px, 0px, -0.325203px) rotateX(0deg) rotateY(0deg) scale(1);
}
.success .swiper-slide-active::before {
  background: unset;
}
.success .swiper-slide-active img {
  border: 0;
}

.techonology {
  position: relative;
  overflow: hidden;
  padding-bottom: 70rem;
}
.techonology::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 22, 0.22);
}
.techonology__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  height: 70rem;
}
.techonology__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70rem;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.techonology__content {
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: auto;
  max-width: 120rem;
  margin: auto;
}
.techonology__heading {
  font-size: clamp(5rem, 8vw, 14rem);
  font-weight: 400;
  line-height: clamp(6rem, 8vw, 13rem);
  font-family: var(--ff-primary);
  font-weight: 600;
  position: relative;
}
.techonology__heading.heading-two {
  right: 0;
}
.techonology__box {
  padding: 3.5rem;
  position: absolute;
  bottom: 0;
  left: 2.8rem;
  right: 2.8rem;
  font-size: var(--fs-100);
  max-width: 32rem;
  color: var(--clr-neutral-100);
  text-align: center;
  border-radius: 2rem 2rem 0 0;
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.techonology__box p { font-size: 1.6em; }

.chosen {
  background-color: var(--clr-neutral-100);
  padding: 4.6rem 0;
  overflow: hidden;
}
.chosen__slider {
  padding: 6rem 0 0rem;
  margin-right: 0;
  width: 100%;
  margin-left: 0;
}
.chosen__img-box {
  border-radius: 2.6rem;
  overflow: hidden;
  position: relative;
}
.chosen__img {
  width: 100%;
  min-height: 19rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.chosen__ic-box {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 1.5rem;
  right: 1.2rem;
}
.chosen__ic {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.count {
  background-color: var(--clr-neutral-100);
  padding-bottom: 6.2rem;
}
.count__heading {
  font-size: clamp(10rem, 15vw, 30rem);
  font-family: var(--ff-primary);
  font-weight: 400;
}
.count__heading .digit {
  overflow: hidden;
  height: 1.1em;
}
.count__heading .digit span {
  display: flex;
  text-align: center;
  line-height: 1.1em;
}

.testimonial {
  background-color: var(--clr-neutral-800);
  overflow: hidden;
  position: relative;
}
.testimonial .content-box {
  padding: 7rem 0 9rem;
}
.testimonial__title {
  margin-bottom: 4rem;
}
.testimonial__list {
  position: relative;
  /* Positioning the box inside the section */
  top: unset;
  left: unset;
  width: 100%;
  flex-shrink: 0;
  gap: 2.6rem;
}
.testimonial__grid {
  height: auto;
  display: flex;
  padding-bottom: 9rem;
  float: left;
  width: 100%;
  margin: 0 -2rem;
}
.testimonial__box {
  background: rgba(255, 255, 255, 0.2);
  padding: 3.7rem 3rem;
  border-radius: 3rem;
  float: left;
  border: 1px solid rgba(112, 112, 112, 0.3);
  color: var(--clr-neutral-100);
  min-height: 34.4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 29rem;
  flex: 0 0 auto;
}
.testimonial__box p {
  font-size: 1.2rem;
}
.testimonial__profile {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.3rem;
}
/* club logos render as small circular avatars (same size as the internal
   pages' review avatars) */
.testimonial__profile img {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 0.3rem;
  flex: 0 0 auto;
}

.store {
  padding: 13rem 0 3rem;
  background-image: url("../img/bg-2.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  margin-top: -1px;
  position: relative;
  overflow: hidden;
}
.store .chart-container {
  max-width: 100%;
  display: block !important;
  opacity: 9 !important;
  visibility: visible !important;
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
.store__container {
  width: calc(50vw + 56.5rem);
  margin-left: auto;
  margin-right: 0;
}
.store__sales {
  background-color: var(--clr-neutral-100);
  padding: 2rem 1.8rem;
  border-radius: 2rem;
  transform: translateX(46%);
  margin-top: 8rem;
  margin-left: auto;
}
.store__rafer {
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
}
.store__sales-heading {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.store__sales-option {
  background: transparent;
  color: #ACACAC;
  font-weight: 600;
  border: 0;
  border-bottom: 2px solid #ACACAC;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url("../img/optio-arrow.svg") no-repeat right 0px center;
  background-size: 8px;
  padding-right: 1rem;
  font-size: 1rem;
}
.store__sales-list {
  margin-top: 1.7rem;
}
.store__sales-input {
  background-color: var(--clr-neutral-500);
  border: 0;
  box-shadow: none;
  width: 12rem;
  padding: 3px 5px;
  color: #404040;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("../img/optio-arrow.svg");
  background-size: 10px;
  background-position: 95%;
  background-repeat: no-repeat;
  font-weight: 500;
  font-size: 1rem;
}
.store__sales-title {
  color: #ACACAC;
  margin-bottom: 5px;
  font-size: var(--fs-50);
}
.store__sales-datepicker {
  border: 1px solid #D2D2D2;
  font-size: 8px;
  padding: 3px 4px;
  font-weight: 500;
  color: #404040;
  width: 11rem;
}
.store__sales-datebx {
  position: relative;
}
.store__sales-datebx::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 51%;
  translate: 0 -50%;
  background-image: url("../img/arrow-dark-bottom.png");
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}
.store__chart-box {
  position: relative;
  margin-top: 3rem;
}
.store__box {
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: flex-start;
}
.store__services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.store__gift-card {
  background: var(--clr-neutral-100);
  padding: 2rem;
  border-radius: 1.6rem;
  display: flex;
  flex-shrink: 0;
  min-width: 29rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  position: relative;
  left: -100px;
  opacity: 0;
}
.store__gift-card .gift-heading {
  font-size: 26px;
  font-weight: 600;
}
.store__gift-card .gift-btn {
  background-color: var(--clr-primary-400);
  padding: 1px 1rem;
  font-size: var(--fs-50);
  border-radius: 3rem;
  box-shadow: none;
  border: 0;
  font-weight: 500;
  margin-top: 1rem;
}
.store__gift-ic {
  width: 7rem;
  height: 7rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.store__services-box {
  background-color: var(--clr-neutral-100);
  padding: 1.2rem;
  border-radius: 8px;
  position: relative;
  width: 31rem;
}
.store__services-box p {
  color: #ACACAC;
  margin-top: 5px;
}
.store__services-head {
  font-size: 1.4rem;
}
.store__tools-btn {
  box-shadow: none;
  border: 0;
  background: transparent;
  font-size: 1rem;
  gap: 4px;
  display: flex;
  align-items: center;
}
.store__tools-ic {
  width: 1rem;
  height: 1rem;
}
.store__services-title {
  background: var(--clr-neutral-800);
  height: 3rem;
  width: 11rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
  color: var(--clr-neutral-100);
  padding: 5px 1rem;
  font-size: 1rem;
  font-weight: 500;
}
.store__services-title svg {
  width: 1rem;
  height: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.store__services-title:first-child {
  margin-left: 4rem;
}
.store__services-title:last-child {
  margin-left: -2rem;
}
.store__services-title--lg {
  width: 14rem;
}
.store__alert {
  margin-left: -4.2rem;
  width: 100%;
}
.store__alert-list {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: start !important;
  gap: 1rem;
  margin-top: 1rem;
}
.store__alert-btn {
  background: var(--clr-info-400);
  color: #1E1E1E;
  border: 0;
  box-shadow: none;
  height: 2.2rem;
  min-width: 5rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 6px 3px 1.5rem;
  font-size: 8px;
  gap: 3px;
}
.store__product {
  margin-top: 0;
}
.store__product .mybtn {
  width: 10rem;
  font-size: 1rem;
  padding: 2px;
}
.store__product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.store__product-item h4,
.store__product-item p {
  color: #1E1E1E;
}
.store__product-img {
  width: 100%;
  min-height: 14rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1.6rem;
}

.place {
  padding: 10rem 0 12rem;
  background-image: url("../img/video-bg.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  margin-top: -1px;
  position: relative;
  overflow: hidden;
}
.place .container {
  position: relative;
  z-index: 9;
}
.place::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.place__slider {
  padding: 7rem 0 0;
  perspective: 1500px;
  /* Adjust based on your preference */
}
.place__slider .swiper-slide {
  overflow: unset;
}
.place__slider .swiper-slide-active .swiper-card {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.place__shape {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
.place__shape--left {
  left: -23rem;
  width: 350px;
  bottom: 0rem;
}
.place__shape--right {
  right: -34rem;
  top: 40rem;
  width: 61rem;
}
.place__shape--bottom {
  right: -10rem;
  top: auto;
  width: 65%;
  bottom: -2rem;
  z-index: -1;
}
.place__shape--top {
  top: 43rem;
  right: 0rem;
  width: 18rem;
}
.place__box {
  background-color: var(--clr-neutral-100);
  border-radius: 1rem;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  margin: auto;
}
.place__img {
  width: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

@media (min-width: 992px) {
  .gym {
    padding: 11rem 0 10rem;
  }
  .gym__box {
    border: 15px solid rgba(255, 255, 255, 0.3);
  }
  .gym__box::before {
    opacity: 0.35;
  }
  .member {
    padding: 3rem 0 8rem;
  }
  .member__offcanvas {
    width: 812px !important;
    border-radius: 3rem 3rem 0 0;
    height: 70vh !important;
  }
  .member__offcanvas .offcanvas-header {
    padding: 3rem !important;
  }
  .member__header {
    padding-bottom: 2rem;
  }
  .member__header-ic-box {
    position: unset;
    left: unset;
    top: unset;
    margin: unset;
  }
  .member__list {
    gap: 2.7rem;
    margin: 3.2rem 0;
  }
  .member__list-item {
    padding-left: 4.2rem;
    font-size: var(--fs-150);
  }
  .member__list-item::before {
    width: 2.5rem;
    height: 2.5rem;
  }
  .week {
    padding: 8rem 0 11rem;
    background-color: var(--clr-neutral-800);
    position: relative;
    overflow: hidden;
  }
  .week::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 9;
  }
  .week__sc-img {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .week__sc-img--left {
    left: -47rem;
    background-image: url("../img/week-count-img.png");
    opacity: 34%;
  }
  .week__sc-img--right {
    background-image: url("../img/week-count-img.png");
    width: 70rem;
    right: -34rem;
    height: 54rem;
    opacity: 43%;
  }
  .week__wrapper {
    border-radius: 3rem;
    background-color: var(--clr-neutral-100);
    padding: 5rem 3rem 2rem;
    position: relative;
  }
  .week__wrapper table tr td {
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 0;
    width: 300px;
    white-space: nowrap;
  }
  .week__wrapper table tr td:last-child {
    text-align: end;
  }
  .week__wrapper table .table-border {
    border-bottom: 1px solid #BEBEBE;
  }
  .week__img {
    width: 90%;
    margin: auto;
  }
  .week__days {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
  }
  .week__day {
    border: 1px solid #BEBEBE;
    width: 3.4rem;
    height: 3.4rem;
    -o-object-fit: contain;
       object-fit: contain;
    font-size: 1rem;
    font-weight: bold;
    color: #BEBEBE;
    background: transparent;
    border-radius: 50%;
  }
  .week__table-head {
    font-size: var(--fs-150);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }
  .week__table-date {
    font-size: var(--fs-50);
    color: #BEBEBE;
  }
  .week__divider {
    margin: 5rem 0;
  }
  .week__trainer-img {
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--clr-primary-400);
    border-radius: 50%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .week__book-btn {
    background: var(--clr-primary-400);
    border-radius: 3rem;
    border: 0;
    padding: 4px 1rem;
    width: 10.6rem;
    font-size: 1rem;
  }
  .week__badge {
    background-color: #AACCFF;
    padding: 5px 20px;
    font-size: 8px;
    font-weight: 600;
    color: #4F4F4F;
    border-radius: 3rem;
    width: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .week__profile {
    position: relative;
    margin-top: auto;
    margin-bottom: 6rem;
    margin-right: 2rem;
  }
  .week__profile-date {
    color: #ACACAC;
  }
  .week__right {
    position: unset;
    justify-content: center;
    translate: unset;
    width: 70%;
  }
  .week__profile-ic {
    border: 3px solid var(--clr-primary-400);
    width: 6.4rem;
    height: 6.4rem;
  }
  .week__popup {
    top: -12rem;
    left: 8rem;
    padding: 1.4rem 1.7rem;
    transform: translate(-50%, -20%);
    width: 17rem;
  }
  .week__popup-arw {
    width: 23px;
    height: 23px;
    bottom: -2.2rem;
    left: 2.3rem;
  }
  .week__box-title {
    padding: 9px 2.2rem;
    border-radius: 3rem;
    margin-bottom: 4rem;
    font-size: 1.6rem;
  }
  .week__scale {
    transform: translateX(10%);
    margin-top: 2.3rem;
  }
  .week__scale.active {
    transform: translateX(-4.3rem);
  }
  .week__msg-box {
    width: 28.6rem;
    border-radius: 1.6rem;
  }
  .week__title {
    padding: 1.8rem 2.3rem 1rem;
  }
  .week__msg-item {
    padding: 2rem;
  }
  .week__msg-head {
    font-size: var(--fs-200);
    margin-bottom: 1.6rem;
  }
  .week__msg-btn {
    padding: 7px 2rem;
    border-radius: 3rem;
    font-size: var(--fs-50);
  }
  .product {
    padding: 1rem 0 20rem;
  }
  .product__slider {
    margin-top: 12rem;
    height: 345px;
  }
  .product__box {
    padding: 2rem 2rem 6rem;
  }
  .product__tools {
    padding: 0 2rem;
    gap: 10rem;
  }
  .product__tools-btn {
    padding: 5px 0;
    gap: 3px;
  }
  .product__tools-ic {
    width: 2rem;
    height: 2rem;
  }
  .cta {
    padding: 18rem 0;
  }
  .cta__img-box {
    overflow: hidden;
    margin-bottom: 2.6rem;
  }
  .cta__img {
    width: 5rem;
    height: 5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .cta__sub-heading {
    font-size: 3rem;
    font-weight: 500;
  }
  .success {
    padding: 1rem 0 8.7rem;
  }
  .success__heading {
    font-size: var(--fs-800);
    right: -500px;
  }
  .success__wrapper {
    padding-top: 6rem;
  }
  .success__img {
    min-height: 43rem;
    border-radius: 1.6rem;
  }
  .success .swiper-slide {
    border-radius: 1.6rem;
  }
  .success .swiper-slide-active::before {
    background: unset;
  }
  .success .swiper-slide-active img {
    border: 0;
  }
  .techonology {
    padding-bottom: 96rem;
  }
  .techonology__img {
    height: 96rem;
  }
  .techonology__shape {
    height: 96rem;
  }
  .techonology__content {
    top: 7.5rem;
  }
  .techonology__heading.heading-two {
    right: -50px;
  }
  .techonology__box {
    padding: 7rem;
    left: 7.2rem;
    max-width: 51rem;
    min-height: 41rem;
    gap: 4rem;
  }
  .chosen {
    padding: 13.4rem 0;
  }
  .chosen__slider {
    padding: 11rem 0 3rem;
    padding-bottom: 10rem;
  }
  .chosen__slider .swiper-slide {
    width: 440px !important;
  }
  .chosen__img-box {
    border-radius: 2.6rem;
  }
  .chosen__img {
    width: 100%;
    min-height: 23rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .chosen__ic-box {
    width: 5.9rem;
    height: 5.9rem;
    bottom: 2.5rem;
    right: 2rem;
  }
  .chosen__ic {
    width: 3rem;
    height: 3rem;
  }
  .testimonial .content-box {
    padding: 10rem 0;
  }
  .testimonial__title {
    margin-bottom: 6rem;
  }
  .testimonial__list {
    top: -16%;
    left: 0;
  }
  .testimonial__grid {
    height: 1066px;
    display: grid;
    margin: 0;
    padding-bottom: 0;
  }
  .testimonial__box {
    padding: 5rem 2.5rem 2rem;
    color: var(--clr-neutral-100);
    min-height: 34.4rem;
    gap: 4rem;
    width: 100%;
  }
  .testimonial__box p {
    font-size: 1.6rem;
  }
  .place {
    padding: 10rem 0 30rem;
    background-image: url("../img/video-bg.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    margin-top: -1px;
    position: relative;
    overflow: hidden;
  }
  .place .container {
    position: relative;
    z-index: 9;
  }
  .place::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
  }
  .place__slider {
    padding: 12rem 0 0;
    perspective: 1500px;
    /* Adjust based on your preference */
  }
  .place__slider .swiper-slide {
    overflow: unset;
  }
  .place__slider .swiper-slide-active .swiper-card {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  }
  .place__shape {
    position: absolute;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .place__shape--left {
    left: -53rem;
    width: 769px;
    bottom: 12rem;
  }
  .place__shape--right {
    right: -34rem;
    top: 40rem;
    width: 61rem;
  }
  .place__shape--bottom {
    right: -10rem;
    top: auto;
    width: 65%;
    bottom: -20rem;
    z-index: -1;
  }
  .place__shape--top {
    top: 43rem;
    right: 34rem;
    width: 40rem;
  }
  .place__box {
    background-color: var(--clr-neutral-100);
    border-radius: 2rem;
    overflow: hidden;
    padding: 2rem;
    width: 80%;
    margin: auto;
  }
  .place__img {
    width: 100%;
    margin: auto;
    border-radius: 2rem;
  }
  .store {
    padding: 20rem 0 3rem;
  }
  .store__sales {
    padding: 4rem 4.8rem;
    transform: translateX(9rem);
  }
  .store__rafer {
    left: -23rem;
  }
  .store__sales-heading {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
  .store__sales-option {
    padding-right: 1rem;
    font-size: 1.4rem;
  }
  .store__sales-datepicker {
    font-size: 14px;
    padding: 5px 6px;
    width: 11rem;
  }
  .store__sales-input {
    width: 20rem;
    padding: 6px 5px;
    font-size: 1.4rem;
  }
  .store__sales-title {
    margin-bottom: 7px;
    font-size: var(--fs-100);
  }
  .store__chart-box {
    margin-top: 4rem;
  }
  .store__box {
    gap: 2rem;
    margin-top: 4rem;
    align-items: flex-start;
    margin-right: -8rem;
  }
  .store__services {
    gap: 3.3rem;
  }
  .store__services-head {
    font-size: 2rem;
    font-weight: 500;
  }
  .store__services-box {
    padding: 2.2rem;
    width: 31rem;
  }
  .store__services-title {
    height: 5rem;
    width: 23rem;
    padding: 1rem 2rem;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .store__services-title:first-child {
    margin-left: 0px;
  }
  .store__services-title:last-child {
    margin-left: 0px;
  }
  .store__services-title--lg {
    width: 27rem;
  }
  .store__services-title svg {
    width: auto;
    height: auto;
  }
  .store__alert-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
  }
  .store__alert-btn {
    height: 3.3rem;
    min-width: 11rem;
    padding: 4px 8px 4px 1.5rem;
    font-size: 1.2rem;
    gap: 6px;
  }
  .store__product {
    margin-top: 0;
  }
  .store__product .mybtn {
    width: 15rem;
    font-size: var(--fs-100);
    padding: 5px 1rem !important;
  }
  .store__product-img {
    width: 25rem;
    min-height: 33rem;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 1.6rem;
  }
}
@media (max-width: 767px) {
  .success {
    background: var(--clr-neutral-800);
    color: var(--clr-neutral-100);
    padding: 5rem 0 4rem;
    overflow: hidden;
  }
  .success__heading {
    font-size: var(--fs-500);
    font-weight: 400;
    position: relative;
    right: -400px;
    white-space: nowrap;
  }
  .success__wrapper {
    padding-top: 4rem;
  }
  .success__img {
    height: 24rem;
  }
  .techonology .container {
    position: relative;
  }
  .techonology__img {
    -o-object-position: 65%;
       object-position: 65%;
  }
  .techonology__shape {
    -o-object-position: 65%;
       object-position: 65%;
  }
  .techonology__heading.heading-two {
    right: 3rem;
  }
  .store__container {
    width: 100% !important;
    margin: unset;
  }
  .store__chart-box {
    margin-top: 1.6rem;
  }
  .store #canvasJSChart {
    height: 160px !important;
  }
}
@media (max-width: 1024px) {
  .store__container {
    padding-left: 2rem;
    width: 100%;
  }
}
@media (min-width: 1441px) {
  .techonology__heading.heading-two {
    right: -100px;
  }
}
@media (max-width: 480px) {
  .product__slider {
    height: 250px;
    padding: 0;
  }
  .product__slider p {
    font-size: 1rem;
  }
  .product__box {
    padding: 1rem 1rem 4rem;
  }
  .product__tools {
    padding: 0 2rem;
    gap: 2rem;
  }
  .product__tools-btn {
    padding: 3px 0;
    gap: 2px;
    font-size: 1rem;
  }
  .product__tools-ic {
    width: 1.5rem;
    height: 1.5rem;
  }
  .week__img {
    width: 46%;
    margin-left: 5rem;
  }
  .week__right {
    padding: 4px 7px;
    justify-content: center;
    height: 100%;
    right: -40%;
    width: 50%;
  }
  .week__box-title {
    font-size: 6px;
  }
  .week__profile-ic {
    width: 2rem;
    height: 2rem;
  }
  .week__title {
    font-size: 7px;
    padding: 4px 5px;
    border-radius: 5px;
  }
  .week__msg-item {
    padding: 6px;
  }
  .week__msg-item p {
    font-size: 6px;
  }
  .week__msg-item span {
    font-size: 5px;
  }
  .week__msg-btn {
    padding: 3px 1rem;
    font-size: 5px;
  }
  .week__popup {
    padding: 8px;
    width: 9rem;
    top: -6rem;
  }
  .week__popup p {
    font-size: 7px;
    margin: 0;
  }
  .week__popup h4 {
    font-size: 1rem;
  }
  .week__popup span {
    font-size: 7px;
  }
}
.pricing {
  padding-top: 7rem;
  /* btn */
  /* Show Yearly Prices When Yearly is Checked */
  /* Hide Yearly Prices by Default */
}
.pricing__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing__toggle {
  position: relative;
  display: flex;
  justify-content: center;
  background: var(--clr-primary-400);
  border-radius: 30px;
  padding: 8px 10px;
}
.pricing__toggle::before {
  content: "";
  position: absolute;
  width: 9.8rem;
  height: 3.2rem;
  background: var(--clr-neutral-100);
  border-radius: 25px;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
  z-index: 1;
}
.pricing__toggle-btn {
  flex: 1;
  text-align: center;
  padding: 8px 22px;
  border-radius: 3rem;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 2;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.8rem;
}
.pricing #yearly:checked ~ .pricing__toggle::before {
  transform: translateX(100%);
}
.pricing #yearly:checked ~ .pricing-container .pricing__plan .price-yearly {
  display: block;
}
.pricing #yearly:checked ~ .pricing-container .pricing__plan .price-monthly {
  display: none;
}
.pricing .price-yearly {
  display: none;
}
.pricing__grid {
  width: 100%;
  gap: 2rem;
  margin-top: 5rem;
}
.pricing__box {
  width: 100%;
}
.pricing__box:nth-child(2) {
  grid-column: span 2;
}
.pricing__inner-box {
  border: 1px solid var(--clr-neutral-600);
  padding: 1.4rem 1.9rem;
  border-radius: 2rem;
  display: flex;
  gap: 1.3rem;
  min-height: 13.1rem;
}
.pricing__inner-ic-box {
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: var(--clr-neutral-800);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.pricing__inner-ic {
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.pricing__plan {
  background-color: var(--clr-neutral-100);
  border-radius: 2rem;
  padding: 2.5rem 2.2rem 1.4rem;
  margin-top: 1.1rem;
}
.pricing__badge {
  background-color: var(--clr-info-400);
  border-radius: 7px;
  display: inline-block;
  padding: 4px 12px;
  font-size: var(--fs-100);
  color: var(--clr-neutral-800);
}
.pricing__plan-heading {
  font-size: var(--fs-300);
  font-weight: 500;
  font-family: var(--ff-secondary);
  line-height: 2.4rem;
  margin: 1.3rem 0 2.5rem;
  line-height: 2.4rem;
}
.pricing__features li {
  font-size: var(--fs-100);
  color: var(--clr-neutral-800);
}
.pricing__plan-grid {
  gap: 1.7rem;
}

.pricing-gallary {
  margin: 8rem 0;
}
.pricing-gallary .swiper {
  padding: 3.5rem 0;
}
.pricing-gallary .swiper-slide {
  border-radius: var(--radius-100);
  overflow: hidden;
  transition: transform 0.5s ease-in-out !important;
}
.pricing-gallary .swiper-slide-active {
  transform: scale(1.11) !important;
}
.pricing-gallary__img {
  border-radius: var(--radius-100);
  min-height: 38rem;
  width: 36rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .pricing__wrapper {
    margin: 5rem 0;
  }
  .pricing__box:nth-child(1) {
    grid-column: span 2;
  }
  .pricing__grid {
    margin-top: 3.5rem;
    gap: 1.1rem;
  }
  .pricing__plan-grid {
    gap: 1.1rem;
  }
  .pricing__plan {
    padding: 1.7rem 2.8rem;
  }
  .pricing__plan:last-child {
    margin: 0;
  }
  .pricing-gallary {
    margin: 8rem 0;
  }
  .pricing-gallary .swiper {
    padding: 1rem 0;
  }
  .pricing-gallary .swiper-slide-active {
    scale: 1.1;
  }
  .pricing-gallary__img {
    min-height: 19rem;
  }
}/*# sourceMappingURL=main.css.map */


/* =========================================
   Generic Page Hero (shared by all sections)
   ========================================= */

.page-hero {
  position: relative;
  background-color: #050608; 
  color: var(--clr-neutral-100);
}

/* Container "holder" – width capped by .container */
.page-hero__inner {
  position: relative;
  padding: 9.5rem 0 8.5rem;
  min-height: 52rem;
  overflow: hidden;

  /* per-page custom properties */
  --hero-bg-position: center right;
}

/* BACKGROUND IMAGE – inside container width */
.page-hero__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: var(--hero-bg-position);
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark left blend + subtle highlight (shared) */
.page-hero__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 40%, rgba(0, 0, 0, 0.95) 0, rgba(0, 0, 0, 0.75) 40%, transparent 70%),
    radial-gradient(circle at 70% 0%, rgba(11, 11, 10, 0.09), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ==============================
   Typography & layout
   ============================== */

.page-hero__content {
  position: relative;
  z-index: 2;            
  max-width: 52rem;
  text-align: left;
  animation: hero-fade-up 0.9s ease-out 0.12s both;
}

.page-hero__eyebrow {
  font-size: var(--fs-100);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-neutral-400);
  margin-bottom: 1.6rem;
}

.page-hero__heading {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: clamp(3.8rem, 5.6vw, 5.8rem);
  line-height: 1.05;
  margin-bottom: 2.4rem;
}

.page-hero__subheading {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  margin-bottom: 2.4rem;
}

.page-hero__subheading span {
  color: var(--clr-primary-400);
}

.page-hero__body {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--clr-neutral-200);
  margin-bottom: 1.6rem;
}

.page-hero__cta {
  margin-top: 3rem;
  justify-content: center;
  animation: hero-cta-pop 0.65s ease-out 0.7s both;
}

/* ==============================
   Animations (shared)
   ============================== */

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-cta-pop {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ==============================
   Responsive tweaks (shared)
   ============================== */

@media (max-width: 991px) {
  .page-hero__inner {
    padding: 8.5rem 0 7rem;
    min-height: 0;
  }

  .page-hero__content {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .page-hero__inner {
    padding: 8rem 0 5.5rem;
  }

  .page-hero__heading {
    font-size: 3.1rem;
  }

  .page-hero__subheading {
    font-size: 1.9rem;
  }

  .page-hero__body {
    font-size: 1.5rem;
  }

  .page-hero__cta {
    width: 100%;
  }
}

/* =========================================
   Light version of page hero (white theme)
   ========================================= */

.page-hero--light {
  background-color: #f5f6f8;          
  color: #141414;                      
}

.page-hero--light .page-hero__inner::after {

  background:
    linear-gradient(
      90deg,
      rgba(245, 246, 248, 1) 0%,
      rgba(245, 246, 248, 0.96) 18%,
      rgba(245, 246, 248, 0.85) 35%,
      rgba(245, 246, 248, 0.55) 55%,
      rgba(245, 246, 248, 0) 75%
    );
}

.page-hero--light .page-hero__eyebrow {
  color: #6a6f7a;
}

.page-hero--light .page-hero__body {
  color: #3c4045;
}

.page-hero--light .page-hero__subheading span {
  color: var(--clr-secondary-400);
}

/* Gyms & Health Clubs */
.page-hero--gym .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs  GB*/
.page-hero--gym-gb .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-gb.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs EU*/
.page-hero--gym-eu .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-eu.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs au*/
.page-hero--gym-au .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-au.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs ca*/
.page-hero--gym-ca .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-ca.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs in*/
.page-hero--gym-in .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-in.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs ph*/
.page-hero--gym-ph .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-ph.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs sa*/
.page-hero--gym-sa .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-sa.webp");
  --hero-bg-position: center right;
}

@media (max-width: 575px) {
  .page-hero--gym .page-hero__inner::before {
    background-position: 65% center; /* keep faces visible on narrow screens */
  }
}

/* Personal Trainers */
.page-hero--pt .page-hero__inner {
  --hero-bg-image: url("../img/pt-hero-extra-optimized.webp");
  --hero-bg-position: center right;
}

@media (max-width: 575px) {
  .page-hero--pt .page-hero__inner::before {
    background-position: 65% center;
  }
}

/* Martial Arts */
.page-hero--ma .page-hero__inner {
  --hero-bg-image: url("../img/martial-arts-hero-optimized.webp");
  --hero-bg-position: 60% center; 
}

@media (max-width: 575px) {
  .page-hero--ma .page-hero__inner::before {
    background-position: 65% center;
  }
}


/* Pilates & Yoga */
  
.page-hero--pilates .page-hero__inner {
  --hero-bg-image: url("../img/hero-pilates-yoga-blended.webp");
  --hero-bg-position: 60% center;
}

@media (max-width: 575px) {
  .page-hero--pilates .page-hero__inner::before {
    background-position: 65% center;
  }
}

/* Gymnastics */
.page-hero--gymnastics .page-hero__inner {
  --hero-bg-image: url("../img/hero-gymnastics-blended.webp");
  --hero-bg-position: center right;
}

@media (max-width: 575px) {
  .page-hero--gymnastics .page-hero__inner::before {
    background-position: 65% center;
  }
}

/* Dance – dramatic */
.page-hero--dance .page-hero__inner {
  --hero-bg-image: url("../img/hero-dance-blended.webp");
  --hero-bg-position: 60% center;
}

@media (max-width: 575px) {
  .page-hero--dance .page-hero__inner::before {
    background-position: 65% center;
  }
}

/* Racquet Clubs */
.page-hero--racquet .page-hero__inner {
  --hero-bg-image: url("../img/hero-racquet-blended.webp");
  --hero-bg-position: center right;
}

@media (max-width: 575px) {
  .page-hero--racquet .page-hero__inner::before {
    background-position: 65% center;
  }
}

/* =====================================================================
   2025 design update — signup flow, testimonials, contact & internal
   pages. (1rem = 10px). Appended by design refresh.
   ===================================================================== */

/* ---- shared button variant ---- */
.mybtn--outline {
  background-color: transparent;
  color: var(--clr-neutral-800);
  border: 2px solid var(--clr-neutral-800);
}
.mybtn--outline:hover {
  background-color: var(--clr-neutral-800);
  color: #fff;
}

/* honeypot */
.su-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* =========================  SIGN-UP  ========================= */
.su { background: #e6e6e6; padding: 3rem 0 0; }
.su .container { width: min(102rem, 100% - 3rem) !important; }

.su-hero { padding: 2rem 0 4rem; }

.su-card {
  background: #fff;
  border-radius: 2.4rem;
  padding: 4.5rem clamp(2rem, 5vw, 7rem) 5rem;
  text-align: center;
  box-shadow: 0 2rem 5rem rgba(0,0,0,.06);
}
.su-card__logo { width: 8.4rem; height: auto; margin: 0 auto 1.8rem; display: block; }
.su-card__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1.05;
  color: var(--clr-neutral-800);
  margin: 0 0 1.8rem;
}
.su-pink { color: var(--clr-secondary-400); }
.su-card__lead {
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--clr-neutral-800);
  max-width: 46rem;
  margin: 0 auto 1.4rem;
  line-height: 1.35;
}
.su-card__sub {
  font-size: 1.6rem;
  color: var(--clr-neutral-700);
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.4;
}

.su-form { text-align: left; max-width: 64rem; margin: 0 auto; }
.su-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 3rem; }
.su-field { display: flex; flex-direction: column; margin-bottom: 1.6rem; }
.su-field--full { max-width: none; }
.su-field label {
  font-size: 1.5rem;
  color: var(--clr-neutral-800);
  margin-bottom: .7rem;
}
.su-field label span { color: var(--clr-neutral-700); }
.su-input {
  height: 4.6rem;
  border: 1px solid #b9b9b9;
  border-radius: .6rem;
  padding: 0 1.4rem;
  font-size: 1.6rem;
  background: #fff;
  color: var(--clr-neutral-800);
  transition: border-color .2s;
  width: 100%;
}
.su-input:focus { outline: none; border-color: var(--clr-neutral-800); }

.su-check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-neutral-800);
  margin: 1rem 0 2.6rem;
}
.su-check input { width: 1.9rem; height: 1.9rem; margin-top: .2rem; flex: 0 0 auto; accent-color: var(--clr-secondary-400); }
.su-check a { color: var(--clr-neutral-800); font-weight: 700; text-decoration: none; }
.su-check a:hover { text-decoration: underline; }

.su-actions { display: flex; justify-content: center; }
.su-submit {
  width: auto;
  min-width: 19rem;
  height: 5rem;
  padding: 0 3.4rem;
  font-size: 1.7rem;
  font-weight: 700;
}

.su-alert {
  background: #ffe3ec;
  color: #a11046;
  border-radius: 1rem;
  padding: 1.4rem 1.8rem;
  font-size: 1.5rem;
  margin: 0 auto 2.4rem;
  max-width: 52rem;
  text-align: left;
}
.su-alert .errorList { margin: .6rem 0 0; padding-left: 1.8rem; }

/* "Not ready to sign up" card */
.su-book {
  background: #fff;
  border-radius: 2.4rem;
  padding: 3.6rem 2rem 4rem;
  text-align: center;
  margin-top: 2.4rem;
  box-shadow: 0 2rem 5rem rgba(0,0,0,.06);
}
.su-book__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  color: var(--clr-neutral-800);
  margin: 0 0 1rem;
}
.su-book__desc { font-size: 1.6rem; color: var(--clr-neutral-700); margin: 0 0 2.2rem; }
.su-book__btn { display: inline-flex; width: auto; min-width: 17rem; padding: 0 3rem; height: 4.8rem; font-size: 1.6rem; font-weight: 600; }

/* Thank-you / Calendly */
.su-thanks { padding: 4rem 0 5rem; }
.su-thanks__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
.su-thanks__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: clamp(4rem, 6vw, 6.4rem);
  color: var(--clr-neutral-800);
  margin: 0 0 1.6rem;
}
.su-thanks__lead { font-weight: 700; font-size: 1.9rem; color: var(--clr-neutral-800); margin: 0 0 2.4rem; max-width: 34rem; }
.su-thanks__next { color: var(--clr-secondary-400); font-weight: 700; font-size: 1.6rem; margin: 0 0 .4rem; }
.su-thanks__body { font-size: 1.6rem; color: var(--clr-neutral-700); margin: 0 0 2.6rem; max-width: 30rem; }
.su-thanks__img { max-width: 28rem; width: 100%; height: auto; }

.su-cal {
  background: #fff;
  border-radius: 2.4rem;
  padding: 3rem 3rem 2rem;
  box-shadow: 0 2rem 5rem rgba(0,0,0,.06);
}
.su-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.su-cal__title { font-family: var(--ff-heading); font-weight: 400; font-size: 2.8rem; color: var(--clr-neutral-800); margin: 0; }
.su-cal__ic { width: 3.2rem; height: 3.2rem; }

/* =====================  TESTIMONIALS  ===================== */
.cm25-testimonials { background: var(--clr-neutral-800); padding: 7rem 0 8rem; color: #fff; }
.cm25-testimonials__grid { display: grid; grid-template-columns: 30rem 1fr; gap: 4rem; }
.cm25-testimonials__rule { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.cm25-testimonials__rule::before { content: ""; width: 8rem; height: 1px; background: #fff; }
/* The ↘ entity renders from a thin system-font fallback (Poppins has no
   U+2198), so it can't be bolded to match the design's heavier arrow — draw
   it instead: currentColor box masked to a thick-stroke SVG arrow. The glyph
   stays in the markup (hidden by font-size:0) for accessibility. */
.cm25-testimonials__arrow { color: var(--clr-primary-400); font-size: 0; line-height: 1; width: 2.2rem; height: 2.2rem; background-color: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 4.5 16.4 16.4M17 8.2V17H8.2' fill='none' stroke='black' stroke-width='2.8'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 4.5 16.4 16.4M17 8.2V17H8.2' fill='none' stroke='black' stroke-width='2.8'/%3E%3C/svg%3E") center/contain no-repeat; }
.cm25-testimonials__title { font-family: var(--ff-heading); font-weight: 400; font-size: clamp(3.6rem, 4.5vw, 5.4rem); line-height: 1.02; margin: 0 0 2.4rem; }
.cm25-testimonials__desc { font-size: 1.6rem; color: #cfd2d5; max-width: 26rem; margin: 0 0 3rem; line-height: 1.5; }
.cm25-testimonials__cta { display: inline-flex; width: auto; min-width: 17rem; padding: 0 2.6rem; height: 4.6rem; font-weight: 700; margin: 0; }

.cm25-testimonials__cards { column-count: 2; column-gap: 2.2rem; }
.cm25-review {
  break-inside: avoid;
  background: #171c22;
  border-radius: 1.6rem;
  padding: 2.4rem;
  margin: 0 0 2.2rem;
}
.cm25-stars { margin-bottom: 1.4rem; letter-spacing: .2rem; }
.cm25-star { font-size: 1.8rem; color: #3a4048; }
.cm25-star.is-full { color: #fff; }
.cm25-star.is-half { background: linear-gradient(90deg,#fff 50%,#3a4048 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cm25-review__text { font-size: 1.5rem; line-height: 1.5; color: #d7dade; margin: 0 0 2rem; }
.cm25-review__by { display: flex; align-items: center; gap: 1.2rem; margin: 0; }
.cm25-review__avatar { width: 4.4rem; height: 4.4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 1.4rem; letter-spacing: 0.03em; flex: 0 0 auto; }
.cm25-review__name { display: block; font-weight: 700; font-size: 1.5rem; color: #fff; }
.cm25-review__club { display: block; font-size: 1.35rem; color: #9aa0a7; }

/* =====================  CONTACT US  ===================== */
.cu { background: #e6e6e6; padding: 3rem 0 5rem; }
.cu .container { width: min(120rem, 100% - 3rem) !important; }
.cu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.cu__col { display: flex; flex-direction: column; gap: 2.4rem; }
.cu-card { background: #fff; border-radius: 2.4rem; padding: 3.4rem clamp(2rem,3vw,3.6rem); box-shadow: 0 2rem 5rem rgba(0,0,0,.06); }
.cu-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.cu-card__title { font-family: var(--ff-heading); font-weight: 400; font-size: 3rem; color: var(--clr-neutral-800); margin: 0; }
.cu-card__ic { width: 3.4rem; height: 3.4rem; }
.cu-card__text { font-size: 1.6rem; color: var(--clr-neutral-700); line-height: 1.5; margin: 0 0 2rem; max-width: 40rem; }

.cu-tabs { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cu-tab { border: 1px solid var(--clr-neutral-800); background: #fff; color: var(--clr-neutral-800); border-radius: 3rem; padding: .8rem 2rem; font-size: 1.5rem; cursor: pointer; transition: all .2s; }
.cu-tab.is-active, .cu-tab:hover { background: var(--clr-neutral-800); color: #fff; }
.cu-region { display: none; }
.cu-region.is-active { display: block; }
.cu-region__item { margin-bottom: 1.6rem; }
.cu-region__item:last-child { margin-bottom: 0; }
.cu-region__label { color: var(--clr-neutral-800); font-weight: 700; font-size: 1.6rem; margin: 0 0 .2rem; }
.cu-region__contact { margin: 0; font-size: 1.6rem; font-weight: 400; color: var(--clr-neutral-800); line-height: 1.5; }

.cu-help__btn { width: 100%; background: var(--clr-info-400); color: var(--clr-neutral-800); border-radius: 3.4rem; height: 6rem; font-size: 1.9rem; font-weight: 700; letter-spacing: .05em; }
.cu-help__btn:hover { background: var(--clr-neutral-800); color: #fff; }

.cu-form .su-field { max-width: none; }
.cu-form label { font-size: 1.5rem; }
.cu-form textarea.su-input { height: 12rem; padding: 1.2rem 1.4rem; resize: vertical; }
.cu-send { width: 100%; background: var(--clr-primary-400); color: var(--clr-neutral-800); height: 6rem; border-radius: 3.4rem; font-size: 1.9rem; font-weight: 700; margin-top: 1rem; }
.cu-send:hover { background: transparent; border: 2px solid var(--clr-neutral-800); }
.cu-alert-ok { background: #e4f8e9; color: #1c6b34; border-radius: 1rem; padding: 1.4rem 1.8rem; font-size: 1.6rem; }

@media (max-width: 991px) {
  .su-thanks__grid { grid-template-columns: 1fr; }
  .cu__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .su-grid { grid-template-columns: 1fr; }
  .cm25-testimonials__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .cm25-testimonials__cards { column-count: 1; }
  .cm25-testimonials__desc { max-width: none; }
}

/* =====================  INTERNAL / INDUSTRY PAGES  ===================== */
.ip { background: #e9e9e9; }
.ip .container { width: min(114rem, 100% - 3rem) !important; }

/* hero */
/* grey-to-black gradient per the design video: grey behind the heading/CTAs,
   black by the bottom so the section merges into the black stats band below */
.ip-hero {
  text-align: center; padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, var(--clr-neutral-300) 40%, var(--clr-neutral-600) 85%, var(--clr-neutral-950) 100%);
}
.ip-hero__eyebrow {
  display: inline-block; background: #f3f3f3; color: var(--clr-neutral-700);
  border-radius: 3rem; padding: .7rem 1.8rem; font-size: 1.3rem; letter-spacing: .12em;
  margin-bottom: 4.4rem;
}
.ip-hero__title {
  font-family: var(--ff-heading); font-weight: 700; text-transform: capitalize;
  font-size: clamp(3.4rem, 5.5vw, 6rem); line-height: 1.25;
  color: var(--clr-neutral-800); max-width: 86rem; margin: 0 auto 2rem;
}
.ip-hero__intro { font-size: 1.6rem; color: var(--clr-neutral-700); max-width: 64rem; margin: 0 auto 3.1rem; line-height: 1.5; }
.ip-hero__intro strong { color: var(--clr-neutral-800); font-weight: 700; }
.ip-hero__cta { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; margin-bottom: 12rem; }
.ip-hero__cta .mybtn { width: auto; min-width: 21.3rem; padding: 0 2.8rem; height: 4.8rem; font-weight: 700; margin: 0; }
.ip-hero__pricing { background: #fff; border: 1px solid #cfcfcf; }
/* keep the arrow span hidden on hover too — .mybtn--white:hover span otherwise
   re-shows it and the extra flex gap widens the button, nudging its neighbour */
.ip-hero__pricing span, .ip-hero__pricing:hover span { display: none; }
/* Hero figure: starts as an inset rounded card; ScrollTrigger (inline script in
   section-internal-page.php) grows it to the full page width, zooms the photo
   and fades in the big activity label. */
.ip-hero__figure {
  position: relative; left: 50%; transform: translateX(-50%);
  width: 100%; height: clamp(24rem, 40vw, 46rem);
  border-radius: 2.6rem; overflow: hidden;
  box-shadow: 0 2rem 5rem rgba(0,0,0,.15);
}
.ip-hero__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.ip-hero__label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-heading); font-weight: 700; color: #fff;
  font-size: clamp(3.2rem, 7vw, 7.6rem); line-height: 1.05; text-align: center;
  opacity: 0; pointer-events: none; padding: 0 2rem;
}

/* stats (black band) */
.ip-stats { background: var(--clr-neutral-950); color: #fff; padding: 6rem 0 6.5rem; }
.ip-stats__icon { width: 5.4rem; height: 5.4rem; margin-bottom: 3rem; }
.ip-stats__row { display: flex; gap: clamp(3rem, 8vw, 9rem); flex-wrap: wrap; }
.ip-stat__num { font-family: var(--ff-heading); font-weight: 700; font-size: clamp(6rem, 11vw, 11rem); line-height: .9; margin: 0 0 1.2rem; }
.ip-stat__num span { font-size: .35em; vertical-align: super; }
.ip-stat__label { font-size: 1.6rem; font-weight: 700; max-width: 26rem; margin: 0; line-height: 1.3; }

/* feature card */
.ip-feature { background-color: #eaeaea; background-image: url('../img/2025/Gradient.png'); background-repeat: no-repeat; background-position: top center; background-size: 100% 46rem; padding: 9rem 0 6rem; }
.ip-feature__card {
  background: #fff; border-radius: 2.6rem;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
  box-shadow: 0 2rem 5rem rgba(0,0,0,.08);
}
.ip-feature__text { padding: clamp(2.6rem, 4vw, 5rem); }
.ip-feature__title { font-family: var(--ff-heading); font-weight: 400; font-size: clamp(2.6rem, 3.4vw, 3.8rem); color: var(--clr-neutral-800); line-height: 1.1; margin: 0 0 2rem; }
.ip-feature__text p { font-size: 1.55rem; color: var(--clr-neutral-700); line-height: 1.55; margin: 0 0 1.6rem; }
.ip-feature__btn { display: inline-flex; width: auto; min-width: 16rem; padding: 0 2.6rem; height: 4.8rem; font-weight: 700; margin: 1rem 0 0; }
.ip-feature__media { position: relative; min-height: 34rem; }
.ip-feature__cutout {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: calc(100% + 7rem); max-width: none;
  object-fit: contain; object-position: bottom center;
  pointer-events: none;
}

/* five ways (slider) */
.ip-ways { background: #e9e9e9; padding: 4rem 0 6rem; overflow: hidden; }
.ip-ways__layout { display: flex; gap: 4rem; align-items: flex-start; }
.ip-ways__head { flex: 0 0 30rem; }
.ip-ways__rule-arrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.ip-ways__rule-arrow::before { content: ""; width: 8rem; height: 1px; background: var(--clr-neutral-800); }
/* same drawn arrow as .cm25-testimonials__arrow (see note there) */
.ip-ways__arrow { color: var(--clr-neutral-800); font-size: 0; line-height: 1; width: 2.2rem; height: 2.2rem; background-color: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 4.5 16.4 16.4M17 8.2V17H8.2' fill='none' stroke='black' stroke-width='2.8'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 4.5 16.4 16.4M17 8.2V17H8.2' fill='none' stroke='black' stroke-width='2.8'/%3E%3C/svg%3E") center/contain no-repeat; }
.ip-ways__title { font-family: var(--ff-heading); font-weight: 400; font-size: clamp(2.8rem, 3.6vw, 3.8rem); color: var(--clr-neutral-800); line-height: 1.08; margin: 0; }
.ip-ways__title > span { display: block; }
.ip-ways__logo { display: block; width: 24rem; max-width: 100%; height: auto; margin: .5rem 0; }
.ip-ways__slider-wrap { flex: 1 1 auto; min-width: 0; }
.ip-ways__slider .swiper-slide { height: auto; }
.ip-way { background: transparent; display: flex; flex-direction: column; height: 100%; }
.ip-way__n { display: block; font-size: 1.4rem; color: var(--clr-neutral-600); margin-bottom: .8rem; }
.ip-way__title { font-family: var(--ff-heading); font-weight: 400; font-size: 2.4rem; color: var(--clr-neutral-800); margin: 0 0 1.4rem; line-height: 1.15; min-height: 5.8rem; }
.ip-way__text { font-size: 1.5rem; color: var(--clr-neutral-700); line-height: 1.55; margin: 0 0 2.4rem; }
.ip-way__text strong { color: var(--clr-neutral-800); font-weight: 700; }
.ip-way__mock { background: #d9d9d9; border-radius: 2.4rem; min-height: 26rem; display: flex; align-items: center; justify-content: center; padding: 2.4rem; margin-top: auto; }
.ip-way__mock-img { width: 100%; height: 21rem; background: #fff; border-radius: 1.4rem; border: 0; pointer-events: none; }
/* controls use the same global .swiper-button-prev/next + .swiper-pagination
   styles as the Home page slider (plain arrow-right.svg arrows, 5px bar) */
.ip-ways__controls { margin-top: 2.6rem; }
.ip-ways__bar { flex: 1 1 auto; }
/* align-items: stretch is load-bearing: with the inherited flex-start the
   slider wrap shrink-to-fits its content in column mode, so Swiper's px slide
   widths feed back into the container width it measures — runaway growth loop
   that visibly thrashes the whole section on narrow windows. */
@media (max-width: 900px) { .ip-ways__layout { flex-direction: column; gap: 2rem; align-items: stretch; } .ip-ways__head { flex: none; } }

/* FAQ */
.ip-faq { background: var(--clr-neutral-900); color: #fff; padding: 6.5rem 0; }
.ip-faq__title { font-family: var(--ff-heading); font-weight: 400; font-size: clamp(2.8rem, 4vw, 4.4rem); line-height: 1.02; margin: 0 0 3.5rem; }
.ip-faq__list { display: flex; flex-direction: column; gap: 1.4rem; }
.ip-faq__item { background: #ececec; color: var(--clr-neutral-800); border-radius: 3rem; padding: 0 2.4rem; }
.ip-faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.9rem 0; font-size: 1.55rem; font-weight: 600; }
.ip-faq__item summary::-webkit-details-marker { display: none; }
.ip-faq__plus { flex: 0 0 auto; width: 3.2rem; height: 3.2rem; border-radius: 50%; background: var(--clr-primary-400); position: relative; }
.ip-faq__plus::before, .ip-faq__plus::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--clr-neutral-800); }
.ip-faq__plus::before { width: 1.4rem; height: 2px; }
.ip-faq__plus::after { width: 2px; height: 1.4rem; transition: transform .2s; }
.ip-faq__item[open] .ip-faq__plus::after { transform: translate(-50%,-50%) scaleY(0); }
.ip-faq__answer { padding: 0 0 2.2rem; font-size: 1.5rem; color: var(--clr-neutral-700); line-height: 1.55; max-width: 70rem; }

/* before you go */
.ip-bye { background: #e9e9e9; padding: 6rem 0 7rem; }
/* the rule + arrow are reused from the dark testimonials band (white line,
   lime arrow) — on this light section the design wants both dark */
.ip-bye .cm25-testimonials__rule::before { background: var(--clr-neutral-800); }
.ip-bye .cm25-testimonials__arrow { color: var(--clr-neutral-800); }
.ip-bye__grid { display: grid; grid-template-columns: 32rem 1fr; gap: 4rem; align-items: start; }
.ip-bye__title { font-family: var(--ff-heading); font-weight: 400; font-size: clamp(3.4rem, 5vw, 5.6rem); line-height: 1; color: var(--clr-neutral-800); margin: 0 0 2rem; }
.ip-bye__desc { font-size: 1.55rem; color: var(--clr-neutral-700); max-width: 26rem; line-height: 1.5; }
.ip-bye__form { background: transparent; }
.ip-bye__form select.su-input { appearance: auto; }
.ip-bye__consent { justify-content: flex-start; font-size: 1.35rem; color: var(--clr-neutral-700); margin: 1.4rem 0 2rem; }
.ip-bye__consent a { color: var(--clr-secondary-400); }
.ip-bye__form .su-submit { margin: 0; }

@media (max-width: 991px) {
  .ip-feature__card { grid-template-columns: 1fr; }
  .ip-feature__media { min-height: 28rem; }
  .ip-feature__cutout { height: 100%; }
  .ip-bye__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .ip-bye__desc { max-width: none; }
}
@media (max-width: 768px) {
  .ip-stats__row { flex-direction: column; gap: 3.5rem; }
}

/* Consistent flag sizing in the country selector (override .img-fluid height:auto) */
.flag img,
a[aria-label="flag"] > img {
  width: 2.6rem !important;
  height: 1.8rem !important;
  object-fit: cover;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
}

/* =====================  STICKY / SHRINKING HEADER  ===================== */
.header {
  position: -webkit-sticky;
  position: sticky;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
/* The frosted-glass backdrop lives on a pseudo-element whose backdrop-filter
   is PERMANENT — toggling a filter on the header itself re-creates its render
   surface mid-animation (a one-frame re-raster that made the word logo appear
   to pulse), and a filtered header would also become the containing block for
   the fixed-position offcanvas menu inside it. Only the tint's alpha animates. */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(228, 228, 228, 0);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: background-color 0.3s ease;
}
.header--shrunk::before { background-color: rgba(228, 228, 228, 0.8); }
/* Both logos share the same grid cell (no absolute positioning / transforms —
   those caused a subpixel size flicker on the word logo as the crossfade
   kicked in). will-change keeps each on its own compositor layer so the SVGs
   are not re-rasterised at transition start. */
.header__logo-box { display: inline-grid; align-items: center; justify-items: start; min-height: 3.4rem; }
.header__logo-word,
.header__logo-mark {
  grid-area: 1 / 1;
  display: block;
  transition: opacity 0.3s ease;
  will-change: opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.header__logo-word { width: 16.5rem; height: auto; opacity: 1; }
.header__logo-mark { width: auto; height: 3.2rem; opacity: 0; }
.header--shrunk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.header--shrunk .header__logo-word { opacity: 0; }
.header--shrunk .header__logo-mark { opacity: 1; }

/* The 2025 design icons are self-contained badges (coloured disc baked into
   the SVG) — render them without the page's own circle to avoid a
   circle-in-a-circle. */
.chosen__ic-box--badge { background: none !important; }
.chosen__ic-box--badge .chosen__ic { width: 100%; height: 100%; }

/* =====================  RESPONSIVE HEADER SPACING  ===================== */
/* Keep at least 20px between the word logo and the Get Started lozenge —
   the wordmark shrinks instead of colliding on narrow screens. */
.header__wrapper { gap: 2rem; }
.header__logo-box { min-width: 0; }
.header__logo-word { max-width: 100%; }
@media (max-width: 991px) {
  .header__menu { gap: 1.2rem; }                    /* flag ▸ menu icon */
  .d-lg-none .header__nav { margin-left: 1.2rem; }  /* Get Started ▸ flag */
}

/* Pricing page: wider container so the four plan columns have room */
.pricing .container { width: min(124rem, 100% - 2.5rem) !important; }

/* =====================  PRICING REFINEMENTS  ===================== */
/* Equal-height columns: plan cards stretch to fill the row and the
   Get Trial / Contact Us buttons align along the bottom */
.pricing__box { display: flex; flex-direction: column; }
.pricing__box > .pricing__plan,
.pricing__box > .pricing__plan-grid { flex: 1 1 auto; }
.pricing__plan { display: flex; flex-direction: column; }
.pricing__plan > div:last-child { margin-top: auto !important; padding-top: 1rem; }
/* Accordion dropdown text matches the title size, with a border above and
   below the panel while it is open */
.pricing .accordion .accordion-item .accordion-body,
.pricing .accordion .accordion-item .accordion-body .showmore_features li {
  font-size: 1.2rem;
}
/* Borders + spacing live INSIDE the animated .accordion-collapse container,
   so they are revealed / hidden smoothly with the height animation instead of
   snapping on and off at the end of a close (the visible "jump"). */
.pricing .accordion .accordion-item .accordion-body {
  padding: 0.8rem 0;
  margin: 0.5rem 0;
  border-top: 1px solid var(--clr-neutral-400);
  border-bottom: 1px solid var(--clr-neutral-400);
}
/* purpose (intro) cards share one height across the row */
.pricing__inner-box { min-height: 12.7rem; }
/* breathing room between the plan cards and the footnotes */
.pricing__wrapper + .content-box { margin-top: 4.5rem; }


/* ---- walkthrough page: obvious country badge ---- */
.wt-country {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--clr-neutral-800);
  color: #fff;
  border-radius: 5rem;
  padding: 0.6rem 1.4rem;
  font-size: 1.3rem;
  margin: 0 0 2.4rem;
}
.wt-country strong { font-weight: 700; }
.wt-country img { width: 2.1rem; height: 1.5rem; border-radius: 2px; object-fit: cover; }

/* Floating WhatsApp chat widget (footer.php — only when whatsappNo is set) */
.wa-chat { position: fixed; right: 2rem; bottom: 2rem; z-index: 1050; display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.wa-chat__fab { width: 5.6rem; height: 5.6rem; border-radius: 50%; border: 0; background: #25D366; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 .4rem 1.2rem rgba(0,0,0,.25); transition: transform .15s; }
.wa-chat__fab:hover { transform: scale(1.06); }
.wa-chat__fab svg { width: 3.2rem; height: 3.2rem; fill: #fff; }
.wa-chat__card { width: min(30rem, calc(100vw - 4rem)); background: #fff; border-radius: 1.2rem; box-shadow: 0 .8rem 2.4rem rgba(0,0,0,.18); padding: 1.6rem; }
.wa-chat__head { display: flex; flex-direction: column; margin-bottom: 1rem; }
.wa-chat__head-name { font-weight: 700; font-size: 1.6rem; color: var(--clr-neutral-800); }
.wa-chat__head-sub { font-size: 1.3rem; color: var(--clr-neutral-700); }
.wa-chat__input { width: 100%; border: 1px solid #d5d5d5; border-radius: .8rem; padding: .8rem 1rem; font-size: 1.4rem; resize: none; font-family: inherit; }
.wa-chat__send { display: flex; align-items: center; justify-content: center; margin-top: 1rem; height: 4rem; border-radius: 2rem; background: #25D366; color: #fff; font-weight: 700; font-size: 1.4rem; }
.wa-chat__send:hover, .wa-chat__send:focus { background: #1fb658; color: #fff; }

/* Contact page: wa.me QR beside a country's contact details (desktop only) */
.cu-region__item { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.6rem; }
.cu-region__details { min-width: 0; }
.cu-region__wa { flex-direction: column; align-items: center; gap: .4rem; text-decoration: none; flex: 0 0 auto; }
.cu-region__wa img { display: block; width: 8.8rem; height: 8.8rem; border-radius: .6rem; border: 1px solid #e2e2e2; background: #fff; padding: .3rem; }
.cu-region__wa span { font-size: 1.2rem; font-weight: 700; color: #1fb658; }
