/*---------------------------------------------------------------*/
/*----------------- image_gallery.css ---------------------------*/
/*---------------------------------------------------------------*/
.image_gallery {
    background-color: #ffd16d;
    position: relative;
   	background-image: url('../../images/dots.svg');
	background-size: 100%;
    background-position: center;
    color: #fff;
    text-align: center;
}

.image_gallery ul {
	display: flex;
	padding-left: 0;
	width: 100%;
    overflow: auto;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.image_gallery ul li {
	list-style: none;
	border: 0.5rem solid #fff;
	margin: 0 1rem;
	border-radius: 0.5rem;
}

.image_gallery ul li img {
	object-fit: cover;
	height: 100%;
	width: 20rem;
	min-width: 20rem;
}
