
.img-box:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.img-box:hover:before {
	opacity: 1;
}
.img-box:after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 2px;
	right: 2px;
	border: 2px solid #ccc;
	transform: scale(0);
	opacity: 0;
	-webkit-transition: all 0.8s ease 0s;
	transition: all 0.8s ease 0s;
}
.img-box:hover:after {
	opacity: 1;
	transform: scale(1);
}
.img-box a {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	z-index: 3;
}

.img-box figcaption {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 1.1em;
	opacity: 0;
}
.img-box h2 {
	font-size: 1.1em;
	font-weight: lighter;
	margin: 0;
	transform: scale(0);
	transition: all 1s ease 0s;
    border: none;
    color: #fff;
    padding: 0 1em;
}

.img-box:hover figcaption, .img-box:hover h2 {
	transform: scale(1);
	opacity: 1;
}