.hhfw-header,
.hhfw-footer {
    width: 100%;
}

.hhfw-icon-svg {
    display: block;
    width: 1em;
    height: 1em;
}

.hhfw-header {
    position: relative;
    z-index: 20;
    transition: all .25s ease;
}

.hhfw-header__inner,
.hhfw-footer__inner {
    width: 100%;
    margin: 0 auto;
}

.hhfw-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hhfw-header__left,
.hhfw-header__right {
    display: flex;
    align-items: center;
}

.hhfw-header__brand,
.hhfw-footer__brand-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.hhfw-header__logo-image,
.hhfw-footer__logo {
    display: block;
    height: auto;
}

.hhfw-header__brand-text,
.hhfw-footer__brand-text {
    font-weight: 700;
    line-height: 1.1;
}

.hhfw-header__nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.hhfw-header__nav ul,
.hhfw-header__canvas-nav ul,
.hhfw-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hhfw-header__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hhfw-header__nav li,
.hhfw-header__canvas-nav li,
.hhfw-footer-menu li {
    margin: 0;
    padding: 0;
}

.hhfw-header__nav a,
.hhfw-header__canvas-nav a,
.hhfw-footer a {
    text-decoration: none;
    transition: all .2s ease;
}

.hhfw-header__nav a,
.hhfw-header__canvas-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.hhfw-header__nav a:after,
.hhfw-header__canvas-nav a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    transition: width .25s ease;
}

.hhfw-header__nav a:hover:after,
.hhfw-header__nav .current-menu-item > a:after,
.hhfw-header__nav .current-menu-ancestor > a:after,
.hhfw-header__canvas-nav a:hover:after,
.hhfw-header__canvas-nav .current-menu-item > a:after,
.hhfw-header__canvas-nav .current-menu-ancestor > a:after {
    width: 100%;
}

.hhfw-header__right {
    gap: 14px;
    flex-shrink: 0;
}

.hhfw-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, opacity .2s ease;
}

.hhfw-header__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.hhfw-header__cta-icon svg,
.hhfw-header__cta-icon i {
    width: 1em;
    height: 1em;
    display: block;
}

.hhfw-header__cta:hover {
    transform: translateY(-1px);
    opacity: .95;
}

.hhfw-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 14px;
    cursor: pointer;
    transition: all .25s ease;
}

.hhfw-header__toggle:hover {
    transform: translateY(-1px);
}

.hhfw-header__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.hhfw-header__canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}

.hhfw-header__canvas.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hhfw-header__canvas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 18, .42);
}

.hhfw-header__canvas-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100%;
    background: #101114;
    color: #fff;
    padding: 24px 22px 28px;
    transform: translateX(100%);
    transition: transform .28s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,.18);
    overflow-y: auto;
}

.hhfw-header__canvas--left .hhfw-header__canvas-panel {
    left: 0;
    right: auto;
    transform: translateX(-100%);
    box-shadow: 20px 0 50px rgba(0,0,0,.18);
}

.hhfw-header__canvas.is-active .hhfw-header__canvas-panel {
    transform: translateX(0);
}

.hhfw-header__canvas-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.hhfw-header__canvas-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hhfw-header__canvas-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

.hhfw-header__canvas-close:hover {
    transform: rotate(90deg);
}

.hhfw-header__canvas-close .hhfw-icon-svg {
    width: 20px;
    height: 20px;
}

.hhfw-header__canvas-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hhfw-header__canvas-nav a {
    width: 100%;
    padding: 12px 6px;
}

.hhfw-header__cta--mobile {
    width: 100%;
    margin-top: 22px;
}

.hhfw-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr .9fr;
    gap: 48px;
    align-items: start;
}

.hhfw-footer__desc {
    max-width: 340px;
    margin: 26px 0 26px;
}

.hhfw-footer__social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hhfw-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
}

.hhfw-footer__menu-col h3,
.hhfw-footer__contact-col h3 {
    margin: 0 0 22px;
}

.hhfw-footer-menu,
.hhfw-footer__contact-list,
.hhfw-footer__bottom-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hhfw-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hhfw-footer__bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.hhfw-footer__bottom-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

body.hhfw-canvas-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hhfw-header__nav,
    .hhfw-header__cta--desktop {
        display: none;
    }

    .hhfw-header__toggle {
        display: inline-flex;
    }

    .hhfw-header__inner {
        gap: 16px;
    }

    .hhfw-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }
}

@media (min-width: 1025px) {
    .hhfw-header__canvas {
        display: none;
    }
}

@media (max-width: 767px) {
    .hhfw-header__inner {
        min-height: 64px;
    }

    .hhfw-header__brand-text {
        font-size: 28px;
    }

    .hhfw-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hhfw-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Sticky header option */
.elementor-widget-han_header_widget.hhfw-header-sticky-yes .hhfw-header {
    position: sticky;
    top: 0;
    z-index: 99;
}
