/*=========================================
PHOTO GALLERY
=========================================*/

.gallery{

    padding:120px 0;

    background:#F7F9F4;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:60px;

}

.gallery-item{

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    height:260px;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-button{

    margin-top:50px;

    text-align:center;

}

@media(max-width:991px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

}

}