/* Utility Classes */

/* Background Colors (blue/grey/gradient backgrounds in section-colours.css) */
.background-light-grey {
	background-color: var(--light-grey, #F0F5F4);
}

.background-white {
	background-color: #fff;
}

/* Text Colors */
.text-white {
	color: #fff;
}

.text-dark {
	color: var(--body-text, #151515);
}

/* Display Utilities */
.hide-mobile {
	display: block;
}

.show-mobile {
	display: none;
}

@media screen and (max-width: 768px) {
	.hide-mobile {
		display: none;
	}

	.show-mobile {
		display: block;
	}
}

/* Spacing Utilities */
.no-margin-bottom {
	margin-bottom: 0 !important;
}

.no-padding-bottom {
	padding-bottom: 0 !important;
}

/* Overflow */
.overflow-hidden {
	overflow: hidden;
}

/* Position */
.relative {
	position: relative;
}

/* Z-index */
.z-index-1 {
	z-index: 1;
}

.z-index-2 {
	z-index: 2;
}