/* Set the width and height of the slider images */
.gallerybox img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease; /* Add a transition effect */

}

.slidbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -10px;

}

.gall {
    width: calc(33.33% - 20px);
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.gall img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.gall:hover img {
    opacity: 0.7;
    transform: scale(1.1);
}

.caption {
    position: absolute;
    opacity: 0.8;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(55,79,47);
    color: yellow;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    opaque
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
}

.gall:hover .caption {
    transform: translateY(0);
}

