.head{
    position: relative;
}
.head:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #593b21;
    opacity: .2;
    z-index: 0;
}

.head .wrapper{
    position: relative;
    z-index: 1;
}

.products-submenu{
    position: absolute;
    top: 60px;
    width: 100%;
    left: 0;
    padding-bottom: 15px;
    text-align: center;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#54412a+0,54412a+100&0.75+0,0+100 */
    background: -moz-linear-gradient(top, rgba(84,65,42,0.90) 0%, rgba(84,65,42,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(84,65,42,0.90) 0%,rgba(84,65,42,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(84,65,42,0.90) 0%,rgba(84,65,42,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf54412a', endColorstr='#0054412a',GradientType=0 ); /* IE6-9 */

    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    
    z-index: 1;

}
.products-submenu li{
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding-top: 15px;
    width: 82px;

    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
.products-submenu li:last-child{
    width: 134px;
}
.products-submenu li a{
    display: block;
    font-size: 1em;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    white-space: normal;
    text-overflow:ellipsis;
    overflow: hidden;
}
.products-submenu li .icon{
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 3.2em;
    color: #fff;
}

#representaciones .item .image .logo{
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
}

@media (max-width:979px){

    .listado-productos .cols .col:last-child{
        padding-top: 0;
    }
}

@media (min-width:980px){

    /* Products submenu */

    .products-submenu{
        top: 100px;

    }
    .products-submenu li {
        width: 110px;
    }
    .products-submenu li a{
        font-size: 1.2em;
    }
    .products-submenu li:hover a,
    .products-submenu li:hover .icon{
        color: #bc002b;
    }


}