@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* SPACING SYSTEM (px) 2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
FONT SIZE SYSTEM (px) 10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 /
  62 / 74 / 86 / 98

  colors
  main color: #FFFFFF
  tints:  #1d1e1c
  shades: 
  greys : #ff2231
    /* #ff0000; 

  font-size
  400(regular)
  500 (medium) 
  600(semi bold) 
  700(bold)
  1rem=10px 
  
  setup
  10px=1rem */

:root {
  --color-text: #ffffff;
  --color-background: #121212;
  --color-primary: #ff2231;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--color-background);
  color: var(--color-text);
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  /* transition: transform 1s, opacity 1s; */
  transition: all 0.5s ease-in-out;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.reusable-heading {
  font-size: 5rem;
  margin: 4rem auto;
}

/* ::-moz-selection {
  color: var(--color-background);
  background: var(--color-text);
} */
::selection {
  color: var(--color-text);
  background: var(--color-primary);
}

/* resuable code */
.container {
  max-width: 140rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid--colums--1 {
  align-items: center;
  grid-template-columns: 1fr;
}

.grid--colums--2 {
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}

.grid--colums--3 {
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

.grid--colums--4 {
  /* align-items: center; */
  grid-template-columns: repeat(4, 1fr);
}

.grid--colums--5 {
  /* align-items: center; */
  grid-template-columns: repeat(5, 1fr);
}

.grid-center-v {
  align-items: center;
}

/*  */
.hero-back {
  background-image: linear-gradient(to right bottom, #505050, #d3d3d300),
    url(../asset/hero.png);
}

.wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 8rem;
}

/* ///////////////////////////////////////////////////////////////////////////// */
/* navbar style */
/* ///////////////////////////////////////////////////////////////////////////// */
.nav-wrap img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
  aspect-ratio: auto;
  /* Explicitly tell browsers to respect the image's natural aspect ratio */
  /* or contain, depending on your needs */
}

.nav-wrap img {
  box-sizing: border-box;
}

@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    .nav-wrap img {
      height: auto;
      /* Let Safari determine the height based on width */
      max-height: 9rem;
    }
  }
}

.nav-wrap {
  position: absolute;
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0rem 6.4rem;
  padding: 2rem 0rem;
  /* padding-top: 1rem; */
  top: 0;
  right: 0;
  left: 0;
}

.nav-wrap ul {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 2rem;
  gap: 2rem;
}

.nav-wrap li a {
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.5s;
}

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

.nav-icon-wrap {
  display: none;
  border: none;
  background-color: transparent;
}

.icon-nav {
  font-size: 4rem;
}

.hidden {
  display: none;
}

/* resualble button */
.btn {
  color: var(--color-text);
  background-color: var(--color-primary);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  padding: 1.6rem 2.8rem;
  border-radius: 9px;
  border: none;
  font-size: 2rem;
  transition: all 0.3s;
}

.btn:hover {
  color: var(--color-text) !important;
  opacity: 0.7;
}

.btn2 {
  color: var(--color-text);
  background-color: var(--color-primary);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  padding: 1.6rem 2.8rem;
  border-radius: 9px;
  border: none;
  font-size: 2rem;
  transition: all 0.3s;
}

.btn2:hover {
  color: var(--color-text) !important;
  opacity: 0.7;
}

/*  hERO SECTION*/
/* ////////////////////////////////////////////////////// */
.hero-header {
  max-width: 150rem;
  /* align-self: center; */
}

.hero-wrap {
  justify-content: center;
  align-items: center;
}

.hero-heading h1 {
  font-size: 8.6rem;
  letter-spacing: 2px;
  font-family: "Bebas Neue", sans-serif;
}

.hero-heading span {
  display: block;
  color: var(--color-primary);
}

.hero-heading {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.resuable-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resuable-title h1 {
  font-size: 5.6rem;
  letter-spacing: 2px;
  font-family: "Bebas Neue", sans-serif;
}

.resuable-title p {
  font-size: 2rem;
}

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

/* why choose */
.why-title {
  align-items: center;
  justify-content: center;
  margin: 12rem;
}
.why-title p {
text-align:center;
}

.why-wrap {
  margin: 12rem auto;
}

.why-align-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  border: 0.8px solid var(--color-primary);
  padding: 2rem 4rem;
  cursor: pointer;
}

.why-icon img {
  width: 5rem;
  height: 5rem;
}

.why-icon {
  font-size: 4.4rem;
}

.why-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-text h3 {
  font-size: 4rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  color: var(--color-primary);
}

.why-text p,
.why-text ul {
  font-size: 1.8rem;
}

/* about */
/* .///////////////////////////////////////////////////// */
.about {
  position: relative;
  margin: 16rem auto;
}

.about-img {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right bottom, #060606b6, #64646400),
    url(../asset/about.png);
  background-size: cover;
  background-position: center;
}

.about-back {
  background-image: linear-gradient(to right bottom, #000000ea, #1e1d1dd8),
    url(../asset/thumb.png);
}

.about-element p {
  font-size: 1.8rem !important;
}

.about-element {
  gap: 3rem;
}

/* gallery */
.gallery {
  margin: 16rem auto;
  display: flex;
  align-items: center;
  text-align: center;
}

.swiper {
  width: 100%;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  object-fit: fill;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  border-radius: 9px;
}

.swiper-slide img:hover {
  transform: translateY(-2rem);
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-text) !important;
}

.swiper-pagination-bullet {
  background: #ffffff !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-text) !important;
}

/* .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-wrapper {
  width: 100%;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--color-text) !important;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  align-items: center;
} */

/* testimonials */

/* 
font-family: "Bebas Neue", sans-serif;
letter-spacing: 2px; 
*/
/* SPACING SYSTEM (px) 2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
FONT SIZE SYSTEM (px) 10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 /
62 / 74 / 86 / 98 */

.section {
  transition: transform 1s, opacity 1s;
}

.section--hidden {
  opacity: 0;
  transform: translateY(12rem);
}

::-webkit-scrollbar {
  width: 14px;
  height: 100%;
  background-color: #ffffff23;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#020202, #272424);
  border-radius: 20px;
}

.chat {
  position: fixed;
  bottom: 1rem;
  right: 2rem;
  z-index: 100;
}

.chat-icon {
  width: 8rem;
  height: 8rem;
  font-size: 4rem;
  color: var(--color-text);
  cursor: pointer;
}

/* popup form */
.popup {
  position: fixed;
  display: flex;
  justify-content: center !important;
  align-items: center;
  z-index: 100000;
  width: 100%;
  height: 100vh;
  padding: 2rem 4rem;
  backdrop-filter: blur(10px);
  background-color: #02020276;
  display: none;
}

.popup label {
  width: 50%;
  /* align-self: start; */
}

.popup input {
  width: 50%;
}

@media (max-width: 32rem) {
  .popup label {
    width: 100%;
    /* align-self: start; */
  }

  .popup input {
    width: 100%;
  }
}

/*  */
.popWrap {
  position: relative;
  transition: all 0.8s ease-in-out;
}

.gymImg {
  z-index: 9990000000000000;
  position: fixed;
  height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 2px;
  background-color: #020202e2;
  transition: all 0.8s ease-in-out;
}

.gymImg img {
  margin: 10px;
  height: 80%;
  width: auto;
}

.popBtn {
  position: fixed;
  top: 0;
  right: 0;
  margin: 4rem;
  z-index: 90293883888888800000;
  font-size: 4rem;
}

.popBtn button {
  border: none;
  background-color: transparent;
  color: #ffffff;
  font-size: 2.8rem;
  transition: all 0.3s;
  cursor: pointer;
}

no-scroll {
  overflow: hidden;
}