.tabs {
    width: 100%;
}

.tabs ul {
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    font-size: .875rem;
    padding-left: 0;
    text-transform: uppercase;
}

.tabs li {
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
}

.tabs li:first-child {
    margin-left: 0;
    padding-left: 0 !important;
}

.tabs li::before {
    content: '';
    width: 2px;
    height: 2px;
    position: absolute;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #798A9D;
}


.tabs a {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    color: #798A9D;
}


.tabs a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.4rem;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color .3s;
}


.tabs a:hover,
.tabs .active a {
    color: #0C2332;
}

.tabs a:hover::after,
.tabs .active a::after  {
    background-color: #5DBD3A;
}