.banner {
    background: url('../img/background-photo.jpg'); 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: calc(100% - 20px);
    height: 250px;
    margin: 10px;
    display: flex;
    align-items: center;
    text-align: center;
}

.banner-title {
    font-size: 34px;
    font-weight: bold;
    margin: auto;
    background: rgba(0, 0, 0, .6);
    padding: 5px 10px;
    color: #FFF;
}

.banner-products {
    display: flex;
    flex-flow: row wrap;
    width: calc(100% - 20px);
    margin: auto;
    align-items: center;
}

.banner-product-item {
    border: 1px solid #FFF;
    flex: 1 0 33%;
    height: auto;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
}

.banner-product-item:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.banner-product-item img {
    width: 100%;
    height: auto;
}

.product-item-title {
    bottom: 5px;
    background-color: rgba(255, 255, 255, 1);
    padding: 10px;
    margin: auto;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}

.product-item-title.green {
    background: #008000;
    color: #FFF;
}

.product-item-title.brown {
    background: #a52a25;
    color: #FFF;
}

.product-item-title.red {
    background: #ff0000;
    color: #FFF;
}

.product-item-placeholder {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 50px;
}