          
.bios_list{
    display:flex;
    justify-content: space-between;
}

  .doc_library_list .bio_photo {
       width:200px;
       height:158px;
       overflow:hidden;
       position: relative;
   }       
   
   .bio_photo .doc_photo {
       width:100%;
       height:auto;
   }
   
   
      .doc_library_list .biooverlay {
            width:100%;
            height:100%;
            padding:4px 0 0 5px;
            background:rgba(255,255,255, 0.9);
           
            position: absolute;
            top:110px;
            left:0;
            transition:all 0.3s;
       }

       .bio_photo:hover .biooverlay{
            top: 0;
       }
       
           .biooverlay h5 {
               font-size:15px;
               color:#01487f;
           }
           
           .biooverlay p {
               font-size:13px;
               color:#000;
               line-height: 16px;
           }
           
           .biooverlay span {
               color:#01487f;
           }
           