@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/*   font-family: "Work Sans", sans-serif;  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all .2s linear;
  outline: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  background-color: var(--page-bg-color);
}

html,
body {
  overflow-x: hidden;
}

a {
  color: var(--normal-white);
}

/* *********************************** */
/* Utility Classes: start */

:root {
  /* Typeface */
  --primary-typeface: "Work Sans", sans-serif;

  /* Colors */
  --primary-color: #DFF39A;
  --page-bg-color: #030305;
  --off-black: #333333;
  --normal-white: #ffffff;
  --para-color: #909090;
}

.desktop__max__width {
  max-width: 130rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}

.section__margin__bottom {
  margin-bottom: 14rem;
}

.section__heading__left {
  font-family: var(--primary-typeface);
  font-size: 6.4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 125%;
  margin-bottom: 2.4rem;
}

.section__heading__center {
  font-family: var(--primary-typeface);
  font-size: 6.4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 125%;
  text-align: center;
  margin-bottom: 6.4rem;
}

.primary__tint {
  color: var(--primary-color);
}


.primary__btn {
  height: 6.4rem;
  width: max-content;
  padding: 3.2rem 3.2rem;
  border-radius: 1.2rem;
  color: var(--off-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 4.8rem 0rem;
  cursor: pointer;
}

.primary__btn:hover {
  background: #acbd70;
}


.secondary__btn {
  height: 6.4rem;
  padding: 3.2rem 3.2rem;
  border-radius: 1.2rem;
  color: var(--normal-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 4.8rem 0rem;
  border: 2px solid var(--primary-color);
  text-align: center;
  cursor: pointer;
}

.secondary__btn:hover {
  background: var(--primary-color);
  color: var(--off-black);
}



/* header: start */
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 130rem;
  margin-inline: 2.4rem;
  padding-right: 2.4rem;
  padding-left: 2.4rem;
}

.logo__image {
  width: 24rem;
  height: auto;
  object-fit: contain;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--page-bg-color);
  box-shadow: 0 2px 16px hsla(73, 79%, 78%, 0.1);
  z-index: var(--z-fixed);
}

.nav {
  height: 7.2rem;

  font-family: var(--primary-typeface);
  font-size: 1.6rem;
}

.nav a:hover {
  color: var(--primary-color);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--normal-white);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo i {
  font-weight: initial;
  font-size: 2rem;
}

.nav__toggle {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 3rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

.blog__nav__link {
  margin-right: 5.6rem;
}

/* for mobiles and tablets */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 4rem;
    width: 100%;
    height: calc(100vh - 5.6rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .nav__list {
    background-color: var(--page-bg-color);
    padding-top: 1.6rem;
  }

  .logo__image {
    width: 16rem;
    height: auto;
    object-fit: contain;
  }
}

.nav__link {
  color: var(--normal-white);
  background-color: var(--page-bg-color);
  font-weight: 600;
  padding: 2rem 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  color: var(--primary-color);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 5.6rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/* DROPDOWN */
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 2rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 2rem 2rem 2rem 4rem;
  color: var(--normal-white);
  background-color: var(--page-bg-color);
  display: flex;
  align-items: center;
  column-gap: .8rem;
  font-weight: 600;
  transition: color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 2rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  color: var(--primary-color);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
  max-height: 100rem;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--page-bg-color);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1.6rem;
  }

  .nav__link {
    padding-inline: 1.6rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(6.4rem + 3.2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 4.8rem;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .4rem;
  }

  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    /* right: 0; */
    top: 9.6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;

    width: max-content;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1.6rem 5.6rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1.6rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .8rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 8.8rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover>.dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

/* header: end */



/* hero: start */
#hero {
  background: url(../assets/hero/hero_image_1.webp) no-repeat center center/cover;
  height: 110rem;
  width: 100vw;
}

.hero__container {
  height: 100%;
}

.hero__content__box {
  width: 72rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* margin-top: 15rem; */
}

.hero__title {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 150%;
  letter-spacing: 1px;
  color: var(--primary-color);
  margin: initial;
}

.hero__heading {
  font-family: var(--primary-typeface);
  font-size: 8rem;
  font-weight: 700;
  line-height: 115%;
  color: var(--normal-white);
}

.fitness__badge {
  width: 19rem;
  height: auto;
  object-fit: contain;
}

.hero__para {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 150%;
  color: var(--normal-white);
}

/* hero: end */



/* stats: start */
.stats__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stats__card {
  display: flex;
  gap: .8rem;
  align-items: center;
  width: 100%;
}

.stats__card h1 {
  font-family: var(--primary-typeface);
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 100%;
  color: var(--normal-white);
}

.stats__card p {
  font-family: var(--primary-typeface);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 125%;
  color: var(--normal-white);
}

/* stats: end */


/* product stripe: start */
.product__stripe__container {
  width: 100%;
}

.stripe__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 6.4rem;
}

.product__card__container {
  display: flex;
  gap: 3.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.product__card {
  flex: 1;
  max-width: 30rem;
  min-width: 28rem;

  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.product__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1.6rem;
  margin-bottom: 1.8rem;
}

.product__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .8rem;
}

.product__name,
.product__price {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--normal-white);
}

.product__price {
  font-size: 2rem;
}

.product__para {
  font-family: var(--primary-typeface);
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 125%;
  color: var(--normal-white);
  margin-bottom: 1.8rem;
}

.product__card .primary__btn {
  height: 6rem;
  padding: 3.2rem 2.8rem;
  border-radius: 0.8rem;
  margin: 0rem 0rem;
}

/* product stripe: end */


/* This is general styling for content sections */
/* Content: start */
.content__container {
  width: 100%;
  display: flex;
  gap: 16rem;
  justify-content: space-between;
  align-items: center;
}

.general__para {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 175%;
  color: var(--para-color);
  margin-bottom: 2.4rem;
}

.content__image {
  width: 49rem;
  height: auto;
  object-fit: contain;
}

.text__content .primary__btn {
  margin: initial;
  margin-right: 1.6rem;
}

.cardio__head__mobile {
  display: none;
}

/* Content: end */



/* review: start */
.review__container {
  width: 100%;
}

.review__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding: 0rem 2.4rem; */
}

.reviewer__image {
  height: 6.4rem;
  width: 6.4rem;
  object-fit: contain;
  margin-bottom: 1.6rem;
}

.reviewer__name {
  font-family: var(--primary-typeface);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 125%;
  color: var(--normal-white);
  text-align: center;
  margin-bottom: 1.2rem;
}

.reviewer__words {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 165%;
  color: var(--normal-white);
  text-align: center;
}

.review__card__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-column-gap: 4rem;
  grid-row-gap: 4.8rem;
}

/* review: end */



/* Blog: start */
.blog__card__container {
  display: flex;
  gap: 3.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.blog__card {
  flex: 1;
  max-width: 38rem;
  min-width: 30rem;

  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.blog__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.blog__heading {
  font-family: var(--primary-typeface);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 150%;
  color: var(--normal-white);
}

.blog__text {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 150%;
  color: var(--para-color);
}

.read__more__cta {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 175%;
  color: var(--normal-white);
  text-decoration: underline;
}

/* Blog: end */



/* payment: start */
.payment__heading {
  font-family: var(--primary-typeface);
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 125%;
  color: var(--normal-white);
}

.payment__para {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 150%;
  color: var(--normal-white);
  margin-bottom: 3.2rem;
}

.payment__point {
  display: flex;
  gap: 1.4rem;
  align-items: center;

  font-family: var(--primary-typeface);
  font-size: 2rem;
  font-weight: 500;
  color: var(--normal-white);

  margin-bottom: 1.6rem;
}

.tick__image {
  height: 2.4rem;
  width: 2.4rem;
  object-fit: contain;
}

.payment__container {
  display: flex;
  gap: 16rem;
  justify-content: space-between;
  align-items: center;
}

.payment__image {
  width: 36rem;
  height: auto;
  object-fit: contain;
}

/* payment: end */



/* footer: start */
footer {
  background: #1B1C17;
  /* padding: 10rem 0rem; */
  padding-top: 10rem;
}

.footer__container {
  display: flex;
  gap: 3.2rem;
  flex-wrap: wrap;
  justify-content: left;
  /* width: 100%; */
}

.foot__menu {
  flex: 1;
  max-width: 30rem;
  min-width: 20rem;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__menu__title {
  font-family: var(--primary-typeface);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  color: var(--normal-white);
}

.footer__link {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
  text-decoration: none;
  color: var(--normal-white);
}

.footer__link:hover {
  text-decoration: underline;
}

.copyright {
  padding: 2.4rem 0rem;
  border-top: 1px solid #e5e5e533;
  margin-top: 7.2rem;
}

.copyright__container {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.logo img {
  width: 16rem;
  height: auto;
  object-fit: contain;
}

.copyright__text p {
  font-family: var(--primary-typeface);
  font-weight: initial;
  font-size: 1.6rem;
  color: #e5e5e5;
  text-align: center;
}

/* footer: end */



/* ************************ Tier_1_category.html ************************ */
.breadcrumbs {
  font-family: var(--primary-typeface);
  font-size: 1.6rem;
}

.breadcrumbs a {
  text-decoration: none;
  font-weight: 200;
  color: #ffffff;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: var(--primary-color);
}

.banner__category {
  background: url(../assets/tier_1_template/tier_1_cover.png) no-repeat center center/cover;
  width: 100vw;
  height: 48rem;
}

.banner__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner__heading {
  font-family: var(--primary-typeface);
  font-weight: 600;
  font-size: 7.2rem;
  color: var(--normal-white);
  margin-bottom: 1.6rem;
}



/* ************************ Tier_2_csubategory.html ************************ */
.banner__subcategory {
  background: url(../assets/tier_2_template/tier_2_cover.png) no-repeat center center/cover;
  width: 100vw;
  height: 48rem;
}



/* ************************ products.html ************************ */
.banner__products {
  background: url(../assets/products_listing/banner_product.png) no-repeat center center/cover;
  width: 100vw;
  height: 48rem;
}

.product__listing__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-column-gap: 4rem;
  grid-row-gap: 4.8rem;
  place-items: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin: 7.2rem auto;

}

.page__btn {
  min-height: 4.0rem;
  width: max-content;
  padding: 1.6rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--primary-typeface);
  font-size: 1.4rem;
  color: var(--normal-white);
  border: 1px solid var(--primary-color);
  border-radius: .4rem;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.page__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}

.page__num a {
  display: inline-block;
  min-height: 4.0rem;
  min-width: 4.0rem;
  padding: 1.6rem;
  border-radius: .4rem;
  border: 1px solid var(--primary-color);
  font-family: var(--primary-typeface);
  font-size: 1.4rem;
  color: var(--normal-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.current__page,
a.current__page {
  background-color: var(--primary-color);
  color: var(--page-bg-color);
}




/* ************************ legal.html ************************ */
.banner__legal {
  background: url(../assets/legal/legal_02.png) no-repeat center center/cover;
  width: 100vw;
  height: 48rem;
}

.legal__heading {
  font-family: var(--primary-typeface);
  font-size: 4.8rem;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 125%;
  margin-bottom: 2.4rem;
}

.legal__para {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 175%;
  color: hsl(0, 0%, 80%);
  margin-bottom: 2.4rem;
}

.legal__hyp__link {
  font-family: var(--primary-typeface);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 175%;
  color: hsl(0, 0%, 80%);
  text-decoration: underline;
  transition: color .2s;
}

.legal__hyp__link:hover {
  color: var(--primary-color);
}



/* ********************* Blog text content page ********************* */
.blog__text__template {
  max-width: 75%;
  margin: 0 auto;
}

.blog__text.general__para {
  line-height: 175%;
  color: #EBEBEB;
}

ol li {
  margin-left: 2rem;
}

.blog__content__image {
  width: 100%;
  height: auto;
  object-fit: contain;

  margin: 3.2rem auto;
  border-radius: 1.6rem;
}

/* ********************* Blog Listing Page ********************* */
.blog__card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.6rem;
  margin-bottom: 1.6rem;
}

.blog__card h4 {
  font-family: var(--primary-typeface);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--normal-white);
  margin-bottom: .6rem;
}

.blog__card p,
.readmore__btn {
  font-family: var(--primary-typeface);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--normal-white);
  /* margin-bottom: .4rem; */
  line-height: 135%;
  height: 100%;
}

.author__details {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.author__details.general__para {
  line-height: initial;
}

.author__details img {
  width: 2rem;
  height: auto;
  border-radius: initial;
  object-fit: contain;
  margin: auto 0;
}

.blog__listing__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  /* grid-column-gap: 3.2rem; */
  grid-row-gap: 4.8rem;
  justify-items: center;
}

.load__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.readmore__btn {
  text-decoration: underline;
}

.blog__card a:hover {
  text-decoration: underline;
}


/* ********************* About Us page: start ********************* */
.about__page__container {
  gap: 8rem;
}

.about__page__image {
  width: 56rem;
  height: auto;
  object-fit: contain;
}


/* who section: start */
.who__heading {
  margin-bottom: 4rem;
}

.who__para {
  text-align: center;
  max-width: 80%;
  margin: 0rem auto;
  font: 1.8rem;
}

/* who section: end */



/* offerings: start */
.above__heading__text {
  font-family: var(--primary-typeface);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 1.4rem;
  text-transform: uppercase;
  margin-bottom: .4rem;
  color: var(--primary-color);
}

.offering__content__heading {
  font-family: var(--primary-typeface);
  font-size: 4.8rem;
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 1.6rem;
}

.offering__box {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  justify-content: space-between;
  margin-bottom: 12.4rem;
}

.offering__content {
  max-width: 60rem;
}

.offering__image {
  max-width: 40rem;
  height: auto;
  object-fit: contain;
  border-radius: 1.6rem;
}

/* offerings: end */



/* commitment: start */
.commitment__container {
  background: url(../assets/about__us__page/commitment__bg.png) no-repeat center center/cover;

  padding: 14.4rem 0rem;
  border-radius: 2.4rem;
  outline: 4px solid hsla(73, 79%, 78%, 0.72);
}

.commitment__heading {
  margin-bottom: 4rem;
}

.commitment__para {
  text-align: center;
  color: var(--normal-white);
  max-width: 80%;
  margin: 0rem auto;
}

/* commitment: end */

/* ********************* About Us: end ********************* */


/* thank you page */

.thank-you-btn-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.thank-you-btn {
  outline: 1.2rem solid hsla(73, 79%, 78%, 0.2);

  font-size: 2.4rem;

  height: 8rem;
  padding: 3.2rem 7.2rem;

  margin-top: 2.4rem;
}

.thank-you-page-secondary-btn {
  margin-top: initial;
}

.thank-you-container {
  margin-top: 14rem;
}


/* signup page: */
.signup-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.signup-email-field {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  background: #030305;
  border: 1.6px solid rgb(223, 243, 154, 0.8);
  outline: none;
  padding: 2rem 2rem;
  width: 70%;
  border-radius: 1rem;
}

.signup-email-field:focus {
  outline: 8px solid rgba(224, 243, 154, 0.2);
}

.signup-btn {
  outline: none;
  border: none;
  margin: initial;
}

.signup__container {
  margin-top: 12rem;
}