:root {
    --moco-max-width: 1760px;
    --moco-red: #c8102e;
    --moco-black: #0d1018;
    --moco-orange: #f18b1c;
    --moco-text: #ffffff;
    --moco-muted: rgba(255,255,255,.72);
    --moco-border: rgba(255,255,255,.18);
    --moco-shadow: 0 18px 50px rgba(0,0,0,.35);
    --moco-sticky-height: 0px;
    --moco-admin-offset: 0px;
    --moco-main-height: 130px;
    --moco-banner-height: 62px
}

.moco-site-header {
    display: none
}

div#mocoSiteHeader {
    background: #17181c;
}

@media only screen and (min-width: 1240px) {
    .moco-site-header {
        display:block;
        position: relative;
        z-index: 9999;
        font-family: inherit
    }

    #Header {
        display: none!important
    }

    .moco-site-header__inner {
        width: min(var(--moco-max-width), calc(100% - 64px));
        margin: 0 auto
    }

    .moco-site-header__utility {
        background: var(--moco-red);
        color: #fff
    }

    .moco-site-header__inner--utility {
        min-height: 65px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 28px
    }

    .moco-site-header__utility-nav-wrap {
        display: flex;
        align-items: center;
        margin-right: 10px
    }

    .moco-utility-nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 36px
    }

    .moco-utility-nav__list li {
        margin: 0;
        padding: 0
    }

    .moco-utility-nav__list a {
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: .01em
    }

    .moco-header-search {
        position: relative;
        width: 128px;
        flex: 0 0 251px;
        border: solid 2px;
        border-radius: 50px;
        background: transparent!important
    }

    .moco-header-search__input {
        width: 100%;
        height: 58px;
        border-radius: 999px;
        border: 2px solid rgba(255,255,255,.85);
        background: transparent;
        color: #fff;
        padding: 0 76px 0 24px; /* more room for larger button */
        font-size: 18px;
        outline: none;
        box-sizing: border-box;
    }
    
    .moco-header-search__input::placeholder {
        color: rgba(255,255,255,.85);
    }
    
    .moco-header-search__button {
        position: absolute;
        top: 50%;
        right: 9px;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border: 0;
        background: transparent;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .moco-header-search__button svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: #fff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    
    .moco-header-search {
        position: relative;
    }

    .moco-site-header__sticky {
        position: sticky;
        top: 0;
        z-index: 9999;
        min-height: calc(var(--moco-main-height) + var(--moco-banner-height))
    }

    body.admin-bar .moco-site-header__sticky {
        top: 32px
    }

    .moco-site-header__main {
        background: rgb(23 24 28 / 90%);
        color: #fff;
        border-bottom: 1px solid #000;
        position: relative;
        z-index: 10012;
        transition: top .28s ease
    }

    .moco-mega-open .moco-site-header__main {
        border-bottom: 1px solid rgb(255 255 255 / 48%)
    }

    .moco-site-header.moco-is-stuck .moco-site-header__main {
        position: fixed;
        left: 0;
        right: 0;
        top: var(--moco-admin-offset)
    }

    .moco-site-header__inner--main {
        min-height: 124.5px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px
    }

    .moco-site-header__brand {
        flex: 0 0 auto;
        max-width: 410px
    }

    .moco-site-header__brand .custom-logo-link,.moco-site-header__brand .moco-logo {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        width: 296px;
        margin-top: 5px
    }

    .moco-site-header__brand img {
        max-height: 92px;
        width: auto;
        display: block
    }

    .moco-logo--text {
        color: #fff;
        font-size: 30px;
        font-weight: 700
    }

    .moco-main-nav {
        flex: 1 1 auto;
        display: flex;
        justify-content: flex-end
    }

    .moco-main-nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(28px, 3vw, 64px)
    }

    .moco-main-nav__item {
        margin: 0;
        padding: 0
    }

    .moco-main-nav__link {
        position: relative;
        display: inline-flex;
        align-items: center;
        min-height: 56px;
        color: #fff;
        text-decoration: none;
        font-size: clamp(24px, 1.6vw, 30px);
        font-weight: 500;
        line-height: 1.15;
        transition: color .18s ease
    }

    .moco-main-nav__link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 3px;
        height: 2px;
        background: #fff;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .2s ease;
        opacity: .85
    }

    .moco-main-nav__item:hover>.moco-main-nav__link,.moco-main-nav__item.is-active>.moco-main-nav__link,.moco-main-nav__item.current-menu-item>.moco-main-nav__link,.moco-main-nav__item.current-menu-ancestor>.moco-main-nav__link {
        color: #ff3054;
        text-decoration: unset!important;
    }

    .moco-main-nav__item:hover>.moco-main-nav__link::after,.moco-main-nav__item.is-active>.moco-main-nav__link::after,.moco-main-nav__item.current-menu-item>.moco-main-nav__link::after,.moco-main-nav__item.current-menu-ancestor>.moco-main-nav__link::after {
        transform: scaleX(1)
    }

    .moco-site-header__banner {
        background: var(--moco-orange);
        color: #111;
        border-bottom: 1px solid rgba(0,0,0,.08);
        position: relative;
        z-index: 10009;
        transition: top .28s ease
    }

    .moco-site-header.moco-is-stuck .moco-site-header__banner {
        position: fixed;
        left: 0;
        right: 0;
        top: calc(var(--moco-admin-offset) + var(--moco-main-height))
    }

    .moco-site-header__inner--banner {
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center
    }

    .moco-site-header__banner p,.moco-site-header__banner a,.moco-site-header__banner span,.moco-site-header__banner div {
        font-size: 20px;
        font-weight: 700;
        color: #111
    }

    .moco-mega {
        position: absolute;
        top: var(--moco-main-height);
        left: 0;
        right: 0;
        visibility: hidden;
        pointer-events: none;
        overflow: hidden;
        clip-path: inset(0 0 100% 0);
        -webkit-clip-path: inset(0 0 100% 0);
        transition: clip-path .28s ease,-webkit-clip-path .28s ease,visibility 0s linear .28s,top .28s ease;
        z-index: 10010;
        will-change: clip-path,top
    }

    .moco-site-header.moco-is-stuck .moco-mega {
        position: fixed;
        left: 0;
        right: 0;
        top: calc(var(--moco-admin-offset) + var(--moco-main-height))
    }

    .moco-mega.is-open {
        visibility: visible;
        pointer-events: auto;
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
        transition: clip-path .32s ease,-webkit-clip-path .32s ease,visibility 0s linear 0s,top .28s ease
    }

    .moco-mega__shell {
        grid-template-columns: minmax(0,1fr) 420px;
        background: rgba(23,24,28,.95);
        color: #fff;
        box-shadow: var(--moco-shadow);
        min-height: 400px;
        width: 100%;
    }

    .moco-mega__panels {
        min-width: 0;
        padding: 45px 0 54px
    }

    .moco-mega__panel {
        display: none
    }

    .moco-mega__panel.is-active {
        display: block;
        padding-right: 39px;
    }

    .moco-mega__grid {
        display: grid;
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 54px 56px;
        align-content: start
    }

    .moco-mega__card {
        min-width: 0
    }

    .moco-mega__heading {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: #fff;
        text-decoration: none;
        font-size: 22px;
        font-weight: 500;
        line-height: 1.35;
        padding-bottom: 14px;
        margin-bottom: 14px;
        border-bottom: 1px solid rgb(255 255 255 / 48%);
        width: 100%;
        text-decoration: unset!important;
    }

    .moco-mega__heading:hover {
        color: #ff3054
    }

    .moco-mega__arrow {
        font-size: 28px;
        line-height: 1;
        transform: translateY(-1px)
    }

    .moco-mega__sublist {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 12px
    }

    .moco-mega__subitem {
        margin: 0;
        padding: 0
    }

    .moco-mega__subitem a {
        color: var(--moco-muted);
        text-decoration: none;
        font-size: 17px;
        line-height: 1.45
    }

    .moco-mega__subitem a:hover {
        color: #fff
    }

    .moco-mega__sidebar {
        position: relative;
        padding: 39px 0 0px 34px;
        background: unset;
    }

    .moco-mega__sidebar,.moco-mega__sidebar {
        color: #fff;
        width: 34%;
    }

    .moco-mega__sidebar a {
        color: #fff!important;
    }

    .moco-mega__backdrop {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: var(--moco-sticky-height);
        border: 0;
        background: rgba(7,10,16,.68);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .18s ease,visibility .18s ease;
        z-index: 10000;
        padding: 0;
        cursor: default
    }

    body.moco-mega-open .moco-mega__backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto
    }

    body.admin-bar .moco-mega__backdrop {
        top: calc(var(--moco-sticky-height) + 32px)
    }

    #Wrapper,#Content,#Subheader {
        position: relative;
        z-index: 1
    }
}

@media only screen and (max-width: 1239px) {
    .moco-site-header {
        display:none!important
    }
}

@media only screen and (max-width: 782px) {
    body.admin-bar .moco-site-header__sticky {
        top:46px
    }

    body.admin-bar .moco-mega__backdrop {
        top: calc(var(--moco-sticky-height) + 46px)
    }
}

input#moco-desktop-search {
    padding-bottom: 0!important;
    margin-bottom: 8px!important;
    height: 33px;
    background: transparent!important;
    border: solid 0px!important;
    font-size: 19px;
    padding-left: 15px
}

.moco-site-header__utility-nav-wrap a {
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 17px;
    align-items: center;
    border-bottom: 1px solid transparent;
    line-height: 1.2;
    padding: 5px 0
}

label.screen-reader-text {
    border: solid 0px!important
}

@media only screen and (min-width: 1240px) {
    .moco-site-header__inner.moco-site-header__inner--utility {
        max-width:1415px
    }
}

.moco-site-header__utility-nav-wrap a:focus,.moco-site-header__utility-nav-wrap a:hover {
    color: var(--accent_color);
    border-color: var(--text_color)
}

@media only screen and (min-width: 1240px) {
    .moco-site-header__inner--main,.moco-mega_inner-megamenu {
        max-width:1415px
    }
}

.moco-main-nav__item a {
    font-size: 20px
}

.moco-site-header__banner .wpb_text_column.wpb_content_element {
    margin-bottom: 0
}

.moco-site-header__banner .wpb_text_column.wpb_content_element p,.moco-site-header__banner .wpb_text_column.wpb_content_element a {
    font-size: 16px!important
}

.moco-mega_inner-megamenu {
    display: flex;
    margin: auto
}

.moco-mega__panels {
    width: 100%
}

.moco-mega__sidebar h2 {
    font-size: 23px!important;
    line-height: 32px;
}

a.header_callout_link {
    display: flex;
    align-items: center
}

span.header_callout_icon {
    width: 37px;
    margin-right: 17px;
    margin-bottom: -10px
}

h2.header_callout_title {
    color: gray
}

span.text {
    font-size: 19px;
    font-weight: 500
}

.two-columns .moco-mega__grid {
    grid-template-columns: repeat(2,minmax(0,1fr))!important;
}

.moco-mega__grid {
    display: grid;
    align-items: start;
}

a.moco-mega__heading.current-page {
    color: #c80f2e;
}
