.contact-form-page::after {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)),
		url(../images/francesco-esposito-6g6MKMvAQHw-unsplash-optimized-1.webp)
			no-repeat top;
	background-size: cover;
}

.gallery-intro {
	margin-top: 10rem;
}

.contact-form-page {
	height: 70vh;
}

.gallery-pic-cont img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	display: inline-block;
}

.gallery-pic-cont > div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-pic-cont > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

/* .gallery-pic-cont {
	display: grid;
	gap: 5px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
	padding-inline: 1.5rem;
} */

.gallery-pic-cont .wide {
	grid-column: span 2;
}

.gallery-pic-cont .tall {
	grid-row: span 2;
}

.gallery-pic-cont .big {
	grid-column: span 2;
	grid-row: span 2;
}

.blur-load::before {
	content: "";
	position: absolute;
	inset: 0;
	animation: pulse 2.5s infinite;
}

.blur-load.loaded::before {
	content: none;
	animation: none;
}

@keyframes pulse {
	0% {
		background-color: rgba(255, 255, 255, 0);
	}
	50% {
		background-color: rgba(255, 255, 255, 0.1);
	}
	100% {
		background-color: rgba(255, 255, 255, 0);
	}
}

.blur-load {
	position: relative;
	background-size: cover;
	background-position: center;
	/* border-radius: 6px; */
}

.blur-load.loaded > img {
	opacity: 1;
}

.blur-load > img {
	opacity: 0;
	transition: opacity 200ms ease-in-out;
}
