.k-fpl-inner {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.k-fpl-item-wrapper {
	flex: 0 0 32%;
	max-width: 32%;
	position: relative;
	color: #fff;
	z-index: 0;
	padding: 16px;
	height: 376px;
	width: 100%;
	display: flex; 
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}
.k-fpl-item-wrapper:before {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	content: "";
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
.k-fpl-feature-1-inner, .k-fpl-feature-2-inner, .k-fpl-feature-3-inner {
	position: relative;
	z-index: 2;
}
.k-fpl-feature-back {
	display: none;
	transition: all 0.25s;
}
.k-fpl-feature-1-front, .k-fpl-feature-2-front, .k-fpl-feature-3-front {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.15s;
}
.k-fpl-item-wrapper:hover .k-fpl-feature-front {
	display: none;
}
.k-fpl-item-wrapper:hover .k-fpl-feature-back {
	display: block;
}
@media ( max-width: 767px ) {
	.k-fpl-item-wrapper {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 12px;
	}
	.k-fpl-inner {
		flex-wrap: wrap;
	}
}