.alza_gallery {
    margin-left: -3rem;
    width: calc(100% + 3rem);
    height: 100vh;
    position: relative;
}

.alza_gallery .image_mobile {
    display: none;
}

.alza_gallery .gallery_hero_image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.alza_gallery .gallery_hero_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alza_gallery .gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    height: 100%;
    padding: 8rem 3rem;
    max-width: 1800px;
    margin: 0 auto;
}

.alza_gallery .gallery_grid div {
    position: relative;
}
.alza_gallery .gallery_grid div img {
    position: absolute;
    object-fit: cover;
}
    
.image_left_top { 
    grid-area: 1 / 1 / 2 / 2; 
}
.image_left_top img {
    left: 0px;
    top: 0;
    height: calc(100% + 60px);
    aspect-ratio: 3 / 4;
}

.image_center_top { 
    grid-area: 1 / 2 / 2 / 3; 
}
.image_center_top img {
    left: -100px;
    top: -50px;
    height: 100%;
    aspect-ratio: 4 / 3;
}

.image_right_top { 
    grid-area: 1 / 3 / 2 / 4; 
}
.image_right_top img {
    left: -44px;
    top: 31px;
    height: 100%;
    aspect-ratio: 3 / 3;
}

.image_left_bottom { 
    grid-area: 2 / 1 / 3 / 2; 
}
.image_left_bottom img {
    right: -200px;
    top: 0;
    height: 100%;
    aspect-ratio: 4 / 3;
}

.image_center_bottom { 
    grid-area: 2 / 2 / 3 / 3; 
}
.image_center_bottom img {
    right: 0;
    top: -200px;
    height: calc(100% + 60px);
    aspect-ratio: 4 / 6;
}

.image_right_bottom { 
    grid-area: 2 / 2 / 3 / 4; 
}
.image_right_bottom img {
    right: 0;
    top: -100px;
    height: calc(100% + 60px);
    aspect-ratio: 3 / 4;
}


@media (max-width: 1100px) {
    
    .alza_gallery {
        margin-left: 0;
        width: 100%;
    }
    .image_left_top img {
        left: 0;
    }
}

@media (max-height: 1000px) and (min-width: 992px) {
    .alza_gallery .gallery_grid {
        max-width: 1200px;
    }
}

@media (max-width: 992px) {
    .alza_gallery {
        height: auto;
    }
    .alza_gallery .gallery_grid {
        display: none;
        flex-direction: column;
        justify-content: center;
        z-index: 1;
        position: relative;
    }
    .alza_gallery .image_mobile {
        display: block;
        padding: 3rem;
    }
    .alza_gallery .image_mobile img {
        margin: 0 auto;
        width: 100%;
        max-height: 600px;
        object-fit: cover;
    }
    .alza_gallery .gallery_grid div {
        height: auto;
    }
    .alza_gallery .gallery_grid div img {
        position: relative;
    }
    .image_left_top { 
        grid-area: 1 / 1 / 2 / 2; 
    }
    .image_left_top img {
        left: 0px;
        top: 0;
        height: auto;
        width: 80%;
    }

    .image_center_top { 
        grid-area: 2 / 1 / 3 / 2;
    }
    .image_center_top img {
        left: unset;
        top: unset;
        height: auto;
        width: 70%;
        float: right;
        margin-top: -8rem;
    }

    .image_right_top { 
        grid-area: 2 / 1 / 3 / 2;
    }
    .image_right_top img {
        left: unset;
        top: unset;
        height: auto;
        width: 70%;
        float: right;
        margin-top: -8rem;
    }

    .image_left_bottom { 
        grid-area: 3 / 1 / 4 / 2; 
    }
    .image_left_bottom img {
        right: unset;
        top: unset;
        height: 500px;
        width: 80%;
        margin-left: 5%;
        margin-top: -4rem;
        height: auto;
    }

    .image_right_bottom { 
        grid-area: 4 / 1 / 5 / 2;
    }
    .image_right_bottom img {
        right: unset;
        top: unset;
        height: auto;
        width: 60%;
        float: right;
        margin-top: -5rem;
        z-index: -1;
        /* margin-right: 3rem; */
    }
}