<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*==============================*/
/*==== Sticky Nav STYLES    ====*/
/*==============================*/

section.spring2-nav-container {
    position: absolute;
    /*top: 0;*/
    background-color: #fff;
    z-index: 5;
    display: block;
    padding: 0;
    width: 100%;

}

ul.spring2-campaign-page-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    list-style: none;
    margin: 0;
    /*border: 1px dotted purple;*/

}

ul.spring2-campaign-page-nav li a {
    position: relative;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "proxima-nova", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 400;
    font-size: .75rem;
    letter-spacing: 0.14em;
    display: block;
    padding: 0;
    text-align: center;
    white-space: nowrap;

}

ul.spring2-campaign-page-nav li a::before {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

ul.spring2-campaign-page-nav li a:hover,
ul.spring2-campaign-page-nav li a.active {
    font-weight: 700;
}

ul.spring2-campaign-page-nav li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid black;
    left: 0;
}

@media screen and (max-width: 1023.98px) {
    ul.spring2-campaign-page-nav li.spring2-nav-item {
        width: 100%;
    }

    ul.spring2-campaign-page-nav li a {
        font-size: .75rem;
        line-height: 3.5;

    }

    ul.spring2-campaign-page-nav {
        justify-content: flex-start;
        gap: 3rem;
        padding: 0 2rem;
        overflow-x: scroll;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */

        min-width: fit-content;

    }


    section.spring2-nav-container::-webkit-scrollbar {
        display: none;
    }

    section.spring2-nav-container {
        max-width: 100dvb;
        overflow-x: scroll;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */

    }

}

@media screen and (min-width: 1024px) {
    ul.spring2-campaign-page-nav li a {
        font-size: .75rem;
        line-height: 3.5;
        /*border: 1px solid red;*/
    }

}</pre></body></html>