.projects {
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: left;
	justify-content: left;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-align-items: stretch; /* Safari */
	align-items: stretch;
	margin: 0;
    padding: 0;
    font-size: 0;
    height: 100%;
    width: 100%;
	}

.tile img {
	width: 100%;
	height: auto;
	}

.tile a .img-tile {
	-webkit-transition: transform 1s ease;
	-moz-transition: transform 1s ease;
	-o-transition: transform 1s ease;
	transition: transform 1s ease;
}

.tile:hover > a .img-tile {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.tile {
	position: relative;
	display: inline-flex;
    width: calc(100% / 8);
	overflow: hidden;
}

.wide {
	width: calc(100% / 4);
}

@media screen and (min-width: 1801px) and (max-width: 2100px) {
	.tile {	width: calc(100% / 7); }
	.wide { width: calc(100% / 3.5); }
}

@media screen and (min-width: 1501px) and (max-width: 1800px) {
	.tile {	width: calc(100% / 6); }
	.wide { width: calc(100% / 3); }
}

@media screen and (min-width: 1201px) and (max-width: 1500px) {
	.tile {	width: calc(100% / 5); }
	.wide { width: calc(100% / 2.5); }
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
	.tile {	width: calc(100% / 4); }
	.wide { width: calc(100% / 2); }
}

@media screen and (min-width: 601px) and (max-width: 900px) {
	.tile {	width: calc(100% / 3); }
	.wide { width: calc(100% / 1.5); }
}

@media screen and (max-width: 600px) {
	.projects { padding-top: 4rem; }
	.tile {	width: calc(100% / 2); }
	.wide { width: calc(100% / 1); }
}

@media screen and (max-width: 1000px) {
.overlay-label { font-size: .8rem; }
.overlay { height: 40px; }
}
