.navbar{
    background-color: #FFF;
    height: 80px;
    margin: 20px;
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: -5px 0px 20px -5px rgba(0,0,0,0.59);
    -webkit-box-shadow: -5px 0px 20px -5px rgba(0,0,0,0.59);
    -moz-box-shadow: -5px 0px 20px -5px rgba(0,0,0,0.59);
}

.navbar-brand{
    font-weight: 500;
    font-size: 24px;
    color: #29ABE2;
    transition: 0.3s color;

}

.FAQ_button{
    background-color: #29ABE2;
    color: #FFF;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;

}

.FAQ_button:hover{
    background-color: #0000FF;

}

.navbar-toggler{
    border: none;
    font-size: 3rem;

}

.navbar-toggler:focus, .btn-close:focus{
    box-shadow: none;
    outline: none;
}

.nav-link{
    color: #666777;
    font-weight: 500;
    position: relative;
}

.nav-link:hover{
    color: black;
}

@media(min-width: 991px){

    .nav-link::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0%;
        height: 2px;
        background-color: #29ABE2;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before, .nav-link.active::before{
        width: 100%;
        visibility: visible;
    }
}



.about_section{
    background: url(images/black-girl-doctor-and-nurse-72.jpg) no-repeat left;
    background-size: 55%;
    background-color: #fdfdfd;
    overflow: hidden;
    padding: 100px 0;
    border-top: #29ABE2;

}

.inner_container{
    width: 55%;
    float: right;
    background-color: #fdfdfd;
    padding: 150px;
    box-shadow: -5px 0px 20px -5px rgba(0,0,0,0.59);
    -webkit-box-shadow: -5px 0px 20px -5px rgba(0,0,0,0.59);
    -moz-box-shadow: -5px 0px 20px -5px rgba(0,0,0,0.59);
}
.inner_container h1{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
}

.text{
    font-size: 13px;
    color: #545454;
    text-align: justify;
    margin-bottom: 40px;
}

@media screen and (max-width:1200px) {
    .inner_container{
        padding: 80px;
        
    }
}

@media screen and (max-width:1000px) {
    .about_section{
        background-size: 100%;
        padding: 100px 40px;
    }
    .inner_container{
        width: 100%;
        
    }
}

@media screen and (max-width:600px) {
    .about_section{
        padding: 0;
    }
    .inner_container{
        padding: 60px;
        
    }
}


.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }
  .whatsapp-icon {
    margin-top: 16px;
  }

  /* for mobile */
  @media screen and (max-width: 767px){
    .whatsapp-icon {
      margin-top: 10px;
    }
    .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 10px;
      font-size: 22px;
    }
  }

  
.heroes .container {
    height: 600px;
    padding: 20px;
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  
  .heroes .container img {
    width: 50%;
    height: 50%;
  }
.hero-text {
    width: 80%;
  }
  
  .hero-text h1 {
    font-size: 3.3rem;
    font: "montserrat";
    margin-bottom: 12px;
    color: #9E005D;
  }
  
  .hero-text p {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .heroes button {
    padding: 1em 2.1em 1.1em;
    border-radius: 20px;
    margin: 8px;
    border: none;
    background-color: #9E005D;
    color: #fff;
    font-weight: 800;
    font-size: 0.85em;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0em -0.2rem 0em #ccc inset;
    transition: color 3s ease-in-out;
  }
  
  .heroes button:hover {
    background-color: transparent;
    color: #9E005D;
    border: 3px solid #29ABE2;
    cursor: pointer;
  }
  
  /* Media queries */
  
  @media (max-width: 884px) {
    .heroes .container {
      margin-top: 10px;
      flex-direction: column;
      max-height: 50vh;
      padding-bottom: 30px;
    }
    .hero-text {
      width: 100%;
      text-align: center;
    }
    .hero-text h1 {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 678px) {
    .hero-text h1 {
      font-size: 2rem;
    }
  }
 