/***************************************/
/* Flex Wrap Row: */
/***************************************/
.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.flex-item {
    flex-grow: 0;
    /* width: 33%; */
}