.gallery_grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 30px;
    
}
.gallery_cont{
    height: 400px;
    cursor: pointer;
    padding: 0px;
}
.gallery_cont img{
    object-fit: cover;
}
.gallery_modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.9);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
}
.gallery_modal_active{
    visibility: visible;
    opacity: 1;
}
.gal_container_m{
    width: 40%;
}
.close_gallery{
    position: fixed;
    top: 3rem;
    right: 3rem;
    color: var(--color-white);
    font-size: 50px !important;
    cursor: pointer;
}
@media screen and (max-width: 1400px) {
    .close_gallery{
        font-size: 40px !important;
        top: 2rem;
    }
}
@media screen and (max-width: 1024px){
    .gal_container_m {
        width: 60%;
    }
    .gallery_cont {
        height: 200px;}
}
@media screen and (max-width: 768px){
    .gal_container_m {
        width: 60%;
    }
    .close_gallery {
        font-size: 30px !important;}
}
@media screen and (max-width: 568px){
    .close_gallery{
        right: 15px;
    }
    .gal_container_m {
        width: 90%;
    }
    .gallery_grid{
        gap: 20px;
        grid-template-columns: repeat(2,1fr);
    }
    .gallery_cont{
        height: 150px;
        
    }
}