.gallery-section{
    padding:10px 0;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    position:relative;
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

/* .gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item::before{
    content:"+";
    position:absolute;
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    font-size:40px;
    font-weight:700;
    color:#123D73;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
    z-index:2;
} */

.gallery-item:hover::before{
    opacity:1;
}

/* Popup */

.image-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
}

.image-popup.active{
    display:flex;
}

.image-popup img{
    max-width:90%;
    max-height:90vh;
    border-radius:15px;
}

.close-popup{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    line-height:1;
}