@font-face {
    font-family: 'Barlow Condensed';
    src: url(fonts/Barlow_Condensed/BarlowCondensed-Regular.ttf)
        format('truetype');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url(fonts/Source_Sans_3/SourceSans3-VariableFont_wght.ttf)
        format('truetype');
    font-display: swap;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.svg-inline--fa {
    overflow: visible;
    display: inline-block;
    height: 1em;
    vertical-align: -0.125em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #1c1c1c;
    background-color: #fff;
}

.header-container {
    align-items: center;
    column-gap: 20px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px;
}

.header-logo-wrap {
    flex-shrink: 0;
}

.header-logo {
    display: block;
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    object-position: center left;
}

.header-search-active .header-logo {
    object-fit: cover;
    width: 96px;
}

.header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    color: #fff;
    font:
        24px / 1 'Barlow Condensed',
        Helvetica,
        Arial,
        sans-serif;
    background-color: #0f0f0f;
}

.header-nav-active .header-nav {
    display: block;
}

.header-menubar,
.header-menupanel,
.header-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-menuitem-wrap,
.header-panelitem-wrap,
.header-submenuitem-wrap {
    margin-bottom: 0;
    line-height: inherit;
}

.header-menuitem-wrap {
    border-bottom: 1px solid rgba(34, 34, 34, 0.8);
}

.header-menuitem {
    align-items: center;
    display: none;
    column-gap: 12px;
    height: 48px;
    justify-content: space-between;
    padding: 0 12px 0 16px;
    width: 100%;
    color: inherit;
    font: inherit;
    text-align: inherit;
    text-transform: uppercase;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.header-menuitem:focus-visible {
    outline: 2px solid #0177b2;
    outline-offset: 2px;
}

.header-menuitem.mobile,
.header-panelitem.mobile {
    column-gap: 0;
    display: flex;
    padding: 0;
}

.header-menuitem.mobile a,
.header-panelitem.mobile a {
    align-items: center;
    display: flex;
    flex: 1;
    height: 100%;
    padding: 0 4px 0 16px;
    color: inherit;
    text-decoration: none;
}

.header-menuitem.mobile button,
.header-panelitem.mobile button {
    align-items: center;
    display: flex;
    height: 100%;
    padding: 0 12px;
    justify-content: center;
    color: inherit;
    font: inherit;
    text-align: inherit;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.header-menuitem-wrap.open .header-menuitem,
.header-panelitem-wrap.open .header-panelitem {
    text-decoration: underline;
}

.header-menuitem .svg-inline--fa,
.header-panelitem .svg-inline--fa {
    width: 1em;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-menuitem-wrap.open .header-menuitem .svg-inline--fa,
.header-submenu-wrap.open .header-panelitem .svg-inline--fa {
    transform: rotateZ(180deg);
}

.header-menupanel,
.header-submenu {
    display: none;
    padding-bottom: 16px;
}

.header-menuitem-wrap.open .header-menupanel,
.header-submenu-wrap.open .header-submenu {
    display: block;
}

.header-panelitem-wrap.desktop {
    display: none;
}

.header-panelitem {
    align-items: center;
    column-gap: 12px;
    display: flex;
    height: 48px;
    justify-content: space-between;
    padding: 10px 12px 10px 16px;
    color: inherit;
    font:
        16px / 24px 'Source Sans 3',
        Helvetica,
        Arial,
        sans-serif;
    text-decoration: none;
    overflow-wrap: break-word;
}

.header-submenu-wrap .header-panelitem {
    display: none;
}

.header-submenu-wrap .header-panelitem.mobile {
    display: flex;
}

.header-panelitem .svg-inline--fa {
    display: none;
    font-size: 24px;
}

.header-submenu-wrap .header-panelitem .svg-inline--fa {
    display: inline-block;
}

.header-submenuitem {
    display: block;
    padding: 4px 12px 4px 24px;
    color: inherit;
    font:
        14px / 20px 'Source Sans 3',
        Helvetica,
        Arial,
        sans-serif;
    text-decoration: none;
    overflow-wrap: break-word;
}

.header-submenuitem:hover {
    text-decoration: underline;
}

.header-controls {
    align-items: center;
    column-gap: 10px;
    display: flex;
    max-width: 500px;
}

.header-search-active .header-controls,
.header-search {
    flex: 1;
}

.header-search {
    position: relative;
    display: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.header-search-active .header-search {
    display: block;
}

.header-search-input {
    display: block;
    height: 50px;
    padding: 12px 50px 12px 24px;
    width: 100%;
    font:
        18px / 24px 'Source Sans 3',
        Helvetica,
        Arial,
        sans-serif;
    border: 1px solid #909090;
}

.header-search-submit {
    position: absolute;
    top: 50%;
    right: 28px;
    padding: 0;
    color: #0177b2;
    font-size: 16px;
    background-color: transparent;
    border: none;
    transform: translateY(-50%);
    cursor: pointer;
}

.header-search-toggle {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    line-height: 1;
    color: #0177b2;
    font-size: 24px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.header-search-close,
.header-nav-close {
    align-items: center;
    display: none;
    height: 50px;
    justify-content: center;
    padding: 0;
    width: 50px;
    color: #0177b2;
    font-size: 28px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.header-search-close .svg-inline--fa,
.header-nav-close .svg-inline--fa {
    padding: 4px;
    width: 1em;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.header-search-active .header-search-close,
.header-nav-active .header-nav-close {
    display: flex;
}

.header-search-active .header-search-toggle,
.header-search-active .header-nav-toggle,
.header-search-active .header-nav-close,
.header-nav-active .header-nav-toggle {
    display: none;
}

.header-nav-toggle {
    align-items: center;
    display: flex;
    height: 50px;
    justify-content: center;
    margin-left: 20px;
    padding: 0;
    width: 50px;
    color: #fff;
    font-size: 30px;
    background-color: #0177b2;
    border: 0;
    cursor: pointer;
}

.header-nav-close {
    margin-left: 20px;
}

@media (min-width: 768px) {
    .header-search-active .header-logo {
        object-fit: contain;
        width: 215px;
    }
}

@media (min-width: 1024px) {
    .header-container {
        max-width: 994px;
    }

    .header-nav {
        position: static;
        display: block;
        color: inherit;
        font-size: 20px;
        background-color: transparent;
    }

    .header-search-active .header-nav {
        flex: 0;
    }

    .header-menubar {
        align-items: center;
        display: flex;
        column-gap: 38px;
    }

    .header-menuitem-wrap {
        border-bottom: 0;
    }

    .header-menuitem {
        display: flex;
        column-gap: 4px;
        height: auto;
        padding: 10px 0;
        justify-content: flex-start;
        border-bottom: 2px solid transparent;
    }

    .header-menuitem:hover,
    .header-menuitem-wrap.open .header-menuitem {
        color: #0177b2;
        border-bottom-color: #0177b2;
    }

    .header-search-active .header-menuitem {
        display: none;
    }

    .header-menuitem.mobile,
    .header-panelitem.mobile,
    .header-submenu-wrap .header-panelitem.mobile {
        display: none;
    }

    .header-menuitem-wrap.open .header-menuitem,
    .header-panelitem-wrap.open .header-panelitem {
        text-decoration: none;
    }

    .header-menuitem .svg-inline--fa,
    .header-panelitem .svg-inline--fa {
        width: auto;
        transition: none;
    }

    .header-menupanel {
        position: absolute;
        inset: 100% 0 auto 0;
        overflow: auto;
        justify-content: center;
        max-height: calc(100vh - 100%);
        padding: 20px 0;
        color: #fff;
        background-color: #0f0f0f;
    }

    .header-menuitem-wrap.open .header-menupanel {
        display: flex;
    }

    .header-panelitem-wrap {
        flex: 1;
        max-width: 224px;
        padding: 10px 24px 10px 12px;
        border-right: 1px solid #565656;
    }

    .header-panelitem-wrap.desktop {
        display: block;
    }

    .header-panelitem-wrap:last-child {
        border-right: 0;
    }

    .header-panelitem {
        column-gap: 4px;
        height: auto;
        padding: 4px 0;
        font: inherit;
        text-transform: uppercase;
    }

    .header-submenu-wrap .header-panelitem {
        display: flex;
    }

    .header-panelitem:hover,
    .header-panelitem-wrap.open .header-panelitem:hover {
        text-decoration: underline;
    }

    .header-panelitem .svg-inline--fa {
        display: inline-block;
        font-size: inherit;
    }

    .header-submenu {
        display: block;
        padding-bottom: 0;
    }

    .header-submenuitem {
        padding: 8px 0;
        font-size: 16px;
        line-height: 24px;
    }

    .header-nav-toggle,
    .header-nav-close,
    .header-nav-active .header-nav-close {
        display: none;
    }
}

@media (min-width: 1024px) and (max-width: 1537px) {
    .header-container {
        display: grid;
        gap: 20px 0;
        grid-template-columns: auto 1fr;
        justify-items: flex-end;
        padding-bottom: 12px;
    }

    .header-nav {
        grid-row-start: 2;
        grid-column: 1 / -1;
    }

    .header-search-active .header-menuitem:not(.mobile) {
        display: flex;
    }

    .header-controls {
        justify-content: flex-end;
        width: 100%;
    }

    .header-search {
        display: block;
    }

    .header-search-toggle {
        display: none;
    }
}

@media (min-width: 1280px) {
    .header-container {
        max-width: 1110px;
    }

    .header-menubar {
        column-gap: 16px;
    }
}

@media (min-width: 1538px) {
    .header-container {
        column-gap: 20px;
        max-width: 1406px;
    }

    .header-search-toggle {
        align-items: center;
        display: flex;
        height: 44px;
        justify-content: center;
        width: 44px;
        font-size: 24px;
        line-height: 1;
    }
}

#jax-edge-header-slot + #hdr {
    display: none !important;
}

body.nav-visible .nav-spacer,
body .header-spacer {
    height: 0 !important;
    display: none !important;
}

#hdr,
#main-nav {
    display: none !important;
}
