/* -------------------------------------
   MENU FILS
------------------------------------- */

ul#items_fils {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 25px -5px;
}

ul#items_fils li {
    position: relative;
    margin: 5px;
    padding: 0;
    width: calc(33.33% - 10px);
}

ul#items_fils li > a {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    color: #FFF;
    font-size: 2.4rem;
    font-size: clamp(2.0rem, 1.3vw, 2.4rem);
    font-weight: 700;
}

ul#items_fils li > a span {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 15px;
    text-align: center;
    text-shadow: 0px 2px 2px rgb(0 0 0 / 25%);
    background-color: #575756;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

ul#items_fils li > a span::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: rgba(0,0,0,0.5);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
    transition: all 0.2s ease;
}
ul#items_fils li > a:hover span::before {
    background-color: rgba(0, 0, 0, 0.5);
}


@media (max-width: 801px) {
    ul#items_fils li {
        width: calc(50% - 10px);
    }
}
@media (max-width: 609px) {
    ul#items_fils li {
        width: 100%;
    }
}