.footer {
	height: 50px;
	margin-top: 20px;
	color: #2A2A2A
}
.container {
	max-width: 100%;
	margin-top: 10px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
}
.container .box {
	position: relative;
	width: 500px;
	height: 334px;
	background: #ff0;
	margin: 40px auto;
	box-sizing: border-box;
	display: inline-block;
	overflow: hidden;
}

.container .box .imgBox {
	position: relative;
	overflow: hidden;
}
.container .box .imgBox img {
	max-width: 100%;
	transition: transform 2s;
}
.container .box:hover .imgBox img {
	transform: scale(1.2);
}
.container .box .details {
	position: absolute;
	top: 10px;
	left: 10px;
	bottom: 10px;
	right: 10px;
	background: rgba(0,0,0,.8);
	transform: scaleY(0);
	transition: transform .5s;
}
.container .box:hover .details {
	transform: scaleY(1);
}

.container .box .details .content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	left: 50%;
	text-align: center;
	padding: 15px;
	color: #fff;
}
.container .box .details .content h2 {
	margin: 0;
	padding: 0;
	font-size: 25px;
	color: teal;
}
.container .box .details .content p {
	margin: 10px 0 0;
	padding: 0;
	
}


.banner {
	margin: 50px 0px 0px 0px;

}
