/* images de la section a propos */
#bloc_img, #bloc_img2{
  height:300px;
  width:500px;
  float:left;
  position:relative;
  margin:80px 10px 10px 10px;
  /* background-color:rgba(125,202,218); */
  border-radius:25px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  box-shadow: black 0.1em 0.1em 0.3em;
}
#bloc_img_interne{
  height:284px;
  margin:8px 8px 8px 8px;
  overflow:hidden;
border-radius:25px;  
}

#bloc_img_interne img{
	/*  background-size:10px; */
	width:100%;
     height:100%;
     /* -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
     -ms-transition: all 0.2s;
     -o-transition: all 0.2s;
     transition: all 0.2s; */	 
}
#bloc_img_interne:hover img{
   transform:scale(1.2);
-webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
     -ms-transition: all 0.2s;
     -o-transition: all 0.2s;
     transition: all 0.2s;   
	 cursor:default;
}

#bloc_img_interne span{
display: block;
position:absolute;
/* display: none; */
left:8px;
bottom:0;
width:90%;
height:0;
color:#fff;
text-align:center;
border-radius:0 0 0px 10px;
	 background:rgba(12,60,96,0.6);
-webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
     -ms-transition: all 0.5s;
     -o-transition: all 0.5s;
     transition: all 0.5s;
	 margin:0px auto;	
}
#bloc_img_interne:hover span {
/* display: block; */
height:15%;
 font-weight: bold;
 text-transform: uppercase;
 display: flex;
  align-items: center;
  justify-content: center;
  cursor:default;
}