.house-images-row {
    position: relative;
}
.house-images-row.hidden {
    max-height: 630px;
    overflow: hidden;
}
.house-images-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFFFFF);
    z-index: 2;
}
.house-images-fade.hidden {
    display: none;
}
/* Create four equal columns that sits next to each other */
.house-images-column {
    position: relative;
    z-index: 1;
    padding: 2px;
    margin-top: 10px;
    height: 200px;
}
.house-images-column img {
    width: 100%;
    transition-duration: 0.2s;
    transform: scale(1);
    object-fit: cover;
    height: 200px;
}
.house-images-column img:hover {
    cursor: pointer;
    transition-duration: 0.4s;
    transform: scale(1.05);
}

/* #### */

@media (max-width: 1250px){
    .house-images-column {
        flex: 30%;
        max-width: 35%;
    }
}
@media (max-width: 991px){
    .house-images-column {
        flex: 50%;
        max-width: 50%;
    }
}
@media (max-width: 600px){
    .image-collage {
        opacity: 0.6!important;
    }
    .house-images-column {
        flex: 100%;
        max-width: 100%;
    }
    #galleryModal img {
        width: 100%;
    }
}
@media (max-width: 500px){
    #carouselHouseImage > div {
        height: 300px;
    }
}