/**
 * Interactive Cards
 */
.interactive-card {
	position: relative;
	width: 100%;
	height: 600px;
	display: block;
	z-index: 0;
	-webkit-display: flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	overflow: hidden; 
}
.add-shadow {
	-webkit-box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.interactive-card .front-content {
	position: relative;
	display: block;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	z-index: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.interactive-card .front-content:before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	background-color: rgba( 255,255,255,0.4 );
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: 1;
	opacity: 0.2;
	-webkit-animation: zoomOut;
	-o-animation: zoomOut;
	animation: zoomOut;
	animation-delay: .8s;
}
.interactive-card .front-content:after {
	content: "";
	position: absolute;
	width: 80px;
	height: 80px;
	background-color: rgba( 255,255,255,0.4 );
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: -1;
	opacity: 0.1;
	-webkit-animation: zoomOut;
	-o-animation: zoomOut;
	animation: zoomOut;
}
.interactive-card .front-content .image-screen {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 11;
	cursor: pointer;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	transition: .5s;
}
/* Text Front End Content */
.interactive-card .front-text-content {
	width: 100%;
	height: 100%;
	-webkit-display: flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.interactive-card .front-text-content .image-screen {
	background: #4d4d4d;
	width: 100%;
	height: 100%;
	padding: 30px;
	-webkit-display