.mwc-gallery-page{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
}

.mwc-gallery-container{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:30px;
}

.mwc-gallery-item{

    background:#fff;
    overflow:hidden;
    transition:all .3s ease;
}

.mwc-gallery-item:hover{
    transform:translateY(-4px);
}

.gallery-image{
    transition:transform .35s ease;
    display:block;
    width:100%;
   aspect-ratio:1/1;
object-fit:cover;
}

.gallery-image:hover{

     transform:scale(1.04);
}

.mwc-gallery-item h3{
    margin:12px 0 0;
    font-size:18px;
    font-weight:600;
    text-align:center;
    color:#222;
}

@media(max-width:992px){

.mwc-gallery-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:640px){

.mwc-gallery-container{

grid-template-columns:1fr;

}

}