.page-tabs {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    margin-bottom: 0px;
    overflow: auto;
    padding: 0;
    top: 40px;
    right: 15px;
    position: absolute;
}

.page-tabs a {
    display: flex;
    flex-direction: column;
    color: var(--Tokens-Text-Text-Hi-Contrast, #010203);

    /* Text 14 */
    font-family: "PPNV";
    font-size: 14px;
    font-style: normal;
    font-weight: 375;
    line-height: 18px;
    /* 128.571% */
    letter-spacing: 0.42px;
    position: relative;
    white-space: nowrap;

    padding: 0 14px 16px;
}

.page-tabs a.active:after,
.page-tabs a:hover:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #39DB80;
    transform: translateX(-14px);
    position: absolute;
    bottom: 0;
}

.hero_dark .page-tabs a {
    color: #C2C6C9;
}

@media (max-width: 992px) {
    .page-tabs {
        position: relative;
        top: 0;
        transform: unset;
        justify-content: flex-start;
        margin-left: 10px;
        width: calc(100% + 20px);
        margin-bottom: 60px;

        -webkit-mask-image: linear-gradient(to right,
                transparent 0px,
                black 10px,
                black calc(100% - 10px),
                transparent 100%);
        mask-image: linear-gradient(to right,
                transparent 0px,
                black 10px,
                black calc(100% - 10px),
                transparent 100%);

        border-bottom: 1px solid var(--Primitives-Slate-Slate-6, #DFE3E6);
    }

    .hero_dark .page-tabs {
        border-bottom: 1px solid var(--Primitives-Slate-Slate-6, #313538);
    }

    .page-tabs a {
        color: var(--Tokens-Text-Text-Mid-Contrast, #4D565C);
        /* Text 14 */
        font-size: 14px;
        font-style: normal;
        font-weight: 375;
        line-height: 18px;
        /* 128.571% */
        letter-spacing: 0.42px;
        padding: 0 10px 16px;
    }
}