.image-layout{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 2em 0;
	gap: 2em;
}

.image-layout .image-item{
	position: relative;
	width: 318px;
	height: 170px;
}

.image-layout .image-item img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	filter: grayscale(1);
}

.image-layout .image-item a:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(231, 37, 145, 0.5);
	opacity: 0;
	transition: .5s ease;
}

.image-layout .image-item:hover a:after,
.image-layout .image-item a.active:after{
	opacity: 1;
}

.image-layout .image-item .image-item-text{
	position: absolute;
	bottom: 4%;
	left: 4%;
	color: white;
	font-weight: 700;
	font-size: 1.2rem;
	z-index: 5;
}