.img-center {
    display: block;
    margin: auto;
}


/* Style for the image container */
.image-container {
    position: relative;
    overflow: hidden;
}

    /* Style for the image */
    .image-container img {
        display: block;
        width: 100%;
        height: auto;
        transition: transform 0.8s ease;
    }

    /* Hover effect */
    .image-container:hover img {
        transform: scale(1.1);
    }

/* Overlay effect */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease;
    background-color: rgba(0, 0, 0, 0.5);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Text on the overlay */
.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.image-zoom div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
  }

  .modal-content{border-radius: 0px;}
  .modal-popup {border-radius: 0px;}
  .close-message-button { position: absolute; bottom: -65px; background: #1e2028; width: 40px; height: 40px; display: block; left: 50%; padding: 10px; border-radius: 50%; text-align: center; color: #fff; transform: translateX(-50%);}
  .box-around{ min-height: 200px; padding: 10px; background: #1e2029; color: #fff;}    
  .svgicon-close-modal-black{
	width: 20px;
	filter: brightness(0) invert(1);
} 
  