.tiles {
	margin: -1%; 
	margin-bottom: 10%;
}

.tiles ul {
	display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    width: 100%;
}

.tile {
	background-color: #010029;
	margin: 1%;
	position: relative;
	transition: all .2s ease-out;
	width: 31.33%;
	z-index: 1;
	will-change: transform;
}

.tile:hover {
	transform: scale(1.05,1.05);
	z-index: 2;
}

.tile:hover .tile-tooltip {
	opacity: 1;
	top: 2.5%;
}

.tile a {
	display: block;
}

.overlay {
	background-color: rgba(1,0,41,1);
	height: 100%;
	mix-blend-mode: color;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
}

.overlay:hover{
	background-color: rgba(1,0,41,0);
}

.tile img {
	width: 100%;
}

.tile-tooltip {
	opacity: 0;
	position: absolute;
	background-color: rgba(1,0,41,0.95);
	padding: 5px 10px;
	top: -5%;
	z-index: 999;
	transition: all .2s ease;
	left: 2.5%;
	width: fit-content;
	max-width: 80%;
}

.tile-tooltip-description {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.view-all-work {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 1%;
	height: 90px; 
	/* width: 31.333%; */
}

.view-all-work a {
	margin: 0;
}


/* ==========================================================================
   Responsiveness
   ========================================================================== */

@media screen and (max-width: 650px){
	.tile {
		width: 48%;
	}
	
	.tile:hover {
		transform: scale(1.03,1.03);
	}
	
	.view-all-work {
		width: 48%;
	}
}