/* Galerie */

#content.galerie #list{
    margin-left: 0;
    padding-left: 0;
    list-style: none inside;
    overflow: hidden;
    width: 100%;
}

#content.galerie #list li{
    float: left;
    width: 25%;
    height: 150px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 5px solid #fff;
    position: relative;
}

#content.galerie #list li:hover{
    opacity: 0.75;
}

#content.galerie #list li a{
    display: block;
    width: 100%;
    height: 100%;
}

#content.galerie #list li span{
    display: none;
}

#content.galerie #list li:hover span{
    display: block;
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    text-align: center;
    color: #fff;
    padding: 5px;
    font-size: 12px;
}

#content.galerie .categories{
    font-size: 14px;
    margin-left: 0;
    padding-left: 0;
    list-style: none inside;
    overflow: hidden;
}

#content.galerie .categories li{
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 15px;
}

#content.galerie .categories button > i{
    margin-right: 6px;
}

#content.galerie .categories a:hover{
    color: #fff;
}