@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&family=Montserrat:ital,wght@1,400;1,500;1,600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body{
    overflow-x: hidden !important;
}
/* Nav */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensure the navbar stays on top of other elements */
  font-weight: 500;
  font-size: 1em;
}
.navbar-nav{
  margin-right: 4%;
}
.nav-item{
  margin-right: 7%;
}
.nav-link{
  width: max-content;
}
.navbar-collapse{
  padding-right: 3%;
}


/* Custom CSS for the hero section */
.hero-section {
    background-color: #f8f9fa;
    padding: 6.25em 0; /* Adjust padding in em units */
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 13.75em; /* Adjust padding in em units */
  }
  
  .hero-text {
    margin-bottom: 0.625em;
    font-size: 3.75em; /* Adjust font size in em units */
    line-height: 0.9;
    font-weight: 600;
    color: #2F2651;
  }
  .hero-text .live{
    color: #6AD2BD;
  }
  
  .hero-content .download a{
    margin-right: 3%;
   }
  .hero-content .download a img {
    width: 20%;
   }
  .hero-content .download a:hover {
   cursor: pointer;
  }
  
  .hero-image {
    display: flex;
    align-items: center;
  }
  
  .vertical-content {
    padding: 1.25em;
  }
  
 
  
  /* Styling for the 'About Your Heal Intro' section */
  .about-you-heal-intro {
    background-color: #ffffff;
    padding: 11em 0;
  }
  
  .about-you-heal-intro h2 {
    margin-bottom: 0.625em;
    /* font-weight: 600; */
    font-size: 4.5em;
    color: #9672FB;
  }
  
  .about-you-heal-intro p {
    font-size: 2em;
    margin-bottom: 1.25em;
  }
  
  .about-you-heal-intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .desc .content-text{
    padding-left: 18%;
  }
  .desc p {
    font-size: 2em;
  }
  .desc h2 {
    font-size: 4.5em;
    color: #9672FB;
  }
  .desc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
   @media (max-width: 767px) {
    html, body {
      overflow-x: hidden;
    }
    body {
      position: relative
    }
    
    .hero-content {
      text-align: center;
      padding-left: 0;
    }
    
    .hero-text {
      font-size: 2.25em;
      line-height: 1.3;
    }
    
    .hero-content .btn {
      font-size: 0.75em;
      padding: 0.25em 0.5em;
      width: auto;
      margin-top: 0.625em;
    }
    
    .vertical-content {
      text-align: center;
    }
    .desc h2 {
      font-size: 2em;
      color: #9672FB;
    }
    
  }
  h2::before { 
    display: block; 
    content: " "; 
    margin-top: -285px; 
    height: 285px; 
    visibility: hidden; 
    pointer-events: none;
  }
  .vision li {
    font-size: 2em;
    padding-top: 1em;
  }
  .footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
  }

  .footer a {
    margin: 0 10px;
    color: #000;
    font-size: 20px;
  }
  .footer i {
    font-size: 28px; /* Adjust the size as needed */
  }