/* VD Color:    #225D38 */
/* VD Font      Roboto Slab // Bold */

/* Bold 700
font-family: 'Roboto Slab', serif; */

section {
    padding: 20px;
    width: 80%;
    margin: 40px auto;
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
}

section ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 10px;
    justify-content: center;
}

section ul li {
    list-style: none;
    background: #eee;
    padding: 8px 20px;
    margin: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
}

section ul li.active {
    background: #03a9f4;
    color: #fff;
}

.product {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.product .itemBox {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 30px;
    cursor: pointer;
}

.product .itemBox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

@media only screen and (max-width: 832px) {
    section{
        font-size: 10px;
    }
    section ul {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .product .itemBox {
        position: relative;
        width: 100px;
        height: 100px;
        margin: 20px;
    }
}

@media only screen and (max-width: 690px) {
    section ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 470px) {
    section {
        padding: 0px;
    }
    section ul {
        grid-template-columns: 1fr 1fr;
    }
}