#website-menu.open-sans .nav-item,
#website-menu.open-sans #website-menu-mobile .nav-item {
  font-size: 0.95rem;
}

.subnav-section {    
    transition: all .5s;
    border-bottom: 1px solid #FFFFFF;
}

.subnav-section.bg-color-50th-gold {
    /* Old gold: #876F13 */
    background: #b79e4b; /* Old browsers */
    background: linear-gradient(to right,  #b79e4b 0%, #b79e4b 39%, #cccccc 42%, #cccccc 100%);
    transition: all .5s;
    border-bottom: 1px solid #FFFFFF;
}

.subnav-section.is-fixed {
    position: fixed;
    left: 0;
/*     top: 66px; */ /* Top value set by function in 'js/scripts.js' to accommodate gold alert bar */
    width: 100%;
    z-index: 1020;
    border-bottom: 1px solid #CCCCCC;
}

.has-top-padding {
    animation: animate-margin-top 0.3s;
}

/* Mobile */
#website-menu-mobile {
    font-weight: bold;
    z-index: 4;
    width: 100%;
    overflow-y: auto;
}
    @media (min-width: 768px) {
        #website-menu-mobile {
            position: absolute;
        }
    }

#website-menu-mobile .link-text {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: .5rem 0;
    color: #001A70;
}

#website-menu-mobile .nav-link {
    color: #001A70;
    text-transform: none;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    transition: all .3s;
}

#website-menu-mobile .nav-link:focus,
#website-menu-mobile .nav-link:hover,
#website-menu-mobile .nav-link.active {
    color: #001A70;
    background: #CCCCCC;
}

    @media (min-width: 768px) {
        #website-menu-mobile .navbar-nav .nav-link:hover {
            background: #FFFFFF;
            padding-left: 12px;
        }
    }

#website-menu-mobile .navbar-nav-expanded {
    padding: 15px;
    background: #CCCCCC;
    border: 1px solid #CCCCCC;
}

.subnav-toggler {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    width: 100%;
    padding: 15px 0;
    border-radius: 0;
	height: 50px;
}

    @media (min-width: 576px) {
        .subnav-toggler {
            font-size: 1.05rem;
        }
    }

.subnav-toggler.bg-color-50th-gold {
    background: #b79e4b;
    color: #000000;
}

.subnav-toggler.collapsed:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f13a";
    margin: 0 5px;
    transition: all .3s;
}

.subnav-toggler:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f139";
    margin: 0 5px;
}

.navbar-secondary-mobile {
    z-index: 1020;
    position: relative;
}

/* Desktop */
#subnav-desktop-label-fill { /* New */
  background: #005ab3;
  position: absolute !important;
  left: 0;
  width: 50%;
}

#subnav-desktop-menu-fill { /* New */
  background: #CCCCCC;
  position: absolute !important;
  right: 0;
  width: 50%;
}

#subnav-desktop-label-container {
    padding-top: 15px;
    /*padding-top: 16px;*/
    position: relative;
    z-index: 11;
    /*position: absolute !important;
    left: 0;
    text-align: right;*/
}

#subnav-desktop-label-container.bg-color-50th-gold, 
#subnav-desktop-label-fill.bg-color-50th-gold {
    background: #b79e4b;
}

#subnav-desktop-label {
    font-family: 'Oswald', sans-serif;
}

#subnav-desktop {
    /*font-size: 1.05rem;*/
    font-weight: bold;
    display: block;
    height: 50px;
}
    @media (min-width: 576px) {
        #subnav-desktop {
            display: flex;
        }
    }

#subnav-desktop .navbar-nav {
    height: 50px;
    background: #CCCCCC;
    width: 100%; 
    justify-content: center;
}

#subnav-desktop .navbar-nav li {
    height: 50px;
    border-bottom: 0px solid #CCCCCC;
}

#subnav-desktop .navbar-nav li:nth-child(3) {
    padding-left: 40px;
}

#subnav-desktop .navbar-nav li:nth-child(2) {
    font-size: 1.05rem;
}

#subnav-desktop .navbar-nav li:not(:first-child):not(:nth-child(2)):not(:last-child) {
    font-size: 0.95rem;
    /*margin-top: 3px;*/
    background: #CCCCCC;
    position: relative;
    z-index: 10;
	padding-right: 5px;
}

#subnav-desktop .nav-link {
    color: #001A70;
    text-decoration: none;
    background: transparent;
    transition: all .3s;
}

#subnav-desktop .hvr-underline-from-center:before {
    background: #001A70;
}

#arrow-right {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid #005ab3;
    right: -25px;
    top: 0;
}

#arrow-right.color-50th-gold { /* Update class to color-50th-gold */
  border-left: 25px solid #b79e4b;
}