/**
 * PageTabs Component Styles
 * 
 * Styles for the page tabs navigation component
 */

.page-tabs-nav {
    background: #ffffff;
    padding: 25px 0;
    padding-bottom: 0;
    position: sticky;
    top: 100px;
    z-index: 100;
    overflow: hidden;
}

.page-tabs-list {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 930px;


}

.page-tabs-item {
    margin: 0;
    position: relative;
    height: 67px;
}

.page-tabs-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(180deg,
            rgba(163, 219, 232, 0) 0%,
            rgba(163, 219, 232, 1) 100%);
    opacity: 0;
}

.page-tabs-link {
    color: #b3b3b3;
    font-family: var(--font-bold, "Raleway-Bold", sans-serif);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    /* color: var(--darkBlue, #002c5f);
    font-family: var(--font-bold, "Raleway-Bold", sans-serif);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700; */
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 0 40px;
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-tabs-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 100px;
    background: #003A70;
    transition: width 0.3s ease;
    opacity: 0;
}


.page-tabs-item.active::before {
    opacity: 1;
}


.page-tabs-item.active .page-tabs-link {

    color: var(--darkBlue, #002c5f);

}

.page-tabs-item.active .page-tabs-link::after {

    opacity: 1;
}

@media (max-width: 820px) {
    .page-tabs-item {
        height: 60px;
    }

    .page-tabs-link {

        font-size: 15px;

        padding: 0 20px;
    }

    .page-tabs-list {
        gap: 15px;
    }
}

@media (max-width: 700px) {
    .page-tabs-item {
        height: 55px;
    }

    .page-tabs-link {

        font-size: 14px;

    }

    .page-tabs-list {
        gap: 10px;
        justify-content: flex-start;
    }
}