/* filter Section */

.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-top: 15rem;
    margin-bottom: 5rem;
    padding: 0 3rem;
}

.filter-content {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.filter-btn {
    font-size: 4rem;
    font-family: 'Oswald', 'sans-serif';
    font-weight: 300;
    text-transform: capitalize ;
    border: none;
    color: #2b2829;
    background-color: #fff;
    transition: all .3s linear;
}

.filter-btn:hover {
    color: red;
}

.dropdown-list {
    display: flex;
    justify-content: center;
    display:none;
}

.dropdown-filter {
}



/* SHOWCASE  */

.showcase-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px) );
    justify-content: space-evenly;
    align-content: center;
    margin-bottom: 5rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.menu-item {
    transition: all .3s linear;
    cursor: pointer;
}

.menu-item > a {
    display: inline-block;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 3rem 0;
}

.menu-item > a >img{
    height: 30rem;
}

.item-info {
    font-size: 2rem;
    color: #000;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    transition: all .3s linear;
}

.menu-item:hover { 
    background-color: #f8f8f8;
}

.menu-item:hover > .item-info { 
    background-color: #fff;
}

