.tile {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20%;
    text-align: center;
    transition: .5s all;
}

.tile .bg-img,
.tile .bg-color {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: .5s all;
    opacity: 0;
	z-index: 0;
}

.tile .bg-img {
	background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.tile .bg-color {
	z-index: 1;
}

.tile-content {
	position: relative;
	z-index: 2;
}

.tile p:first-of-type {
    color: #0C78BE;
    font-family: "neulis-neue", Sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 102%;
    letter-spacing: -0.96px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.tile p:last-of-type {
    color: #15103D;
    font-size: 16px;
    font-family: "proxima-nova", Sans-serif;
    line-height: 140%;
    letter-spacing: -0.08px;
	margin-bottom: 0;
}

.tile:hover .bg-img,
.tile:hover .bg-color {
	opacity: 1;
}

.tile:hover p {
    color: #fff !important;
}

@media (min-width: 1280px) {
    .tile p:last-of-type {
        font-size: 1.25vw;
    }
}

@media (max-width: 767px) {
    .tile .bg-img,
	.tile .bg-color {
		opacity: 1;
	}
	
	.tile p {
        color: #fff !important;
    }
}