
.tilesWrap {
	padding: 0;
	margin: 50px auto;
	list-style: none;
	text-align: center;
}
.tilesWrap li {
	display: inline-block;
	width: 250px;
	margin:20px 40px !important;
	margin-top: 0 !important;
	padding: 80px 20px 40px;
	position: relative;
	vertical-align: top;
	font-family: 'helvetica', san-serif;
	min-height: 25vh;
	background: #112240;
	border: 1px solid #252727;
	text-align: left;
}
.tilesWrap li h2 {
	font-size: 114px;
	margin: 0;
	position: absolute;
	opacity: 0.2;
	top: 50px;
	right: 10px;
	transition: all 0.3s ease-in-out;
}
.tilesWrap li h3 {
	font-size: 20px;
	color: #b7b7b7;
	margin-bottom: 5px;
}
.tilesWrap li span {
	font-size: 16px;
	line-height: 18px;
	color: #b7b7b7;
	margin-top: 5px;
	width: 100px;
}
.tilesWrap li button {
	background: transparent;
	padding: 10px 20px;
	border: none;
	color: #b7b7b7;
	border-radius: 3px;
	position: relative;
	transition: all 0.3s ease-in-out;
	transform: translateY(-40px);
	opacity: 0;
	cursor: pointer;
	overflow: hidden;
	width: 100px;
	height: 100px;
	cursor: auto;
}


.tilesWrap li button img{
	transition-duration: 500ms;
	width: 100%;
	height: 100%;
	object-fit: contain;
	-webkit-filter:  brightness(100%) contrast(100%) grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(0%);
    filter:  brightness(100%) contrast(100%) grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(0%);
}

.tilesWrap li button img:hover{
	-webkit-filter:  none;
    filter:  none;
}


.tilesWrap li:hover button {
	transform: translateY(5px);
	opacity: 1;
}

.tilesWrap li:hover h2 {
	top: 0px;
	opacity: 0.6;
}

.tilesWrap li:before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	z-index: -1;
	background: #fff;
	transform: skew(2deg, 2deg);
}
.tilesWrap li:after {
	content: '';
	position: absolute;
	width: 40%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(255, 255, 255, 0.02);
	pointer-events: none;
}

.tilesWrap li:before {
	background: #FC354C;
background: -webkit-linear-gradient(to right, #0ABFBC, white);
background: linear-gradient(to right, #0ABFBC, white);
}


@media (max-width: 680px){
	.tilesWrap li {
		width: 85%;
	}
}