/*--PAGE--*/
/* Make page bg white*/    
body {
    background: #fff;
}

/* style heading text*/
#dnn_BannerPane p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #2B2926;
    background: #D3BC8D;
}

/* style all paragraphs */
p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2B2926;
}

/* style all dd text */
dd {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2B2926;
}

/* style all div text */
#content div {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2B2926;
}


/* style all h3 */
h3 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 26px;
    font-weight: 600;
    border-bottom: 2px solid #D3BC8D;
    color: #2B2926;
}

/* style all h4 */
h4 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #2B2926;
}

/* style all spans inside the content pane*/
#content span {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #2B2926;
}

/* style all strong text*/
strong{
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2B2926;
}

/* remove line from hr */
hr {
    border-top: none;
}

/* style all links in the content pane */
#content a, #content a:visited, #content a:link {
    color: #2B2926;
    font-weight: 500;
    font-family: 'IBM Plex Sans', sans-serif;
    text-decoration: underline #D3BC8D;
}
#content a:hover{
    color: #D3BC8D;
    font-weight: 500;
    font-family: 'IBM Plex Sans', sans-serif;
    cursor: pointer;
}

/* align sides of page content with heading & header*/
#content{
    padding-left: 30px;
    padding-right: 30px;
}

/* align breadcrumbs with heading & header*/
.skin-breadcrumb-container {
    padding: 5px 0px 0 0px;
}

/* style breadcrumb text*/
.skin-breadcrumb-container a span, .skin-breadcrumb-container a:visited span, .skin-breadcrumb-container a:link span{
    font-family: 'IBM Plex Sans', sans-serif ;
    font-size: 14px !important;
    color: #2B2926;
}
.skin-breadcrumb-container a:hover  {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    color: #D3BC8D;
}

/* style breadcrumb separators*/
.skin-breadcrumb-separator {
    font-size: 14px !important;
}

/* remove page side deco*/
.border-wrapper {
    background-image: none;
}

/* remove heading bg deco, remove bottom padding/margin */
.container-head {
    background: none;
    margin-bottom: 0px;
    padding: 0px;
}

/* responsive: adjust container to fit content*/
@media only screen and (min-width: 992px) {
    .container {
        max-width: 970px;
        width: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
        width: 100%;
    }
}

/* --CONTENT-- */

/* mobile: make publications full width*/
@media only screen and (max-width:767px) {
    .table-body-cell {
        width: 100%;
    } 
}

/* mobile: style heading text*/
@media only screen and (max-width:767px){
    #dnn_BannerPane p {
    font-size: 30px !important;
}}


/*--HEADER--*/

/* change color of top banner*/
.header_banner_container {
    background-color: #2B2926 !important;
    color: #FFF !important;
}

/* change header banner font*/
.header_banner_inner * {
    font-family: 'IBM Plex Sans', sans-serif;
}

/* remove header padding*/
.skin-header{
    padding: 0px 30px;
}

/* hide decoration image on headings*/
.container-image {
    display: none;
}

/* remove header bg*/
.skin-header-background {
    background: none;
}

/* resize logo wrapper and center logo in it*/
.skin-logo {
    float: left;
    padding: 0px;
    position: relative;
    height: 118px;
    width: 15%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

/* scale logo*/
.skin-logo a {
    width:100%;
}
@media only screen and (max-width: 768px) {
    .skin-logo img.img-responsive {
        max-width: 180px;
}}

/* mobile: resize logo*/
@media only screen and (max-width: 767px) {
.skin-logo {
    float: left;
    padding: 15px;
    position: relative;
    height: 118px;
    width: 70%;
    height: auto !important;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.skin-logo a {
    width: 100%;
    display: flex;
    justify-content: center;
}}

/* adust layout of site title, center*/
@media only screen and (min-width: 767px) {
    .skin-title {
    float: left;
    padding-top: 0px;
    padding: 0px 20px;
    font-variant: small-caps;
    height: 118px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}}

/* style site title text*/
.skin-title .title-text {
    font: small-caps 500 32px "IBM Plex Sans", sans-serif;
    color: #2B2926;
}
@media only screen and (max-width: 767px){.skin-title {
    width: 100%;
    padding-left: 0px;
}

.skin-title .title-text {
    display: block;
    width: 100%;
    text-align: center;
}}


/* style site subtitle text*/
.skin-title .subtitle-text {
    font-family: 'IBM PLEX SANS', sans-serif;
    font-size: 26px;
    color: #2B2926;
    line-height: 20px;
    display: block;
}

@media only screen and (min-width: 767px){
    /* align nav width to page content*/
    .nav-main {
    width: 100%;
    padding: 0px 30px;
    }
    
    /* vertically center nav items*/
    .nav>li {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    }
    /* center nav with flex*/
    .nav.nav-main {
        padding-left: 0px;
        padding: 20px 0px;
        display: flex;
        justify-content: center;
        height: 36px;
        border: solid #D3BC8D;
        border-width: 4px 0px 4px 0px;
    }

}

/* remove nav bg*/
* .otnav {
    margin-right: 0px;
    margin-left: 0px;
    background: none;
    
}

/* style nav text*/
.otnav li a {
    margin: 0px 0 0;
    padding: 7px 12px 5px 14px;
    color: #2B2926;
    font-size: 20px;
    font-weight:500;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    height:auto;
}

@media only screen and (min-width: 1440px) {
    .otnav li a {
     font-size: 20px;
  }}

/* remove borders between nav elements*/
.otnav li.top-level {
    background: none;
}

/* remove nav item borders on dropdown*/
.otnav ul > li.dropdown.top-level:hover {
    border-top: none;
    border-left: none;
    border-right: none;

}

/* remove nav submenu item borders on dropdown*/
.otnav ul ul {
    border-left-style: none;
    border-right-style: none;
    border-bottom-style: solid;
    border-bottom-color: #D3BC8D;
    background: #ffffff;
}

/* style submenu item text*/
.otnav ul ul li a {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #2B2926;
    height:auto;
}

/* scale logo*/
.skin-logo img {
    width:100%;
}

/* style mobile menu toggle*/
.skin-nav-toggle {
    background-color: #D3BC8D;
    padding: 6px 8px 6px 8px;
    color: #2B2926;
    width: 40px;
    height: 40px;
}

/* adjust mobile menu toggle border radius*/
.navbar-toggle {
    border-radius: 3px;
    margin-top: 15px;
}

/* adjust mobile menu toggle padding to align with search button*/
.mobile-search {
    padding-right: 10px;
    padding-top: 15px;
}

/* mobile: position search button in top right corner, style*/
@media only screen and (max-width:767px){
    .skin-header-right {
    position: absolute;
    right: 0px; 
    }

    .skin-search a, .skin-search a:visited, .skin-search a:link {
    height: 40px;
    width: 40px;
    border-radius: 3px 3px 3px 3px;
    }
}

/* style search bar*/
.skin-search-input {
    border-radius: 3px 0px 0px 3px;
    border: solid 2px #D3BC8D;
}

/* style search button*/
.skin-search a, .skin-search a:visited, .skin-search a:link {
    color: #2B2926;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #D3BC8D;
    height: 34px;
    width: 34px;
    border-radius: 0px 3px 3px 0px;
}

/* align search bar and button, align right side to page content*/
.desktop-search {
    display: flex;
    justify-content: flex-start;
    float: right;
    padding-right: 0px;
    margin: 10px 0px 20px 0px;
}

/* align right side to page content*/
.mobile-search-popup {
    background: #2B2926;
    border-radius: 3px;
    border: none;
    width: auto;
}

.mobile-search-popup label{
    font-family: 'IBM Plex Sans', sans-serif;
}

/* align right side to page content*/
header .social li {
    display: inline-block;
    text-align: center;
    margin: 0 0px 5px 16px;
}

/* grayscale social logos*/
.social img {
    filter: grayscale(1)contrast(1.5);
}

/*--FOOTER--*/

/* remove footer seal image */
.skin-footer-seal {
    background-image: none !important;
}

/* reduce padding at top of footer */
.skin-footer-content {
    padding-top: 20px;
}

/* change fonts for footer */
.footer {
    font-family: 'IBM Plex Sans', Arial, Helvetica, sans-serif;
}

/* style fonts for footer menu headings */
.footer b, .footer strong {
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
}

/* adjust column widths of footer sections */
@media only screen and (min-width: 769px){
    .col-md-6.col-sm-12 {
    width: 20%;
}}

/* adjust column widths of footer sections */
@media only screen and (min-width: 769px){
    div#dnn_FooterLinks {
    width: 80%;
}}

/* mobile: adjust footer layout */
@media only screen and (max-width: 767px){
    #dnn_ctr707_HtmlModule_lblContent tr{
        display: flex;
        flex-direction: column;
    }

    #dnn_ctr707_HtmlModule_lblContent td{
        margin-left: 15px;
    }

    #dnn_ctr707_HtmlModule_lblContent p{
        margin-left: 0px !important;
    }

}


/* remove extra spacing from footer menu */
.DnnModule.DnnModule-DNN_HTML.DnnModule-707 > .base-container {
    margin-top: 0px;
}

/* style footer menu items with span tag */
tr span {
    font-size: 18px !important;
    font-weight: 400;
    color: #2B2926 !important;
}

/* style footer menu items a tag*/
tr a {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #2B2926 !important;
}

/* style footer socials heading*/
.skin-social-header {
    color: #2B2926;
    font: 18px "IBM Plex Sans", sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: left;
}

/* adjust layout for links to keep in line */
.skin-social-links ul {
    display: flex;
}

/* Hide social media icon titles */
.skin-social-links ul > li .text {
    display: none;
}

/* scale veterans crisis line image */
img.vcl {
    max-width: 160px;
}

/* remove footer bg */
.skin-footer-background {
    background: none;
}

/* style site creds text */
.skin-footer-banner > a {
        font-family: 'IBM Plex Sans', sans-serif;
}

/* Article Styles */
a.more {
	display: none !important;
}

.article-body * {
    background: none !important;
}

.article-body p {
    font-size: 18px !important;
    font-weight: 400 !important;
}

/* Button Styles*/

/* style read more buttons for articles*/
.read-more-link {
      display: inline-block;
      background-color: #D3BC8D;
      color: #2B2926;
      font-family: "IBM Plex Sans", sans-serif;
      text-decoration: none;
      border-radius: 3px;
      padding: 10px 20px;
}

/* style learn more buttons for featured info sections*/
.learn-more-link {
    display: inline-block;
    background-color: #D3BC8D;
    color: #2B2926;
    font-family: "IBM Plex Sans", sans-serif;
    text-decoration: none;
    border: 1px solid #2B2926;
    border-radius: 3px;
    padding: 10px 20px;
    margin: 0px 30px 40px 30px;
}

/* fix the search bar to match the number of icons we have */
input.skin-search-input.usagov-search-autocomplete.ui-autocomplete-input {
    width: 221px;
}

/* ==========================================
   ACI GLOBAL RESPONSIVE STYLES
   Conservative Mobile Layer
   ========================================== */


/* ==========================================
   1. RESPONSIVE MEDIA
   Prevent images and videos from extending
   beyond their parent containers.
   ========================================== */

img {
    max-width:100%;
}

video {
    max-width:100%;
    height:auto;
}

iframe {
    max-width:100%;
}


/* ==========================================
   2. TEXT OVERFLOW
   Prevent long URLs and text strings from
   forcing pages wider than the viewport.
   ========================================== */

#content p,
#content li,
#content td {
    overflow-wrap:normal;
    word-break:normal;
}

#content a {
    overflow-wrap:anywhere;
}


/* ==========================================
   3. RESPONSIVE TABLE WRAPPER

   For large tables, use:

   <div class="aci-table-scroll">
       <table>...</table>
   </div>

   ========================================== */

.aci-table-scroll {
    width:100%;
    max-width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}


/* ==========================================
   4. RESPONSIVE VIDEO WRAPPER

   For embedded 16:9 video:

   <div class="aci-video-responsive">
       iframe or video
   </div>

   ========================================== */

.aci-video-responsive {
    position:relative;
    width:100%;
    max-width:100%;
    aspect-ratio:16 / 9;
    overflow:hidden;
}

.aci-video-responsive iframe,
.aci-video-responsive video {
    width:100%;
    height:100%;
    display:block;
}


/* ==========================================
   5. COMMON ACI GRIDS
   Tablet behavior
   ========================================== */

@media screen and (max-width:900px) {

    .case-study-grid,
    .story-grid,
    .threatcast-grid,
    .affiliations-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr)) !important;
    }

}


/* ==========================================
   6. PHONE LAYOUT
   ========================================== */

@media screen and (max-width:600px) {

    /* ------------------------------------------
       Common ACI grids become one column
       ------------------------------------------ */

    .case-study-grid,
    .story-grid,
    .threatcast-grid,
    .affiliations-grid {
        grid-template-columns:1fr !important;
    }


    /* ------------------------------------------
       Prevent cards from exceeding viewport
       ------------------------------------------ */

    .case-study-card,
    .story-card,
    .threatcast-card,
    .affiliation-card {
        width:100% !important;
        max-width:100% !important;
    }


    /* ------------------------------------------
       Homepage / feature banners
       ------------------------------------------ */

    .aci-banner img {
        height:220px !important;
        object-fit:cover;
    }

    .aci-content {
        left:20px !important;
        right:20px !important;
        bottom:20px !important;
    }

    .aci-title {
        font-size:28px !important;
        line-height:1.15 !important;
    }

    .aci-button {
        padding:11px 18px !important;
        font-size:14px !important;
    }


    /* ------------------------------------------
       Reduce oversized section titles
       Only targets our custom section class.
       ------------------------------------------ */

    .dfp-section-title {
        font-size:30px !important;
        line-height:1.2 !important;
    }


    /* ------------------------------------------
       Improve button wrapping
       ------------------------------------------ */

    .case-study-button,
    .story-button,
    .threatcast-button,
    .aci-button {
        max-width:100%;
        white-space:normal;
        text-align:center;
    }

}


/* ==========================================
   7. VERY SMALL PHONES
   ========================================== */

@media screen and (max-width:400px) {

    .dfp-section-title {
        font-size:27px !important;
    }

    .aci-title {
        font-size:25px !important;
    }

}


/* ==========================================
   8. ACCESSIBILITY
   Respect reduced-motion preference.
   ========================================== */

@media (prefers-reduced-motion:reduce) {

    .aci-banner,
    .aci-banner img,
    .case-study-card,
    .story-card,
    .threatcast-card,
    .affiliation-card {
        transition:none !important;
    }

}

/* ==========================================
   ACI MOBILE CONTENT FIXES
   Fix oversized typography and narrow content
   ========================================== */

@media screen and (max-width:600px) {

    /* Give page content more usable screen width */
    #content {
        padding-left:15px !important;
        padding-right:15px !important;
    }


    /* ------------------------------------------
       STANDARD PAGE HEADINGS
       ------------------------------------------ */

    #content h1 {
        font-size:38px !important;
        line-height:1.1 !important;
        letter-spacing:-1px !important;

        overflow-wrap:normal !important;
        word-break:normal !important;
        hyphens:none !important;
    }

    #content h2 {
        font-size:30px !important;
        line-height:1.2 !important;

        overflow-wrap:normal !important;
        word-break:normal !important;
        hyphens:none !important;
    }

    #content h3 {
        font-size:24px !important;
        line-height:1.25 !important;
    }


    /* ------------------------------------------
       FIX OLD GLOBAL SPAN / STRONG RULES
       ------------------------------------------ */

    #content span {
        font-size:inherit;
    }

    #content strong {
        font-size:inherit;
    }


    /* ------------------------------------------
       BODY COPY
       ------------------------------------------ */

    #content p,
    #content li {
        font-size:16px;
        line-height:1.6;
    }


    /* ------------------------------------------
       CUSTOM LARGE PAGE TITLES
       ------------------------------------------ */

    .capabilities-title,
    .page-title {
        font-size:38px !important;
        line-height:1.1 !important;

        overflow-wrap:normal !important;
        word-break:normal !important;
        hyphens:none !important;
    }


    /* ------------------------------------------
       LARGE INTRO / GOLD BANNERS
       ------------------------------------------ */

    .capabilities-intro,
    .case-study-intro {
        font-size:17px !important;
        line-height:1.6 !important;
    }

}

/* ==========================================
   ACI DESKTOP NAVIGATION 3.0
   Tactical Tech + ACI Tech Line

   Desktop only.
   AFPIMS page tree remains the source
   of navigation content.
   ========================================== */

@media screen and (min-width:768px) {


    /* ==========================================
       NAVIGATION SHELL
       ========================================== */

    .navbar-collapse.nav-main-collapse {
        overflow:visible !important;
    }

    .otnav {
        position:relative !important;
        margin:0 !important;
        overflow:visible !important;
        background:#ffffff !important;
    }

    .nav.nav-main {
        display:flex !important;
        justify-content:center !important;
        align-items:stretch !important;

        width:100% !important;
        height:auto !important;

        margin:0 !important;
        padding:0 10px !important;

        background:#ffffff !important;

        /* Cleaner than the old heavy gold rails */
        border-top:1px solid rgba(201,174,59,.38) !important;
        border-bottom:1px solid rgba(43,41,38,.12) !important;

        box-shadow:
            0 3px 10px rgba(0,0,0,.035) !important;

        overflow:visible !important;
    }


    /* ==========================================
       TOP LEVEL ITEMS
       ========================================== */

    .nav.nav-main > li {
        display:block !important;
        position:relative !important;

        margin:0 2px !important;
        padding:0 !important;

        border:none !important;
        background:transparent !important;
    }


    /* ==========================================
       TOP LEVEL LINKS
       ========================================== */

    .nav.nav-main > li > a {
        position:relative !important;

        display:flex !important;
        align-items:center !important;
        justify-content:center !important;

        min-height:58px !important;

        margin:0 !important;
        padding:0 21px !important;

        font-family:'IBM Plex Sans', sans-serif !important;
        font-size:16px !important;
        font-weight:600 !important;

        line-height:1.2 !important;

        letter-spacing:.035em !important;

        text-transform:uppercase !important;
        text-decoration:none !important;

        color:#2B2926 !important;
        background:transparent !important;

        border:none !important;

        transition:
            color .2s ease,
            background-color .2s ease !important;
    }


    /* ==========================================
       ANIMATED GOLD TECH LINE
       ========================================== */

    .nav.nav-main > li > a::after {
        content:"";

        position:absolute;

        left:50%;
        bottom:0;

        width:0;
        height:3px;

        background:#c9ae3b;

        transform:translateX(-50%);

        transition:
            width .22s ease,
            box-shadow .22s ease !important;
    }


    /* Tiny center node gives the line a subtle
       technical / signal appearance */

    .nav.nav-main > li > a::before {
        content:"";

        position:absolute;

        left:50%;
        bottom:-2px;

        width:5px;
        height:5px;

        border-radius:50%;

        background:#c9ae3b;

        transform:
            translateX(-50%)
            scale(0);

        opacity:0;

        transition:
            transform .2s ease,
            opacity .2s ease !important;
    }


    /* ==========================================
       TOP LEVEL HOVER / FOCUS
       ========================================== */

    .nav.nav-main > li:hover > a,
    .nav.nav-main > li:focus-within > a {
        color:#111 !important;
        background:#faf9f5 !important;
    }

    .nav.nav-main > li:hover > a::after,
    .nav.nav-main > li:focus-within > a::after {
        width:68%;

        box-shadow:
            0 1px 7px rgba(201,174,59,.35);
    }

    .nav.nav-main > li:hover > a::before,
    .nav.nav-main > li:focus-within > a::before {
        opacity:1;

        transform:
            translateX(-50%)
            scale(1);
    }


    /* ==========================================
       ACTIVE TOP LEVEL SECTION
       ========================================== */

    .nav.nav-main > li.active > a {
        color:#111 !important;
        background:#faf9f5 !important;
    }

    .nav.nav-main > li.active > a::after {
        width:68% !important;

        box-shadow:
            0 1px 7px rgba(201,174,59,.30);
    }

    .nav.nav-main > li.active > a::before {
        opacity:1 !important;

        transform:
            translateX(-50%)
            scale(1) !important;
    }


    /* ==========================================
       TOP LEVEL CHEVRONS
       ========================================== */

    .nav.nav-main > li > a .fa {
        margin-left:8px !important;

        font-size:13px !important;

        color:#555 !important;

        transition:
            transform .2s ease,
            color .2s ease !important;
    }

    .nav.nav-main > li:hover > a .fa-angle-down,
    .nav.nav-main > li:focus-within > a .fa-angle-down {
        color:#9c8120 !important;
        transform:rotate(180deg);
    }


    /* ==========================================
       FIRST LEVEL DROPDOWN
       ========================================== */

    .otnav .nav.nav-main > li > ul.dropdown-menu {
        display:block;

        position:absolute !important;

        top:100% !important;
        left:0 !important;

        min-width:320px !important;
        width:max-content;
        max-width:430px;

        margin:0 !important;
        padding:12px 0 10px !important;

        background:rgba(255,255,255,.985) !important;

        border:1px solid rgba(201,174,59,.28) !important;
        border-top:4px solid #c9ae3b !important;

        border-radius:0 0 12px 12px !important;

        box-shadow:
            0 18px 45px rgba(0,0,0,.15),
            0 3px 10px rgba(0,0,0,.07) !important;

        opacity:0;
        visibility:hidden;

        transform:translateY(7px);

        transition:
            opacity .17s ease,
            transform .17s ease,
            visibility .17s ease !important;

        z-index:9999 !important;
    }


    /* ==========================================
       SUBTLE TECH DETAIL ON DROPDOWN
       ========================================== */

    .otnav .nav.nav-main > li > ul.dropdown-menu::before {
        content:"";

        position:absolute;

        top:-4px;
        left:18px;

        width:42px;
        height:4px;

        background:#f4d75e;

        box-shadow:
            48px 0 0 rgba(201,174,59,.35);

        pointer-events:none;
    }


    /* ==========================================
       OPEN FIRST LEVEL
       ========================================== */

    .otnav .nav.nav-main > li:hover > ul.dropdown-menu,
    .otnav .nav.nav-main > li:focus-within > ul.dropdown-menu,
    .otnav .nav.nav-main > li.open > ul.dropdown-menu {
        opacity:1 !important;
        visibility:visible !important;

        transform:translateY(0) !important;
    }


    /* ==========================================
       DROPDOWN ITEMS
       ========================================== */

    .otnav ul.dropdown-menu > li {
        display:block !important;

        position:relative !important;

        width:100% !important;

        margin:0 !important;
        padding:0 7px !important;

        border:none !important;

        background:transparent !important;
    }


    /* ==========================================
       DROPDOWN LINKS
       ========================================== */

    .otnav ul.dropdown-menu > li > a {
        position:relative !important;

        display:flex !important;

        align-items:center !important;
        justify-content:space-between !important;

        width:100% !important;
        min-height:46px !important;

        padding:10px 13px 10px 15px !important;

        font-family:'IBM Plex Sans', sans-serif !important;

        font-size:15px !important;
        font-weight:600 !important;

        line-height:1.35 !important;

        letter-spacing:.005em !important;

        color:#2B2926 !important;

        text-transform:none !important;
        text-decoration:none !important;

        white-space:normal !important;

        background:transparent !important;

        border:none !important;
        border-radius:7px !important;

        transition:
            background-color .16s ease,
            color .16s ease,
            padding-left .16s ease !important;
    }


    /* Gold signal bar at left of hovered item */

    .otnav ul.dropdown-menu > li > a::before {
        content:"";

        position:absolute;

        left:0;
        top:50%;

        width:3px;
        height:0;

        border-radius:2px;

        background:#c9ae3b;

        transform:translateY(-50%);

        transition:height .16s ease !important;
    }


    /* ==========================================
       DROPDOWN HOVER
       ========================================== */

    .otnav ul.dropdown-menu > li:hover > a,
    .otnav ul.dropdown-menu > li:focus-within > a {
        color:#111 !important;

        background:#f5f2e8 !important;

        padding-left:20px !important;
    }

    .otnav ul.dropdown-menu > li:hover > a::before,
    .otnav ul.dropdown-menu > li:focus-within > a::before {
        height:55%;
    }


    /* ==========================================
       SUBMENU CHEVRONS
       ========================================== */

    .otnav ul.dropdown-menu > li > a .fa {
        margin-left:20px !important;

        font-size:12px !important;

        color:#777 !important;

        transition:
            transform .18s ease,
            color .18s ease !important;
    }

    .otnav ul.dropdown-menu > li:hover > a .fa-angle-right,
    .otnav ul.dropdown-menu > li:focus-within > a .fa-angle-right {
        color:#9c8120 !important;

        transform:translateX(4px);
    }


    /* ==========================================
       SECOND LEVEL FLYOUT
       ========================================== */

    .otnav ul.dropdown-menu ul.dropdown-menu {
        display:block;

        position:absolute !important;

        top:-5px !important;
        left:100% !important;

        min-width:310px !important;
        max-width:420px;

        margin:0 !important;
        padding:12px 0 10px !important;

        background:rgba(255,255,255,.99) !important;

        border:1px solid rgba(201,174,59,.28) !important;
        border-top:4px solid #c9ae3b !important;

        border-radius:0 12px 12px 12px !important;

        box-shadow:
            0 18px 45px rgba(0,0,0,.15),
            0 3px 10px rgba(0,0,0,.07) !important;

        opacity:0;
        visibility:hidden;

        transform:translateX(7px);

        transition:
            opacity .17s ease,
            transform .17s ease,
            visibility .17s ease !important;

        z-index:10000 !important;
    }


    /* Small technical accent */

    .otnav ul.dropdown-menu ul.dropdown-menu::before {
        content:"";

        position:absolute;

        top:-4px;
        left:18px;

        width:42px;
        height:4px;

        background:#f4d75e;

        pointer-events:none;
    }


    /* ==========================================
       OPEN SECOND LEVEL
       ========================================== */

    .otnav ul.dropdown-menu > li:hover > ul.dropdown-menu,
    .otnav ul.dropdown-menu > li:focus-within > ul.dropdown-menu,
    .otnav ul.dropdown-menu > li.open > ul.dropdown-menu {
        opacity:1 !important;
        visibility:visible !important;

        transform:translateX(0) !important;
    }


    /* ==========================================
       ANTI-FLICKER BRIDGE

       Extends invisible hover area between
       parent dropdown and flyout.
       ========================================== */

    .otnav ul.dropdown-menu > li.dropdown::after {
        content:"";

        position:absolute;

        top:0;
        right:-14px;

        width:14px;
        height:100%;

        background:transparent;

        z-index:1;
    }


    /* ==========================================
       ACTIVE DROPDOWN PAGE
       ========================================== */

    .otnav ul.dropdown-menu > li.active > a {
        background:#f5f2e8 !important;
        color:#111 !important;

        font-weight:700 !important;
    }

    .otnav ul.dropdown-menu > li.active > a::before {
        height:55% !important;
    }


    /* ==========================================
       KEYBOARD FOCUS
       ========================================== */

    .nav.nav-main a:focus-visible {
        outline:2px solid #c9ae3b !important;
        outline-offset:-2px !important;
    }


    /* ==========================================
       REMOVE LEGACY AFPIMS HOVER EFFECTS
       ========================================== */

    .otnav li.top-level,
    .otnav li.top-level:hover,
    .otnav ul > li.dropdown.top-level:hover {
        border:none !important;
        background-image:none !important;
    }

}


/* ==========================================
   REDUCED MOTION
   Accessibility
   ========================================== */

@media (prefers-reduced-motion:reduce) {

    .nav.nav-main > li > a,
    .nav.nav-main > li > a::before,
    .nav.nav-main > li > a::after,
    .otnav .dropdown-menu,
    .otnav .dropdown-menu a,
    .otnav .dropdown-menu a::before,
    .otnav .dropdown-menu .fa {
        transition:none !important;
    }

}

/* TEMPORARY TEST - REMOVE AFTER TESTING */

@media screen and (min-width:768px) {

    #main-nav {
        background:#222 !important;
    }

    #main-nav > li > a {
        color:#ffffff !important;
    }

}