:root {
    --hunter-accent: #fa123f;
    --hunter-text: #252525;
    --hunter-muted: #707070;
    --hunter-header-bg: #fff;
    --hunter-panel-bg: #fff;
    --hunter-soft-bg: #fff7f8;
    --hunter-border: #e2e2e2;
    --hunter-cta-bg: #201112;
    --hunter-content-width: 1120px;
    --hunter-header-height: 84px;
    --hunter-mobile-header-height: 80px;
}

body.hunter-header-scroll-lock {
    overflow: hidden;
}

.site-header,
.elementor-widget-hunter_latam_header {
    position: relative;
    z-index: 9999;
}

.elementor-widget-hunter_latam_header,
.elementor-widget-hunter_latam_header > .elementor-widget-container {
    width: 100%;
}

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

.hunter-header {
    position: relative;
    z-index: 999;
    width: 100%;
    color: var(--hunter-text);
    font-family: var(--hunter-font-family, "Montserrat", Arial, sans-serif);
    font-size: 15px;
    line-height: 1.35;
}

.hunter-header-sticky-host {
    position: sticky !important;
    z-index: 9999 !important;
    top: var(--hunter-sticky-offset, 0px) !important;
}

.admin-bar .hunter-header-sticky-host {
    top: calc(var(--hunter-sticky-offset, 0px) + 32px) !important;
}

.hunter-header--sticky .hunter-header__bar {
    box-shadow: 0 4px 14px rgb(0 0 0 / 8%);
}

.hunter-header [hidden] {
    display: none !important;
}

.hunter-header a {
    color: inherit;
    text-decoration: none;
}

.hunter-header button,
.hunter-header input {
    color: inherit;
    font: inherit;
}

.hunter-header button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hunter-header a:focus-visible,
.hunter-header button:focus-visible,
.hunter-header input:focus-visible {
    outline: 2px solid var(--hunter-accent);
    outline-offset: 3px;
}

.hunter-header .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hunter-header__bar {
    position: relative;
    z-index: 5;
    width: 100%;
    height: var(--hunter-header-height);
    background: var(--hunter-header-bg);
}

.hunter-header__inner {
    display: flex;
    align-items: center;
    width: min(calc(100% - 48px), var(--hunter-content-width));
    height: 100%;
    margin: 0 auto;
}

.hunter-header__logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    margin-right: 43px;
}

.hunter-header__logo img {
    display: block;
    width: 120px;
    max-width: none;
    height: auto;
}

.hunter-header__desktop-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    gap: clamp(20px, 2.15vw, 31px);
    min-width: 0;
    height: 100%;
}

.hunter-header__nav-trigger,
.hunter-header__nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    height: 100%;
    color: var(--hunter-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;
    transition: color 180ms ease;
}

.hunter-header__nav-trigger > span:first-child {
    max-width: 128px;
    white-space: normal;
}

.hunter-header__nav-trigger:hover,
.hunter-header__nav-trigger:focus-visible,
.hunter-header__nav-link:hover,
.hunter-header__nav-link:focus-visible {
    color: var(--hunter-accent);
}

.hunter-header__nav-trigger[aria-expanded="true"] {
    color: var(--hunter-text);
    font-weight: 600;
}

.hunter-header__chevron {
    display: inline-block;
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
}

[aria-expanded="true"] > .hunter-header__chevron,
[aria-expanded="true"] .hunter-header__chevron {
    transform: translateY(2px) rotate(225deg);
}

.hunter-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 17px;
    margin-left: 31px;
}

.hunter-header__icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 34px;
}

.hunter-header__icon-button img {
    display: block;
    width: 24px;
    height: 24px;
    max-width: none;
    object-fit: contain;
}

.hunter-header__search-toggle {
    position: relative;
}

.hunter-header__close-icon {
    position: relative;
    display: none;
    width: 22px;
    height: 22px;
}

.hunter-header__close-icon::before,
.hunter-header__close-icon::after {
    position: absolute;
    top: 10px;
    left: 1px;
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: var(--hunter-accent);
    content: "";
}

.hunter-header__close-icon::before {
    transform: rotate(45deg);
}

.hunter-header__close-icon::after {
    transform: rotate(-45deg);
}

.hunter-header__report-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--hunter-accent);
    box-shadow: 0 3px 4px rgb(0 0 0 / 22%);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    transition: filter 180ms ease, transform 180ms ease;
}

.hunter-header__report-button:hover {
    filter: brightness(.92);
    transform: translateY(-1px);
}

.hunter-header .hunter-header__country-toggle--desktop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 58px;
    height: 44px;
    border: 1px solid var(--hunter-border);
    border-radius: 999px;
    background: var(--hunter-header-bg);
}

.hunter-header__country-toggle--desktop[aria-expanded="true"] {
    border-color: var(--hunter-accent);
    color: var(--hunter-accent);
}

.hunter-header__country-toggle img,
.hunter-header__country-list img {
    display: block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    max-width: none;
    object-fit: contain;
}

.hunter-header__mobile-toggle {
    display: none;
}

.hunter-header__search-panel {
    position: absolute;
    z-index: 4;
    top: 100%;
    left: 0;
    width: 100%;
    min-height: 289px;
    background: var(--hunter-panel-bg);
    box-shadow: 0 10px 22px rgb(0 0 0 / 4%);
}

.hunter-header__search-inner {
    width: min(calc(100% - 48px), var(--hunter-content-width));
    margin: 0 auto;
    padding: 52px 8px 35px;
}

.hunter-header__search-form {
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(760px, 100%);
}

.hunter-header__search-form img {
    width: 24px;
    height: 24px;
    opacity: .42;
}

.hunter-header__search-form input {
    width: 100%;
    min-width: 0;
    padding: 0 0 0 1px;
    border: 0;
    border-left: 1px solid var(--hunter-text);
    border-radius: 0;
    background: transparent;
    color: var(--hunter-text);
    font-size: 21px;
    font-weight: 300;
    line-height: 28px;
}

.hunter-header__search-form input:focus,
.hunter-header__search-form input:focus-visible {
    border-left-color: var(--hunter-accent);
    outline: 0;
}

.hunter-header__search-form input::placeholder {
    color: #a9a9a5;
    opacity: 1;
}

.hunter-header__quick-actions {
    margin-top: 39px;
    font-size: 14px;
}

.hunter-header__quick-actions strong {
    display: block;
    margin-bottom: 13px;
    font-size: 14px;
    font-weight: 600;
}

.hunter-header__quick-actions ul,
.hunter-header__link-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hunter-header__quick-actions li + li {
    margin-top: 6px;
}

.hunter-header__quick-actions a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.hunter-header__quick-actions a span {
    color: var(--hunter-accent);
    font-size: 21px;
    line-height: 13px;
}

.hunter-header__quick-actions a:hover {
    color: var(--hunter-accent);
}

.hunter-header__backdrop {
    position: fixed;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgb(196 201 204 / 68%);
    backdrop-filter: blur(9px);
    cursor: default;
}

.hunter-header__dropdown {
    --hunter-dropdown-x: 0;
    position: absolute;
    z-index: 4;
    top: calc(100% + 28px);
    border: 1px solid #efefef;
    border-radius: 30px;
    background: var(--hunter-panel-bg);
    box-shadow: 0 18px 42px rgb(0 0 0 / 14%);
    opacity: 0;
    pointer-events: none;
    transform: translate(var(--hunter-dropdown-x), -12px) scale(.985);
    visibility: hidden;
    transition: opacity 240ms ease, transform 240ms cubic-bezier(.2, .75, .25, 1), visibility 0s linear 240ms;
}

.hunter-header__dropdown.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(var(--hunter-dropdown-x), 0) scale(1);
    visibility: visible;
    transition-delay: 0s;
}

.hunter-header__dropdown--gps {
    left: max(24px, calc((100vw - var(--hunter-content-width)) / 2 + 130px));
    display: grid;
    grid-template-columns: repeat(3, minmax(145px, 1fr)) minmax(240px, 1.35fr);
    gap: 25px;
    width: min(960px, calc(100vw - 48px));
    padding: 35px 32px 38px;
}

.hunter-header__gps-column h2,
.hunter-header__mega-column h2 {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 44px;
    margin: 0 0 16px;
    color: var(--hunter-text);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.12;
}

.hunter-header__gps-column .hunter-header__link-list li,
.hunter-header__mega-column .hunter-header__link-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
    color: var(--hunter-text);
    font-size: 14px;
    line-height: 1.45;
}

.hunter-header__gps-column .hunter-header__link-list li::before,
.hunter-header__mega-column .hunter-header__link-list li::before {
    position: static;
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    margin-top: calc(.725em - 3px);
    border-radius: 50%;
    background: #a3a39d;
    content: "";
}

.hunter-header__gps-column .hunter-header__link-list li + li,
.hunter-header__mega-column .hunter-header__link-list li + li {
    margin-top: 8px;
}

.hunter-header__link-list a {
    color: var(--hunter-text);
    transition: color 180ms ease;
}

.hunter-header__link-list a:hover,
.hunter-header__link-list a:focus-visible {
    color: var(--hunter-accent);
}

.hunter-header__dropdown--solutions {
    right: max(32px, calc((100vw - 1172px) / 2));
    display: grid;
    grid-template-columns: minmax(280px, 1.32fr) minmax(205px, .92fr) minmax(270px, 1.08fr);
    gap: 24px;
    width: min(890px, calc(100vw - 48px));
    min-height: 457px;
    padding: 47px 31px 39px;
}

.hunter-header__mega-column h2 {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 44px;
    margin-bottom: 14px;
    font-size: 16px;
}

.hunter-header__menu-pictogram {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.hunter-header__menu-pictogram img {
    display: block;
    width: 44px;
    max-width: none;
    height: 44px;
    object-fit: contain;
}

.hunter-header__mega-column .hunter-header__link-list li {
    line-height: 1.4;
}

.hunter-header__mega-column .hunter-header__link-list .is-featured,
.hunter-header__mega-column .hunter-header__link-list .is-featured a {
    color: var(--hunter-text);
    font-weight: 600;
}

.hunter-header__mega-column .hunter-header__link-list .is-featured::before {
    background: #a3a39d;
}

.hunter-header__mega-column .hunter-header__link-list .is-featured:hover,
.hunter-header__mega-column .hunter-header__link-list .is-featured:hover a,
.hunter-header__mega-column .hunter-header__link-list .is-featured:focus-within,
.hunter-header__mega-column .hunter-header__link-list .is-featured:focus-within a {
    color: var(--hunter-accent);
}

.hunter-header__mega-column .hunter-header__link-list .is-featured:hover::before,
.hunter-header__mega-column .hunter-header__link-list .is-featured:focus-within::before {
    background: var(--hunter-accent);
}

.hunter-header__view-all {
    display: inline-block;
    margin-top: 18px;
    color: var(--hunter-text) !important;
    font-size: 14px;
    transition: color 180ms ease;
}

.hunter-header__view-all:hover,
.hunter-header__view-all:focus-visible {
    color: var(--hunter-accent) !important;
}

.hunter-header__solutions-cta {
    align-self: start;
    min-height: 240px;
    padding: 26px 24px 24px;
    border-radius: 17px;
    background: var(--hunter-cta-bg);
    color: #fff;
    text-align: center;
}

.hunter-header__solutions-cta h2 {
    margin: 0 0 23px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.12;
}

.hunter-header__solutions-cta p {
    margin: 0 3px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.hunter-header__solutions-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: 100%;
    min-height: 41px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #ed2a31;
    color: #fff;
    font-weight: 600;
}

.hunter-header__country-list--desktop {
    position: absolute;
    z-index: 6;
    top: calc(100% - 2px);
    right: max(24px, calc((100vw - var(--hunter-content-width)) / 2));
    width: 58px;
    padding: 8px 0;
    border-radius: 9px;
    background: var(--hunter-panel-bg);
    box-shadow: 0 4px 12px rgb(0 0 0 / 14%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-7px);
    visibility: hidden;
    transition: opacity 200ms ease, transform 220ms cubic-bezier(.2, .75, .25, 1), visibility 0s linear 220ms;
}

.hunter-header__country-list--desktop.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
}

.hunter-header__country-list--desktop a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
}

.hunter-header__country-list--desktop a:hover,
.hunter-header__country-list--desktop a.is-current {
    background: #f6f6f6;
}

.hunter-header__mobile-panel,
.hunter-header__country-toggle--mobile {
    display: none;
}

.hunter-header__arrow {
    display: inline-block;
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

@media (max-width: 1180px) and (min-width: 1025px) {
    .hunter-header__inner {
        width: calc(100% - 32px);
    }

    .hunter-header__logo {
        margin-right: 26px;
    }

    .hunter-header__desktop-nav {
        gap: 18px;
    }

    .hunter-header__actions {
        gap: 13px;
        margin-left: 22px;
    }

    .hunter-header__report-button {
        min-width: 145px;
        padding-inline: 18px;
    }
}

@media (max-width: 1024px) {
    :root {
        --hunter-header-height: var(--hunter-mobile-header-height);
    }

    .hunter-header__bar {
        height: var(--hunter-mobile-header-height);
    }

    .hunter-header.is-mobile-subview .hunter-header__bar {
        visibility: hidden;
    }

    .hunter-header__inner {
        width: 100%;
        padding: 0 24px;
    }

    .hunter-header__logo {
        margin-right: auto;
    }

    .hunter-header__logo img {
        width: 120px;
    }

    .hunter-header__desktop-nav,
    .hunter-header__report-button,
    .hunter-header__country-toggle--desktop,
    .hunter-header__country-list--desktop,
    .hunter-header__dropdown {
        display: none !important;
    }

    .hunter-header__actions {
        gap: 14px;
        margin-left: 18px;
    }

    .hunter-header__icon-button {
        width: 24px;
        height: 32px;
    }

    .hunter-header__mobile-toggle {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 5px;
        width: 27px;
        height: 32px;
        margin-left: 2px;
    }

    .hunter-header__mobile-toggle span {
        display: block;
        width: 24px;
        height: 3px;
        border-radius: 2px;
        background: var(--hunter-accent);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .hunter-header__mobile-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(8px) rotate(45deg);
    }

    .hunter-header__mobile-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .hunter-header__mobile-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hunter-header.is-search-open .hunter-header__search-toggle .hunter-header__search-icon {
        display: none;
    }

    .hunter-header.is-search-open .hunter-header__search-toggle .hunter-header__close-icon {
        display: block;
    }

    .hunter-header__search-panel {
        min-height: 290px;
    }

    .hunter-header__search-inner {
        width: 100%;
        padding: 40px 40px 35px;
    }

    .hunter-header__search-form {
        gap: 18px;
    }

    .hunter-header__search-form input {
        font-size: 20px;
        line-height: 29px;
    }

    .hunter-header__quick-actions {
        margin-top: 34px;
    }

    .hunter-header__backdrop {
        top: var(--hunter-mobile-top, var(--hunter-mobile-header-height));
    }

    .hunter-header__mobile-panel {
        position: fixed;
        z-index: 4;
        top: var(--hunter-mobile-top, var(--hunter-mobile-header-height));
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        overflow: hidden;
        background: linear-gradient(105deg, var(--hunter-panel-bg) 70%, var(--hunter-soft-bg) 100%);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        visibility: hidden;
        transition: opacity 240ms ease, transform 240ms cubic-bezier(.2, .75, .25, 1), visibility 0s linear 240ms;
    }

    .hunter-header__mobile-panel.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
        transition-delay: 0s;
    }

    .hunter-header__mobile-view {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        transform: translateX(18px);
        transition: opacity 220ms ease, transform 220ms cubic-bezier(.2, .75, .25, 1);
    }

    .hunter-header__mobile-view.is-active {
        opacity: 1;
        transform: translateX(0);
    }

    .hunter-header__mobile-view.is-leaving {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-18px);
    }

    .hunter-header__mobile-view[data-hunter-mobile-view="main"] {
        display: flex;
        flex-direction: column;
        padding: 16px 24px 32px;
    }

    .hunter-header__mobile-main-content {
        flex: 0 0 auto;
    }

    .hunter-header__mobile-country {
        position: relative;
        z-index: 3;
        margin-bottom: 18px;
    }

    .hunter-header .hunter-header__country-toggle--mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        width: 100%;
        height: 43px;
        border: 1px solid var(--hunter-border);
        border-radius: 999px;
        background: var(--hunter-panel-bg);
        font-size: 16px;
        font-weight: 600;
    }

    .hunter-header__country-toggle--mobile > span:first-child {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .hunter-header__country-toggle--mobile[aria-expanded="true"] {
        border-color: var(--hunter-accent);
        border-radius: 28px 28px 0 0;
    }

    .hunter-header__country-list--mobile {
        position: absolute;
        z-index: 2;
        top: 42px;
        right: 0;
        left: 0;
        overflow: hidden;
        border: 1px solid var(--hunter-accent);
        border-top: 0;
        border-radius: 0 0 12px 12px;
        background: var(--hunter-panel-bg);
        box-shadow: 0 7px 15px rgb(0 0 0 / 10%);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-7px);
        visibility: hidden;
        transition: opacity 200ms ease, transform 220ms cubic-bezier(.2, .75, .25, 1), visibility 0s linear 220ms;
    }

    .hunter-header__country-list--mobile.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
        transition-delay: 0s;
    }

    .hunter-header__country-list--mobile a {
        display: flex;
        align-items: center;
        gap: 9px;
        width: 100%;
        height: 52px;
        padding: 0 15px;
        font-size: 18px;
    }

    .hunter-header__country-list--mobile a.is-current,
    .hunter-header__country-list--mobile a:hover {
        background: #f1f1f1;
    }

    .hunter-header__mobile-section-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 50px;
        color: var(--hunter-text) !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-align: left;
        transition: color 180ms ease;
    }

    .hunter-header__mobile-section-link:hover,
    .hunter-header__mobile-section-link:focus-visible {
        color: var(--hunter-accent) !important;
    }

    .hunter-header__mobile-section-link .hunter-header__arrow {
        margin-right: 9px;
    }

    .hunter-header__mobile-main-content hr {
        height: 1px;
        margin: 7px 0 20px;
        border: 0;
        background: #333;
    }

    .hunter-header__mobile-country.is-open ~ hr {
        margin-top: 38px;
    }

    .hunter-header__mobile-simple-link {
        display: flex;
        align-items: center;
        min-height: 40px;
        font-size: 14px;
    }

    .hunter-header__mobile-utility {
        display: flex;
        flex: 0 0 auto;
        flex-direction: column;
        gap: 13px;
        margin-top: auto;
        padding-top: 30px;
    }

    .hunter-header__mobile-report,
    .hunter-header__mobile-support {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 44px;
        padding: 10px 22px;
        border: 1px solid var(--hunter-accent);
        border-radius: 999px;
        color: var(--hunter-accent) !important;
        font-size: 16px;
        font-weight: 600;
    }

    .hunter-header__mobile-report {
        background: var(--hunter-accent);
        box-shadow: 0 3px 3px rgb(0 0 0 / 20%);
        color: #fff !important;
    }

    .hunter-header__socials {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 13px;
        margin-top: 18px;
    }

    .hunter-header__socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 33px;
        height: 33px;
        border: 1px solid #ddd;
        border-radius: 50%;
        background: #f2f2f2;
        color: var(--hunter-accent);
    }

    .hunter-header__socials svg {
        width: 18px;
        height: 18px;
        overflow: visible;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2;
    }

    .hunter-header__socials svg .is-filled {
        fill: currentColor;
        stroke: none;
    }

    .hunter-header__mobile-subheader {
        position: sticky;
        z-index: 2;
        top: 0;
        display: grid;
        grid-template-columns: 38px 1fr 38px;
        align-items: center;
        min-height: 60px;
        padding: 0 24px;
        border-bottom: 1px solid #ededed;
        background: var(--hunter-panel-bg);
        box-shadow: 0 2px 5px rgb(0 0 0 / 7%);
        color: var(--hunter-accent);
    }

    .hunter-header__mobile-subheader button {
        width: 30px;
        color: var(--hunter-accent);
        font-family: var(--hunter-font-family, "Montserrat", Arial, sans-serif);
        font-size: 31px;
        font-weight: 300;
        line-height: 1;
        text-align: left;
    }

    .hunter-header__mobile-subheader strong {
        grid-column: 2;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
    }

    .hunter-header__mobile-subcontent {
        padding: 11px 24px 40px;
    }

    .hunter-header__mobile-subcontent--about {
        padding-top: 44px;
    }

    .hunter-header__mobile-about-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 54px;
        color: var(--hunter-text);
        font-size: 17px;
        font-weight: 600;
        transition: color 180ms ease;
    }

    .hunter-header__mobile-about-link:hover,
    .hunter-header__mobile-about-link:focus-visible {
        color: var(--hunter-accent);
    }

    .hunter-header__mobile-about-link + .hunter-header__mobile-about-link {
        margin-top: 16px;
    }

    .hunter-header__mobile-about-link .hunter-header__arrow {
        margin-right: 10px;
    }

    .hunter-header__mobile-accordion {
        border-bottom: 0;
    }

    .hunter-header__accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 50px;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-align: left;
        transition: color 180ms ease;
    }

    .hunter-header__accordion-toggle[aria-expanded="true"] {
        color: var(--hunter-text);
    }

    .hunter-header__accordion-toggle:hover,
    .hunter-header__accordion-toggle:focus-visible {
        color: var(--hunter-accent);
    }

    .hunter-header__accordion-toggle .hunter-header__chevron {
        margin-right: 8px;
        border-width: 2px;
    }

    .hunter-header__accordion-panel {
        overflow: hidden;
        max-height: 0;
        padding: 0 0 11px 24px;
        opacity: 0;
        transform: translateY(-6px);
        transition: max-height 280ms cubic-bezier(.2, .75, .25, 1), opacity 200ms ease, transform 240ms ease;
    }

    .hunter-header__mobile-accordion.is-open .hunter-header__accordion-panel {
        max-height: 780px;
        opacity: 1;
        transform: translateY(0);
    }

    .hunter-header__accordion-panel a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 50px;
        color: var(--hunter-text);
        font-size: 16px;
        transition: color 180ms ease;
    }

    .hunter-header__accordion-panel a:hover,
    .hunter-header__accordion-panel a:focus-visible {
        color: var(--hunter-accent);
    }

    .hunter-header__accordion-panel .hunter-header__arrow {
        margin-right: 11px;
    }
}

.hunter-header__dropdown--about {
    --hunter-dropdown-x: -50%;
    left: 50%;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(270px, 1.25fr);
    gap: 30px;
    width: min(795px, calc(100vw - 48px));
    min-height: 334px;
    padding: 47px 31px 39px;
}

.hunter-header__dropdown--about .hunter-header__solutions-cta,
.hunter-header__gps-cta {
    min-height: 240px;
}

@media (max-width: 782px) {
    .admin-bar .hunter-header-sticky-host {
        top: calc(var(--hunter-sticky-offset, 0px) + 46px) !important;
    }
}

@media (max-width: 480px) {
    .hunter-header__inner {
        padding: 0 24px;
    }

    .hunter-header__actions {
        gap: 13px;
    }

    .hunter-header__search-inner {
        padding-inline: 40px 24px;
    }
}

@media (max-width: 360px) {
    .hunter-header__inner {
        padding-inline: 23px;
    }

    .hunter-header__logo img {
        width: 120px;
    }

    .hunter-header__actions {
        gap: 12px;
        margin-left: 12px;
    }

    .hunter-header__mobile-toggle {
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hunter-header *,
    .hunter-header *::before,
    .hunter-header *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
