.green_project_image_container {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 54% 40%;
    justify-content: space-between;
}

.green_project_image_container>figure {
    display: grid;
}

.green_project_image_container>figure>img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media screen and (max-width:767px) {
    .green_project_image_container {
        display: grid;
        grid-auto-flow: row;
        grid-template-columns: 100%;
        gap: 3em;
        justify-content: start;
    }

    .green_project_image_container>figure>img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-inline: auto;
    }

    .green_project_image_container_img {
        margin-top: 1em;
        justify-self: start;
    }
}

.green_project_figcaption_desc {
    font-size: 1.2rem;
}