.gallery .section-header {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.gallery .section-header h2 {
	font-family: 'Work Sans', sans-serif;
	font-size: 2em;
	font-weight: bold;
	color: #2A8AEF;
}
.gallery .section-header .line {
	width: 100%;
	height: 2px;
	background-color: #DDD;
}
.gallery img {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: cover;
	object-position: center;
}
@media(min-width: 992px) {
	.gallery .section-header h2 {
		font-size: 3em;
	}
}