* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #111 0%, #000 60%);
  color: #eaeaea;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.navbar {
  position: relative;
  z-index: 9999;
}

/* NAVBAR */
header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
}

.logo span {
  color: #00ff99;
}

nav a {
  color: #ccc;
  margin-left: 25px;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #00ff99;
}

/* HERO */
/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: url("hero-poster.jpg") center/cover no-repeat;
}

/* HERO VIDEO */
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* DARK OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: absolute;
  /* z-index: 2; */
  text-align: center;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
}

.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  text-align: center;
}

.hero-content span {
  color: #00ff99;
}

.hero-content button {
  margin-top: 20px;
  padding: 14px 40px;
  border: none;
  background: #00ff99;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
}


/* SECTIONS */
section {
  padding: 100px 60px;
  text-align: center;
}

.about-cards,
.plans {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.card, .plan {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  transition: 0.4s;
}

.card:hover, .plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0,255,153,0.3);
}
.trainer {
  background: #020617;
  text-align: center;
}

.trainer-box {
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trainer img {
  width: 280px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.trainer-info {
  text-align: left;
}

.trainer-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}


/* MAP */
.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 20px;
}

/* POPUP */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.popup-box {
  background: #111;
  padding: 40px;
  border-radius: 20px;
  width: 300px;
  margin: 15% auto;
}
.subtitle {
  color: #aaa;
  margin-bottom: 40px;
}

/* ABOUT
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
} */

/* PRICING */
/* .plans {
  background: #0f172a;
  text-align: center;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.plan {
  background: #020617;
  padding: 40px 25px;
  border-radius: 18px;
  border: 1px solid #1e293b;
}

.plan .price {
  font-size: 2rem;
  margin: 15px 0;
  color: #22c55e;
}

.plan.popular {
  border: 2px solid #22c55e;
  transform: scale(1.05);
} */
/* .plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto;
}

.plan {
  background: #111827;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #1f2937;
  transition: 0.3s;
  position: relative;
}

.plan.popular {
  border: 2px solid #00ff99;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ff99;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
}

.plan .price {
  font-size: 2.5rem;
  color: #00ff99;
  margin: 20px 0;
  font-weight: bold;
}

.plan ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.plan ul li {
  margin: 10px 0;
  color: #d1d5db;
}

.plan-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #00ff99;
  color: #00ff99;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.plan-btn:hover {
  background: #00ff99;
  color: #000;
} */
.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}


/* CONTACT */
.contact-box {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info {
  max-width: 300px;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
}

.contact-form button {
  background: #00ff99;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.testimonial-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 15px;
  width: 350px;
  border-left: 4px solid #00ff99;
}

.testimonial-card p {
  font-style: italic;
  color: #9ca3af;
  margin: 15px 0;
  line-height: 1.6;
}

.stars {
  font-size: 0.9rem;
}
/* SCROLL ANIMATION */
.card, .plan, .trainer-box, .contact-box {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
.contact-form select {
  padding: 12px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
}

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(37,211,102,0.5);
  z-index: 999;
}
.transform img {
  width: 240px;
  border-radius: 12px;
  margin: 10px;
  transition: 0.4s;
}

.transform img:hover {
  transform: scale(1.05);
}

/* TOP ROW */
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* MAP */
.map-box iframe {
  width: 100%;
  height: 230px;     /* 🔥 SMALL MAP */
  border-radius: 12px;
  border: none;
}

/* ADDRESS */
.address-box {
  background: #111827;
  padding: 25px;
  border-radius: 12px;
}

.address-box h3 {
  color: #22c55e;
  margin-bottom: 10px;
}

.address-box p {
  color: #d1d5db;
  margin: 8px 0;
  font-size: 0.95rem;
}

/* FORM */
/* ===== CONTACT SECTION (PREMIUM) ===== */
.contact {
  background: #0b1220;
  padding: 80px 8%;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* MAP + ADDRESS ROW */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

/* SMALL MAP */
.map-card iframe {
  width: 100%;
  height: 180px;   /* 🔥 SMALL & CLEAN */
  border-radius: 14px;
  border: none;
}

/* ADDRESS CARD */
.address-card {
  background: #111827;
  padding: 25px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-card h3 {
  color: #22c55e;
  margin-bottom: 10px;
}

.address-card p {
  color: #d1d5db;
  margin: 6px 0;
  font-size: 0.95rem;
}

/* ENQUIRY FORM */
.enquiry-box {
  max-width: 420px;
  margin: 50px auto 0;
  background: #111827;
  padding: 30px;
  border-radius: 16px;
}

.enquiry-box h3 {
  text-align: center;
  color: #22c55e;
  margin-bottom: 20px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enquiry-form input,
.enquiry-form select {
  padding: 12px;
  background: #020617;
  border: 1px solid #1f2937;
  color: white;
  border-radius: 8px;
}

.enquiry-form button {
  margin-top: 10px;
  background: #22c55e;
  color: #020617;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-form button:hover {
  background: #16a34a;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-row {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    height: 160px;
  }
}

.gym-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px 8%;
  background: #020617;
}

.gym-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.gym-gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gym-gallery {
    grid-template-columns: 1fr;
  }
}

.why-us {
  background: #0b1220;
  padding: 80px 8%;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.why-card {
  background: #111827;
  padding: 30px;
  border-radius: 16px;
  font-size: 1.1rem;
  color: #e5e7eb;
  transition: 0.4s;
}

.why-card:hover {
  background: #22c55e;
  color: #020617;
  transform: translateY(-8px);
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.google-review {
  background: #0b1220;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 20px 30px;
  max-width: 360px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.google-review img {
  width: 40px;
}

.google-review p {
  color: #e5e7eb;
  font-size: 0.95rem;
  margin: 0;
}

.google-review a {
  margin-left: auto;
  color: #22c55e;
  font-size: 0.9rem;
  text-decoration: none;
}

.motion-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 70vh;
}

.motion-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  overflow: hidden;
}

.motion-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.motion-box:hover::before {
  transform: scale(1.25);
}

.motion-box h3 {
  position: relative;
  z-index: 2;
}

/* BACKGROUNDS */
.strength::before {
  background-image: url("https://images.unsplash.com/photo-1583454110551-21f2fa2afe61");
}

.cardio::before {
  background-image: url("https://images.unsplash.com/photo-1558611848-73f7eb4001a1");
}

.combat::before {
  background-image: url("https://images.unsplash.com/photo-1599058917212-d750089bc07c");
}

/* DARK OVERLAY */
.motion-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
@media (max-width: 768px) {
  .motion-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .motion-box {
    height: 240px;
  }
}

.pricing-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pricing-box {
  background: #020617;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  text-align: center;
  animation: fadeUp 0.5s ease;
}

.pricing-box h2 {
  margin-bottom: 30px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.price-card {
  background: #0b1220;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #1f2937;
}

.price-card h3 {
  color: #22c55e;
}

.price-card button {
  margin-top: 15px;
  padding: 10px 25px;
  background: #22c55e;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
}

/* .facilities {
  padding: 100px 8%;
  background: #0b1220;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #ffffff;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

CARD
.facility-card {
  position: relative;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
} 
 
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 30px;
  width: 100%;
  padding-bottom: 50px; 
 }

.facility-card { 
opacity: 1 !important; 
  transform: none !important; 
  display: block;
}
.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; 

.facilities-grid {
  display: grid !important; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 20px;
  padding: 20px 0;
  width: 100%;
}

.facility-card {
  position: relative;
  height: 350px; 
  border-radius: 15px;
  overflow: hidden;
  display: block;
  opacity: 1 !important; 
  transform: none !important; 
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}  */
  .facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* This creates exactly 3 columns */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.facility-card {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* On Mobile, switch to 1 column */
@media (max-width: 768px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }
}
/* DARK OVERLAY */
.facility-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

/* TEXT */
.facility-card .content {
  position: absolute;
  bottom: 25px;
  left: 20px;
  right: 20px;
  color: #fff;
}

.facility-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.facility-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* HOVER EFFECT */
.facility-card:hover {
  transform: scale(1.05);
  transition: 0.4s ease;
}

/* ENTRY ANIMATION */
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* MODAL BACKDROP */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* MODAL BOX */
.modal-content {
  background: #0b1220;
  color: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 900px;
  animation: scaleUp 0.4s ease;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
}
/* ===== PRICING POPUP ===== */
.pricing-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.pricing-box {
  background: #111827;
  color: white;
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  animation: scaleUp 0.3s ease;
}

.pricing-box h2 {
  margin-bottom: 20px;
}

.plan {
  background: #1f2933;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

@keyframes scaleUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

section {
  padding: 80px 8%;
}
/* Ensure the section has a background and visibility */
.plans {
  background: #0b1220;
  padding: 100px 8%;
  text-align: center;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.plan-box {
  background: #111827;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #1f2937;
  position: relative;
  transition: 0.3s ease;
  opacity: 1 !important; /* Forces visibility */
  transform: none !important; /* Disables the hidden animation */
}

/* Featured / Popular Card Styling */
.plan-box.featured {
  border: 2px solid #00ff99;
  transform: scale(1.05) !important;
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ff99;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.plan-box .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00ff99;
  margin: 20px 0;
}

.plan-box ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.plan-box li {
  margin: 12px 0;
  color: #9ca3af;
}

/* .join-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid #00ff99;
  color: #00ff99;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.join-btn:hover {
  background: #00ff99;
  color: #000;
} */

/* Mobile Fix */
@media (max-width: 768px) {
  .plan-box.featured {
    transform: scale(1) !important;
  }
}

.pricing-section {
    padding: 100px 8%;
    background: #020617;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-box {
    background: #0b1220;
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid #1f2937;
    position: relative;
    transition: 0.4s;
}

/* Featured / Popular Glow */
.price-box.featured {
    border: 2px solid #00ff99;
    box-shadow: 0 10px 30px rgba(0, 255, 153, 0.1);
    transform: scale(1.05);
}

/* Premium / PT Styling */
.pt-style { border: 2px solid #3b82f6; }
.premium-style { border: 2px solid #a855f7; }

.price-box .price {
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
    margin: 20px 0;
}

.price-box .price span { font-size: 1rem; color: #9ca3af; }

.price-box ul { list-style: none; text-align: left; margin-bottom: 30px; }
.price-box li { margin: 12px 0; color: #d1d5db; }

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff99;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.75rem;
}

.platinum { background: #a855f7; color: #fff; }

.join-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-decoration: none;
    border: 2px solid #00ff99;
    color: #00ff99;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.join-btn:hover {
    background: #00ff99;
    color: #000;
}

/* PT Button Color */
.pt-style .join-btn { border-color: #3b82f6; color: #3b82f6; }
.pt-style .join-btn:hover { background: #3b82f6; color: #fff; }

/* Premium Button Color */
.premium-style .join-btn { border-color: #a855f7; color: #a855f7; }
.premium-style .join-btn:hover { background: #a855f7; color: #fff; }

/* Initial state: Hidden and slightly shifted down */
.hidden-state {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Final state: Visible and in original position */
.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Optional: Add a slight delay for grid items to appear one by one */
.price-box:nth-child(2) { transition-delay: 0.2s; }
.price-box:nth-child(3) { transition-delay: 0.4s; }
.price-box:nth-child(4) { transition-delay: 0.6s; }

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00ff9c;
  margin: 4px 0;
  border-radius: 2px;
}

/* Menu (Desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: -220px;              /* hidden outside screen */
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    width: 180px;
    padding: 15px;
    border-radius: 12px;
    list-style: none;

    opacity: 0;
    transition: right 0.35s ease, opacity 0.35s ease;
  }

  .nav-links.show {
    right: 20px;                /* slide in */
    opacity: 1;
  }

  .nav-links li a {
    color: #fff;
    padding: 10px;
    border-radius: 8px;
  }

  .nav-links li a:hover {
    background: #00ff9c;
    color: #000;
  }
}

/* when i want to stop video playback in mobile 
@media (max-width: 768px) {
  .hero video {
    display: none;
  }
} */

@media (max-width: 768px) {
  * {
    max-width: 100%;
  }

  section, div {
    overflow-x: hidden;
  }
}
