*,tab:before, tabs:after {
    box-sizing: border-box;
    position: relative;
}


.tabs {
    width: auto; height: 40px;
    justify-content:center;
    display: flex;
}

.tab {
    padding: 0 15px;
    width: auto; height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(#000, .3);
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-transform: uppercase;

    cursor: pointer;
    user-select: none;

    transition: .35s ease;


}
.tab:active {
    color: rgba(#000, 1);
    transition: .35s ease;
}

.tab:hover {
    color: rgba(#333, 1) !important;
    transition: .35s ease;
}

.line {
    width: 100%; height: 3px;

    position: absolute;
    left: 0; bottom: 0;

    background: linear-gradient(
        to right,
        #b721ff,
        #21d4fd
    );

    clip-path: polygon(
        var(--left-side) 0,
        var(--right-side) 0,
        var(--right-side) 100%,
        var(--left-side) 100%
    );

    transition: .35s ease;
}

.tablink {
    text-decoration: none;
    color: black;
    size-weight: bold;
}
.tablink:hover{
    color: black;
    size-weight: bold;

}

.tablink:active{
    color: black;
    size-weight: bold;

}
.tablink:link {
    text-decoration: none;
    color
}
