.item1 {
	position: relative;
	overflow: hidden;
}
.item1 img {
	max-width: 100%;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	transition: all 1s;
}
.item1:hover img {
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.item-overlay {
	display: none;
	background: #333333;
	background: rgba(0,0,0,0.5);
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 30% 15%;
	text-align: center;
	color: #ffffff;
}
.item1:hover .item-overlay {
	display: block;
	cursor: pointer;
}
.item-overlay, .item1:hover .item-overlay {
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	transition: all 1s;
}