header {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: var(--headerHeight);
    position: fixed;
    background-color: var(--headerBg);
    box-shadow: 0 1px 5px #303030;
    z-index: 999;
    font-variation-settings: "wght" 600;
    color: #303030;
}

header a {
    color: #303030;
}

header .container {
    justify-content: space-between;
    min-height: var(--headerHeight);
}

.logo-mobile-box {
    width: 20%;
    display: flex;
}

.logo-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link img {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: var(--menuFontSize);
    padding: var(--menuLinkPad);
    position: absolute;
    right: 0;
}

.menu {
    display: flex;
    background-color: unset;
}

.menu .link {
    font-size: 1.125rem;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.menu .link a {
    text-decoration: none;
}

.menu .link a[aria-current="page"], .menu .link.active > .icon-down-open {
    color: rgb(233, 78, 27);
}

.menu .link:hover > a, .menu .link:hover > .icon-down-open {
    color: rgb(233, 78, 27);
}

.flyout {
    position: relative;
}

.sub-menu {
    top: 100%;
}
