/* Responsive Styles */
@media (max-width: 1199px) { /* md and down */

}

@media (max-width: 991px) {/* sm and down */
	.splash {
		padding: 2em;
	}
}

@media (max-width: 767px) {/* xs and down */
	.splash {
		padding: 1.5em;
	}	
	
	.linksGrid {
		grid-template-columns: repeat(1, 1fr);
	}
	
}

/* Mobile First */

@media (min-width: 768px ) { /* sm and up */
	
}

@media (min-width: 992px) {/* md and up */
	
}

@media (min-width: 1200px) {/* lg and up */

}