

.cat-list{
    width: 500px;
    height: 40px;
    display: flex;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    flex-wrap: wrap;
}

.cat-item{
    min-width: 50px;
    height: 40px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0 10px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.cat-item:hover{
    cursor: pointer;
    color: white;
    border-color: white;
}

.cat-active{
    border: 1px solid white;
    background-color: #857c72;
    color: white;
}

@media(max-width: 500px){
    .cat-list{
        height: 90px;
        max-width: 100%;
        bottom: 0px;
    }
}