.ftnd-static-tile {
	position: relative;
	margin: 0px;
	font-family: Roboto, Helvetica, sans-serif;
	display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: 1fr;
	grid-template-areas: "overlap"
}
.full-tile-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 11;
}
.ftnd-tile {
 	position:relative;
	grid-area: overlap;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 4px 12px 40px 6px rgba(0, 0, 0, 0.09);
	background-repeat:no-repeat;
}
.ftnd-tile .tile-bg {
	position:absolute;
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-size:100% auto;
	background-position: 50% 50%;
}
.ftnd-tile .inner {position: relative;}
.tile-button {
	position: absolute;
	right: 24px;
	bottom: 24px;
	width: 36px;
	height: 36px;
	padding: 6px 6px 7px 7px;
	border-radius: 100%;
	display:block;
	cursor: pointer;
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	text-decoration: inherit;
	-webkit-font-smoothing: antialiased;
	font-size: 22px;
	line-height: 22px;
	text-align: center;
}
.tile-button:before {
	content: "\f061";
	display: block;
	transform: scale(.9);
	transform-origin: 50% 50%;
	transition: transform .3s ease;
}
.tile-button:hover:before {
	transform: scale(1);
}
.tile-button-white .tile-button {background: #fff;color:#000;}
.tile-button-black .tile-button {background: #000;color:#fff;}
.tile-button-white .tile-button:hover {background: rgba(255,255,255,0.8);color:#000;}
.tile-button-black  .tile-button:hover {background: rgba(0,0,0,0.8);color:#fff;}

.vc_row-o-equal-height.ftnd-tile-equal-height .vc_column-inner>.wpb_wrapper, 
.vc_row-o-equal-height.ftnd-tile-equal-height .ftnd-static-tile,
.vc_row-o-equal-height.ftnd-tile-equal-height .ftnd-tile {height:100%;}


