.anchor {
	scroll-margin-top: 5rem;
}

.fixed-background {
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
}
.background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.center-content {
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-center {
	text-align: center;
}

.flex {
	display: flex;
}

.grid {
	display: grid;
}
.grid--2-col {
	grid-template-columns: 1fr;
}
.grid--4-col {
	grid-template-columns: repeat(4, 1fr);
}

.columns-4-col {
	columns: 4 250px;
}

.section-header {
	font-size: 2.5rem;
	margin-top: 0;
	text-align: center;
}
.section-padding {
	padding: 2rem;
}

@media screen and (min-width: 1100px) {
	.grid--2-col {
		grid-template-columns: repeat(2, 1fr);
	}
}