.amenities .section-header {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.amenities .section-header h2 {
	font-family: 'Work Sans', sans-serif;
	font-size: 2em;
	font-weight: bold;
	color: white;
}
.amenities .section-header .line {
	width: 100%;
	height: 2px;
	background-color: white;
}
.amenities .section-header p {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	text-align: center;
	color: white;
}
.amenities .feature {
	width: 100%;
	max-width: 200px;
	height: auto;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5em;
	color: white;
	border: 2px solid white;
}
.amenities .feature-text {
	font-family: 'Roboto', sans-serif;
	font-size: 0.9em;
	font-weight: 500;
	text-transform: uppercase;
	color: white;
	text-align: center;
}
@media(min-width: 992px) {
	.amenities .section-header h2 {
		font-size: 3em;
	}
	.amenities .section-header p {
		width: 70%;
	}
}
@media(min-width: 1200px) {
	.amenities .feature-text {
		font-size: 1em;
		font-weight: bold;
	}
}