/*
 * Zoom on image
 */
.zoom-out-hover-image {
	transition: transform .2s; /* Animation */
  }
  
  .zoom-out-hover-image:hover {
	transform: scale(2.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }

.zoom_gallery {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
	align-items: center;
    justify-content: center;
}
.zoom_image-container {
    position: relative;
    width: 30%;
}
.zoom_image-container img {
    width: 100%;
    display: block;
}
.zoom_overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
/*    background-color: rgba(0, 0, 0, 0.5); */
    display: flex;
    justify-content: center;
    align-items: center;
}
.zoom_image-container:hover .zoom_overlay {
    opacity: 1;
}
.zoom_text {
    color: white;
    font-size: 20px;
    text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
    padding: 1em;
    border-radius: 0.5em;
}
.zoom_image-container:hover .zoom_image {
	transition: transform .2s; /* Animation */
  	transform: scale(2.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */

}