@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Font Face Declarations */
@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOThin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOThinItalic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOLightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMORegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMORegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOMediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOBoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOExtraBoldItalic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'BwNistaGrotesk';
  src: url("../fonts/bw-nista-grotesk-demo/BwNistaGroteskDEMOBlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}

/* Font Variable */
:root {
  --font-bw: 'BwNistaGrotesk', sans-serif;
  --font-inter: 'Inter'
  ;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* -webkit-text-size-adjust: 100%; */
}

html {
  font-size: 62.5%;
  font-family: var(--font-bw);
  font-weight: 500;
  font-optical-sizing: auto;
  font-style: normal;
  scroll-behavior: smooth;
}

@media only screen and (min-width: 2500px) {
  html {
    font-size: 85%;
  }
}

@media only screen and (max-width: 1600px) {
  html {
    font-size: 62.5%;
  }
}

@media only screen and (max-width: 1400px) {
  html {
    font-size: 50%;
  }
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

@media only screen and (max-width: 320px) {
  html {
    font-size: 50%;
  }
}

body {
  background-color: #020305;
  color: #fff;
  overflow-x: hidden;
  position: relative;
  opacity: 0;
  transition: all .3s ease-in-out;
}

textarea,
button,
select,
a,
div,
li {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  appearance: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  opacity: 0.75;
}

li {
  list-style: none;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: grey;
}

.sectionWrapper {
  margin: 0 auto;
  padding-left: 7.5vw;
  padding-right: 7.5vw;
  max-width: calc(1600px + 16vw);
}

@media (max-width: 575px) {
  .sectionWrapper {
    margin: 0 auto;
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: calc(1400px + 10vw);
  }
}

.desktop,
.mobile {
  display: none !important;
}

@media (min-width: 769px) {
  .desktop {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .mobile {
    display: flex !important;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
  /* Prevents background content from moving */
}

.primaryButton {
  border-radius: 10rem;
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
  background-color: rgba(217, 217, 217, 0.1);
  align-self: flex-start;
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: center;
  color: #fff;
  padding: 1.5rem 5rem;
  text-transform: uppercase;
  overflow: hidden;
  display: flex !important;
}

.primaryButton span {
  position: absolute;
  background: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  animation: animate 1s linear infinite;
}

@keyframes animate {
  0% {
    width: 0;
    height: 0;
    opacity: 0.2;
  }

  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}

.btnGradient {
  position: relative;
  display: inline-block;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: center;
  /* was left, better to center for buttons */
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 100px;
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
  background-color: rgba(217, 217, 217, 0.1);
  padding: 1.5rem 3.2rem;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  display: inline-flex !important;
}

@media only screen and (max-width: 768px) {
  .btnGradient {
    padding: 1.2rem 2.4rem;
  }
}

.btnGradient::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  /* border thickness */
  border-radius: 100px;
  background: linear-gradient(90deg, #cccccc, #eeeeee);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.tag {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: left;
  color: #fff;
  border-radius: 66.9px;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 1rem 2.4rem;
  text-transform: uppercase;
  width: fit-content;
}

@media only screen and (max-width: 768px) {
  .tag {
    padding: 0.8rem 1.6rem;
  }
}

.font64 {
  font-size: 6.4rem;
}

@media only screen and (max-width: 1200px) {
  .font64 {
    font-size: 5.4rem;
  }
}

@media only screen and (max-width: 768px) {
  .font64 {
    font-size: 4rem;
  }
}

@media only screen and (max-width: 575px) {
  .font64 {
    font-size: 3.6rem;
  }
}

.font36 {
  font-size: 3.6rem;
}

@media only screen and (max-width: 768px) {
  .font36 {
    font-size: 3.2rem;
  }
}

@media only screen and (max-width: 575px) {
  .font36 {
    font-size: 2.8rem;
  }
}

.font32 {
  font-size: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .font32 {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 575px) {
  .font32 {
    font-size: 2.4rem;
  }
}

.font28 {
  font-size: 2.8rem;
}

@media only screen and (max-width: 768px) {
  .font28 {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 575px) {
  .font28 {
    font-size: 2.2rem;
  }
}

.font24 {
  font-size: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .font24 {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 575px) {
  .font24 {
    font-size: 1.8rem;
  }
}

.font20 {
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .font20 {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 575px) {
  .font20 {
    font-size: 1.7rem;
  }
}

.font18 {
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .font18 {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 575px) {
  .font18 {
    font-size: 1.5rem;
  }
}

.font16 {
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .font16 {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .font16 {
    font-size: 1.4rem;
  }
}

.font12 {
  font-size: 1.2rem;
}

@media only screen and (max-width: 768px) {
  .font12 {
    font-size: 1.1rem;
  }
}

.homeBanner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  height: 100vh;
  display: flex;
  /* Slick dots container */
}

.homeBanner .sectionWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.homeBanner .slide {
  width: 100%;
  height: 100vh;
  position: relative;
}

.homeBanner .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.homeBanner .slide .icon.desktop {

  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 54rem;
  height: auto;
  object-fit: contain;

}



.homeBanner .slide .icon.mobile {

  position: absolute;
  top: 0;
  right: 0;
  max-width: 20rem;
  height: auto;
  object-fit: contain;

}




.homeBanner .slide .gradiant {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(2, 3, 5, 0), #020305);
}

.homeBanner .slide .text {
  padding-left: 7.5vw;
  padding-right: 7.5vw;
  position: absolute;
  bottom: 12rem;
  left: 0;
  max-width: 90rem;
  display: flex;
  flex-direction: column;
  z-index: 555;
}

.homeBanner .slide .text h1 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.28px;
  text-align: left;
  color: #fff;
  margin-bottom: 1rem;
}

.homeBanner .slide .text p {
  font-family: var(--font-bw);
  font-size: 1.9rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.19px;
  text-align: left;
  color: #fff;
  margin-bottom: 3rem;
}

.homeBanner .slide .text p strong {
  font-size: 1.7rem
}

.homeBanner .slide .text a {
  overflow: hidden;
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: left;
  color: #fff;
  transition: none;
}

.homeBanner .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex !important;
  gap: 8px;
  padding-left: 7.5vw;
  padding-right: 7.5vw;
  list-style: none;
  margin: 0;
}

.homeBanner .slick-dots li button {
  font-size: 0;
  line-height: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.homeBanner .slick-dots li button:before {
  content: "" !important;
  display: block;
  width: 24px;
  height: 8px;
  border-radius: 10px;
  background: rgba(179, 179, 179, 0.3);
  transition: all 0.3s ease;
  opacity: 1 !important;
}

.homeBanner .slick-dots li.slick-active button:before {
  background: rgba(255, 255, 255, 0.44);
  width: 28px;
}

.home_ethos {
  display: flex;
  gap: 10%;
  padding-top: 12rem;
  padding-bottom: 8rem;
  background-color: #020305;
}

.home_ethos .c1 {
  width: 60%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.home_ethos .c1 h1 {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: left;
  color: #fff;
  margin-bottom: 1rem;
}

.home_ethos .c1 h2 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.28px;
  text-align: left;
  color: #fff;
  margin-bottom: 4rem;
  max-width: 45rem;
}

@media screen and (max-width: 1024px) {
  .home_ethos .c1 h2 {
    font-size: 2.4rem;
  }
}

.home_ethos .c1 p {
  font-family: var(--font-bw);
  font-size: 2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.2px;
  text-align: left;
  color: #fff;
  max-width: 60rem;
}

@media screen and (max-width: 1024px) {
  .home_ethos .c1 p {
    font-size: 1.8rem;
  }
}

.home_ethos .c2 {
  width: 40%;
  overflow: hidden;
  /* Slick dots container */
}

.home_ethos .c2 .slide {
  width: 50%;
  border-radius: 0.6rem;
  margin-bottom: 2.5rem;
}

.home_ethos .c2 .slide img {
  border-radius: 0.6rem;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.home_ethos .c2 .slick-slide {
  margin: 0 15px;
  /* 15px gap on both sides */
}

.home_ethos .c2 .slick-list {
  margin: 0 -15px;
  /* cancel out extra spacing */
}

/* !slider progress bar  */

/* container & layout (unchanged) */
.home_ethos .c2 .slick-dots {
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
}

/* each dot button (track) */
.home_ethos .c2 .slick-dots li button {
  font-size: 0;
  line-height: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 4.8rem;
  /* total allocated width */
  height: 8px;
  position: relative;
  overflow: hidden;
}

/* inactive base track */
.home_ethos .c2 .slick-dots li button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(179, 179, 179, 0.3);
}

/* progress overlay - default 0 width and hidden (opacity 0).
   No width transition here — prevents visible shrinking. */
.home_ethos .c2 .slick-dots li button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.44);
  animation: none;
  /* only opacity transitions used for fade */
  transition: opacity 0.8s ease;
  opacity: 0;
  /* default hidden so removing classes won't show a shrink */
}

/* active: animate fill from 0 -> 100% using CSS var --duration */
.home_ethos .c2 .slick-dots li.slick-active button::after {
  opacity: 1;
  /* make visible when active */
  animation: dotProgress var(--duration, 4000ms) linear forwards;
}

/* filled: persist full width and fully visible.
   width is set instantly (no transition) so removal won't animate shrink. */
.home_ethos .c2 .slick-dots li.filled button::after {
  animation: none !important;
  width: 100% !important;
  /* instant full */
  opacity: 1 !important;
}

/* resetting: fade existing filled bars out (keeps width 100% during fade) */
.home_ethos .c2 .slick-dots li.resetting button::after {
  /* keep width 100 so visual doesn't shrink; only fade opacity */
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* keyframes for progress (controls width only) */
@keyframes dotProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}



/* !============================= */

.home_whatYouGet {
  position: relative;
  margin-top: 8rem;
  padding-top: 9rem;
  padding-bottom: 4.5rem;
  width: 100%;
  height: auto;
  /* background-image: url("../images/home/whatYouGet-bg.png"); */
  background-repeat: no-repeat;
  background-size: cover;
  /* this is the equivalent of object-fit: cover */
  background-position: center;
  overflow: hidden;
}





.home_whatYouGet {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.home_whatYouGet .bgFadeLayer {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.home_whatYouGet>*:not(.bgFadeLayer) {
  position: relative;
  z-index: 2;
}



.home_whatYouGet .topGradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 31%;
  width: 100%;
  background-image: linear-gradient(to top, rgba(2, 3, 5, 0) 10%, #020305b0 100%);
  z-index: 5;
}

.home_whatYouGet .head {
  padding-left: 7.5vw;
  display: flex;
  flex-direction: column;
  max-width: 60rem;
  margin-bottom: 7vw;
  z-index: 6;
}

.home_whatYouGet .head h1 {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: left;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.home_whatYouGet .head h2 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
}

.home_whatYouGet .content {
  display: flex;
  gap: 2.3rem;
  flex-wrap: nowrap;
}

.home_whatYouGet .content .block {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50rem;
  flex-shrink: 0;
  padding: 2.5rem 2.5rem 10rem 2.5rem;
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home_whatYouGet .content .block .icon {
  max-width: 6.5rem;
  margin-bottom: 1.8rem;
}

.home_whatYouGet .content .block .arrow {
  position: absolute;
  max-width: 5.7rem;
  right: 2.5rem;
  top: 2.5rem;
}

.home_whatYouGet .content .block h1 {
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-bottom: 2.6rem;
}

@media screen and (max-width: 1024px) {
  .home_whatYouGet .content .block h1 {
    font-size: 2.2rem;
  }
}

.home_whatYouGet .content .block h2 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  margin-bottom: 0.4rem;
}

@media screen and (max-width: 1024px) {
  .home_whatYouGet .content .block h2 {
    font-size: 1.6rem;
  }
}

.home_whatYouGet .content .block p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
}

.home_whatYouGet .content .block .bgImage {
  display: none;
}

@media screen and (max-width: 1024px) {
  .home_whatYouGet .content .block p {
    font-size: 1.6rem;
  }
}

.home_whatYouGet .bottom_bg {
  width: 100%;
  padding-left: 7.5vw;
  padding-right: 7.5vw;
  margin-top: 11rem;
  opacity: 0;
}

.home_measurable {
  position: relative;
  display: flex;
  padding-top: 17rem;
  padding-bottom: 13rem;
  gap: 7%;
  align-items: flex-end;
  justify-content: space-between;
}

.home_measurable .c1 {
  width: 50%;
  display: flex;
}

.home_measurable .c1 img {
  width: 100%;
  height: auto;
}

.home_measurable .c2 {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.home_measurable .c2 h1 {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.home_measurable .c2 h2 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.28px;
  text-align: left;
  color: #fff;
  margin-bottom: 1.6rem;
  max-width: 57rem;
}

@media screen and (max-width: 1024px) {
  .home_measurable .c2 h2 {
    font-size: 2.4rem;
  }
}

.home_measurable .c2 p {
  font-family: var(--font-bw);
  font-size: 1.9rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.19px;
  text-align: left;
  color: #fff;
  margin-bottom: 4.5rem;
  max-width: 57rem;
}

@media screen and (max-width: 1024px) {
  .home_measurable .c2 p {
    font-size: 1.7rem;
  }
}

.home_measurable .c2 a {
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.96px;
  text-align: left;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.04);
  transition: none;
}


.home_peekAtEvity {
  display: flex;
  flex-direction: column;
  padding-top: 15rem;
  padding-bottom: 45rem;
  position: relative;
  overflow: hidden;
}

.home_peekAtEvity .bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
}

.home_peekAtEvity .bg2 {
  position: absolute;
  top: 0;
  right: 0;
  width: fit-content;
}

.home_peekAtEvity .head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 13rem;
}

.home_peekAtEvity .head h1 {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.home_peekAtEvity .head h2 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.28px;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}

.home_peekAtEvity .head p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  max-width: 60rem;
}

.home_peekAtEvity .slider {
  position: relative;
}

.home_peekAtEvity .slider .slick-list {
  overflow: visible !important;
}

.home_peekAtEvity .slider::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  width: 100%;
  height: 37rem;
  background: transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  z-index: -2;
}

.home_peekAtEvity .slider .block {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home_peekAtEvity .slider .block img {
  max-width: 37.2rem;
  margin-bottom: 4.8rem;
  aspect-ratio: 1 /1;
  border-radius: 50%;
  border: 1px solid #A2A1B8;
}

.home_peekAtEvity .slider .block h1 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  margin-bottom: 0.6rem;
}

.home_peekAtEvity .slider .block p {
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
}

.home_peekAtEvity .slider .block .link {
  display: flex;
  overflow: hidden;
}

.home_peekAtEvity .slider .slick-slide {
  transform: scale(0.5) translateY(80px);
  transition: transform 0.3s ease;
  transition: all 0.3s ease-in-out;
  z-index: 5;
  filter: grayscale(1);
}

.home_peekAtEvity .slider .slick-slide h1 {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.home_peekAtEvity .slider .slick-slide p {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.home_peekAtEvity .slider .slick-center {
  transform: scale(1) translateY(31px);
  opacity: 1;
  filter: grayscale(0);
}




.home_peekAtEvity .slider .slick-center h1 {
  opacity: 1;
}

.home_peekAtEvity .slider .slick-center p {
  opacity: 1;
}

.home_member {
  position: relative;
  display: flex;
  /* padding-right: 0; */
  min-height: 100vh;
  overflow: hidden;
}

.home_member .c1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -12vh;
}

.home_member .c1 h1 {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.home_member .c1 h2 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.28px;
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
  max-width: 55rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .home_member .c1 h2 {
    font-size: 2.4rem;
  }
}

.home_member .c1 p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  max-width: 60rem;
  transition: all 1s ease-in-out;
  margin-bottom: 12rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .home_member .c1 p {
    font-size: 1.6rem;
  }
}

.home_member .c1 a {
  margin: 0 auto !important;
}

.home_member .imgSlider {
  display: flex;
  position: absolute;
  top: 50%;
  /* center vertically */
  right: 0;
  /* stick to right side */
  transform: translateY(-50%);
  /* vertical centering */
  will-change: transform;
  gap: 3.5rem;
}

.home_member .imgSlider img {
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
  max-height: 80vh;
}

.home_became_a_member {
  position: relative;
  display: flex;
}

.home_became_a_member .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home_became_a_member .bg_gradiant {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(2, 3, 5, 0), #020305);
}

.home_became_a_member .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 6.8rem 8rem;
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home_became_a_member .content h1 {
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.24px;
  text-align: center;
  color: #fff;
  margin-bottom: 4.5rem;
  max-width: 50rem;
}

@media screen and (max-width: 1024px) {
  .home_became_a_member .content h1 {
    font-size: 2rem;
  }
}

.home_became_a_member .content a {
  align-self: center;
}

.home_FAQ {
  display: flex;
  flex-direction: column;
  padding-top: 25rem;
  padding-bottom: 40rem;
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.home_FAQ .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transform: scale(1.3);
  transform-origin: 230% 165%;
  z-index: -1;
}

.home_FAQ .head {
  display: flex;
  flex-direction: column;
  margin-bottom: 11rem;
  overflow: hidden;
}

.home_FAQ .head h1 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: center;
  color: #dadada;
  margin-bottom: 1rem;
}

.home_FAQ .head p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.46;
  letter-spacing: normal;
  text-align: center;
  color: #d8d8d8;
}

/* !================ */
.home_FAQ .accordion {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 166rem;
  max-width: 75%;
  align-self: center;
  margin-bottom: 7.5rem;
  overflow: hidden;
}

.home_FAQ .accordion .block {
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem;
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* transition: all 0.3s ease-in-out; */
  cursor: pointer;

}

.home_FAQ .accordion .block .acc_head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0rem;
  transition: all 0.3s ease-in-out;
}

.home_FAQ .accordion .block .acc_head img {
  transform: rotate(180deg);
  max-width: 2.9rem;
  transition: all 0.3s ease-in-out;
}

.home_FAQ .accordion .block .acc_head h1 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.83;
  letter-spacing: normal;
  text-align: left;
  color: rgba(216, 216, 216, 0.7);
}

.home_FAQ .accordion .block .acc_content {
  display: flex;
  transition: all 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
}

.home_FAQ .accordion .block .acc_content p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #d8d8d8;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  text-transform: none;
  padding-top: 1rem;
}

/* .home_FAQ .accordion .block.active .acc_head {
  padding-bottom: 2rem;
} */

.home_FAQ .accordion .block.active .acc_head img {
  transform: rotate(0deg);
}

.home_FAQ .accordion .block.active .acc_content {
  max-height: 1000px;
}

.home_FAQ .accordion .block.active .acc_content p {
  opacity: 1;
}

/* !======================= */
.home_FAQ .text {
  display: flex;
  align-self: center;
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.46;
  letter-spacing: normal;
  text-align: left;
  color: #d8d8d8;
  gap: 1.1rem;
  align-items: center;
  transition: none;
}

.home_FAQ .text img {
  max-width: 4rem;
}

.footer {
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 2rem;
  gap: 8rem;
  position: relative;
  overflow: hidden;
  z-index: 10;
}


.footer .sectionWrapper {
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 2rem;
  gap: 8rem;
  width: 100%;
}

.footer .gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #5263f3;
  background: linear-gradient(0deg, rgba(82, 99, 243, 0.5) 0%, rgba(2, 3, 5, 0.0) 70%);
}

.footer .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer .top .c1 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
}

.footer .top .c1 img {
  max-width: 21rem;
  margin-bottom: 2.2rem;
}

.footer .top .c1 .social {
  display: flex;
  gap: 0.6rem;
}

.footer .top .c1 .social img {
  max-width: 3rem;
  height: auto;
  aspect-ratio: 1/1;
}

.footer .top .c2 {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  gap: 5%;
}

.footer .top .c2 .link1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer .top .c2 .link1 a {
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.14px;
  text-align: left;
  color: #fff;
}

.footer .top .c2 .link2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer .top .c2 .link2 a {
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.14px;
  text-align: left;
  color: #fff;
}

.footer .top .c3 {
  display: flex;
  flex-direction: column;
  flex-grow: 0.5;
  flex-basis: 0;
  gap: 2rem;
}

.footer .top .c3 h1,
.footer .top .c3 a {
  display: flex;
  gap: 2rem;
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.48px;
  text-align: left;
  color: #fff;
  align-items: center;
}

.footer .bottom {
  width: 100%;
  gap: 5%;
  display: flex;
  justify-content: space-between;
}

.footer .bottom .c1 {
  width: 50%;
}

.footer .bottom .c1 h1 {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.12px;
  text-align: left;
  color: rgba(255, 255, 255, 0.47);
}

.footer .bottom .c2 {
  width: 50%;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer .bottom .c2 a {
  font-family: var(--font-bw);
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.1px;
  text-align: center;
  color: rgba(255, 255, 255, 0.47);
}

.header {
  display: flex;
  z-index: 1000;
  position: relative;
  gap: 7rem;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: 0 0 10rem 10rem;
  background-color: rgba(217, 217, 217, 0.1);
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  backdrop-filter: blur(10px);
  margin-top: -1.5px;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease;
  z-index: 999;
  align-items: center;
}




.header.hide {
  transform: translateY(-100%);
}


.header::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 0 0 10rem 10rem;
  background: linear-gradient(164deg, #d9d9d976, #d9d9d984);
  -webkit-mask: linear-gradient(#f6f6f6 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.header a {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.header img {
  max-width: 13.6rem;
}

.header {
  position: fixed !important;
  overflow: visible;
  border-radius: 0 !important;
  padding: 0 !important;
  backdrop-filter: unset !important;
}

.header::after {
  border-radius: 0 !important;
  background: none !important;
}

.header .nav {
  display: flex;
  z-index: 1000;
  position: relative !important;
  gap: 7rem;
  justify-content: center;
  padding: 3rem 2rem;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  backdrop-filter: blur(10px);
  margin-top: -1.5px;
  transition: transform 0.3s ease;
  align-items: center;
  border-bottom: 1px solid #ffffff4b;
  transform: translateX(-2%);
}

@media screen and (max-width: 1024px) {

  .header .nav {

    gap: 3rem;
  }
}

.header .dropDown {
  position: absolute;
  top: 0;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -1;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  border-radius: 0;
  backdrop-filter: blur(34.2px);
  background-color: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #d9d9d9;
  pointer-events: none;
}

.header .dropDown.active {
  top: 100%;
  transition: all 0.3s ease;
  opacity: 1;
  z-index: 999;
  pointer-events: auto;
}

.header .dropDown .content {
  padding: 3.1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 112rem;
  gap: 0.7rem;
}


#allProtocolDropdown img {
  max-width: 1.4rem;
  transition: all .3s ease-in-out;
}

#allProtocolDropdown.active img {

  transform: rotate(180deg)
}

.header .dropDown .content a {
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  background: transparent;
  text-transform: none !important;
  padding: .9rem 2.8rem;
}

.header .dropDown .content a::after {
  text-transform: none !important;
}

.therapy_banner {
  position: relative;
  width: 100%;
  background-image: url("../images/therapy/banner-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  gap: 5%;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 10rem;
}

.therapy_banner .logo {
  display: flex;
  position: relative;
  margin-bottom: 8rem;
}

.therapy_banner .c1 {
  display: flex;
  flex-direction: column;
  width: 60%;
  justify-content: center;
  z-index: 6;
}

.therapy_banner .c1 img {
  margin-top: 5rem;
  width: fit-content;
}

.therapy_banner .c1 h1 {
  font-family: var(--font-bw);
  font-size: 3rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-bottom: 1.2rem;
  max-width: 50rem;
}

@media screen and (max-width: 1024px) {
  .therapy_banner .c1 h1 {
    font-size: 2.8rem;
  }
}

.therapy_banner .c1 p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  max-width: 50rem;
}

@media screen and (max-width: 1024px) {
  .therapy_banner .c1 p {
    font-size: 2rem;
  }
}

.therapy_banner .c1 .button {
  display: flex;
}

.therapy_banner .c2 {
  display: flex;
  width: 40%;
  justify-content: flex-end;
}

.therapy_banner .c2 img {
  align-self: flex-end;
  width: 100%;
  object-fit: cover;
  margin-bottom: -50%;
  transition: none !important;
}

.therapy_banner .bottomBg {
  z-index: 5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 25vh;
  background-image: linear-gradient(to bottom, #02030500, #020305 80%);
}

.therapy_start {
  position: relative;
  display: flex;
  gap: 4%;
  background-color: #020305;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.therapy_start .c1 {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.therapy_start .c1 h1 {
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1024px) {
  .therapy_start .c1 h1 {
    font-size: 2.2rem;
  }
}

.therapy_start .c1 p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .therapy_start .c1 p {
    font-size: 1.4rem;
  }
}

.therapy_start .c2 {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  row-gap: 1.2rem;
  align-items: center;
  width: 60%;
  flex-wrap: wrap;
}

.therapy_start .c2 .content {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  row-gap: 1.2rem;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  max-width: 58rem;
}

.therapy_start .c2 .content h2 {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  border-radius: 6.6rem;
  background-color: #111;
  padding: 1rem 2.5rem;
  display: inline-block;
  height: auto;
}

.therapy_start .c2 .content h2.active {

  background-color: #fff;
  color: #000;

}


.therapy_start .c2 .content h2.filter-selected {
  outline: 2px solid currentColor;
  border-radius: .4rem;
  transform: scale(0.98);
}

/* Hide filtered items without touching `.active` class */
.therapy_accordion .accordion-item.is-filtered-out {
  display: none !important;
}






@media screen and (max-width: 1024px) {
  .therapy_start .c2 .content h2 {
    font-size: 1.1rem;
  }
}

.therapy_accordion {
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  color: #fff;
  background-color: #020305;
}

.therapy_accordion .accordion-item {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.therapy_accordion .accordion-item:hover {
  z-index: 10;
}

.therapy_accordion .accordion-item .accordion-header {
  width: 100%;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 2.4rem 0;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  outline: none;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  align-items: center;
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
  transition: all 0.3s ease-in-out;
  cursor: url('../images/therapy/accoording-plus-button.svg')22 22, auto;
}

.therapy_accordion .accordion-item .accordion-header:hover {
  opacity: 0.8;
}

.therapy_accordion .accordion-item .accordion-header .plus {
  opacity: 0;
  display: flex;
  transition: all 0.3s ease-in-out;
  display: none;
}

.therapy_accordion .accordion-item .accordion-header .plus img {
  max-width: 4.4rem;
  height: auto;
}

.therapy_accordion .accordion-item .accordion-header .close {
  display: none;
  transition: all 0.3s ease-in-out;
}

.therapy_accordion .accordion-item .accordion-header .close img {
  max-width: 4.4rem;
  height: auto;
}

.therapy_accordion .accordion-item .accordion-header .close:hover {
  opacity: 0.7;
}

.therapy_accordion .accordion-item .accordion-header:hover .plus {
  opacity: 1;
}

.therapy_accordion .accordion-item .accordion-header:hover .popUp {
  opacity: 1;
  z-index: 55;
}

.therapy_accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 0rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}


.accordion-content {
  max-height: 0;
  overflow: hidden;
  /* IMPORTANT */
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  will-change: max-height, opacity;
}

.therapy_accordion .accordion-item .accordion-content .upper {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.therapy_accordion .accordion-item .accordion-content .upper .c1 {
  width: fit-content;
}

.therapy_accordion .accordion-item .accordion-content .upper .c1 img {
  max-width: 5.5rem;
  height: auto;
}

.therapy_accordion .accordion-item .accordion-content .upper .c2 {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.therapy_accordion .accordion-item .accordion-content .upper .c2 h1 {
  font-family: var(--font-bw);
  font-size: 2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.2px;
  text-align: left;
  color: #fff;
}

.therapy_accordion .accordion-item .accordion-content .upper .c2 p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
}

.therapy_accordion .accordion-item .accordion-content .lower {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 3.5rem;
}

.therapy_accordion .accordion-item .accordion-content .lower .head {
  font-family: var(--font-bw);
  font-size: 2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.2px;
  text-align: left;
  color: #fff;
  margin-bottom: 2.1rem;
}

.therapy_accordion .accordion-item .accordion-content .lower .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.therapy_accordion .accordion-item .accordion-content .lower .content .c1 {
  width: 75%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  row-gap: 1.2rem;
  align-items: center;
  max-width: 50rem;
  flex-wrap: wrap;
}

.therapy_accordion .accordion-item .accordion-content .lower .content .c1 ul {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  row-gap: 1.2rem;
  align-items: center;
  max-width: 50rem;
  flex-wrap: wrap;
}

.therapy_accordion .accordion-item .accordion-content .lower .content .c1 ul li {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  border-radius: 6.6rem;
  background-color: #111;
  padding: 1rem 2.5rem;
  display: inline-block;
  height: auto;
}

.therapy_accordion .accordion-item .accordion-content .lower .content .c2 {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.therapy_accordion .accordion-item .accordion-content .lower .content .c2 a {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2.24px;
  text-align: left;
  color: #fff;
  padding: 1.5rem 4rem;
  align-self: center;
  border-radius: 100px;
  background-color: rgba(18, 99, 160, 0.25);
}

.therapy_accordion .accordion-item .accordion-content .lower .content .c2 a::before {
  background: linear-gradient(90deg, #cccccc94, #eeeeee82);
}


.therapy_accordion .accordion-item.active .plus {
  display: none;
}

.therapy_accordion .accordion-item.active .accordion-header {
  justify-content: space-between;
}

.therapy_accordion .accordion-item.active .close {
  display: block;
}

.therapy_accordion .accordion-item.active .accordion-content {
  max-height: 2000px;
  padding: 0rem 0 2rem 0;
}

.therapy_accordion .accordion-item .popUp {
  display: flex;
  position: absolute;
  left: 40%;
  top: -75%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  /* <-- key line */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 5;
}

.therapy_accordion .accordion-item .popUp img {
  max-width: 25.6rem;
}

.therapy_accordion .accordion-item .popUp .icon {
  position: absolute;
  top: 3.6rem;
  left: 3.6rem;
  max-width: 8.4rem;
  width: 100%;
}

.therapy_accordion .accordion-item .popUp h1 {
  position: absolute;
  bottom: 2.6rem;
  left: 1.6rem;
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.4px;
  text-align: left;
  color: #fff;
  white-space: wrap;
}

.therapy_accordion .accordion-item:hover .popUp {
  opacity: 1;
}

.therapyInfo {
  position: relative;
}

.therapyInfo .gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
}

.therapyInfo .mainContainer {
  display: flex;
  justify-content: space-between;
  gap: 10%;
  padding: 8rem 0;
}

@media screen and (max-width: 768px) {
  .therapyInfo .mainContainer {
    flex-direction: column;
    gap: 5rem;
  }
}

.therapyInfo .mainContainer .left h5 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
  margin-bottom: 0.6rem;
}

.therapyInfo .mainContainer .left h6 {
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  margin-bottom: 2.4rem;
}

.therapyInfo .mainContainer .left p {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
}

.therapyInfo .mainContainer .right .pointBox {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 8rem;
}

@media screen and (max-width: 575px) {
  .therapyInfo .mainContainer .right .pointBox {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  .therapyInfo .mainContainer .right .pointBox .svgBox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

.therapyInfo .mainContainer .right .pointBox .svgBox img {
  height: 6.4rem;
  width: auto;
  display: block;
  animation: rotate360 20s linear infinite;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 768px) {
  .therapyInfo .mainContainer .right .pointBox .svgBox img {
    height: 5rem;
  }
}

.therapyInfo .mainContainer .right .pointBox .contentBox h5 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.18px;
  color: #fff;
  margin-bottom: 0.6rem;
}

@media screen and (max-width: 575px) {
  .therapyInfo .mainContainer .right .pointBox .contentBox h5 {
    margin-bottom: 1.2rem;
  }
}

.therapyInfo .mainContainer .right .pointBox .contentBox h6 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  color: #fff;
  margin-bottom: 1rem;
}

@media screen and (max-width: 575px) {
  .therapyInfo .mainContainer .right .pointBox .contentBox h6 {
    margin-bottom: 0.6rem;
  }
}

.therapyInfo .mainContainer .right .pointBox .contentBox p {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  color: #fff;
}

.therapy_sliderSection {
  display: flex;
  position: relative;
  background-color: #020305;
  padding-top: 7rem;
  padding-bottom: 7rem;
  /* cursor: none; */
  overflow: hidden;
  height: 100vh;
  flex-direction: column;
}

.therapy_sliderSection .icon {
  position: absolute;
  top: 6%;
  left: 6%;
  max-width: 6rem;
}

.therapy_sliderSection .top {
  display: flex;
  justify-content: center;
  height: 5%;
}

.therapy_sliderSection .top img {
  object-fit: contain;
  width: 80%;
  height: 1rem;
}

.therapy_sliderSection .bottom {
  display: flex;
  height: 5%;
  justify-content: center;
}

.therapy_sliderSection .bottom img {
  height: 1rem;
  object-fit: contain;
  width: 80%;
}

.therapy_sliderSection .button {
  position: absolute;
  right: 7.5vw;
  top: 9%;
  z-index: 44;
}

.therapy_sliderSection .center {
  position: relative;
  display: flex;
  height: 90%;
  gap: 2rem;
  overflow: hidden;
}

.therapy_sliderSection .center .line1 {
  height: 80%;
  align-self: flex-end;
}

.therapy_sliderSection .center .bg-left {
  width: fit-content;
  object-fit: contain;
}

.therapy_sliderSection .center .bg-right {
  width: fit-content;
  object-fit: contain;
}

.therapy_sliderSection .center .c1 {
  width: 50%;
  overflow: hidden;
  padding-left: 5rem;
  padding-top: 5rem;
}

.therapy_sliderSection .center .c1 h1 {
  /* margin-top: 2rem; */
  font-size: 3.6rem;
}

.therapy_sliderSection .center .c1 .swiper-wrapper {
  flex-direction: column;
  width: unset;
}

.therapy_sliderSection .center .c1 .block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  justify-content: flex-start;
  padding-top: 7rem;
}

.therapy_sliderSection .center .c1 .block h1 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.28px;
  text-align: left;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 47rem;
}

.therapy_sliderSection .center .c1 .block p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  max-width: 47rem;
}

.therapy_sliderSection .center .c2 {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: visible;
  top: 50%;
  transform: translateY(-25%);
  height: 100%;
}

.therapy_sliderSection .center .c2 .swiper-wrapper {
  flex-direction: column;
  width: unset;
  height: unset;
}

.therapy_sliderSection .center .c2 .block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 30rem;
  height: 30rem;
  padding: 2rem 0;
  border-radius: 50%;
  position: relative;
  /* Smooth transition for all properties */
}

.therapy_sliderSection .center .c2 .block .dashed-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
  /* for fade out */
}

.therapy_sliderSection .center .c2 .block .dashed-circle circle {
  fill: none;
  stroke: #7c7c7c;
  stroke-width: 2;
  stroke-dasharray: 5 5;
  /* dash length + gap */
}

.therapy_sliderSection .center .c2 .block h1 {
  font-family: var(--font-bw);
  font-size: 5rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 7.01px;
  text-align: left;
  color: rgba(255, 255, 255, 0.19);
  margin-bottom: 0rem;
  transition: all 0.5s ease;
}

.therapy_sliderSection .center .c2 .block p {
  font-family: var(--font-bw);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.2px;
  text-align: left;
  color: #fff;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.therapy_sliderSection .center .c2 .swiper-slide-active {
  border: 1px solid #ffffff;
  scale: 1;
  background-color: rgba(217, 217, 217, 0.1);
}

.therapy_sliderSection .center .c2 .swiper-slide-active .dashed-circle {
  opacity: 0;
}

.therapy_sliderSection .center .c2 .swiper-slide-active h1 {
  margin-bottom: 1rem;
}

.therapy_sliderSection .center .c2 .swiper-slide-active p {
  display: block;
  opacity: 1;
}

/* !custom cursor  */
.customCursor,
.cursorTrail {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
  animation: colorCycle 6s linear infinite;
  display: none;
}

/* Slightly dimmer for trails */
.cursorTrail {
  z-index: 9998;
  opacity: 0;
  animation: colorCycle 6s linear infinite;
}

@keyframes colorCycle {
  0% {
    background-color: rgba(255, 0, 0, 0.3);
  }

  /* Red */
  33% {
    background-color: rgba(0, 0, 255, 0.3);
  }

  /* Blue */
  66% {
    background-color: rgba(0, 255, 0, 0.3);
  }

  /* Green */
  100% {
    background-color: rgba(255, 0, 0, 0.3);
  }

  /* Red again */
}

/* !================== */
@media screen and (max-width: 1024px) {
  .therapy_human_evolution .c2 {
    padding: 9rem 0;
  }

  .therapy_human_evolution .c2 h1 {
    font-size: 2.5rem;
  }

  .therapy_human_evolution .c2 p {
    font-size: 1.5rem;
  }

  .therapy_sliderSection .center .c1 h1 {
    font-size: 2.5rem;
  }
}

.goal {
  overflow: hidden;
  display: flex;
  position: relative;
}

.goal .bg {
  width: 100%;
}

.goal .bg img {
  width: 100%;
  object-fit: cover;
}

.goal .content {
  position: absolute;
  top: 50%;
  right: 13%;
  transform: translate(0%, -50%);
  padding: 5rem 6rem;
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.goal .content h1 {
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.24px;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}

.goal .content p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: center;
  color: #fff;
  margin-bottom: 8rem;
}

.goal .content .search {
  display: flex;
}

.goal .content .search input {
  border: none;
  outline: none;
  padding: 1.6rem 2.5rem;
  border-radius: 13rem 0 0 13rem;
  -webkit-backdrop-filter: blur(47.4px);
  backdrop-filter: blur(47.4px);
  background-color: rgba(217, 217, 217, 0.1);
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.14px;
  text-align: left;
  color: rgba(255, 255, 255, 0.47);
}

.goal .content .search button {
  cursor: pointer;
  backdrop-filter: blur(47.4px);
  background-color: rgba(217, 217, 217, 0.1);
  border: none;
  outline: none;
  border-radius: 0 13rem 13rem 0;
  padding: 1.6rem 2.5rem;
}

.contactBanner {
  width: 100%;
}

.contactBanner .mainContainer {
  position: relative;
}

.contactBanner .mainContainer .imgBox {
  width: 100%;
  position: relative;
}

.contactBanner .mainContainer .imgBox .bnrImg {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 9;
  max-height: 100vh;
}

@media only screen and (max-width: 768px) {
  .contactBanner .mainContainer .imgBox .bnrImg {
    aspect-ratio: 3/4;
  }
}

.contactBanner .mainContainer .imgBox .imgShadow {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.contactBanner .mainContainer .infoBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 30%;
}

@media only screen and (max-width: 1200px) {
  .contactBanner .mainContainer .infoBox {
    max-width: 35%;
  }
}

@media only screen and (max-width: 768px) {
  .contactBanner .mainContainer .infoBox {
    max-width: 70%;
    width: 70%;
  }
}

@media only screen and (max-width: 575px) {
  .contactBanner .mainContainer .infoBox {
    max-width: 85%;
    width: 85%;
  }
}

@media only screen and (max-width: 575px) {
  .contactBanner .mainContainer .infoBox {
    /* right: 5vw; */
  }
}

.contactBanner .mainContainer .infoBox h1 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.24px;
  text-align: center;
  color: #fff;
}

.contactBanner .mainContainer .infoBox p {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  width: 80%;
}

.contactBanner .mainContainer .btnWrapper {
  /* margin-top: 2rem; */
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
}

.contactBanner .mainContainer .btnWrapper .msgBtn {
  font-family: var(--font-bw);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.16px;
  text-align: left;
  color: #000;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: unset;
  width: fit-content;
  white-space: nowrap;
  border-radius: 46px;
  background-color: rgba(233, 224, 219, 0.57);
  padding: 1.5rem 2.8rem;
}

@media only screen and (max-width: 768px) {
  .contactBanner .mainContainer .btnWrapper .msgBtn {
    padding: 1.2rem 2.4rem;
  }
}

@media only screen and (max-width: 575px) {
  .contactBanner .mainContainer .btnWrapper {
    bottom: 6rem;
  }
}

.contactBanner .mainContainer .btnWrapper .msgBtn div svg {
  height: 1.8rem;
  width: 1.8rem;
  display: block;
}

.contactForm {
  background-color: #020305;
  position: relative;
}

.contactForm .gradientSVG {
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  z-index: 0;
}

.contactForm .gradientSVG img {
  width: auto;
  max-height: 100%;
  transform: scale(1.5);
}


.contactForm .mainContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 12rem 0;
}

@media only screen and (max-width: 768px) {
  .contactForm .mainContainer {
    flex-direction: column;
    gap: 4rem;
    padding: 8rem 0;
  }
}

.contactForm .mainContainer .left h4 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: left;
  color: #dadada;
}

.contactForm .mainContainer .right {
  border-radius: 13px;
  background-color: rgba(217, 217, 217, 0.1);
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .contactForm .mainContainer .right {
    width: 100%;
  }
}

.contactForm .mainContainer .right form {
  display: flex;
  flex-direction: column;
  /* gap: 4rem; */
  padding: 4rem;
  font-size: 1.8rem;
  position: relative;
}

.contactForm .mainContainer .right form input[type="text"],
.contactForm .mainContainer .right form input[type="email"],
.contactForm .mainContainer .right form input[type="tel"] {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  font-family: var(--font-bw);
  line-height: 1.4;
  letter-spacing: 0.18px;
  color: #fff;
  background-color: rgba(217, 217, 217, 0.1);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 2rem 0.5rem 0.8rem 0.5rem;
  width: 100%;
}

.contactForm .mainContainer .right form textarea {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  font-family: var(--font-bw);
  line-height: 1.4;
  letter-spacing: 0.18px;
  color: #fff;
  background-color: rgba(217, 217, 217, 0.1);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 2rem 0.5rem 0.8rem 0.5rem;
  /* margin-bottom: 3.2rem; */
  width: 100%;

  min-height: 5rem;
  /* match input height */
  resize: none;
  /* allow only vertical resizing */
  overflow: auto;
}

.contactForm .mainContainer .right form input,
.contactForm .mainContainer .right form textarea {
  border: none;
  border-bottom: 1px solid #555;
  /* normal state */
  background: transparent;
  color: #fff;
}

.contactForm .mainContainer .right form input:focus,
.contactForm .mainContainer .right form textarea:focus {
  border-bottom: 1px solid #888;
  /* optional focus underline */
  outline: none;
  box-shadow: none;
}

.contactForm .mainContainer .right form .submitBtn {
  border: none;
  cursor: pointer;
  outline: none;
  margin: 0 auto;
  background: rgba(217, 217, 217, 0.1);
  position: relative;
  margin-top: 1.2rem;
}

.contactInfo {
  /* background-color: #020305; */
  position: relative;
}

.contactInfo .mainContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 4rem 0 8rem 0;
}

@media only screen and (max-width: 768px) {
  .contactInfo .mainContainer {
    flex-direction: column;
    gap: 4rem;
  }
}

.contactInfo .mainContainer .left h4 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: left;
  color: #dadada;
}

.contactInfo .mainContainer .right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 50%;
  position: relative;
  z-index: 100;
}

@media only screen and (max-width: 768px) {
  .contactInfo .mainContainer .right {
    width: 100%;
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .contactInfo .mainContainer .right {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contactInfo .mainContainer .right .infoBox {
  border-radius: 13px;
  background-color: rgba(217, 217, 217, 0.1);
  padding: 2rem;
}

.contactInfo .mainContainer .right .infoBox h6 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.83;
  letter-spacing: normal;
  text-align: left;
  color: rgba(216, 216, 216, 0.4);
}

.contactInfo .mainContainer .right .infoBox p {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.46;
  letter-spacing: normal;
  text-align: left;
  color: #d8d8d8;
}

.contactInfo .mainContainer .right .infoBox p a {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.46;
  letter-spacing: normal;
  text-align: left;
  color: #d8d8d8;
  text-decoration: none;
}

.contactFAQ {
  /* background-color: #020305; */
  position: relative;
}


.contactFAQ .mainContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 8rem 0;
}

@media only screen and (max-width: 768px) {
  .contactFAQ .mainContainer {
    flex-direction: column;
    gap: 4rem;
  }
}

.contactFAQ .mainContainer .left {
  width: 35%;
  position: relative;
  position: sticky;
  top: 4rem;
  align-self: flex-start;
  height: fit-content;
}

@media only screen and (max-width: 768px) {
  .contactFAQ .mainContainer .left {
    width: 100%;
    position: relative;
    top: unset;
  }
}

.contactFAQ .mainContainer .left .font28 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: left;
  color: #dadada;
  margin-bottom: 1rem;
}

.contactFAQ .mainContainer .left .font18 {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.46;
  letter-spacing: normal;
  text-align: left;
  color: #d8d8d8;
  margin-bottom: 2.4rem;
}

.contactFAQ .mainContainer .left .searchBox {
  position: relative;
  width: fit-content;
}

.contactFAQ .mainContainer .left .searchBox input[type="text"] {
  border-radius: 100px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(5px);
  background-color: rgba(217, 217, 217, 0.1);
  font-size: 1.6rem;
  padding: 1.4rem 2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  width: 100%;
  min-width: 40rem;
  border: none;
}

@media only screen and (max-width: 1000px) {
  .contactFAQ .mainContainer .left .searchBox input[type="text"] {
    min-width: 30rem;
  }
}

.contactFAQ .mainContainer .left .searchBox button {
  border: none;
  cursor: pointer;
  outline: none;
  background: none;
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.contactFAQ .mainContainer .left .scrollButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.contactFAQ .mainContainer .right {
  width: 50%;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .contactFAQ .mainContainer .right {
    width: 100%;
  }
}

.contactFAQ .mainContainer .right .accordion {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 4.4rem;
}

.contactFAQ .mainContainer .right .accordion .tag {
  margin-bottom: 2rem;
}

.contactFAQ .mainContainer .right .accordion .accordion-item .accordion-header {
  background: transparent;
  color: #fff;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.83;
  letter-spacing: normal;
  text-align: left;
  color: #d8d8d8;
}

.contactFAQ .mainContainer .right .accordion .accordion-item .accordion-header .icon {
  display: flex;
  transition: transform 0.3s ease;
}

.contactFAQ .mainContainer .right .accordion .accordion-item .accordion-header .icon svg {
  height: 2.8rem;
  width: 2.8rem;
  display: block;
}

.contactFAQ .mainContainer .right .accordion .accordion-item .accordion-header.active .icon {
  transform: rotate(180deg);
}

.contactFAQ .mainContainer .right .accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #1a1a1a;
  /* padding: 0 1.6rem; */
  border-radius: 13px;
  background-image: linear-gradient(to right, #ffebeb 41%, #e9e0db 76%), linear-gradient(181deg, #fff 96%, rgba(0, 0, 0, 0) 4%);
}

.contactFAQ .mainContainer .right .accordion .accordion-item .accordion-content p {
  padding: 2.5rem 2rem;
  margin: 0;
  font-size: 14px;
  line-height: 1.44;
  color: #090909;
}

.circuitBanner {
  width: 100%;
}

.circuitBanner .mainContainer {
  position: relative;
}


.circuitBanner .mainContainer .topLogo {
  position: absolute;
  top: 9rem;
  right: 7.5vw;
  z-index: 5;
  max-width: 24.8rem;
}

@media screen and (max-width: 768px) {
  .circuitBanner .mainContainer .topLogo {
    max-width: 12.8rem;
  }
}



.circuitBanner .mainContainer .imgBox {
  width: 100%;
  position: relative;
}

.circuitBanner .mainContainer .imgBox .bnrImg {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 9;
  max-height: 100vh;
}

@media only screen and (max-width: 768px) {
  .circuitBanner .mainContainer .imgBox .bnrImg {
    aspect-ratio: 3/4;
  }
}

.circuitBanner .mainContainer .imgBox .imgShadow {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

.circuitBanner .mainContainer .contentBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
  width: 100%;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1400px) {
  .circuitBanner .mainContainer .contentBox {
    bottom: 0rem;
  }
}

@media only screen and (max-width: 768px) {
  .circuitBanner .mainContainer .contentBox {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    transform: translate(-50%, 0%);
    margbin-bottom: 1.5rem;
  }
}

.circuitBanner .mainContainer .contentBox .left .dotIcon {
  margin-bottom: 2.4rem;
}

.circuitBanner .mainContainer .contentBox .left .dotIcon img {
  height: 10rem;
  width: auto;
  display: block;
  /* animation: rotate360 10s linear infinite; */
}

@media only screen and (max-width: 1200px) {
  .circuitBanner .mainContainer .contentBox .left .dotIcon img {
    height: 8rem;
  }
}

@media only screen and (max-width: 768px) {
  .circuitBanner .mainContainer .contentBox .left .dotIcon img {
    height: 6rem;
  }
}

@media only screen and (max-width: 575px) {
  .circuitBanner .mainContainer .contentBox .left .dotIcon img {
    height: 4.5rem;
  }
}

.circuitBanner .mainContainer .contentBox .left h1 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.64px;
  text-align: left;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 1.6rem;
}

.circuitBanner .mainContainer .contentBox .left .paraText {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
}

.circuitInfo {
  background-color: #020305;
}

.circuitInfo .mainContainer {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
  padding: 8rem 0;
}

@media only screen and (max-width: 768px) {
  .circuitInfo .mainContainer {
    flex-direction: column;
    padding: 6rem 0;
  }
}

.circuitInfo .mainContainer .left {
  width: 55%;
}

@media only screen and (max-width: 768px) {
  .circuitInfo .mainContainer .left {
    width: 100%;
  }
}

.circuitInfo .mainContainer .left .paraText {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
}

.circuitInfo .mainContainer .left .paraText strong {
  border-radius: 3.6rem;
  background-color: rgba(255, 255, 255, 0.03);
  font-family: var(--font-bw);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  color: #fff;
  padding: 2px 12px;
  /* Add padding so the background is visible around the text */
  display: inline-block;
  border: 0.1px solid #fff;
  backdrop-filter: blur(10px);
  margin: 0 4px;
}

.circuitInfo .mainContainer .left .paraText strong a {
  color: #fff;
  transition: all 0.3s ease;
}


.circuitInfo .mainContainer .left .paraText strong {
  color: #fff;
  transition: all 0.3s ease;
}

.circuitInfo .mainContainer .left .paraText strong:hover {
  opacity: .7;
}

.circuitInfo .mainContainer .right {
  width: 35%;
}

@media only screen and (max-width: 768px) {
  .circuitInfo .mainContainer .right {
    width: 100%;
  }
}

.circuitInfo .mainContainer .right h6 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  margin-bottom: 2.4rem;
}

.circuitInfo .mainContainer .right .targetTags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.circuitProtocols {
  background-color: #020305;
}

.circuitProtocols .mainContainer {
  padding: 8rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .circuitProtocols .mainContainer {
    padding: 6rem 0;
  }
}

.circuitProtocols .mainContainer h4 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.24px;
  text-align: center;
  color: #fff;
}

.circuitProtocols .mainContainer .mainPara {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  width: 50%;
  margin-bottom: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .circuitProtocols .mainContainer .mainPara {
    width: 80%;
    margin-bottom: 2.4rem;
  }
}

@media only screen and (max-width: 575px) {
  .circuitProtocols .mainContainer .mainPara {
    width: 100%;
    margin-bottom: 2.4rem;
  }
}

.circuitProtocols .mainContainer .cardsContainer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  /* Gradient overlay */
  /* Different gradient per card */
}

@media only screen and (max-width: 768px) {
  .circuitProtocols .mainContainer .cardsContainer {
    flex-direction: column;
  }
}

.circuitProtocols .mainContainer .cardsContainer .card {
  border-radius: 8px;
  box-shadow: inset 7px 3px 13.7px 0 rgba(141, 165, 238, 0.08), 5px 6px 11.7px 0 rgba(4, 22, 59, 0.06);
  border: solid 1px rgba(255, 255, 255, 0.11);
  background-color: rgba(255, 255, 255, 0.08);
  padding: 3.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .circuitProtocols .mainContainer .cardsContainer .card {
    padding: 2rem;
  }
}

.circuitProtocols .mainContainer .cardsContainer .card .dotIcon {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}

.circuitProtocols .mainContainer .cardsContainer .card .dotIcon img {
  height: 6.4rem;
  width: auto;
  display: block;
  /* margin: 0 auto; */
}

@media only screen and (max-width: 1200px) {
  .circuitProtocols .mainContainer .cardsContainer .card .dotIcon img {
    height: 5rem;
  }
}

.circuitProtocols .mainContainer .cardsContainer .card h6 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.18px;
  color: #fff;
  position: relative;
  z-index: 5;
}

.circuitProtocols .mainContainer .cardsContainer .card p {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: center;
  color: #fff;
  margin-bottom: 2.4rem;
  position: relative;
  z-index: 5;
}

.circuitProtocols .mainContainer .cardsContainer .card .btnBox {
  margin-top: auto;
}

.circuitProtocols .mainContainer .cardsContainer .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  /* taller so gradient diffuses nicely */
  border-radius: 0 0 8px 8px;
  pointer-events: none;
  z-index: 0;
  /* Frosted gradient glow */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 255, 0, 0.4) 80%);
  /* filter: blur(25px); */
  opacity: .75;
}

.circuitProtocols .mainContainer .cardsContainer .card.green::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 255, 128, 0.442) 80%);
}

.circuitProtocols .mainContainer .cardsContainer .card.red::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #9734277e 80%);
}

.circuitProtocols .mainContainer .cardsContainer .card.blue::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #27509788 80%);
}

.circuitBenefits .mainContainer {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding: 8rem 0;
}

@media only screen and (max-width: 768px) {
  .circuitBenefits .mainContainer {
    flex-direction: column;
    padding: 6rem 0;
    gap: 3.2rem;
  }
}

.circuitBenefits .mainContainer .left {
  width: 25%;
}

@media only screen and (max-width: 768px) {
  .circuitBenefits .mainContainer .left {
    width: 100%;
  }
}

.circuitBenefits .mainContainer .left h5 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
  text-transform: capitalize;
}

.circuitBenefits .mainContainer .right {
  width: 65%;
}

@media only screen and (max-width: 768px) {
  .circuitBenefits .mainContainer .right {
    width: 100%;
  }
}

.circuitBenefits .mainContainer .right .cardsContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media only screen and (max-width: 575px) {
  .circuitBenefits .mainContainer .right .cardsContainer {
    display: flex;
    overflow-x: scroll;
    gap: 1.6rem;
  }
}

.circuitBenefits .mainContainer .right .cardsContainer .cardBlock {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2rem;
  border-radius: 8px;
  border: solid 1px rgba(255, 255, 255, 0.11);
  background-color: rgba(255, 255, 255, 0.08);
}

@media only screen and (max-width: 575px) {
  .circuitBenefits .mainContainer .right .cardsContainer .cardBlock {
    min-width: 25rem;
  }
}

.circuitBenefits .mainContainer .right .cardsContainer .cardBlock img {
  display: block;
  width: 70%;
  object-fit: contain;
}

@media only screen and (max-width: 575px) {
  .circuitBenefits .mainContainer .right .cardsContainer .cardBlock img {
    width: 90%;
  }
}

.circuitBenefits .mainContainer .right .cardsContainer .cardBlock h6 {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  /* margin-top: auto; */
}

.circitPoints {
  position: relative;
}

.circitPoints .gradientSVG {
  position: absolute;
  top: -50%;
  left: 0;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  z-index: 0;
}

.circitPoints .gradientSVG img {
  width: auto;
  max-height: 100rem;
  opacity: 0;
}

.page-id-872 .circitPoints .gradientSVG {
  top: 0;
}

.page-id-872 .circitPoints .gradientSVG img {
  width: auto;
  max-height: 100rem;
  opacity: 1;
  scale: 1.5;
}


.circitPoints .mainContainer .pointsBlock {
  display: flex;
  justify-content: space-between;
  padding: 8rem 0;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .circitPoints .mainContainer .pointsBlock {
    padding: 6rem 0 3rem 0;
    flex-direction: column;
    gap: 3.2rem;
  }
}

.circitPoints .mainContainer .pointsBlock .left {
  width: 25%;
}

@media only screen and (max-width: 768px) {
  .circitPoints .mainContainer .pointsBlock .left {
    width: 100%;
  }
}

.circitPoints .mainContainer .pointsBlock .left h5 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
  text-transform: capitalize;
}

.circitPoints .mainContainer .pointsBlock .right {
  width: 65%;
}

.circitPoints .mainContainer .pointsBlock .right p {
  margin-bottom: 1.6rem;
}

.circitPoints .mainContainer .pointsBlock .right ul {
  margin-bottom: 2.4rem;
  list-style-type: disc;
  padding-left: 2rem;
}

.circitPoints .mainContainer .pointsBlock .right li {
  list-style: disc;
}

.circitPoints .mainContainer .pointsBlock .right li:not(:first-child)::marker {
  color: #262728;
}

@media only screen and (max-width: 768px) {
  .circitPoints .mainContainer .pointsBlock .right {
    width: 100%;
  }
}

.circitPoints .mainContainer .pointsBlock .right ul li {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  padding-left: 2rem;
}

.circitPoints .mainContainer .pointsBlock .right ul li::marker {
  font-size: 2.5rem;
}

.circitPoints .mainContainer .pointsBlock .right ul li:not(:last-child) {
  margin-bottom: 2.4rem;
}

.aboutUs_banner {
  position: relative;
  height: 100vh;
}

.aboutUs_banner .bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.aboutUs_banner .content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
}

.aboutUs_banner .content .mainText {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 15rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  padding-top: 9rem;
}

.aboutUs_banner .content .mainText .evity {
  position: relative;
  max-width: 12.5rem;
}

.aboutUs_banner .content .mainText .wellness {
  position: relative;
  max-width: 20.4rem;
  margin-top: -1rem;
}

.aboutUs_banner .content .block {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  width: 56%;
  background-color: rgba(41, 41, 41, 0.34);
  padding: 7rem 10rem;
  border-radius: 3rem;
  background-color: rgba(217, 217, 217, 0.1);
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
  /* height: 100vh; */
}

@media screen and (max-width: 1200px) {
  .aboutUs_banner .content .block {
    width: 65%;
  }
}

@media screen and (max-width: 1024px) {
  .aboutUs_banner .content .block {
    padding: 4rem 4rem;
  }
}

.aboutUs_banner .content .block::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px;
  background: linear-gradient(164deg, #fff7f7, #6c6666e2);
  -webkit-mask: linear-gradient(#f6f6f6 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.aboutUs_banner .content .block .c1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.aboutUs_banner .content .block .c1 h1 {
  display: flex;
  font-family: var(--font-bw);
  font-size: 4.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  gap: 1rem;

}


.aboutUs_banner .content .block:nth-child(2) .c1 h1 {
  opacity: 0;
}


@media screen and (max-width: 1024px) {
  .aboutUs_banner .content .block .c1 h1 {
    font-size: 3.8rem;
  }
}

.aboutUs_banner .content .block .c1 h1 img {
  max-width: 14.4rem;
  margin-top: 1rem;
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .aboutUs_banner .content .block .c1 h1 img {
    max-width: 11.4rem;
    margin-top: 0.5rem;
  }
}

.aboutUs_banner .content .block .c2 {
  position: relative;
  display: flex;
  width: 60%;
}

.aboutUs_banner .content .block .c2 p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: left;
  color: #fff;
}

.aboutUs_life {
  position: relative;
  overflow: hidden;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  min-height: 100vh;
}







.aboutUs_life .bg {
  position: absolute;
  top: -83%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -5;
}

.aboutUs_life .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 41rem;
  margin-bottom: 45vh;
}


.aboutUs_life .head h1 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  margin-bottom: 0.5rem;
}

.aboutUs_life .head h2 {
  font-family: var(--font-bw);
  font-size: 3.2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.32px;
  text-align: left;
  color: #fff;
  margin-bottom: 3rem;
}

.aboutUs_life p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.aboutUs_life .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  position: relative;
  width: 100%;
  position: absolute;
  top: 32%;
}

.aboutUs_life .content .dot {
  width: fit-content;
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  transition: none;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  z-index: 5;
}

.aboutUs_life .content h3 {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 50%;
  top: 72%;
  transform: translate(-50%, -50%);
}

.aboutUs_life .content .slides {
  display: flex;
  gap: 3rem;
  will-change: transform;
  transform: translateX(80%);
  width: 100%;
}

.aboutUs_life .content .slides .block {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  padding: 2rem 2rem 4rem 2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 20px;
}

.aboutUs_life .content .slides .block:last-child {
  border: none;
  overflow: visible;
}

.aboutUs_life .content .slides .block:last-child img {
  max-width: 12rem;
  height: auto;
  margin-top: 6%;
}

.aboutUs_life .content .slides .block:last-child p {
  max-width: 35rem;
}

.aboutUs_life .content .slides .block:last-child::before {
  content: url(../images/about/about-slide-last-bg.svg);
  position: absolute;
  top: 50%;
  left: -76%;
  z-index: -4;
  transform: translate(0, -50%);
}

.aboutUs_life .content .slides .block:last-child::after {
  opacity: 0;
}

.aboutUs_life .content .slides .block .gradient {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background: linear-gradient(180deg, #281d62 10%, rgba(110, 114, 230, 0) 62%, black 100%);
}

.aboutUs_life .content .slides .block::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(164deg, #fff7f7, #000000);
  -webkit-mask: linear-gradient(#f6f6f6 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.aboutUs_life .content .slides .block p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: white;
  width: 32rem;
}

.aboutUs_life .content .slides .block img {
  aspect-ratio: 1/1;
  margin-bottom: 0.5rem;
  width: 25rem;
  height: auto;
  padding: 2rem;
}

.aboutUs_life .content .slides .block.active .gradient {
  opacity: 1;
}

.aboutUs_socialWellnessClub {
  display: flex;
  position: relative;
  height: 100vh;
}

.aboutUs_socialWellnessClub img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.aboutUs_socialWellnessClub .gradiant {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(2, 3, 5, 0), #020305);
}

.aboutUs_socialWellnessClub .text1 {
  position: absolute;
  left: 7.5vw;
  top: 20%;
  width: 45rem;
}

@media screen and (max-width: 1200px) {
  .aboutUs_socialWellnessClub .text1 {
    width: 35rem;
  }
}

@media screen and (max-width: 1024px) {
  .aboutUs_socialWellnessClub .text1 {
    left: 5vw;
    max-width: 25rem;
  }
}

.aboutUs_socialWellnessClub .text1 h1 {
  font-family: var(--font-bw);
  font-size: 3.2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: 0.32px;
  text-align: left;
  color: #fff;
  max-width: 33rem;
  margin-bottom: 2.4rem;
}

@media screen and (max-width: 1024px) {
  .aboutUs_socialWellnessClub .text1 h1 {
    font-size: 2.4rem;
  }
}

.aboutUs_socialWellnessClub .text1 p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  max-width: 35rem;
}

@media screen and (max-width: 1024px) {
  .aboutUs_socialWellnessClub .text1 p {
    font-size: 1.4rem;
  }
}

.aboutUs_socialWellnessClub .text2 {
  position: absolute;
  right: 7.5vw;
  top: 40%;
  max-width: 60rem;
}

@media screen and (max-width: 1200px) {
  .aboutUs_socialWellnessClub .text2 {
    width: 35rem;
  }
}

@media screen and (max-width: 1024px) {
  .aboutUs_socialWellnessClub .text2 {
    right: 5vw;
    width: 24rem;
  }
}

.aboutUs_socialWellnessClub .text2 p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.52;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  max-width: 35rem;
  margin-bottom: 1.4rem;
}

@media screen and (max-width: 1024px) {
  .aboutUs_socialWellnessClub .text2 p {
    font-size: 1.4rem;
  }
}

.aboutUs_socialWellnessClub .text2 .tags {
  display: flex;
  flex-wrap: wrap;
}

.aboutUs_socialWellnessClub .text2 .tags h1 {
  font-size: 1.3rem;
  padding: 1rem;
}

.about_whyEvity {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 13rem;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.about_whyEvity .bg {
  position: absolute;
  right: 0;
  bottom: 10%;
}

.about_whyEvity .head {
  position: relative;
  display: flex;
}

.about_whyEvity .head h1 {
  font-family: var(--font-bw);
  font-size: 3.2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.32px;
  text-align: left;
  color: #fff;
  margin-bottom: 3.9rem;
}

.about_whyEvity .card {
  display: flex;
  gap: 3.5rem;
  border-radius: 22px;
  background-color: rgba(41, 41, 41, 0.34);
  position: relative;
}

.about_whyEvity .card .dots {
  align-self: flex-end;
  margin-bottom: 2rem;
  width: 0.6rem;
  object-fit: contain;
}

.about_whyEvity .card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 25px;
  background: linear-gradient(164deg, #fff7f757, #000000);
  -webkit-mask: linear-gradient(#f6f6f6 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.about_whyEvity .card::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 10rem;
  bottom: 0;
  right: 0;
  transform: translate(16%, 53%);
  width: 10rem;
  /* set width */
  height: auto;
  /* keep aspect ratio */
  aspect-ratio: 1 / 1;
  /* adjust if you know aspect ratio */
  background: url(../images/about/quote.svg) no-repeat center/contain;
  transform: translate(16%, 53%);
}

.about_whyEvity .card .c1 {
  width: fit-content;
  position: relative;
}

.about_whyEvity .card .c1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.5rem;
}

.about_whyEvity .card .c2 {
  overflow: hidden;
  width: fit-content;
  padding: 4.7rem 3rem 2rem 0;
  position: relative;
  border-radius: 2rem;
}

.about_whyEvity .card .c2 .bg {
  position: absolute;
  bottom: -53%;
  right: -30%;
  scale: 1.1;
  z-index: -1;
  animation: floatX 10s ease-in-out infinite alternate;
}

@keyframes floatX {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-100px);
    /* move left */
  }

  100% {
    transform: translateX(100px);
    /* move right */
  }
}

.about_whyEvity .card .c2>h1 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  max-width: 43rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1024px) {
  .about_whyEvity .card .c2>h1 {
    font-size: 1.6rem;
  }
}

.about_whyEvity .card .c2>p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  max-width: 43rem;
  margin-bottom: 6rem;
}

@media screen and (max-width: 1024px) {
  .about_whyEvity .card .c2>p {
    font-size: 1.6rem;
  }
}

.about_whyEvity .card .c2 .name {
  display: flex;
  flex-direction: column;
}

.about_whyEvity .card .c2 .name h1 {
  font-family: var(--font-bw);
  font-size: 2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.2px;
  text-align: left;
  color: #fff;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 1024px) {
  .about_whyEvity .card .c2 .name h1 {
    font-size: 1.8rem;
  }
}

.about_whyEvity .card .c2 .name p {
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.14px;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .about_whyEvity .card .c2 .name p {
    font-size: 1.2rem;
  }
}

.about_builtOnScience {
  position: relative;
  overflow: hidden;
  padding-top: 30rem;
  padding-bottom: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.about_builtOnScience .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 7.6rem;
}

.about_builtOnScience .head h1 {
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: normal;

}


.about_builtOnScience h2 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  max-width: 55rem;


}


.about_builtOnScience .bg {
  position: absolute;
  right: 0;
  top: -20%;
  z-index: -1;
}

.about_builtOnScience .content {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  max-width: 76rem;
  margin-bottom: 7.6rem;
  align-items: center;
  justify-content: center;
}

.about_builtOnScience .content .block {
  display: flex;
  gap: 6rem;
  padding: .7rem 2rem;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  /* border-radius: 8px; */
  /* border: solid 0.5px rgba(255, 255, 255, 0.29); */
  /* background-color: #1e1e1e; */
}

@media screen and (max-width: 1024px) {
  /* .about_builtOnScience .content .block {
    padding: 6rem 3rem;
  } */
}

/* .about_builtOnScience .content .block:nth-child(1) {
  background-color: transparent;
  border: none;
  padding-left: 0;
} */

.about_builtOnScience .content .block h1 {
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
  margin-bottom: 2.4rem;
}

@media screen and (max-width: 1024px) {
  .about_builtOnScience .content .block h1 {
    font-size: 2rem;
  }
}

.about_builtOnScience .content .block h2 {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: left;
  color: #fff;
}

.about_builtOnScience .content .block p {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 1.16px;
  text-align: center;
  color: #fff;
}

.about_builtOnScience .content .block img {
  /* margin-bottom: 7rem; */
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 2.3rem;
  align-self: center;
}

.aboutUs_evityJourney {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.aboutUs_evityJourney svg {
  font-family: var(--font-bw) !important;
  width: 100%;
  height: 95vh;
}

.aboutUs_evityJourney svg #text-1 {
  fill: #2a2a2a;
}

.aboutUs_evityJourney svg #text-2 {
  fill: #2a2a2a;
}

.aboutUs_evityJourney svg #text-3 {
  fill: #2a2a2a;
}

.aboutUs_evityJourney svg #text-4 {
  fill: #2a2a2a;
}

.aboutUs_evityJourney svg #dot-1 {
  opacity: 1;
}

.aboutUs_evityJourney svg #dot-2 {
  opacity: 0;
}

.aboutUs_evityJourney svg #dot-3 {
  opacity: 0;
}

.aboutUs_evityJourney svg #dot-4 {
  opacity: 0;
}

.aboutUs_evityJourney svg #ExplorePlansButton {
  opacity: 1;
  transform: translateY(10px);
  cursor: pointer;
  /* transition: all 0.3s ease-in-out; */
}


.aboutUs_evityJourney svg #ExplorePlansButton:hover {
  opacity: 0.8;
}


.aboutUs_evityCore {
  padding-top: 15rem;
  padding-bottom: 15rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.aboutUs_evityCore>.head {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 45rem;
  margin-bottom: 12rem;
  align-self: center;
}

.aboutUs_evityCore>.head h1 {
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.24px;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}

.aboutUs_evityCore>.head h2 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  /* margin-bottom: 3rem; */
}

.aboutUs_evityCore>.head p {
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  position: relative;
  align-self: center;
  width: fit-content;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3.3rem;
}

.aboutUs_evityCore>.head p .bg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-1%, -37%);
  scale: 1.5;
  z-index: -1;
  transform-origin: center center;
}

.aboutUs_evityCore>.content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .aboutUs_evityCore>.content {

    grid-template-columns: repeat(2, 1fr);

  }



}



.aboutUs_evityCore>.content>.block {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  /* transition: all 0.3s ease-in-out; */
}

.aboutUs_evityCore>.content>.block:hover {
  opacity: 0.7;
}

.aboutUs_evityCore>.content>.block>img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2.2rem;
  margin-bottom: 1.2rem;
  aspect-ratio: 1 / 1;
}

.aboutUs_evityCore>.content>.block>.text {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  height: 100%;
}

.aboutUs_evityCore>.content>.block>.text h1 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 1600px) {
  .aboutUs_evityCore>.content>.block>.text h1 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1100px) {
  .aboutUs_evityCore>.content>.block>.text h1 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .aboutUs_evityCore>.content>.block>.text h1 {
    font-size: 1.4rem;
  }
}

.aboutUs_evityCore>.content>.block>.text p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: left;
  color: #f7f7f7;
  padding: 0.5rem 1.4rem;
}

@media screen and (max-width: 1600px) {
  .aboutUs_evityCore>.content>.block>.text p {
    font-size: 1.4rem;
  }

}



@media screen and (max-width: 1024px) {
  .aboutUs_evityCore>.content>.block>.text p {
    font-size: 1.2rem;
  }
}

.aboutUs_evityCore .popUp_wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  display: none;
  z-index: 555;
  pointer-events: auto;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.aboutUs_evityCore .popUp_wrapper .popUp {
  display: flex;
  flex-direction: column;
  width: 45rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #161616;
  padding: 5rem 4rem;
  border-radius: 2.7rem;
  transition: all 0.3s ease-in-out;
}

.aboutUs_evityCore .popUp_wrapper .popUp .closeBtn {
  position: absolute;
  top: 5rem;
  left: 4rem;
  max-width: 5rem;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.aboutUs_evityCore .popUp_wrapper .popUp .closeBtn:hover {
  opacity: 0.7;
}

.aboutUs_evityCore .popUp_wrapper .popUp .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.aboutUs_evityCore .popUp_wrapper .popUp .head .text {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}

.aboutUs_evityCore .popUp_wrapper .popUp .head .text h1 {
  font-family: var(--font-bw);
  font-size: 2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.46;
  letter-spacing: 0.2px;
  text-align: left;
  color: #ddd;
}

.aboutUs_evityCore .popUp_wrapper .popUp .head .text p {
  font-family: var(--font-bw);
  font-stretch: normal;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.46;
  letter-spacing: 0.16px;
  text-align: left;
  color: #ddd;
}

.aboutUs_evityCore .popUp_wrapper .popUp .head img {
  max-width: 16rem;
  border-radius: 0.8rem;
}

.aboutUs_evityCore .popUp_wrapper .popUp .content {
  max-height: 30rem;
  overflow-y: scroll;
}

.aboutUs_evityCore .popUp_wrapper .popUp .content p {
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #bcb6b6;
  margin-bottom: 3rem;
  width: 95%;
}

.aboutUs_evityCore .popUp_wrapper .popUp .content h2 {
  width: 95%;
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #ddd;
}

.glBanner {
  position: relative;
}

.glBanner .glGradient {
  position: absolute;
  top: 0;
  left: -25%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scale(3.5);
}

.glBanner .mainContainer {
  padding: 16rem 0 8rem 0;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

@media only screen and (max-width: 768px) {
  .glBanner .mainContainer {
    flex-direction: column-reverse;
    align-items: center;
    padding: 12rem 0 4rem 0;
  }
}

@media only screen and (max-width: 575px) {
  .glBanner .mainContainer {
    padding: 8rem 0 4rem 0;
    gap: 2rem;
  }
}

.glBanner .mainContainer .left {
  width: 60%;
}

@media only screen and (max-width: 768px) {
  .glBanner .mainContainer .left {
    width: 100%;
  }
}

.glBanner .mainContainer .left h2 {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-bottom: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .glBanner .mainContainer .left h2 {
    text-align: center;
  }
}

.glBanner .mainContainer .left p {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .glBanner .mainContainer .left p {
    text-align: center;
  }
}

@media only screen and (max-width: 575px) {
  .glBanner .mainContainer .right {
    display: flex;
    align-items: flex-end;
    justify-content: end;
    width: 100%;
    padding-right: 2rem;
  }
}

.glBanner .mainContainer .right img {
  width: 16rem;
  height: auto;
  display: block;
  animation: rotate360 20s linear infinite;
}

@media only screen and (max-width: 768px) {
  .glBanner .mainContainer .right img {
    width: 10rem;
  }
}

@media only screen and (max-width: 575px) {
  .glBanner .mainContainer .right img {
    width: 6.5rem;
  }
}

.glListings .mainContainer {
  display: flex;
  gap: 4rem;
  padding: 8rem 0;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .glListings .mainContainer {
    flex-direction: column;
  }
}

.glListings .mainContainer .left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 30%;
  position: sticky;
  top: 4rem;
  align-self: flex-start;
  height: fit-content;
}

@media only screen and (max-width: 768px) {
  .glListings .mainContainer .left {
    width: 100%;
    position: relative;
    top: unset;
  }
}

.glListings .mainContainer .left .searchBox {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .glListings .mainContainer .left .searchBox {
    max-width: 40rem;
  }
}

.glListings .mainContainer .left .searchBox .icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.glListings .mainContainer .left .searchBox .icon svg {
  height: 1.6rem;
  width: 1.6rem;
}

.glListings .mainContainer .left .searchBox input[type="text"] {
  width: 100%;
  padding: 1.6rem 4rem;
  border: solid 1px rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  font-size: 1.6rem;
}

.glListings .mainContainer .left .searchBox input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.glListings .mainContainer .left .filterTabs {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.glListings .mainContainer .left .filterTabs .tab {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.12);
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.4px;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glListings .mainContainer .left .filterTabs .tab:hover {
  background-color: #fff;
  color: #000;
}

.glListings .mainContainer .left .filterTabs .tab.active {
  background-color: #fff;
  color: #000;
}

.glListings .mainContainer .left .jumpBox {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.glListings .mainContainer .left .jumpBox p {
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.4px;
  text-align: left;
  color: rgba(255, 255, 255, 0.27);
  text-transform: uppercase;
}

.glListings .mainContainer .left .jumpBox a {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.4px;
  text-align: left;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.glListings .mainContainer .left .jumpBox a:hover {
  text-decoration: underline;
}

.glListings .mainContainer .right {
  width: 65%;
}

@media only screen and (max-width: 768px) {
  .glListings .mainContainer .right {
    width: 100%;
  }
}

.glListings .mainContainer .right .results {
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.4px;
  text-align: left;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}

.glListings .mainContainer .right .cardsContainer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.glListings .mainContainer .right .cardsContainer .card {
  padding: 3rem;
  border-radius: 8px;
  box-shadow: inset 7px 3px 13.7px 0 rgba(141, 165, 238, 0.08), 5px 6px 11.7px 0 rgba(4, 22, 59, 0.06);
  border: solid 1px rgba(255, 255, 255, 0.11);
  background-color: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.glListings .mainContainer .right .cardsContainer .card[style*="display: none"] {
  opacity: 0;
  transform: scale(0.95);
}

@media only screen and (max-width: 575px) {
  .glListings .mainContainer .right .cardsContainer .card {
    padding: 1.5rem;
  }
}

.glListings .mainContainer .right .cardsContainer .card .tabs {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
  align-items: center;
}

.cardsContainer .card .cardContent {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.cardsContainer .card.active .cardContent {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
}

.glListings .mainContainer .right .cardsContainer .card .tabs .tabTerm {
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.12);
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.glListings .mainContainer .right .cardsContainer .card .tabs .tabLetter {
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.82rem;
  background-color: rgba(255, 255, 255, 0.12);
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.glListings .mainContainer .right .cardsContainer .card.active .tabs .tabTerm,
.glListings .mainContainer .right .cardsContainer .card.active .tabs .tabLetter {
  background-color: #E9E0DB;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.glListings .mainContainer .right .cardsContainer .card .tabs .arrowBox {
  margin-left: auto;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* when card is active */
.glListings .mainContainer .right .cardsContainer .card.active .tabs .arrowBox {
  transform: rotate(0deg);
}

.glListings .mainContainer .right .cardsContainer .card h6 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  margin-bottom: 1.6rem;
}



.glListings .mainContainer .right .cardsContainer .card p {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.16px;
  text-align: left;
  color: rgba(255, 255, 255, 0.67);
}

@media screen and (max-width: 768px) {
  .hamburger {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1001;
    cursor: pointer;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    background-color: rgba(217, 217, 217, 0.1);
    backdrop-filter: blur(10px);
    gap: 3rem;
    justify-content: flex-start;
    padding-top: 12rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;

  }

  .header::after {
    border-radius: 0;
  }

  .header.open {
    transform: translateX(0);
  }

  .therapy_banner {
    flex-direction: column;
    background-image: url("/assets/images/home/banner-bg-mobile.png");
    background-size: 100% 100%;
    object-fit: contain;
    padding: 5rem 0 0 0;
    min-height: 90vh;
    justify-content: flex-end;
  }

  .therapy_banner .c1 {
    width: 100%;
    align-items: center;
    padding: 0 5vw;
  }

  .therapy_banner .c1 h1 {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 0.8rem;
    max-width: 28rem;
    align-self: flex-start;
  }

  .therapy_banner .c1 .mobileLogo {
    margin-top: 0;
    margin-bottom: 10rem;
  }

  .therapy_banner .c1 p {
    text-align: left;
    font-size: 1.4rem;
    max-width: 28rem;
    align-self: flex-start;
    order: 6;
    margin-bottom: 3.8rem;
  }

  .therapy_banner .c1 .button {
    display: flex;
    align-self: center;
    order: 5;
    margin-bottom: 1.5rem;
  }

  .therapy_banner .c1 .bgImage {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    margin-bottom: -27%;
    width: 100%;
    max-width: 33rem;
    z-index: -1;
    margin-top: 0;
  }

  .therapy_banner .c2 {
    display: none;
  }

  .therapy_human_evolution {
    flex-direction: column-reverse;
    padding-top: 8.8rem;
    padding-bottom: 0rem;
    padding-left: 0;
    padding-right: 0;
  }

  .therapy_human_evolution .c1 {
    width: 100%;
    flex-direction: column;
    position: relative;
  }

  .therapy_human_evolution .c1 a {
    position: absolute;
    align-self: center;
    top: 50%;
    transform: translate(0, -50%);
  }

  .therapy_human_evolution .c2 {
    width: 100%;
    padding: unset;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .therapy_human_evolution .c2 h1 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }

  .therapy_human_evolution .c2 p {
    font-size: 1.5rem;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.16px;
    text-align: center;
    color: #fff;
    margin-bottom: 8rem;
  }

  .therapy_sliderSection {
    padding-top: 6rem;
    padding-bottom: 6rem;
    flex-direction: row;
    gap: unset;
    height: unset;
    justify-content: space-between;
  }

  .therapy_sliderSection .top {
    flex-direction: column;
    justify-content: center;
    height: 62rem;
    display: none;
    width: 5%;
  }

  .therapy_sliderSection .top img {
    height: 100%;
    width: 1rem;
  }

  .therapy_sliderSection .center {
    width: 100%;
    height: unset;
    flex-direction: column-reverse;
    gap: 0rem;
  }

  .therapy_sliderSection .center .c1 {
    width: 100%;
    margin-right: 0;
  }

  .therapy_sliderSection .center .c1 .block {
    position: relative;
  }

  .therapy_sliderSection .center .c1 p {
    font-size: 1.2rem;
  }

  .therapy_sliderSection .center .c1 h1 {
    font-size: 2rem;
  }

  .therapy_sliderSection .center .c2 {
    margin-bottom: 5rem;
    width: 100%;
    height: unset;
    transform: unset;
    top: unset;
  }

  .therapy_sliderSection .center .c2 .block {
    scale: 1;
  }

  .therapy_sliderSection .bottom {
    flex-direction: column;
    justify-content: center;
    height: 62rem;
    width: 5%;
    display: none;
  }

  .therapy_sliderSection .bottom img {
    height: 100%;
    width: 1rem;
  }

  .therapy_sliderSection .center .c1 .block {
    align-items: center;
  }

  .therapy_sliderSection .center .c1 .block h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .therapy_sliderSection .center .c1 .block p {
    font-size: 1.6rem;
    text-align: center;
    max-width: 90%;
  }

  .therapy_sliderSection .center .c2 {
    margin-bottom: 3rem;
  }

  .therapy_start {
    flex-direction: column;
    gap: 2.9rem;
    padding-bottom: 3rem;
  }

  .therapy_start .c1 {
    width: 40%;
  }

  .therapy_start .c1 h1 {
    font-size: 1.8rem;
    max-width: 30rem;
  }

  .therapy_start .c1 p {
    font-size: 1.4rem;
    max-width: 30rem;
  }

  .therapy_start .c2 {
    width: 100%;
    overflow: hidden;
  }

  .therapy_start .c2 .content {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 1rem;
  }

  .therapy_start .c2 .content h2 {
    white-space: nowrap;
    font-size: 1.2rem;
    padding: 1rem 2.6rem;
  }

  .therapy_accordion {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .therapy_accordion .accordion-item .close {
    display: none;
  }

  .therapy_accordion .accordion-item .accordion-header {
    font-size: 1.8rem;
    padding: 1.7rem 0;
  }

  .therapy_accordion .accordion-item .accordion-content {
    position: fixed;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .therapy_accordion .accordion-item.active .accordion-header .close {
    display: none;
  }

  .therapy_accordion .accordion-item.active .accordion-content {
    transition: all 0.3s ease-in-out;
    display: flex;
    position: fixed;
    top: 7rem;
    border-radius: 25px;
    background-color: rgba(92, 92, 92, 0.09);
    left: 0;
    backdrop-filter: blur(15px);
    z-index: 55;
    width: 90%;
    height: 80%;
    margin: 2rem;
    overflow-y: scroll;
    padding: 2.8rem 1.8rem !important;
  }

  .therapy_accordion .accordion-item.active .accordion-content .upper {
    padding-top: 5rem;
    flex-direction: column;
    position: relative;
  }

  .therapy_accordion .accordion-item.active .accordion-content .upper .close {
    width: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5555;
    cursor: pointer;
  }

  .therapy_accordion .accordion-item.active .accordion-content .upper .c1 {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .therapy_accordion .accordion-item.active .accordion-content .upper .c1 .icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 55;
  }

  .therapy_accordion .accordion-item.active .accordion-content .upper .c1 .photo {
    width: 100%;
    max-width: 100rem;
    height: auto;
    margin-bottom: 2.6rem;
  }

  .therapy_accordion .accordion-item.active .accordion-content .upper .c2 h1 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }

  .therapy_accordion .accordion-item.active .accordion-content .upper .c2 p {
    font-size: 1.6rem;
    margin-bottom: 3.7rem;
  }

  .therapy_accordion .accordion-item.active .accordion-content .lower {
    margin-bottom: 0;
  }

  .therapy_accordion .accordion-item.active .accordion-content .lower h1 {
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
  }

  .therapy_accordion .accordion-item.active .accordion-content .lower .content {
    flex-direction: column;
    gap: 6.2rem;
  }

  .therapy_accordion .accordion-item.active .accordion-content .lower .content .c1 {
    width: 100%;
    gap: 0.8rem;
  }

  .therapy_accordion .accordion-item.active .accordion-content .lower .content .c1 h2 {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .therapy_accordion .accordion-item.active .accordion-content .lower .content .c2 {
    width: 100%;
    justify-content: center;
  }

  .therapy_accordion .accordion-item.active .accordion-content .lower .content .c2 a {
    font-size: 1.6rem;
    padding: 1.5rem 2.6rem;
    align-self: center;
  }

  .therapy_accordion .accordion-item:hover .popUp {
    display: none !important;
    opacity: 0;
    opacity: 1;
  }

  .therapy_sliderSection .center {
    height: auto;
  }

  .therapy_sliderSection .center .logo {
    order: 1;
    max-width: fit-content;
    align-self: center;
    margin-bottom: 3rem;
  }

  .therapy_sliderSection .center .c1 .swiper-wrapper {
    flex-direction: unset;
    width: 100%;
    height: 100%;
  }

  .therapy_sliderSection .center .c2 {
    height: auto;
    display: unset;
    justify-content: unsafe;
  }

  .therapy_sliderSection .center .c2 .swiper-wrapper {
    flex-direction: unset;
    width: 100%;
    height: 100%;
  }

  .therapy_sliderSection .center .c2 .block {
    transform: scale(0.5);
  }

  .therapy_sliderSection .center .c2 .block h1 {
    font-size: 4rem;
    margin-bottom: 3rem;
  }

  .therapy_sliderSection .center .c2 .block p {
    font-size: 1.6rem;
    text-align: center;
  }

  .therapy_sliderSection .center .c2 .swiper-wrapper {
    position: relative;
  }

  .therapy_sliderSection .center .c2 .swiper-slide-active {
    transform: scale(0.8);
    /* active one full size */
    opacity: 1;
  }

  .mySwiper .swiper-slide-active .block {
    width: 100%;
  }

  .goal .content {
    right: 50%;
    transform: translate(50%, -50%);
    width: 80%;
    margin: 0 auto;
    padding: 5rem 2rem;
  }

  .goal .content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .goal .content p {
    font-size: 1.6rem;
    margin-bottom: 5.3rem;
  }

  .goal .content .search {
    width: 100%;
  }

  .goal .content .search input {
    font-size: 1.4rem;
    padding: 1.6rem 3rem;
    width: 70%;
  }

  .goal .content .search button {
    width: 30%;
  }

  .homeBanner .slick-dots {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .homeBanner .slide .text {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .homeBanner .slide .text h1 {
    font-size: 2rem;
  }

  .homeBanner .slide .text p {
    font-size: 1.2rem;
  }

  .homeBanner .slide .text a {
    font-size: 1rem;
    padding: 1rem 2.5rem;
  }

  .home_ethos {
    flex-direction: column;
    gap: 3rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .home_ethos .c1 {
    width: 100%;
  }

  .home_ethos .c1 h1 {
    font-size: 1rem;
  }

  .home_ethos .c1 h2 {
    font-size: 2rem;
  }

  .home_ethos .c1 p {
    font-size: 1.4rem;
  }

  .home_ethos .c2 {
    width: 100%;
  }

  .home_whatYouGet {
    margin-top: 4rem;
    padding-top: 5rem;
    padding-bottom: 3.5rem;
  }

  .home_whatYouGet .head {
    padding-left: 5vw;
  }

  .home_whatYouGet .head h1 {
    font-size: 1rem;
  }

  .home_whatYouGet .head h2 {
    font-size: 1.6rem;
    max-width: 95%;
  }

  .home_whatYouGet .content .block {
    padding: 1.5rem 1.5rem 5rem 1.5rem;
    width: 30rem;
  }

  .home_whatYouGet .content .block .icon {
    max-width: 3.5rem;
    margin-bottom: 1.8rem;
  }

  .home_whatYouGet .content .block h1 {
    font-size: 1.8rem;
  }

  .home_whatYouGet .content .block h2 {
    font-size: 1.4rem;
  }

  .home_whatYouGet .content .block p {
    font-size: 1.4rem;
  }

  .home_measurable {
    flex-direction: column;
    gap: 3rem;
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

  .home_measurable .c1 {
    width: 100%;
  }

  .home_measurable .c2 {
    width: 100%;
  }

  .home_measurable .c2 h1 {
    font-size: 1rem;
  }

  .home_measurable .c2 h2 {
    font-size: 1.8rem;
  }

  .home_measurable .c2 p {
    font-size: 1.4rem;
  }

  .home_measurable .c2 a {
    font-size: 1rem;
    padding: 1rem 2.5rem;
  }

  .home_member .c1 {
    width: 100%;
    padding-right: 5vw;
    padding-top: 0rem;
  }

  .home_member .c1 h1 {
    font-size: 1rem;
  }

  .home_member .c1 h2 {
    font-size: 2rem;
  }

  .home_member .c1 p {
    font-size: 1.4rem;
  }

  .home_member .c2 {
    width: 100%;
  }

  .home_member .c2 img {
    max-width: 50%;
    justify-self: flex-end;
  }

  .home_became_a_member {
    height: 100vh;
  }

  .home_became_a_member .content {
    padding: 2rem 3rem;
    width: 90%;
  }

  .home_became_a_member .content h1 {
    font-size: 1.8rem;
  }

  .home_became_a_member .content a {
    font-size: 1rem;
    padding: 1rem 2.5rem;
  }

  .home_FAQ {
    padding-top: 10rem;
    padding-bottom: 10rem;
    overflow: hidden;
  }

  .home_FAQ .bg {
    transform: scale(3);
    transform-origin: 74% 74%;
  }

  .home_FAQ .head {
    margin-bottom: 5rem;
  }

  .home_FAQ .head h1 {
    font-size: 1.8rem;
  }

  .home_FAQ .head p {
    font-size: 1.4rem;
  }

  .home_FAQ .accordion {
    max-width: 100%;
    gap: 1.5rem;
    margin-bottom: 4.5rem;
  }

  .home_FAQ .accordion .block {
    padding: 1.5rem 1.5rem;
  }

  .home_FAQ .accordion .block .acc_head h1 {
    font-family: var(--font-bw);
    font-size: 1.4rem;
  }

  .home_FAQ .accordion .block .acc_content p {
    font-size: 1.2rem;
  }

  .home_FAQ .accordion .block.active .acc_head {
    padding-bottom: 1rem;
  }

  .home_FAQ .text {
    font-size: 1.2rem;
  }

  .home_FAQ .text img {
    max-width: 3rem;
  }

  .home_peekAtEvity {
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .home_peekAtEvity .head {
    margin-bottom: 4rem;
  }

  .home_peekAtEvity .head h1 {
    font-size: 1rem;
  }

  .home_peekAtEvity .head h2 {
    font-size: 1.8rem;
    max-width: 22rem;
  }

  .home_peekAtEvity .head p {
    font-size: 1.4rem;
  }

  .home_peekAtEvity .slider .slick-slide {
    transform: scale(0.9) translateY(0);
    transition: transform 0.3s ease;
    transition: all 0.3s ease-in-out;
    z-index: 5;
  }

  .home_peekAtEvity .slider .slick-slide img {
    margin-bottom: 3rem;
  }

  .home_peekAtEvity .slider .slick-slide h1 {
    opacity: 1;
  }

  .home_peekAtEvity .slider .slick-slide p {
    opacity: 1;
  }

  .footer {
    gap: 5rem;

  }

  .footer .top {
    flex-direction: column;
    gap: 4.8rem;
  }

  .footer .top .c1 {
    order: 2;
    gap: 2rem;
    display: flex;
    flex-direction: row;
  }

  .footer .top .c1 .social img {
    max-width: 2.5rem;
  }

  .footer .top .c1 img {
    max-width: 15rem;
    margin-bottom: 0rem;
  }

  .footer .top .c1 .left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 50%;
  }

  .footer .top .c1 .right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
  }

  .footer .top .c1 .right h1,
  .footer .top .c1 .right a {
    font-family: var(--font-bw);
    font-size: 1rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.4px;
    text-align: left;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .footer .top .c2 {
    order: 1;
  }

  .footer .top .c2 .link1 {
    gap: 1.4rem;
    width: 50%;
  }

  .footer .top .c2 .link1 a {
    font-size: 1.2rem;
  }

  .footer .top .c2 .link2 {
    gap: 1rem;
    width: 50%;
  }

  .footer .top .c2 .link2 a {
    font-size: 1.2rem;
  }

  .footer .top .c3 {
    order: 3;
  }

  .footer .top .c3 h1 {
    font-size: 1.2rem;
    gap: 1rem;
    line-height: 1.3;
  }

  .footer .bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .footer .bottom .c1 {
    display: flex;
    width: 100%;
    justify-content: flex-start;
  }

  .footer .bottom .c1 h1 {
    font-size: 1rem;
  }

  .footer .bottom .c2 {
    width: 100%;
    gap: 1rem;
    justify-content: flex-start;
  }

  .footer .bottom .c2 a {
    font-size: 1rem;
  }

  .aboutUs_banner .mainText.mobile {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, 0%);
    grid-area: 0.5rem;
  }

  .aboutUs_banner .mainText.mobile .evity {
    width: 8rem;
  }

  .aboutUs_banner .mainText.mobile .wellness {
    width: 13rem;
    margin-top: -0.7rem;
  }

  .aboutUs_banner .content {
    width: 100%;
    top: 61%;
    /* position the dots if needed */
    /* reset list styles */
    /* hide button text and make dots */
    /* active dot */
  }

  .aboutUs_banner .content .slick-track {
    display: flex !important;
    align-items: flex-start;
    /* or 'stretch' if you want equal height */
  }

  .aboutUs_banner .content .slick-slide {
    height: inherit !important;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .aboutUs_banner .content .slick-slide>div {
    flex: 1 0 auto;
    /* allow inner wrapper to grow */
    display: flex;
  }

  .aboutUs_banner .content .slick-slide>div {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
  }

  .aboutUs_banner .content .slick-dots {
    position: absolute;
    bottom: 20px;
    /* adjust based on your design */
    right: 10%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 10px;
    /* space between dots */
  }

  .aboutUs_banner .content .slick-dots li {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .aboutUs_banner .content .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #777;
    /* inactive color */
    border: none;
    padding: 0;
    font-size: 0;
    /* hide number */
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .aboutUs_banner .content .slick-dots li.slick-active button {
    background: #fff;
    /* active color (white) */
  }

  .aboutUs_banner .content .block {
    position: relative;
    width: 100%;
    padding: 3rem 3rem;
    display: flex !important;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 4rem;
  }

  .aboutUs_banner .content .block .c1 {
    width: 100%;
    justify-content: flex-start;
  }

  .aboutUs_banner .content .block .c1 h1 {
    font-size: 1.8rem;
    gap: 0.5rem;
  }

  .aboutUs_banner .content .block .c1 h1 img {
    opacity: 1;
    width: 4rem;
  }

  .aboutUs_banner .content .block .c2 {
    width: 100%;
  }

  .aboutUs_banner .content .block .c2 p {
    margin-top: 3.4rem;
    font-size: 1.4rem;
  }

  .aboutUs_life {
    justify-content: flex-start;
  }

  .aboutUs_life .bg {
    position: absolute;
    top: -33%;
    left: 81%;
    transform: translate(-50%, 0);
    z-index: -5;
    scale: 1.5;
  }

  .aboutUs_life .head h1 {
    font-size: 1.4rem;
  }

  .aboutUs_life .head h2 {
    font-size: 2rem;
  }

  .aboutUs_life .head p {
    font-size: 1.6rem;
    width: 80%;
  }

  .aboutUs_life .content {
    top: 33%;
  }

  .aboutUs_life .content h3 {
    font-size: 1.6rem;
  }

  .aboutUs_life .content .slides .block p {
    font-size: 1.4rem;
  }

  .aboutUs_life .content .slides .block img {
    width: 15rem;
    padding: 1rem;
  }

  .aboutUs_life .content .slides .block p {
    width: 20rem;
  }

  .aboutUs_socialWellnessClub .text1 h1 {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }

  .aboutUs_socialWellnessClub .text2 {
    top: unset;
    bottom: 3rem;
    right: unset;
    left: 5vw;
    width: 100%;
  }

  .aboutUs_socialWellnessClub .text2 p {
    font-size: 1.2rem;
    max-width: 70%;
  }

  .aboutUs_socialWellnessClub .text2 .tags {
    gap: 0.7rem;
  }

  .aboutUs_socialWellnessClub .text2 .tags h1 {
    font-size: 1.2rem;
  }

  .about_whyEvity {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .about_whyEvity .head h1 {
    font-size: 1.8rem;
  }

  .about_whyEvity .card {
    flex-direction: column;
    gap: 3.7rem;
  }

  .about_whyEvity .card .c1 {
    width: 100%;
  }

  .about_whyEvity .card .c1 img {
    border-radius: 2rem;
    max-height: 24rem;
    object-position: center 17%;
  }

  .about_whyEvity .card .c2 {
    width: 100%;
    padding: 0rem 2.7rem 2.7rem 2.7rem;
  }

  .about_whyEvity .card .c2 h1 {
    font-size: 1.4rem;
  }

  .about_whyEvity .card .c2 p {
    font-size: 1.2rem;
  }

  .about_whyEvity .card .c2 .name h1 {
    font-size: 1.2rem;
  }

  .about_whyEvity .card .c2 .name p {
    font-size: 1.2rem;
  }

  .about_whyEvity .card::before {
    transform: translate(16%, 53%);
    width: 5rem;
    aspect-ratio: 1 / 1;
    transform: translate(16%, 53%);
  }

  .about_builtOnScience {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }

  .about_builtOnScience .head {
    display: flex;
    flex-direction: column;
    margin-bottom: 4.4rem;
  }

  .about_builtOnScience .head h1 {
    font-family: var(--font-bw);
    font-size: 1.8rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.18px;
    text-align: left;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 60%;
  }

  .about_builtOnScience .head h2 {
    font-family: var(--font-bw);
    font-size: 1.4rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.14px;
    text-align: left;
    color: #fff;
  }

  .about_builtOnScience .content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
      /* overflow-x: scroll; */
  }

  .about_builtOnScience .content .block {
    flex-shrink: 0;
    /* padding: 3.8rem 2rem; */
  }

  .about_builtOnScience .content .block p {
    font-size: 1.6rem;
    text-align: center;
  }

  .aboutUs_evityJourney {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .aboutUs_evityJourney svg #dot-1-mobile {
    opacity: 0;
  }

  .aboutUs_evityJourney svg #dot-2-mobile {
    opacity: 0;
  }

  .aboutUs_evityJourney svg #dot-3-mobile {
    opacity: 0;
  }

  .aboutUs_evityCore {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .aboutUs_evityCore>.head {
    align-items: flex-start;
    margin-bottom: 6rem;
  }

  .aboutUs_evityCore>.head h1 {
    font-size: 1.8rem;
    margin-bottom: 1.7rem;
  }

  .aboutUs_evityCore>.head h2 {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 1.6rem;
  }

  .aboutUs_evityCore>.head p {
    width: 100%;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.4rem;
  }

  .aboutUs_evityCore>.head p .bg {
    scale: 1.2;
    transform: translate(-8%, -42%);
  }

  .aboutUs_evityCore>.content {
    display: flex;
    overflow-x: scroll;
  }

  .aboutUs_evityCore>.content>.block {
    flex-shrink: 0;
    max-width: 25rem;
  }

  .aboutUs_evityCore>.content>.block img {
    margin-bottom: 0.7rem;
  }

  .aboutUs_evityCore>.content>.block .text h1 {
    font-size: 1.1rem;
  }

  .aboutUs_evityCore>.content>.block .text p {
    font-size: 1rem;
  }

  .aboutUs_evityCore .popUp_wrapper .popUp {
    right: 50%;
    transform: translate(50%, 0);
    width: 96%;
    padding: 2.5rem 2.5rem;
  }

  .aboutUs_evityCore .popUp_wrapper .popUp .closeBtn {
    top: 2.5rem;
    left: 2.5rem;
  }

  .aboutUs_evityCore .popUp_wrapper .popUp .head .text h1 {
    font-size: 1.6rem;
  }

  .aboutUs_evityCore .popUp_wrapper .popUp .head .text p {
    font-size: 1.4rem;
  }

  .aboutUs_evityCore .popUp_wrapper .popUp .head .popup-img {
    max-width: 10rem;
  }

  .aboutUs_evityCore .popUp_wrapper .popUp .content p {
    font-size: 1.4rem;
  }
}


/*! membership page  */



.memberShip_banner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.memberShip_banner .bg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.memberShip_banner .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.memberShip_banner .text .block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.memberShip_banner .text h1 {
  font-family: var(--font-bw);
  font-size: 3.2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: -1.6px;
  text-align: left;
  color: #dedede;
  margin-bottom: 4.2rem;
}

.memberShip_banner .text p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  /* max-width: 50rem; */
  margin-bottom: 4.1rem;
}

.memberShip_banner .text a {
  display: flex;
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: center;
  color: #fff;
  align-self: center;
}

.memberShip_ourPlans {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 14rem;
  padding-bottom: 15rem;
  overflow: hidden;

}

.memberShip_ourPlans .bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  z-index: -1;

}

.memberShip_ourPlans>.head {
  display: flex;
  flex-direction: column;
  margin-bottom: 5.8rem;
}

.memberShip_ourPlans>.head>h1 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: center;
  color: #f3f3f3;
  margin-bottom: 1.6rem;
}

.memberShip_ourPlans>.head>p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: center;
  color: #fafafa;
  max-width: 60rem;
}

.memberShip_ourPlans .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10%;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 3.3rem;
}

.memberShip_ourPlans .content .block {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  text-transform: none;
  border-radius: 1.4rem;
  padding: 3rem 4rem;
  /* restored original padding */
  border: solid 0.7px rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease-in-out;
  white-space: normal;
  /* fixed invalid 'wrap' */
  height: 100%;
  /* stretch to fill the grid cell */
}

.memberShip_ourPlans .content .block.btnGradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: 1.4rem;
  background: linear-gradient(90deg, #cccccc5e, #eeeeee57);
  pointer-events: none;
}

.memberShip_ourPlans .content .block .bg {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(2.5);
  /* use transform */
  z-index: -1;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

/* .memberShip_ourPlans .content .block:hover {
  background-color: rgba(255, 255, 255, 0.1);
} */

/* .memberShip_ourPlans .content .block:hover .bg {
  opacity: 0;
} */

.memberShip_ourPlans .content .block .head {
  /* border-bottom: 2px solid;
 
  border-image: linear-gradient(0.25turn, #00000000, #ffffff61, #00000000) 1; */
  width: 100%;
  margin-bottom: 3rem;
  /* restored original */
}

.memberShip_ourPlans .content .block .head h1 {
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: bold;
  /* restored */
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: center;
  color: #f3f3f3;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid;
  border-image: linear-gradient(0.25turn, #00000000, #ffffff61, #00000000) 1;
  display: inline-block;

}

.memberShip_ourPlans .content .block .head p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
  /* restored original */
  text-transform: none;
}

.memberShip_ourPlans .content .block .mid {
  border-bottom: 2px solid;
  /* define thickness & style */
  border-image: linear-gradient(0.25turn,
      #00000001 20%,
      #ffffff61 40%,
      #00000000 80%) 1;
  /* width: 100%; */
  margin-bottom: 2rem;
  /* restored original */
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  display: inline-block;
  /* <-- keeps bottom aligned and makes all cards same height */
}

.memberShip_ourPlans .content .block .mid img {
  align-self: center;
  justify-self: center;
  line-height: 2.18;
  padding: 2.7rem 0;
}


.memberShip_ourPlans .content .block .mid h1 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.memberShip_ourPlans .content .block .mid p {
  font-family: var(--font-bw);
  font-size: 1.4rem;
  font-weight: 100;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.18;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  padding-bottom: 2.8rem;
  /* restored original */
  text-transform: none;
}

.memberShip_ourPlans .content .block .mid p:last-child {
  padding-bottom: 1rem;
  /* restored original */
}

.memberShip_ourPlans .content .block .bottom h3 {
  display: none !important;
}

.memberShip_ourPlans .content .block .bottom p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.18;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  padding: 0rem 0;
  /* restored original */
  text-transform: none;
}

.memberShip_ourPlans .content .block .bottom h1 {
  border-bottom: 2px solid;
  /* define thickness & style */
  border-image: linear-gradient(0.25turn, #00000000, #ffffff61, #00000000) 1;
  width: 100%;
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.37;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  margin-top: 4rem;
  /* restored original */
}

.memberShip_ourPlans .content .block .bottom h1 span {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.37;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  text-transform: none;
}

.memberShip_ourPlans .content .block .bottom h2 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.18;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  text-transform: none;
}

@media (max-width: 1100px) {
  .memberShip_ourPlans .content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .memberShip_ourPlans .content {
    grid-template-columns: 1fr;
  }

  .memberShip_ourPlans .content .block {
    padding: 2rem;
  }

  .memberShip_ourPlans .content .block .head h1 {
    font-size: 2rem;
  }

  .memberShip_ourPlans .content .block .mid p,
  .memberShip_ourPlans .content .block .bottom p {
    font-size: 1.6rem;
  }
}

.memberShip_ourPlans .terms {
  align-self: flex-start;
}

.memberShip_ourPlans .terms h1 {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.24;
  letter-spacing: normal;
  text-align: left;
  color: #dadada;
  display: flex;
  align-items: center;
  gap: 4.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.memberShip_ourPlans .terms h1 img {
  max-width: 2.9rem;
  transition: all 0.3s ease-in-out;
}

.memberShip_ourPlans .terms.active h1 img {
  transform: rotate(180deg);
}

.memberShip_ourPlans .terms.active .dropDown {
  transition: all 0.3s ease-in-out;
  max-height: 500px;
}

.memberShip_ourPlans .terms .dropDown {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;

}

.memberShip_ourPlans .terms .dropDown p {
  font-family: var(--font-bw);
  font-size: 1.1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  max-width: 75%;
  margin-bottom: .5rem;
}


.memberShip_ourPlans .terms .dropDown a {

  align-self: center;
  margin-top: 4.5rem;

}


.memberShip_pricing {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: #012E88;
  background: linear-gradient(0deg, rgba(1, 46, 136, 1) 0%, rgba(2, 3, 5, 1) 100%);
}

.memberShip_pricing .bgRight {
  top: -5%;
  position: absolute;
  right: 0;
  z-index: -1;
}

.memberShip_pricing .bgLeft {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

.memberShip_pricing>.head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 7.5rem;
}

.memberShip_pricing>.head>h1 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: 0.28px;
  text-align: center;
  color: #fff;
  margin-bottom: 2.4rem;
}

.memberShip_pricing>.head>p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: center;
  color: #ebebeb;
  max-width: 60rem;
}

.memberShip_pricing .pricing-table {
  font-family: var(--font-bw);
  color: #fff;
  max-width: 85%;
  margin: 2rem auto;
}

.memberShip_pricing .pricing-table .section {
  margin-bottom: 12rem;
}

.memberShip_pricing .pricing-table .section h3 {
  font-family: var(--font-bw);
  font-size: 2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: left;
  color: #6E9EFF;
  padding: 2rem 0;
}

.memberShip_pricing .pricing-table .section h3:nth-child(2),
.memberShip_pricing .pricing-table .section h3:nth-child(3) {
  font-family: var(--font-bw);
  font-size: 2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: left;
  color: #6E9EFF;
}

.memberShip_pricing .pricing-table .section .row {
  display: grid;
  grid-template-columns: 60% 30% 20%;
  padding: 0.6rem 0;
  border-bottom: 2px solid;
  /* define thickness & style */
  border-image: linear-gradient(0.25turn, #00000000, #ffffff37, #00000000) 1;
}

.memberShip_pricing .pricing-table .section .row:last-child {
  border-bottom: none;
}

.memberShip_pricing .pricing-table .section .row div:nth-child(2),
.memberShip_pricing .pricing-table .section .row h3:nth-child(2),
.memberShip_pricing .pricing-table .section .row p:nth-child(2) {
  text-align: center;
}

.memberShip_pricing .pricing-table .section .row h3:nth-child(3),
.memberShip_pricing .pricing-table .section .row p:nth-child(3) {
  text-align: left;
}

.memberShip_pricing .pricing-table .section .row p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: left;
  color: #F0EFEF;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.memberShip_pricing .pricing-table .section .row small {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: left;
  color: #858585;
}

.memberShip_pricing .pricing-table .section .head {
  font-weight: bold;
  color: #aaa;
  border-bottom: 2px solid;
  /* define thickness & style */
  border-image: linear-gradient(0.25turn, #00000000, #ffffff49, #00000000) 1;
}

.memberShip_package {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.memberShip_package .card {
  position: relative;
  text-transform: none;
  display: flex;
  flex-direction: column;
  padding: 12rem 10rem 7rem 10rem;
  border-radius: 2rem;
  white-space: wrap;
  width: 60%;
  overflow: hidden;
  align-items: center;
  background-color: rgba(217, 217, 217, 0.03);
}

.memberShip_package .card::after {
  content: '';
  background-color: rgba(217, 217, 217, 0.1);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}


.memberShip_package .card .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(1.3);
  display: none;
}

.memberShip_package .card::before {
  border-radius: 2rem;
  background: linear-gradient(90deg, #cccccc5e, #eeeeee57);
  z-index: 1;
}

.memberShip_package .card h1 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.24;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
}

.memberShip_package .card p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.24;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 5.8rem;
  max-width: 45rem;
}

.memberShip_package .card a {
  font-family: var(--font-bw);
  font-size: 1.2rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: center;
  color: #fff;
  align-self: center;
}

.memberShip_package .card svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  scale: 3.5;

}

@media only screen and (max-width: 1400px) {
  .memberShip_package .card svg {

    scale: 2.5;

  }

}

.memberShip_experience {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 15rem;
  /* assume .card is each slide wrapper */
  /* Slick-specific safe tweaks */
}

.memberShip_experience .gradiant {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(2, 3, 5, 0), #020305);
}

.memberShip_experience .sectionWrapper {
  position: relative;
}

.memberShip_experience .bg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.memberShip_experience .text1 {
  position: absolute;
  top: 20%;
  left: 7.5vw;
}

.memberShip_experience .text1 h1 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.18;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  max-width: 35rem;
}

.memberShip_experience .content {
  position: absolute;
  /* consider switching to relative if possible */
  right: 7.5vw;
  top: 20%;
  z-index: 1;
  width: 70rem;
  max-width: 100%;
  z-index: 1;
}

@media only screen and (max-width: 1200px) {
  .memberShip_experience .content {
    width: 60rem;
  }
}

@media only screen and (max-width: 1024px) {
  .memberShip_experience .content {
    width: 45rem;
  }
}

.memberShip_experience .card {
  padding: 5.5rem 3rem;
  white-space: normal;
  /* replaced invalid 'wrap' */
  text-transform: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.5rem;
  position: relative;

  overflow: hidden;

  background: rgba(0, 0, 0, 0.15);

}

.memberShip_experience .card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* fills the card */
  border-radius: 2.5rem;
  background: linear-gradient(90deg, #cccccc82, #eeeeee4e);
  z-index: 0;
  /* behind content */
  pointer-events: none;
}

.memberShip_experience .content .slick-slide .card::before {
  opacity: 0;
  transition: opacity .6s ease;
  /* match your slick speed */
}

/* show overlay on the active (current) slide only */
.memberShip_experience .content .slick-current .card::before {
  opacity: 1;
}

.memberShip_experience .content .slick-slide,
.memberShip_experience .content .slick-track,
.memberShip_experience .content .slick-list,
.memberShip_experience .card,
.memberShip_experience .card::before {
  will-change: opacity, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* make the card a new stacking context so the ::before stays neatly behind */
.memberShip_experience .card {
  position: relative;
  isolation: isolate;
}

/* ensure ::before sits behind your content */
.memberShip_experience .card>* {
  position: relative;
  z-index: 1;
}

.memberShip_experience .card::before {
  z-index: 0;
}

.memberShip_experience .card>* {
  position: relative;
  z-index: 1;
}

.memberShip_experience .card .break {
  display: flex;
  gap: 3rem;
  margin-bottom: 8rem;
  align-items: center;
}

.memberShip_experience .card .break img {
  width: 4.4rem;
  height: auto;
  display: block;
}

.memberShip_experience .card .break p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.37;
  letter-spacing: 0;
  text-align: left;
  color: #ebebeb;
  margin: 0;
}

.memberShip_experience .card h1 {
  font-family: var(--font-bw);
  font-size: 3.2rem;
  font-weight: normal;
  line-height: 1.37;
  letter-spacing: -0.84px;
  text-align: left;
  color: #ebebeb;
  margin-bottom: 4rem;
}

.memberShip_experience .card>p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.37;
  text-align: left;
  color: #ebebeb;
  padding-left: 7rem;
  max-width: 80%;
  position: relative;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1024px) {
  .memberShip_experience .card>p {
    font-size: 1.6rem;
    max-width: 100%;
  }
}

.memberShip_experience .card>p::before {
  content: "";
  position: absolute;
  top: 0;
  /* keep it inside the paragraph */
  left: 2%;
  width: 50px;
  height: 50px;
  /* smaller square, adjust as needed */
  background-image: url("../images/membership/members-quote.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0.9;
  transform: translateY(-10%);
  /* small nudge if you want it slightly above */
}

.memberShip_experience .slick-slide {
  outline: none;
  /* removes focus outline if needed */
}

.memberShip_experience .slick-track {
  display: flex !important;
  /* ensure horizontal layout for slides */
  align-items: stretch;
}

.memberShip_membersGetMore {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: #012E88;

}


.memberShip_membersGetMore .head {
  display: flex;
  flex-direction: column;
  margin-bottom: 6.5rem;
  align-items: center;
}

.memberShip_membersGetMore .head h1 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: normal;
  text-align: center;
  color: #dadada;
  margin-bottom: 3.5rem;
}

.memberShip_membersGetMore .head p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.37;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  max-width: 45rem;
}

.memberShip_membersGetMore .content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  width: 90%;
  margin: 0 auto;
}

.memberShip_membersGetMore .content>.bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.memberShip_membersGetMore .content .block {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.3rem 2.5rem;
  border-radius: 1rem;
  border: solid 0.5px rgba(255, 255, 255, 0.29);
  background-color: rgba(255, 255, 255, 0.09);
}



.memberShip_membersGetMore .content .block .head_img {
  width: 7rem;
  height: 7rem;
  /* max-width: fit-content; */
  aspect-ratio: 1 / 1;
  margin-bottom: 6rem;

}

.memberShip_membersGetMore .content .block h1 {
  font-family: var(--font-bw);
  font-size: 5rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.83;
  letter-spacing: normal;
  text-align: left;
  color: #d8d8d8;
  margin-bottom: 3rem;
}

.memberShip_membersGetMore .content .block p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  max-width: 60%;
}

@media only screen and (max-width: 1200px) {
  .memberShip_membersGetMore .content .block p {
    max-width: 80%;
  }
}


.typewriter h1 {
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 0em solid #dedede00;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 auto;
  /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em;
  /* Adjust as needed */
  animation: typing 2s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #dedede;
  }
}






/* !therpay overview cards  */


.therapyOverviewCards {
  position: relative;
  padding-top: 15rem;
  padding-bottom: 25rem;
}

.therapyOverviewCards .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.therapyOverviewCards .head .c1 {
  width: 50%;
}

.therapyOverviewCards .head .c2 {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.therapyOverviewCards .head .c1 h1 {
  font-family: var(--font-bw);
  font-size: 2.4rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
  margin-bottom: 1.2rem;
}

.therapyOverviewCards .head .c1 h2 {
  font-family: var(--font-bw);
  font-size: 2rem;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
}


.therapyOverviewCards .head .c2 p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: left;
  color: #fff;
}



.therapyOverviewCards .green {
  background: radial-gradient(circle at -14% 50%,
      #73E073 0%,
      #2B642D 15%,
      #020305 70%);
  background-size: 100% 100%;
  background-repeat: no-repeat;

}

.therapyOverviewCards .card {
  position: relative;
  text-transform: none !important;
  border-radius: 2rem !important;

}

.therapyOverviewCards .card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(90deg, #cccccc40, #eeeeee80);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}

.therapyOverviewCards .card .bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
}








.therapyOverviewCards .blue {
  background: radial-gradient(circle at 30% 30%, #2e65ff 0%, #0c1035 70%);
}

.therapyOverviewCards .orange {
  background: radial-gradient(circle at 30% 30%, #ff6b2e 0%, #2b1008 70%);
}

.therapyOverviewCards .purple {
  background: radial-gradient(circle at 30% 30%, #8b6aff 0%, #1a103b 70%);
}

.therapyOverviewCards .stacked-cards {
  display: flex;
  gap: 0;
  width: 100%;
  /* max-width: 1100px; */
  margin: 0 auto;
  transition: all 0.4s ease;
}

.therapyOverviewCards {
  --card-h: 520px;
}

@media screen and (max-width: 1200px) {
  .therapyOverviewCards {
    --card-h: 420px;
  }

}

@media screen and (max-width: 1024px) {
  .therapyOverviewCards {
    --card-h: 330px;
  }

}

@media screen and (max-width: 768px) {
  .therapyOverviewCards {
    --card-h: auto;
  }

}


/* ===== DESKTOP ===== */
@media (min-width: 769px) {



  .therapyOverviewCards .stacked-cards {
    align-items: stretch;
  }

  .therapyOverviewCards .card {
    flex: 1 1 0%;
    height: var(--card-h);
    min-height: var(--card-h);
    max-height: var(--card-h);
    padding: 4.5rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: flex 0.55s cubic-bezier(.25, .8, .25, 1), filter 0.35s ease;
    background-clip: padding-box;
    display: flex;
    flex-direction: column;
  }

  .therapyOverviewCards .card:not(:first-child) {
    margin-left: -32px;
  }

  .therapyOverviewCards .card .title {


    font-family: var(--font-bw);
    font-size: 1.8rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.18px;
    text-align: left;
    color: #fff;
    margin-bottom: 1.4rem;
    z-index: 2;
    white-space: wrap;
  }

  .therapyOverviewCards .card .sub {

    font-family: var(--font-bw);
    font-size: 1.4rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.14px;
    text-align: left;
    color: #fff;
    z-index: 2;


  }

  /* Overlayed .desc — doesn’t affect height */
  .therapyOverviewCards .card .desc {
    position: relative;
    /* left: 4.5rem; */
    /* right: 2rem; */
    /* bottom: 4.5rem; */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    max-width: 34ch;

    line-height: 1.4;
    margin-top: auto;


    font-family: var(--font-bw);
    font-size: 1.4rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.16px;
    text-align: left;
    color: #fff;
    margin-top: 4rem;
    white-space: wrap !important;
    margin-bottom: 2rem;
  }

  .therapyOverviewCards .card .icon {
    position: absolute;
    /* left: 2rem; */
    /* right: 2rem; */
    /* bottom: 1.5rem; */
    opacity: 0.6;
    font-size: 0.9rem;
    margin-top: auto;
    bottom: 4.5rem;

  }

  .therapyOverviewCards .card .btnGradient {
    transform: translateY(10px);
    opacity: 0;
  }

  .therapyOverviewCards .card:hover .btnGradient {
    opacity: 1;
    transform: translateY(0);
  }


  .therapyOverviewCards .card .icon img {
    max-width: 5.8rem;
  }

  .therapyOverviewCards .card:hover .desc,
  .therapyOverviewCards .card.active .desc {
    opacity: 0.8;
    transform: translateY(0);
  }

  /* Hover expand (width only) */
  .therapyOverviewCards .stacked-cards:hover .card {
    flex: 0.85;
    filter: brightness(0.7);
  }

  .therapyOverviewCards .stacked-cards:hover .card:hover {
    flex: 2.6;
    filter: brightness(1);
  }

  /* Active (click hold) */
  .therapyOverviewCards .card.active {
    flex: 2.6 !important;
    filter: brightness(1);
  }

  .therapyOverviewCards .stacked-cards.locked .card:not(.active) {
    flex: 0.85;
    filter: brightness(0.7);
  }

  .therapyOverviewCards .stacked-cards.locked .card:hover {
    flex: 2.6;
    filter: brightness(1);
  }

  .therapyOverviewCards .stacked-cards.locked .card.active:hover {
    flex: 2.6;
  }
}


/* !about we make  */


.aboutUs_weMake {
  min-height: 100vh;
  position: relative;
}

.aboutUs_weMake .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  object-fit: cover;
}

.aboutUs_weMake .blurBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}


.aboutUs_weMake .sectionWrapper {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  padding-top: 6.5rem;
}

.aboutUs_weMake .sectionWrapper .c1 {
  width: 40%;
}




.aboutUs_weMake .sectionWrapper .c1 .head {
  display: flex;
  flex-direction: column;
  margin-bottom: 24rem;
}

.aboutUs_weMake .sectionWrapper .c1 .head h1 {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: 100;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
}

.aboutUs_weMake .sectionWrapper .c1 .head h2 {
  font-family: var(--font-bw);
  font-size: 2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
}

.aboutUs_weMake .sectionWrapper .c1 .head p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: 100;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
}

.aboutUs_weMake .sectionWrapper .c1 .content h1 {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: left;
  color: #fff;
  margin-bottom: 3.5rem;
  max-width: 36rem;
}

.aboutUs_weMake .sectionWrapper .c1 .content p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: left;
  color: #fff;
  max-width: 36rem;
}

.aboutUs_weMake .sectionWrapper .c2 {
  width: 60%;
  display: flex;
}

.aboutUs_weMake .sectionWrapper .c2 .text_1 {
  display: flex;
  gap: 1.1rem;
}

.aboutUs_weMake .sectionWrapper .c2 .text_1 p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: left;
  color: #fff;
  margin-bottom: 2.8rem;
}

/* .aboutUs_weMake .sectionWrapper .c2 .text_1 p:nth-child(2) {
  font-weight: normal;
  color: hsla(0, 0%, 100%, 0.12);
} */

@media only screen and (max-width: 1100px) {

  .aboutUs_weMake .sectionWrapper .c1 {
    width: 35%;
  }

  .aboutUs_weMake .sectionWrapper .c1 .content h1 {
    font-size: 1.4rem;
  }

  .aboutUs_weMake .sectionWrapper .c1 .content p {
    font-size: 1.4rem;
  }
}



.about_wellness {
  position: relative;
}

.about_wellness .sectionWrapper {
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
  flex-direction: column;
}

.about_wellness .sectionWrapper .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 6.3rem;

}

.about_wellness .sectionWrapper .head h1 {
  font-family: var(--font-bw);
  font-size: 3.2rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.32px;
  text-align: left;
  color: #fff;
  margin-bottom: 1rem;
}

.about_wellness .sectionWrapper .head p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.2px;
  text-align: center;
  color: #fff;
  width: 68%;
}

.about_wellness .sectionWrapper .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  padding: 6.8rem 6.8rem;
  border-radius: 8px;
}

.about_wellness .sectionWrapper .content .block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  border-right: 2px solid;
  border-image: linear-gradient(180deg, #00000000, #ffffff61, #00000000) 1;
}

.about_wellness .sectionWrapper .content .block:last-child {
  border-right: none;
}

.about_wellness .sectionWrapper .content .block img {
  max-width: 5.2rem;
  margin-bottom: 5rem;
  aspect-ratio: 1 / 1;
}

.about_wellness .sectionWrapper .content .block p {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: center;
  color: #fff;
}

.about_wellness .sectionWrapper a {
  transition: none;
  align-self: center;
  margin-top: 4.3rem;
}


.chooseProtocolSection {
  position: relative;
  background: #020305;
  /* padding: 0; */
  overflow: hidden;

  .protocolContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

    @media only screen and (max-width: 767.98px) {
      min-height: auto;
      padding: 8rem 0;
      flex-direction: column;

    }


    .protocolCard {
      position: relative;
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      width: 90%;
      max-width: 100%;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.5s ease;
      margin-bottom: 100px;
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      /* transform: translate(-50%, -50%); */
      width: 100%;
      margin: 0 auto;
      backdrop-filter: blur(10px);
      background-image: linear-gradient(to bottom, #0f0f0f, #0f0f0f), linear-gradient(93deg, rgba(255, 255, 255, 0.7) 2%, rgba(153, 153, 153, 0) 98%);

      @media only screen and (max-width: 767.98px) {
        left: unset;
        top: unset;
        transform: unset;
        width: 100%;
      }

      .protocolImage {
        flex: 1;
        position: relative;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        .protocolHeading {
          position: absolute;
          top: 3.2rem;
          left: 3.2rem;
          font-family: var(--font-bw);
          font-weight: bold;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.3;
          letter-spacing: 0.24px;
          text-align: left;
          color: #fff;
          width: 45%;
          text-transform: capitalize;
        }
      }

      .protocolContentBox {
        flex: 1;
        /* background: #111; */
        padding: 8%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        transition: all 0.4s ease;
        border-radius: 20px;
        /* box-shadow: 0 4.1px 16px 9.2px rgba(6, 6, 6, 0.25); */
        backdrop-filter: blur(10px);
        background-image: linear-gradient(to bottom, rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.7)), linear-gradient(93deg, rgba(255, 255, 255, 0.1) 2%, rgba(153, 153, 153, 0) 98%);
        transform: translateX(-15px);
        gap: 30%;



        .protocolTitle {
          font-family: var(--font-bw);
          font-weight: bold;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.3;
          letter-spacing: 0.2px;
          text-align: left;
          color: #fff;
          text-transform: capitalize;
        }

        .listWrapper {
          display: flex;
          align-items: center;
          gap: 2rem;

          img {
            height: 9rem;
            width: auto;
            display: block;
          }


          svg {
            display: none;
          }

          .protocolList {
            list-style: disc;
            /* margin-left: 25px; */
            font-family: var(--font-bw);
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.4;
            letter-spacing: 0.18px;
            text-align: left;
            color: #fff;

            li {
              margin-bottom: 10px;
              line-height: 1.6;
            }

            li::marker {
              /* font-size: 16px; */
            }
          }
        }


      }

      &.active {
        background: #E9E0DB;
        color: #000;

        .protocolContentBox {
          background: #E9E0DB;
        }

        .protocolTitle,
        .protocolList li {
          color: #000;
        }
      }
    }

    /* --- Desktop Scroll Stack --- */
    @media (min-width: 767.98px) {
      .protocolCard {
        height: 500px;
        margin-bottom: 0;
      }
    }

    /* --- Mobile Slide-in --- */
    @media only screen and (max-width: 767.98px) {
      .protocolCard {
        flex-direction: column;
        border-radius: 16px;
        width: 100%;
        position: relative;
        margin-bottom: 20px;

        .protocolImage {
          height: 300px;
          cursor: pointer;
          /* Show it's clickable */
        }

        .protocolContentBox {
          position: absolute;
          right: -94%;
          top: 0;
          width: 100%;
          height: 100%;
          color: #000;
          border-radius: 16px 0 0 16px;
          transition: right 0.4s ease;
          /* background: #E9E0DB; */
          z-index: 10;
          transform: translateX(0);
          align-items: center;
          justify-content: center;
          padding: 4rem 4rem 4rem 4px;






          .protocolTitle {
            display: none;
          }

          .listWrapper {
            gap: 4rem;

            img {
              display: none;
            }

            svg {
              display: block;
              height: 2.5rem;
              width: 2.5rem;
              /* flex: 0.1; */
            }
          }

          .protocolList {
            /* color: #000;  */
            flex: 0.9;
          }

          &.active {
            right: 0;
          }
        }
      }
    }

    @media only screen and (max-width: 575.98px) {
      .protocolCard {
        .protocolContentBox {
          right: -90%;

          .listWrapper {
            gap: 4rem;

            img {
              display: none;
            }

            svg {
              display: block;
              height: 2rem;
              width: 2rem;
            }
          }
        }
      }
    }
  }


}









/* !about india first section  */


.about_indiasFirst {
  position: relative;
  overflow: hidden;
  /* min-height: 100vh; */
}

.about_indiasFirst .bg {
  position: absolute;
  left: 0%;
  top: 4vh;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: -1;
  border-radius: 3rem;
  display: none;
}



.about_indiasFirst .sectionWrapper {
  display: flex;
  flex-direction: column;
  padding-top: 10rem;
  padding-bottom: 0rem;
  overflow: hidden;
}

.about_indiasFirst .foot {
  width: 100%;
  position: relative;
  margin-top: -25rem;
}

/* .about_indiasFirst .foot::after {
  content: url('https://demo4.greatestdesignever.com/wp-content/uploads/2025/10/quick-glass.svg');

  position: absolute;
  top: 10rem;
  left: 10rem;
  width: 100%;
  max-width: 50rem;
  z-index: -1;
} */


.about_indiasFirst .foot img {
  width: 100%;
  object-fit: contain;
}

.about_indiasFirst .sectionWrapper .head {
  display: flex;
  margin-bottom: 9.5rem;
}

.about_indiasFirst .sectionWrapper .head h1 {
  font-family: var(--font-bw);
  font-size: 2.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: 0.28px;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
}

.about_indiasFirst .sectionWrapper .container {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}



.about_indiasFirst .sectionWrapper .container .c1 {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.about_indiasFirst .sectionWrapper .container .c1 img {
  position: relative;
  width: 100%;
  max-width: 50rem;
  z-index: -2;
  margin-left: -23%;
  /* display: none !important; */
}

.about_indiasFirst .sectionWrapper .container .c2 {
  width: 40%;
}

.about_indiasFirst .sectionWrapper .container .c2 h1 {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: left;
  color: #fff;
  margin-bottom: 5rem;
}

.about_indiasFirst .sectionWrapper .container .c2 h2 {
  font-family: var(--font-bw);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.16px;
  text-align: left;
  color: #fff;
  margin-bottom: 15rem;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .about_indiasFirst .sectionWrapper .container .c2 h2 {
    margin-bottom: 10rem;
  }
}


/* .about_indiasFirst .sectionWrapper .container .c2 h2:before{

  content: url('../images/about/about-india-bg.png');
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;


} */


.about_indiasFirst .sectionWrapper .container .c2 p {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  position: relative;
  z-index: 3;
}

/* !happening section  */

.happeningSection {
  background: #020305;
  color: #fff;
  padding-top: 8rem;
  width: 100%;

  @media only screen and (max-width: 768px) {
    padding: 6rem 0 6rem 7.5vw;
  }

  .happeningContainer {
    max-width: 100%;
    margin: 0 auto;

    .happeningMainTitle {
      font-family: var(--font-bw);
      font-weight: bold;
      line-height: 1.3;
      letter-spacing: 0.24px;
      text-align: left;
      color: #fff;
      margin-bottom: 3.2rem;
      position: relative;
    }

    .happeningCardsWrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.6rem;
      position: relative;

      .happeningCard {
        position: relative;
        border-radius: 2rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;

        @media only screen and (max-width: 767.98px) {
          transform: scale(0.96);
        }

        &:hover {
          transform: translateY(-8px);

          @media only screen and (max-width: 767.98px) {
            transform: translateY(0);
          }

          .happeningImageBox .happeningImage {
            transform: scale(1.05);

            @media only screen and (max-width: 767.98px) {
              transform: scale(1);
            }
          }
        }

        .happeningCardNumber {
          position: absolute;
          top: 2rem;
          left: 2rem;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.15);
          -webkit-backdrop-filter: blur(49px);
          backdrop-filter: blur(49px);
          background-color: rgba(255, 255, 255, 0.08);
          display: flex;
          align-items: center;
          justify-content: center;
          height: 3.2rem;
          width: 3.2rem;
          text-align: center;
          color: rgba(255, 255, 255, 0.19);
          z-index: 2;
        }

        .happeningImageBox {
          width: 100%;
          height: 100%;
          overflow: hidden;

          .happeningImage {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
          }
        }

        /* Absolutely positioned overlay (unchanged) */
        .happeningContentBox {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;

          .happeningCardTitle {
            font-family: var(--font-bw);
            font-weight: bold;
            line-height: 1.3;
            letter-spacing: 0.2px;
            text-align: left;
            color: #fff;
            margin: 2rem;
          }

          .happeningCardDescription {
            /* Core visual styles */
            font-family: var(--font-bw);
            border-radius: 17.3px;
            border: solid 0.9px rgba(255, 255, 255, 0.11);
            background-color: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            padding: 2rem;
            letter-spacing: 0.16px;
            text-align: left;
            color: #fff;

            /* Equal-height hook: JS sets a fixed height; we allow natural height on mobile */
            height: auto;
            /* default; JS will override with px value on desktop/tablet */
            overflow: hidden;
            /* keeps taller text from pushing box if we clamp later */
          }
        }
      }
    }

    .happeningCardsWrapper .slick-slide {
      opacity: 1 !important;
    }
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .happeningContainer .happeningCardsWrapper {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }
}


.contactForm .wpcf7-not-valid-tip {
  font-size: 1.2rem !important;
  margin-top: 0.5rem !important;
}

.contactForm .wpcf7-spinner {
  position: absolute !important;
  bottom: 4.5rem !important;
  right: 45% !important;
  transform: translateX(45%) !important;
}

.contactForm .wpcf7-response-output {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  font-size: 1.2rem !important;
}

.page-id-510 .circuitBenefits .mainContainer .right .cardsContainer .cardBlock {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.page-id-510 .circuitBenefits .mainContainer .right .cardsContainer .cardBlock img {
  width: 30%;
}







/* !policy page  */


.page-id-747 .entry-content,
.page-id-753 .entry-content,
.page-id-758 .entry-content {
  padding-left: 7.5vw;
  padding-right: 7.5vw;
  padding-top: 15rem;
  padding-bottom: 5rem;
  max-width: 75vw;

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  li,
  a {
    font-family: var(--font-bw);

    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.16px;

  }

  ul,
  ol,
  li {
    margin-top: 1rem;
  }


  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding-bottom: 2rem;
  }

  p,
  li {
    font-family: var(--font-bw);
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.2px;
    text-align: left;
    color: #fff;
    padding-bottom: 1.4rem;
    font-size: 1.8rem;
    list-style: disc;
  }


  h1 {
    font-family: var(--font-bw);
    font-size: 3.5rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.2px;
    text-align: left;
    color: #fff;
    text-transform: capitalize;
    padding-bottom: 2rem;
  }


  h2 {
    font-family: var(--font-bw);
    font-size: 2.4rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.2px;
    text-align: left;
    color: #fff;
    text-transform: capitalize;
    padding-bottom: 2rem;
  }

  h3 {
    font-family: var(--font-bw);
    font-size: 2rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.2px;
    text-align: left;
    color: #fff;
    text-transform: capitalize;
    padding-bottom: 2rem;
  }

  ul,
  ol {
    margin-left: 1.5rem;

    li {
      margin-bottom: 0.5rem;
    }
  }




  @media (max-width: 768px) {
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: 100%;
    padding-top: 10rem;
    padding-bottom: 4rem;

    h1 {
      font-size: 2.6rem;
    }

    h2 {
      font-size: 2rem;
    }

    h3 {
      font-size: 1.8rem;
    }

    p,
    li {
      font-size: 1.6rem;
    }
  }

  @media (max-width: 480px) {
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: 100%;
    padding-top: 8rem;

    h1 {
      font-size: 2.2rem;
    }

    h2 {
      font-size: 1.8rem;
    }

    h3 {
      font-size: 1.6rem;
    }

    p,
    li {
      font-size: 1.5rem;
    }
  }




}





.memberShip_ourPlans_new {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 14rem;
  padding-bottom: 15rem;


  a {
    align-self: auto;
    margin-top: 3rem;
  }

  .bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    z-index: -1;
  }

  >.head {
    display: flex;
    flex-direction: column;
    margin-bottom: 5.8rem;

    >h1 {
      font-family: var(--font-bw);
      font-size: 2.8rem;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.06;
      letter-spacing: normal;
      text-align: center;
      color: #f3f3f3;
      margin-bottom: 1.6rem;
    }

    >p {
      font-family: var(--font-bw);
      font-size: 1.8rem;
      font-weight: normal;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.43;
      letter-spacing: normal;
      text-align: center;
      color: #fafafa;
      max-width: 60rem;
    }
  }

  .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    align-items: stretch;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 3.3rem;

    .block1 {
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      text-transform: none;
      border-radius: 1.4rem;
      padding: 5.3rem 4rem;
      /* restored original padding */

      min-height: 0;
      transition: all 0.3s ease-in-out;
      white-space: normal;
      /* fixed invalid 'wrap' */
      height: 100%;
      /* stretch to fill the grid cell */

      &.btnGradient::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        border-radius: 1.4rem;
        background: linear-gradient(90deg, #cccccc5e, #eeeeee57);
        pointer-events: none;
      }

      &:hover {
        background-color: rgba(255, 255, 255, 0.1);

        .bg {
          opacity: 1;
        }
      }

      .head {
        background: linear-gradient(90deg, transparent, #ffffff61, transparent) bottom center / 50% 2px no-repeat;
        width: 100%;
        margin-bottom: 6rem;

        /* restored original */
        h3 {
          display: none !important;
        }

        h1 {
          font-family: var(--font-bw);
          font-size: 2.4rem;
          font-weight: bold;
          /* restored */
          font-stretch: normal;
          font-style: normal;
          line-height: 1.06;
          letter-spacing: normal;
          text-align: center;
          color: #f3f3f3;
          margin-bottom: 1rem;
          margin-bottom: 1.7rem;
        }

        p {
          font-family: var(--font-bw);
          font-size: 1.6rem;
          font-weight: normal;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.19;
          letter-spacing: normal;
          text-align: center;
          color: #fff;
          margin-bottom: 1.6rem;
          /* restored original */
          text-transform: none;
        }
      }

      .mid {
        flex: 1 1 auto;
        min-height: 0;
        background: linear-gradient(90deg, transparent, #ffffff61, transparent) bottom center / 50% 2px no-repeat;
        width: 100%;
        margin-bottom: 2rem;
        /* restored original */
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        /* <-- keeps bottom aligned and makes all cards same height */
        align-items: center;

        .text {
          display: flex;
          flex-direction: column;
          max-width: 70%;
          margin-bottom: 3.3rem;
        }

        h1 {
          font-family: var(--font-bw);
          font-size: 1.6rem;
          font-weight: normal;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.32;
          letter-spacing: normal;
          text-align: center;
          color: #fff;
        }

        p {
          font-family: var(--font-bw);
          font-size: 1.6rem;
          font-weight: 100;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.2;
          letter-spacing: normal;
          text-align: center;
          color: #fff;

          &:last-child {
            padding-bottom: 1rem;
            /* restored original */
          }
        }
      }

      .bottom {
        margin-top: auto;

        a {
          margin-bottom: 1.7rem;
          width: 70%;
          text-align: center;
          justify-content: center;
        }

        h3 {
          display: none !important;
        }

        p {
          font-family: var(--font-bw);
          font-size: 1.4rem;
          font-weight: normal;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.5;
          letter-spacing: normal;
          text-align: center;
          color: #d0c0c0;
          padding: 0rem 0;
          /* restored original */
          text-transform: none;
        }

        h1 {
          border-bottom: 2px solid;
          /* define thickness & style */
          border-image: linear-gradient(0.25turn,
              #00000000,
              #ffffff61,
              #00000000) 1;
          width: 100%;
          font-family: var(--font-bw);
          font-size: 2.8rem;
          font-weight: bold;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.37;
          letter-spacing: normal;
          text-align: center;
          color: #fff;
          padding-bottom: 0.5rem;
          margin-bottom: 0.5rem;
          margin-top: 6rem;
          /* restored original */

          span {
            font-family: var(--font-bw);
            font-size: 1.6rem;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.37;
            letter-spacing: normal;
            text-align: left;
            color: #fff;
            text-transform: none;
          }
        }

        h2 {
          font-family: var(--font-bw);
          font-size: 1.8rem;
          font-weight: normal;
          font-stretch: normal;
          font-style: normal;
          line-height: 2.18;
          letter-spacing: normal;
          text-align: center;
          color: #fff;
          text-transform: none;
        }
      }
    }

    .block2 {
      min-height: 0;
      text-transform: none;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      text-transform: none;
      border-radius: 1.4rem;
      padding: 5.3rem 4rem;
      border: solid 0.7px rgba(255, 255, 255, 0.08);
      background-color: rgba(255, 255, 255, 0.03);
      transition: all 0.3s ease-in-out;
      white-space: normal;
      /* fixed invalid 'wrap' */
      height: 100%;
      /* stretch to fill the grid cell */

      &.btnGradient::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        border-radius: 1.4rem;
        background: linear-gradient(90deg, #cccccc5e, #eeeeee57);
        pointer-events: none;
      }

      &:hover {
        background-color: rgba(255, 255, 255, 0.1);

        .bg {
          opacity: 1;
        }
      }

      .head {
        width: 100%;
        margin-bottom: 6rem;

        /* restored original */
        h3 {
          display: none !important;
        }

        h1 {
          font-family: var(--font-bw);
          font-size: 2.4rem;
          font-weight: normal;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.32;
          letter-spacing: normal;
          text-align: center;
          color: #fff;
          margin-bottom: 1.7rem;
        }

        p {
          font-family: var(--font-bw);
          font-size: 1.6rem;
          font-weight: 100;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.32;
          letter-spacing: normal;
          text-align: center;
          color: #fff;

          &:last-child {
            padding-bottom: 1rem;
            /* restored original */
          }
        }
      }

      .mid {
        flex: 1 1 auto;
        min-height: 0;
        background: linear-gradient(90deg, transparent, #ffffff61, transparent) bottom center / 50% 2px no-repeat;
        width: 100%;
        margin-bottom: 2rem;
        /* restored original */
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        /* <-- keeps bottom aligned and makes all cards same height */
        align-items: center;

        .text {
          display: flex;
          flex-direction: column;
          border-radius: 14px;
          margin-bottom: 1.3rem;
          width: 70%;
          white-space: wrap;
          padding: 3.5rem 1rem;
          text-transform: none;

          &:before {
            border-radius: 14px;
            background: linear-gradient(90deg, #cccccc52, #eeeeee57);
          }
        }

        a {
          align-self: center;
          margin-top: 0.4rem;
          margin-bottom: 2.8rem;
          width: 70%;
          text-align: center;
          justify-content: center;
        }

        h1 {
          display: inline-block;

          font-family: var(--font-bw);
          font-size: 1.8rem;
          font-weight: bold;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.06;
          letter-spacing: normal;
          text-align: center;
          color: #fff;
          padding-bottom: 1.3rem;
          background: linear-gradient(90deg,
              transparent,
              #ffffff61,
              transparent) bottom center / 40% 2px no-repeat;
        }

        p {
          font-family: var(--font-bw);
          font-size: 1.6rem;
          font-weight: 300;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.2;
          letter-spacing: normal;
          text-align: center;
          color: #fff;
          padding: 2.5rem 0;
          /* restored original */
          text-transform: none;

          &:last-child {
            padding-bottom: 1rem;
            /* restored original */
          }
        }
      }

      .bottom {
        margin-top: auto;

        h3 {
          display: none !important;
        }

        p {
          font-family: var(--font-bw);
          font-size: 1.8rem;
          font-weight: normal;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.5;
          letter-spacing: normal;
          text-align: center;
          color: #a08c8c;
          padding: 0rem 0;
          /* restored original */
          text-transform: none;
        }

        h1 {
          border-bottom: 2px solid;
          /* define thickness & style */
          border-image: linear-gradient(0.25turn,
              #00000000,
              #ffffff61,
              #00000000) 1;
          width: 100%;
          font-family: var(--font-bw);
          font-size: 2.8rem;
          font-weight: bold;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.37;
          letter-spacing: normal;
          text-align: center;
          color: #fff;
          padding-bottom: 0.5rem;
          margin-bottom: 0.5rem;
          margin-top: 6rem;
          /* restored original */

          span {
            font-family: var(--font-bw);
            font-size: 1.6rem;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.37;
            letter-spacing: normal;
            text-align: left;
            color: #fff;
            text-transform: none;
          }
        }

        h2 {
          font-family: var(--font-bw);
          font-size: 1.8rem;
          font-weight: normal;
          font-stretch: normal;
          font-style: normal;
          line-height: 2.18;
          letter-spacing: normal;
          text-align: center;
          color: #fff;
          text-transform: none;
        }
      }
    }


    @media (max-width: 1100px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 600px) {
      grid-template-columns: 1fr;

      .block {
        padding: 5rem 2.5rem;
      }

      .block .head h1 {
        font-size: 2rem;
      }

      .block .mid p,
      .block .bottom p {
        font-size: 1.6rem;
      }
    }
  }

  .terms {
    align-self: flex-start;

    h1 {
      font-family: var(--font-bw);
      font-size: 1.2rem;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.24;
      letter-spacing: normal;
      text-align: left;
      color: #dadada;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 1rem;
      cursor: pointer;

      img {
        max-width: 2.9rem;
        transition: all 0.3s ease-in-out;
      }
    }

    &.active {
      h1 {
        img {
          transform: rotate(180deg);
        }
      }

      .dropDown {
        transition: all 0.3s ease-in-out;

        max-height: 500px;
      }
    }

    .dropDown {
      max-height: 0;
      overflow: hidden;

      transition: all 0.3s ease-in-out;



      p {
        font-family: var(--font-bw);
        font-size: 1.1rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.6;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
        max-width: 75%;
        margin-bottom: .5rem;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .memberShip_ourPlans_new {

    .bg {
      position: absolute;
      top: 30%;
      left: 0;
      width: 100%;
      z-index: -1;
      scale: 5.5;
      opacity: 0.7;
    }

    .content {
      .block1 {
        .head {
          margin-bottom: 0;

          p {
            margin-bottom: 2.8rem;
            color: #fff;
          }

          h3 {
            display: block !important;
          }
        }

        .mid {
          max-height: 0;
          overflow: hidden;
          margin-bottom: 0rem;
          transition: all 0.3s ease-in-out;

          .text {
            width: 100%;
          }
        }

        .bottom {
          max-height: 0;
          overflow: hidden;

          a {
            width: 100%;
          }
        }

        &.active {
          .mid {
            margin-top: 3.4rem;
            max-height: 1000px;
            overflow: visible;

            .text {
              margin-bottom: 2.5rem;
            }
          }

          .bottom {
            max-height: 1000px;
            overflow: visible;

          }
        }
      }

      .block2 {
        .head {
          margin-bottom: 0;

          p {
            margin-bottom: 2.8rem;
            color: #fff;
          }

          h3 {
            display: block !important;
          }
        }

        .mid {
          max-height: 0;
          transition: all 0.3s ease-in-out;
          overflow: hidden;
          margin-bottom: 0rem;

          a {
            width: 100%;
          }

          .text {
            width: 100%;
            background: transparent;
            backdrop-filter: none;

            &::before {
              border-radius: 14px;
              background: transparent;
              display: none;
            }
          }
        }

        .bottom {
          max-height: 0;
          overflow: hidden;

          a {
            width: 100%;
          }
        }

        &.active {
          .mid {
            margin-top: 3.4rem;
            max-height: 1000px;
            overflow: visible;
            background: none;

            a {
              margin-bottom: 0;
            }

            .text {
              margin-bottom: 2.5rem;

              h1 {
                background-image: none;
              }

              background: linear-gradient(90deg,
                transparent,
                #ffffff61,
                transparent) bottom center / 40% 2px no-repeat;

              &:nth-child(2) {
                background: none;
                padding-bottom: 0;
              }

              &:nth-child(4) {
                background: none;
                padding-top: 0;
              }
            }
          }

          .bottom {
            max-height: 1000px;
            overflow: visible;
          }
        }
      }
    }
  }
}


/* ===== Overlay (hidden by default) ===== */
.membership_popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  /* hidden on page load */
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Show when active */
.membership_popup-overlay.active {
  display: flex;
  animation: membership_fadeIn 0.3s ease-in-out;
}

/* ===== Popup Box ===== */
.membership_popup-content {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  padding: 4rem;
  width: 90%;
  max-width: 650px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: membership_slideUp 0.3s ease-out;
  max-height: 85vh;
  overflow-y: auto;
  font-size: 1.8rem;
  /* Base font size for readability */
  line-height: 1.6;
}

/* ===== Close Button ===== */
.membership_closePopup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* ===== Form ===== */
.membership_popup .membership_right form {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  font-size: 1.8rem;
  /* consistent across fields */
}

/* Heading */
.membership_popup .membership_right form h2 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Labels */
.membership_popup .membership_right form label {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
  font-weight: 500;
}

/* Inputs & Textareas */
.membership_popup .membership_right form input[type="text"],
.membership_popup .membership_right form input[type="email"],
.membership_popup .membership_right form input[type="tel"],
.membership_popup .membership_right form textarea {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  color: #fff;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.4rem 0.5rem 0.8rem 0.5rem;
  width: 100%;
  transition: border-color 0.3s ease;
  margin-bottom: 1.5rem;
}

.membership_popup .membership_right form input:focus,
.membership_popup .membership_right form textarea:focus {
  border-bottom: 1px solid #fff;
  outline: none;
}

.membership_popup .membership_right form textarea {
  /* min-height: 10rem; */
  resize: none;
  line-height: 1.6;
  padding-top: 0;
}

/* Submit Button */
.membership_popup .membership_right form .membership_submitBtn {
  border: none;
  cursor: pointer;
  outline: none;
  margin: 1rem auto 0;
  background: rgba(217, 217, 217, 0.1);
  color: #fff;
  padding: 1.4rem 3rem;
  font-size: 1.8rem;
  /* border-radius: 8px; */
  transition: background 0.3s ease;
}

.membership_popup .membership_right form .membership_submitBtn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== Animations ===== */
@keyframes membership_fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes membership_slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .membership_popup-content {
    width: calc(100% - 2rem);
    padding: 2.5rem;
    max-height: 80vh;
    font-size: 1.7rem;
  }

  .membership_popup .membership_right form {
    gap: 2.2rem;
  }

  .membership_popup .membership_right form h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .membership_popup-content {
    width: calc(100% - 1.5rem);
    padding: 2rem 1.5rem;
    font-size: 1.6rem;
  }

  .membership_popup .membership_right form {
    gap: 2rem;
  }

  .membership_popup .membership_right form label {
    font-size: 1.6rem;
  }

  .membership_popup .membership_right form input,
  .membership_popup .membership_right form textarea {
    font-size: 1.6rem;
  }
}


/* !wait list popuip  */


/* Overlay (hidden by default) */
.waitlist_popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.waitlist_popup-overlay.active {
  display: flex;
  animation: waitlist_fadeIn 0.3s ease-in-out;
}

/* Modal */
.waitlist_popup-content {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  padding: 4rem;
  width: 90%;
  max-width: 650px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: waitlist_slideUp 0.3s ease-out;
  max-height: 85vh;
  overflow-y: auto;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #fff;
}

/* Close button */
.waitlist_closePopup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Form */
.waitlist_popup .waitlist_right form {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  font-size: 1.8rem;
}

.waitlist_popup .waitlist_right form h2 {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Labels */
.waitlist_popup .waitlist_right form label {
  color: #fff;
  font-size: 1.8rem;
  /* margin-bottom: 0.8rem; */
  display: block;
  font-weight: 500;
}

/* Inputs */
.waitlist_popup .waitlist_right form input[type="text"],
.waitlist_popup .waitlist_right form input[type="email"],
.waitlist_popup .waitlist_right form input[type="tel"] {
  font-family: var(--font-bw);
  font-size: 1.8rem;
  color: #fff;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.4rem 0.5rem 0.8rem 0.5rem;
  width: 100%;
  transition: border-color 0.3s ease;
  margin-bottom: 1.4rem;
}

.waitlist_popup .waitlist_right form input:focus {
  border-bottom: 1px solid #fff;
  outline: none;
}

/* Radios (bullets) */
.waitlist_fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.waitlist_fieldset legend {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
}

.waitlist_radio {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: 2rem;
  cursor: pointer;
}

.waitlist_radio input[type="radio"] {
  width: 1.4em;
  height: 1.4em;
  accent-color: #fff;
  /* modern browsers */
}

/* Conditional block */
.waitlist_conditional[hidden] {
  display: none !important;
}

/* Submit */
.waitlist_submitBtn {
  border: none;
  cursor: pointer;
  outline: none;
  margin: 1rem auto 0;
  background: rgba(217, 217, 217, 0.1);
  color: #fff;
  padding: 1.4rem 3rem;
  font-size: 1.8rem;
  /* border-radius: 8px; */
  transition: background 0.3s ease;
}

.waitlist_submitBtn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Animations */
@keyframes waitlist_fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes waitlist_slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .waitlist_popup-content {
    width: calc(100% - 2rem);
    padding: 2.5rem;
    max-height: 80vh;
    font-size: 1.7rem;
  }

  .waitlist_popup .waitlist_right form {
    gap: 2.2rem;
  }

  .waitlist_popup .waitlist_right form h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .waitlist_popup-content {
    width: calc(100% - 1.5rem);
    padding: 2rem 1.5rem;
    font-size: 1.6rem;
  }

  .waitlist_radio {
    margin-right: 1.4rem;
  }
}

.therapyOverviewCards .card .btnGradient {
  /* position: absolute;
  bottom: 3rem;
  right: 4.5rem; */
}

.footerPopup {
  position: fixed;
  bottom: 0;
  right: 0;
  border-radius: 2rem;
  background-color: rgba(217, 217, 217, 0.1);
  padding: 11rem 4rem 8rem 4rem;
  flex-direction: column;
  z-index: 99999;
  align-items: flex-end;
  backdrop-filter: blur(14px);

  /* Animation setup */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.footerPopup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.footerPopup .closeBtn {
  cursor: pointer;
  position: absolute;
  left: 4rem;
  top: 4rem;
  width: 5.6rem;
  transition: opacity 0.2s ease;

}

.footerPopup .closeBtn:hover {
  opacity: 0.7;
}


.footerPopup .content {
  max-width: 63rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.footerPopup .content a {
  padding: .9rem 2rem;
  background-color: transparent;
  font-size: 1.4rem;
  text-transform: none;
}

.footerPopup::before {
  content: "";
  position: absolute;

  inset: 0;
  padding: 1px;
  border-radius: 2rem;
  background: linear-gradient(90deg, #cccccc1c, #eeeeee8c);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}


.containerVO2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 0 8rem 0;
  position: relative;

  @media only screen and (max-width: 768px) {
    padding: 8rem 0 8rem 0;
  }

  @media only screen and (max-width: 575px) {
    padding: 6rem 0;
  }

  .vo2Gradient {
    position: absolute;
    left: -50%;
    top: -50%;

    @media only screen and (max-width: 768px) {
      left: -40%;
      top: -40%;
    }

    @media only screen and (max-width: 575px) {
      left: -20%;
      top: -20%;
      opacity: 0.7;
    }

  }
}

h1,
h2,
h3 {
  font-weight: 600;
}

.vo2-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 50%;
  font-family: var(--font-bw);
  max-width: 700px;
  position: relative;


  @media only screen and (max-width: 991.98px) {
    width: 70%;
  }

  @media only screen and (max-width: 768px) {
    width: 90%;
    padding: 2rem;
  }

  h1 {
    font-family: var(--font-bw);
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    margin-bottom: 1rem;
  }

  .subtitle {
    font-family: var(--font-bw);
    font-size: 1.4rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.26;
    letter-spacing: 0.14px;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    padding-bottom: 1rem;
  }

  label {
    display: block;
    margin: 12px 0 8px;
    font-family: var(--font-bw);
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
  }

  input,
  select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: solid 1px rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    color: #fff;
    margin-bottom: 10px;
  }

  ::placeholder {
    font-family: var(--font-bw);
    font-size: 1.4rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.26;
    letter-spacing: 0.14px;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
  }

  button {
    width: 100%;
    /* background: linear-gradient(135deg, #38bdf8, #22c55e); */
    padding: 1.4rem;
    border: none;
    border-radius: 50px;
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 2rem;
    cursor: pointer;
    border-radius: 100px;
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(35px);
    background-color: rgba(217, 217, 217, 0.1);
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.68px;
    text-align: left;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.hint {
  font-size: 0.8rem;
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.26;
  letter-spacing: 0.14px;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 8px;
  /* display: flex;
  align-items: end;
  gap: 5px; */


  a {
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
  }
}


.result-section {
  display: block;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 50%;
  font-family: var(--font-bw);
  max-width: 700px;
  position: relative;


  @media only screen and (max-width: 991.98px) {
    width: 70%;
  }

  @media only screen and (max-width: 768px) {
    width: 90%;
  }

  h2 {
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    margin-bottom: 1rem;
  }

  .graph-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: rgba(217, 217, 217, 0.15);
  }

  .info-block {
    display: flex;
    gap: 2rem;

    @media only screen and (max-width: 575px) {
      flex-direction: column;
    }


    img {
      width: 40%;
      border-radius: 10px;
      object-fit: cover;

      @media only screen and (max-width: 575px) {
        width: 100%;
        max-height: 20rem;
      }
    }

    .text {
      width: 60%;

      @media only screen and (max-width: 575px) {
        width: 100%;
      }

      h3 {
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.3;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
        margin-bottom: 1rem;
      }

      p {
        font-size: 1.4rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.26;
        letter-spacing: 0.14px;
        text-align: left;
        color: rgba(255, 255, 255, 0.8);
      }
    }
  }
}