/* ==========================================
                GALLERY
========================================== */

.gallery{

    background:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:50px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}