.gallery-box{

    position:relative;

    overflow:hidden;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.gallery-box img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.gallery-box:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.4s;

}

.gallery-box:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h5{

    color:#fff;

    margin:0;

    font-size:22px;

    font-weight:600;

}