          
.bios_list{
    display: flex;
    
    flex-wrap: wrap;
}

   .bio_photo {
       width:200px;
       height:238px;
       overflow:hidden;
       position: relative;
       margin: 0 10px 10px 0;
   }       
   
   .bio_photo .doc_photo {
       width:100%;
       height:auto;
   }
   
   
       .biooverlay {
            width:100%;
            height:100%;
            padding:4px 0 0 5px;
            background:rgba(255,255,255, 0.9);
           
            position: absolute;
            top:200px;
            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;
           }
           