/*
.container {
	padding: 40px 5%;
}
*/
ul {
	list-style: none;
}

.image-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.image-gallery > li {
	flex-basis: 350px;
	position: relative;
	cursor: pointer;
}

.image-gallery::after {
	content: "";
	flex-basis: 350px;
}

.image-gallery li img {
	object-fit: cover;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border-radius: 5px;
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(57,57,57,0.502);
	top: 0px;
	left: 0px;
	transform: scale(0);
	transition: all 0.2s 0.1s ease-in-out;
	color: #fff;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-gallery li:hover .overlay {
	transform: scale(1);
}
