/* --------------------------------------------------------------------------------------------------------------------- */
/* GALLERY */
/* --------------------------------------------------------------------------------------------------------------------- */

.image_gallery
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.image_gallery > li
{
	height: 150px;
	cursor: pointer;
	position: relative;
	list-style-type: none;
}

.image_gallery li img
{
	object-fit: cover;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	border-radius: 5px;
}
