/* ==========================================================================
   Sticky Nav
   Full-width primary-colour bar that sticks to the top of the viewport.
   ========================================================================== */

.rw-sticky-nav {
    position: sticky;
    top: 136px;
    z-index: 100;
    background: var(--rw-primary);
    width: 100%;
}

.rw-sticky-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rw-sticky-nav__item {
    display: flex;
    align-items: center;
}

.rw-sticky-nav__link {
    display: block;
    padding: 16px 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: opacity 0.2s ease;
}

.rw-sticky-nav__link:hover {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.75;
}

.rw-sticky-nav__link:focus {
    color: #ffffff;
    text-decoration: none;
}

.rw-sticky-nav__pipe {
    color: #ffffff;
    padding: 0 15px;
    opacity: 0.6;
    font-size: 18px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media ( max-width: 992px ) {
    .rw-sticky-nav {
        position: static;
        top: 0;
    }
}
@media ( max-width: 768px ) {

    .rw-sticky-nav__link {
        font-size: 14px;
        padding: 10px 0;
    }

    .rw-sticky-nav__pipe {
        font-size: 14px;
        padding: 0 10px;
    }

}

@media ( max-width: 480px ) {

    .rw-sticky-nav__list {
        justify-content: flex-start;
        padding: 0 16px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .rw-sticky-nav__link {
        white-space: nowrap;
    }

}