 
 .column div span {
	position: absolute;
 	left: 0;
	z-index: -1; float:left;
	display: block;
	width: 100%;
	height:30px;
	margin: 0;
	padding-top: 5px;
	color: #666;
	font-weight:400;
	background-color:#fff;
	font-size: 16px;
 
	text-decoration: none;
	text-align: center;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	opacity: 0;
}
figure {
    box-sizing:border-box;
  	margin: 0;  
	padding: 0;
	margin:0 auto;
	background: #fff;
	overflow: hidden;
	width:100%;
	border-left:10px solid #fff;
	border-right:10px solid #fff;   
}
figure:hover+span {
 	opacity: 1;
}





 
/* Zoom In #2 */
.hover02 figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover02 figure:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
  
 