
.content-box {
	position:relative;
}
.content-box .image {
	overflow:hidden;
}
.content-box .image img {
	width:100%;
	height:300px;
	object-fit:cover;
	filter:blur(2px) grayscale(1);
	transition:.3s !important;
}
.center .content-group .image img {
	filter:blur(0) grayscale(0);
}
.content-box:hover .image img,
.content-box:focus .image img {
	transform:scale(1.15);
	filter:blur(0) grayscale(0);
}
.content-box .title {
	background:#eeedf3;
	text-align:center;
	padding:20px 0 10px;
}
.content-box .title h2,
.content-box .title h3 {
	font-size:1rem;
}
.content-box .title a {
	font-weight:700;
	color:#262262;
	transition:.3s;
}
.content-box:hover .title a,
.content-box:focus .title a {
	letter-spacing:1px;
}
.content-box .description {
	padding:10px;
	background:#eeedf3;
}
.content-box .continue {
	font-weight:700;
	color:#262262;
}
.content-box .continue i {
	transition:.3s;
}
.content-box:hover .continue i,
.content-box:focus .continue i {
	margin-left:5px;
}