.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
}
.gallery-img img {
    width: 100%;
    display: block;
    transition: all .4s ease;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #ffffff;
    color: #b58e6f;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    z-index: 2;
    transition: all 0.4s ease;
}

.gallery-img:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: .4s;
}

.gallery-img:hover .gallery-overlay {
    opacity: 1;
}