ihover {
	display:inline-block;
	position: relative;
	width:100%;
	max-width: 343px;
	min-height: 250px;
	overflow:visible;
	text-align:left;
	background-color:#333;
	color:#FFF;
	box-sizing:border-box;
	cursor:pointer;
	margin:10px;
	overflow:hidden;
	vertical-align:top;
	border: 2px solid #FFF;
}
ihover > img{
	width:100%;
	height:auto;
	-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
	position:absolute;
}
ihover > info{
	display:block;
	padding:20px 0px;
	box-sizing:border-box;
	opacity:0;
	position:static;
	-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
	}

ihover p{
	width:80%;
	}	
	
	
/* On Rollover */
ihover:hover{
	overflow:visible;
	}

ihover:hover > info{
	padding:20px 40px;
	opacity:1;
	}

ihover:hover > img{
	-webkit-transform: scale(0.5) translateX(100%);
	-moz-transform: scale(0.5) translateX(100%);
	-ms-transform: scale(0.5) translateX(100%);
	-o-transform: scale(0.5) translateX(100%);
	transform: scale(0.5) translateX(100%);
	border: 2px solid #FFF;
	z-index:999999;
	}
	
	
	
/* Mobile Setting */
@media only screen and (max-width: 375px) {
ihover > img{
	width:auto;
	height:100%;
}
}
