/*==================================================
GALLERY PAGE
==================================================*/

.gallery-page{

    padding:90px 0;

    background:#f8fafc;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.gallery-card{

    overflow:hidden;

    border-radius:18px;

    background:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.gallery-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.gallery-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.4s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

/*========================*/

@media(max-width:992px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.gallery-grid{

grid-template-columns:1fr;

}

}