div.simple_block {
	direction: ltr;
	display: block;
	width: 100%;
	position: relative;
	border-radius: 3px;
	overflow: hidden;
}

div.simple_block .image_container {
	width: 100%;
	padding: 50%;
	background-size: cover;
	background-position: top center;
}

div.simple_block:hover div.title {
	opacity: 1;
}

div.simple_block div.title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: rgba(0, 0, 0, .5);
	padding: 10px;
	opacity: 0;
	transition: 0.5s;
	color: white;
}

div.simple_block div.title i {
	font-size: 30px;
}

div.simple_block a {
	color: white;
}