.gallery-container{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img{
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    object-fit: cover;
}

.gallery-img img{
max-width: 100%;
max-height: auto;
object-fit: fill; 
}




/*===========================MEDIA QUERIES(TABLETS)===============================*/
@media screen and (max-width:1024px){
    .gallery-img{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    }

    .gallery_vedio video{
   
        width: auto;
        height: auto;
    }

}


/*===========================MEDIA QUERIES(TABLETS)===============================*/
@media screen and (max-width:1024px){

.gallery-img{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
}

.gallery_vedio video{
   
    width: auto;
    height: auto;
}

}