html.hfc-lg-mobile-lock {
    overflow: hidden;
}

.hfc-lg-nav-wrap {
    --hfc-lg-blue: #07076f;
    --hfc-lg-blue-2: #0d108d;
    --hfc-lg-text: #07076f;
    --hfc-lg-muted: rgba(7, 7, 111, .62);
    --hfc-lg-glass: rgba(255, 255, 255, .48);
    --hfc-lg-panel-top: 92px;
    --hfc-lg-nav-max: 1180px;
    --hfc-lg-radius: 999px;
    position: relative;
    z-index: 9998;
    width: 100%;
    font-family: inherit;
    isolation: isolate;
}

.hfc-lg-nav-wrap *,
.hfc-lg-nav-wrap *::before,
.hfc-lg-nav-wrap *::after {
    box-sizing: border-box;
}

.hfc-lg-nav-wrap a,
.hfc-lg-nav-wrap button {
    font-family: inherit;
    box-shadow: none;
}

.hfc-lg-nav-wrap a:hover,
.hfc-lg-nav-wrap a:focus,
.hfc-lg-nav-wrap a:active {
    text-decoration: none;
}

.hfc-lg-nav-wrap.is-sticky {
    position: sticky;
    top: 16px;
}

.hfc-lg-nav-empty {
    max-width: 900px;
    margin: 20px auto;
    padding: 16px 18px;
    border-radius: 16px;
    background: #fff3cd;
    color: #664d03;
    font: 600 15px/1.5 system-ui, sans-serif;
}

.hfc-lg-nav {
    position: relative;
    width: 100%;
}

.hfc-lg-nav__shell {
    width: min(calc(100vw - 32px), var(--hfc-lg-nav-max));
    min-height: 76px;
    margin: 0 auto;
    padding: 10px 12px 10px 20px;
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    border-radius: var(--hfc-lg-radius);
    border: 1px solid rgba(255, 255, 255, .76);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .34)),
        rgba(255, 255, 255, .34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .92),
        inset 0 -18px 38px rgba(255, 255, 255, .18),
        0 18px 55px rgba(7, 7, 111, .16),
        0 2px 10px rgba(7, 7, 111, .08);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    backdrop-filter: blur(24px) saturate(170%);
}

.hfc-lg-nav__shell::before {
    content: "";
    position: absolute;
    inset: 1px;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .95), transparent 30%),
        radial-gradient(circle at 84% 90%, rgba(255, 255, 255, .45), transparent 34%);
    opacity: .8;
}

.hfc-lg-nav__brand,
.hfc-lg-nav__menu,
.hfc-lg-nav__button,
.hfc-lg-nav__toggle {
    position: relative;
    z-index: 1;
}

.hfc-lg-nav__brand {
    width: 100%;
    min-width: 0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.hfc-lg-nav__logo-img {
    display: block;
    max-width: 100%;
    max-height: 54px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hfc-lg-nav__site-name {
    display: block;
    max-width: 100%;
    color: var(--hfc-lg-blue);
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hfc-lg-nav__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.hfc-lg-nav__item {
    margin: 0;
    padding: 0;
}

.hfc-lg-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--hfc-lg-text);
    font-size: clamp(13px, .92vw, 16px);
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease, color .18s ease;
}

.hfc-lg-nav__item.has-children .hfc-lg-nav__link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: .72;
}

.hfc-lg-nav__item:hover .hfc-lg-nav__link,
.hfc-lg-nav__item.is-active .hfc-lg-nav__link,
.hfc-lg-nav__link:focus-visible {
    color: var(--hfc-lg-blue);
    background: rgba(255, 255, 255, .66);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .92),
        0 7px 18px rgba(7, 7, 111, .10);
    outline: 0;
}

.hfc-lg-nav__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hfc-lg-blue), var(--hfc-lg-blue-2));
    color: #fff !important;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .25),
        0 11px 24px rgba(7, 7, 111, .22);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.hfc-lg-nav__button:hover,
.hfc-lg-nav__button:focus-visible {
    color: #fff !important;
    transform: translateY(-1px);
    filter: saturate(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .34),
        0 15px 30px rgba(7, 7, 111, .28);
    outline: 0;
}

.hfc-lg-nav__panels {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip-path: none;
    opacity: 1;
    pointer-events: none;
}

.hfc-lg-panel {
    position: fixed;
    top: var(--hfc-lg-panel-top);
    left: 50%;
    z-index: 10000;
    width: min(calc(100vw - 32px), var(--hfc-lg-nav-max));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-50%, 10px, 0) scale(.985);
    transform-origin: top center;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.hfc-lg-panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0) scale(1);
}

.hfc-lg-panel__inner {
    display: grid;
    grid-template-columns: minmax(275px, .37fr) minmax(0, 1fr);
    gap: 18px;
    min-height: 314px;
    padding: 18px;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, .78);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .36)),
        rgba(255, 255, 255, .40);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .92),
        inset 0 -22px 48px rgba(255, 255, 255, .22),
        0 28px 80px rgba(7, 7, 111, .22),
        0 2px 10px rgba(7, 7, 111, .10);
    -webkit-backdrop-filter: blur(28px) saturate(175%);
    backdrop-filter: blur(28px) saturate(175%);
}

.hfc-lg-panel__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 9% 5%, rgba(255, 255, 255, .84), transparent 25%),
        radial-gradient(circle at 96% 90%, rgba(255, 255, 255, .42), transparent 28%);
    opacity: .85;
}

.hfc-lg-panel__feature,
.hfc-lg-panel__cards {
    position: relative;
    z-index: 1;
}

.hfc-lg-panel__feature {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 30px 28px;
    border-radius: 28px;
    color: #fff !important;
    text-decoration: none;
    background:
        linear-gradient(145deg, rgba(7, 7, 111, .98), rgba(7, 7, 111, .86)),
        var(--hfc-lg-blue);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .18),
        0 18px 35px rgba(7, 7, 111, .18);
    overflow: hidden;
}

.hfc-lg-panel__feature::after {
    content: "";
    position: absolute;
    inset: auto -30% -45% 18%;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    filter: blur(4px);
}

.hfc-lg-panel__overline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .18em;
    line-height: 1;
    text-transform: uppercase;
}

.hfc-lg-panel__overline span {
    width: 42px;
    height: 4px;
    display: block;
    border-radius: 99px;
    background: #f4e74e;
}

.hfc-lg-panel__feature strong {
    display: block;
    margin-top: 24px;
    color: #fff;
    font-size: clamp(31px, 3.2vw, 48px);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.055em;
}

.hfc-lg-panel__feature em {
    display: block;
    max-width: 420px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(18px, 1.45vw, 30px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.03em;
}

.hfc-lg-panel__feature b {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: #fff;
    font-size: clamp(18px, 1.2vw, 28px);
    font-weight: 950;
    line-height: 1;
}

.hfc-lg-panel__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hfc-lg-panel__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 118px;
    margin: 0;
    padding: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .78);
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .70), rgba(255, 255, 255, .42)),
        rgba(255, 255, 255, .46);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .90),
        0 12px 28px rgba(7, 7, 111, .08);
    -webkit-backdrop-filter: blur(16px) saturate(155%);
    backdrop-filter: blur(16px) saturate(155%);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.hfc-lg-panel__card:hover,
.hfc-lg-panel__card:focus-within {
    transform: translateY(-2px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .56)),
        rgba(255, 255, 255, .62);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        0 18px 34px rgba(7, 7, 111, .14);
}

.hfc-lg-panel__card-main {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 24px 24px 12px;
    color: var(--hfc-lg-blue) !important;
    text-decoration: none;
    outline: 0;
}

.hfc-lg-panel__card-main:focus-visible,
.hfc-lg-panel__mini-links a:focus-visible {
    outline: 2px solid rgba(7, 7, 111, .22);
    outline-offset: 2px;
}

.hfc-lg-panel__card-title {
    display: block;
    color: var(--hfc-lg-blue);
    font-size: clamp(18px, 1.25vw, 27px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.hfc-lg-panel__card-caption {
    display: block;
    margin-top: 12px;
    color: rgba(7, 7, 111, .58);
    font-size: clamp(15px, 1vw, 22px);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.hfc-lg-panel__mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding: 0 18px 18px;
}

.hfc-lg-panel__mini-links a {
    display: inline-flex;
    max-width: 100%;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(7, 7, 111, .08);
    color: rgba(7, 7, 111, .78) !important;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.hfc-lg-panel__mini-links a:hover,
.hfc-lg-panel__mini-links a:focus-visible {
    background: var(--hfc-lg-blue);
    color: #fff !important;
    transform: translateY(-1px);
}

.hfc-lg-nav-wrap button.hfc-lg-nav__toggle {
    appearance: none;
    -webkit-appearance: none;
    width: 52px;
    height: 52px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, .78) !important;
    border-radius: 999px !important;
    cursor: pointer;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .40)),
        rgba(255, 255, 255, .48) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .92),
        0 11px 24px rgba(7, 7, 111, .15) !important;
    -webkit-backdrop-filter: blur(16px) saturate(155%);
    backdrop-filter: blur(16px) saturate(155%);
    outline: 0 !important;
}

.hfc-lg-nav-wrap button.hfc-lg-nav__toggle:hover,
.hfc-lg-nav-wrap button.hfc-lg-nav__toggle:focus,
.hfc-lg-nav-wrap button.hfc-lg-nav__toggle:active,
.hfc-lg-nav-wrap.is-mobile-open button.hfc-lg-nav__toggle {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .48)),
        rgba(255, 255, 255, .58) !important;
    border-color: rgba(255, 255, 255, .86) !important;
    color: transparent !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .95),
        0 12px 26px rgba(7, 7, 111, .18) !important;
    outline: 0 !important;
}

.hfc-lg-nav__toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: var(--hfc-lg-blue);
    transition: transform .2s ease, opacity .2s ease;
}

.hfc-lg-nav-wrap.is-mobile-open .hfc-lg-nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hfc-lg-nav-wrap.is-mobile-open .hfc-lg-nav__toggle span:nth-child(2) {
    opacity: 0;
}

.hfc-lg-nav-wrap.is-mobile-open .hfc-lg-nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hfc-lg-mobile {
    position: fixed;
    top: calc(var(--hfc-lg-panel-top) + 6px);
    left: 50%;
    z-index: 10001;
    width: min(calc(100vw - 20px), 560px);
    height: auto;
    max-height: calc(100dvh - var(--hfc-lg-panel-top) - 18px);
    overflow: visible;
    clip-path: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-50%, 10px, 0) scale(.985);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.hfc-lg-nav-wrap.is-mobile-open .hfc-lg-mobile {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0) scale(1);
}

.hfc-lg-mobile__inner {
    max-height: inherit;
    overflow: auto;
    padding: 12px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .78);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .48)),
        rgba(255, 255, 255, .54);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .92),
        0 24px 70px rgba(7, 7, 111, .24);
    -webkit-backdrop-filter: blur(26px) saturate(175%);
    backdrop-filter: blur(26px) saturate(175%);
}

.hfc-lg-mobile__top-link,
.hfc-lg-mobile__parent,
.hfc-lg-mobile__button,
.hfc-lg-mobile__open,
.hfc-lg-mobile__child,
.hfc-lg-mobile__grandchild {
    width: 100%;
    text-decoration: none;
    font-family: inherit;
}

.hfc-lg-mobile__top-link,
.hfc-lg-nav-wrap button.hfc-lg-mobile__parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    margin: 0 0 8px !important;
    padding: 15px 17px !important;
    border: 1px solid rgba(255, 255, 255, .78) !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, .58) !important;
    color: var(--hfc-lg-blue) !important;
    font-size: 17px;
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -.03em;
    cursor: pointer;
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85) !important;
    outline: 0 !important;
}

.hfc-lg-nav-wrap button.hfc-lg-mobile__parent:hover,
.hfc-lg-nav-wrap button.hfc-lg-mobile__parent:focus,
.hfc-lg-nav-wrap button.hfc-lg-mobile__parent:active,
.hfc-lg-mobile__top-link:hover,
.hfc-lg-mobile__top-link:focus {
    background: rgba(255, 255, 255, .74) !important;
    color: var(--hfc-lg-blue) !important;
    outline: 0 !important;
}



.hfc-lg-nav-wrap button.hfc-lg-nav__toggle::before,
.hfc-lg-nav-wrap button.hfc-lg-nav__toggle::after,
.hfc-lg-nav-wrap button.hfc-lg-mobile__parent::before,
.hfc-lg-nav-wrap button.hfc-lg-mobile__parent::after {
    content: none !important;
    display: none !important;
}

.hfc-lg-nav-wrap button.hfc-lg-mobile__parent,
.hfc-lg-nav-wrap button.hfc-lg-mobile__parent:hover,
.hfc-lg-nav-wrap button.hfc-lg-mobile__parent:focus,
.hfc-lg-nav-wrap button.hfc-lg-mobile__parent:active {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85) !important;
    transform: none !important;
}

.hfc-lg-mobile__group.is-open .hfc-lg-mobile__parent {
    margin-bottom: 8px !important;
    background: rgba(255, 255, 255, .82) !important;
}

.hfc-lg-mobile__parent[aria-expanded="true"] span:last-child {
    transform: rotate(45deg);
}

.hfc-lg-mobile__parent span:last-child {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(7, 7, 111, .08);
    transition: transform .18s ease;
}

.hfc-lg-mobile__sub {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height .28s ease, opacity .18s ease, transform .18s ease;
}

.hfc-lg-mobile__group.is-open .hfc-lg-mobile__sub {
    max-height: 2400px;
    opacity: 1;
    transform: translateY(0);
}

.hfc-lg-mobile__open {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2px 0 8px;
    padding: 14px 17px;
    border: 1px solid rgba(7, 7, 111, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .56);
    color: var(--hfc-lg-blue) !important;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.05;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
}

.hfc-lg-mobile__open:hover,
.hfc-lg-mobile__open:focus {
    background: var(--hfc-lg-blue);
    color: #fff !important;
    outline: 0 !important;
}

.hfc-lg-mobile__child-block {
    position: relative;
    z-index: 2;
    margin: 0 0 8px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .74);
    background: rgba(255, 255, 255, .56);
    overflow: hidden;
}

.hfc-lg-mobile__child {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 17px;
    color: var(--hfc-lg-blue) !important;
}

.hfc-lg-mobile__child:hover,
.hfc-lg-mobile__child:focus {
    background: rgba(255, 255, 255, .46);
    color: var(--hfc-lg-blue) !important;
}

.hfc-lg-mobile__child strong {
    font-size: 16px;
    font-weight: 950;
    line-height: 1.1;
}

.hfc-lg-mobile__child span {
    color: var(--hfc-lg-muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.1;
}

.hfc-lg-mobile__grandchildren {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 12px 12px;
}

.hfc-lg-mobile__grandchild {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(7, 7, 111, .08);
    color: rgba(7, 7, 111, .78) !important;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hfc-lg-mobile__grandchild:hover,
.hfc-lg-mobile__grandchild:focus {
    background: var(--hfc-lg-blue);
    color: #fff !important;
}

.hfc-lg-mobile__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--hfc-lg-blue), var(--hfc-lg-blue-2));
    color: #fff !important;
    font-size: 17px;
    font-weight: 950;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(7, 7, 111, .22);
}

@media (max-width: 1120px) {
    .hfc-lg-nav__shell {
        grid-template-columns: minmax(132px, 190px) minmax(0, 1fr) auto;
        gap: 10px;
        padding-left: 16px;
    }

    .hfc-lg-nav__link {
        padding-inline: 11px;
    }

    .hfc-lg-nav__button {
        padding-inline: 18px;
    }

    .hfc-lg-panel__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .hfc-lg-nav-wrap.is-sticky {
        top: 10px;
    }

    .hfc-lg-nav__shell {
        width: min(calc(100vw - 20px), var(--hfc-lg-nav-max));
        min-height: 68px;
        padding: 8px 9px 8px 16px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .hfc-lg-nav__brand {
        height: 50px;
    }

    .hfc-lg-nav__logo-img {
        max-height: 48px;
    }

    .hfc-lg-nav__menu,
    .hfc-lg-nav__button,
    .hfc-lg-nav__panels {
        display: none;
    }

    .hfc-lg-nav-wrap button.hfc-lg-nav__toggle {
        display: flex;
    }
}

@media (min-width: 881px) {
    .hfc-lg-mobile {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hfc-lg-nav-wrap *,
    .hfc-lg-nav-wrap *::before,
    .hfc-lg-nav-wrap *::after {
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}
