.category-row {
    margin-left: -8px;
    margin-right: -8px;
}

.category-row>div {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 30px;
}

.category-row .category-link {
    position: relative;
    padding: 10px 15px;
    border-radius: 5px;
}

.category-row .category-link a {
    font-size: 16px;
    text-decoration: none;
}

.category-row .category-link:hover,
.category-row .category-link.active {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.category-row .category-link::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -6px);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 9.5px 0 9.5px;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.category-row .category-link:hover::before,
.category-row .category-link.active::before {
    bottom: -19px;
}
