.advanced-tile {
    position: relative;
    width: 100%;
	display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    transition: .3s all;
}

.advanced-tile .bg-img,
.advanced-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;
}

.advanced-tile .bg-img {
	background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.advanced-tile .bg-color {
	z-index: 1;
}

.advanced-tile:hover .bg-img,
.advanced-tile:hover .bg-color {
	opacity: 1;
}

.advanced-tile-content {
	position: relative;
	max-width: 360px;
	width: 100%;
    height: 100%;
    display: flex;
	flex-direction: column;
	justify-content: center;
    align-items: center;
    padding: 1.5rem;
	transition: opacity 0.3s ease;
	z-index: 2;
	overflow: hidden;
}

.advanced-tile p {
	font-family: "proxima-nova", Sans-serif;
	margin: 0;
	transition: .3s all;
}

.advanced-tile p:first-of-type {
	display: inline-flex;
    justify-content: flex-start;
	align-items: center;
    gap: 0.5rem;
	text-align: left;
	color: #0072ce;
	font-size: clamp(14px, 1.094vw, 26px);
	font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
	padding-bottom: 0;
	margin-bottom: -20px;
	transition: color 0s ease, padding .3s ease-in-out, margin .3s ease-in-out;
}

.advanced-tile:hover p:first-of-type {
	padding-bottom: 10px;
	margin-bottom: 0;
}

.advanced-tile p > span {
	font-family: "neulis-neue", Sans-serif;
	color: #0e144e;
	font-size: clamp(48px, 3.75vw, 58px);
	font-weight: 800;
}

.advanced-tile:hover p,
.advanced-tile:hover p > span {
    color: #fff !important;
}

.advanced-tile p:last-of-type {
	color: #fff;
	font-size: max(13px, 1.016vw) !important;
	font-weight: 300;
    line-height: 1.3;
	opacity: 0;
	transform: translateY(100%);
	transition: .3s all;
}

.advanced-tile:hover p:last-of-type {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 767px) {
    .advanced-tile .bg-img,
	.advanced-tile .bg-color {
		opacity: 1;
	}
	
	.advanced-tile p,
	.advanced-tile p > span {
        color: #fff !important;
    }
}

@media (min-width: 768px) {
	.advanced-tile-content {
		padding: 0;
	}
}

@media (min-width: 1025px) {
	.advanced-tile-content {
		padding: 1.5rem 0;
	}
	
	.advanced-tile p:first-of-type {
		max-width: 20vw;
		
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
	}
	
	.advanced-tile:hover p:first-of-type {
		position: relative;
		top: unset;
		transform: translate(0, 0);
	}
	
	.advanced-tile p:last-of-type {
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
	}
	
	.advanced-tile:hover p:last-of-type {
		position: relative;
		top: unset;
	}
}

@media (min-width: 1280px) {
	.advanced-tile-content {
		align-items: flex-start;
	}
	
	.advanced-tile p:first-of-type {
		max-width: 18.8vw;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(-100%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}