*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul{
    list-style: none;
}

img{
    max-width: 100%;
    height: auto;
}

.container{
    max-width: 2200px;
    margin: auto;
    padding: 15px;
    
}

h2{
    text-transform: uppercase;
    font-weight: normal;
    font-size: 20%;
    margin-bottom: 20px;
    color: #black;
}

.filter-menu{
    margin-bottom: 20px;
}
.filter-menu li{
    display: inline-block;
    padding: 18px 13px;
    background: #c41325;
    color: #fff;
    cursor: pointer;
    font-size: 77%;
}
.filter-menu li:hover,
.filter-menu li.current{
    background: #cc3746;
}



.filter-item li{
    width: 50%;
    padding: 5px;
    float: left;
}

.filter-item li.active{
    width: 50%;
    padding: 5px;
    transition: all 0.5s ease;
}

.filter-item li.delete{
    width: 0%;
    padding: 0;
    transition: all 0.5s ease;
}

.filter-item img{
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 868px){
    .filter-item li.active,
    .filter-item li{
        width: 33.33%;
    }

    h2{
        font-size: 190%;
    }
}
@media screen and (min-width: 1600px){
    .filter-item li.active,
    .filter-item li{
        width: 20%;
    }

    h2{
        font-size: 270%;
    }
}


