* {
    box-sizing: border-box;
}

.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;

    position: relative;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}
.row#container{
    margin-bottom: 0;
}

/* Create four equal columns that sits next to each other */
.column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

.gallery-videos{
    margin: 8px 2% 0;
    @media(min-width: 1024px) {
        margin: 8px 10% 124px;
    }

    .gallery-video-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;

        gap: 8px;


        video{
            width: 100%;
            padding: 0 4px;
        }
    }

    @media(min-width: 1024px) {
        .gallery-video-wrapper{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
    
            gap: 0px;
    
    
            video{
                width: 50%;
                padding: 0 4px;

            }
        }
    }
}


/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1024px) {
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 768px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }   
}
