.header-wrapper{
    animation: backgroundFadeIn 2s ease-in-out;
}


@keyframes backgroundFadeIn {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}




/* Mobile Screens */
@media only screen and (max-width: 991.98px) {
    
    .about-row{
        width: 100%;
    } 
    .header{
        background-size: auto;
        background-position: bottom;
    }
    .header .doctor-image img{
        display: none;
    }
    
}

.grid {
    display: flex;
    width: 100%;
    margin: 0 auto;
  }

  .grid-item {
    width: calc(33.333% - 10px);
    margin-bottom: 10px;
  }

  .grid-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
  }