.filters-button-group {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.filters-button-group .filter-button {
    margin: 0 1rem;
    padding-bottom: 0.5rem;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    color: #929292;
    cursor: pointer;
    position:relative;
}

@media screen and (min-width: 768px) {
    .filters-button-group .filter-button {
        margin:0 3rem;
    }

}

.filters-button-group .filter-button.active {
    color:#000;
}

.filters-button-group .filter-button.active::after {
    position: absolute;
    content: '';
    width: 60px;
    height: 4px;
    background-color: #000;
    left: calc(50% - 30px);
    top:32px;
}

@media screen and (min-width: 768px) {
    .filters-button-group .filter-button.active::after {
        width: 120px;
        left: calc(50% - 60px);
    }

}
