header {
    position: sticky;
    top: 0;
    z-index: 1;
    --site-logo-x: 91px;
    --site-logo-y: 48px;
}
@media screen and (min-width:1000px) {
    header {
        position: relative !important;
    }
    #menu-button {
        display: none;
    }
    header nav ul {
        display: flex !important;
    }
}
@media screen and (max-width: 999px) {
    ul#nav-list.active {
        position: absolute;
        left: 0;
        width: 100%;
        background: var(--color-tc-brand-green);
        display: flex;
        flex-direction: column;
        top: 100%;
        padding-block: 20px;
        gap: 20px;
        z-index: 1;
    }
}
.header-inner {
    background-color: var(--color-tc-brand-green);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
header nav {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    padding-block: .667rem;
    padding-inline: 1.25rem;
}
header nav .header-title {
    color: transparent;
    width: var(--site-logo-x);
    height: var(--site-logo-y);
    background-size: contain;
    background-position: center;
    user-select: none;
    overflow: hidden;
    text-overflow: clip;
    background-repeat: no-repeat;
}
header nav .header-title a {
    display: block;
    width: var(--site-logo-x);
    height: var(--site-logo-y);
}
header nav ul:not(.active) {
    display: none;
}
header nav ul, footer nav ul, .header-title {
    align-items: center;
    margin: 0;
    flex-wrap: wrap;
}
header nav ul, .header-title {
    justify-content: center;
}
header nav ul li, footer nav ul li {
    list-style-type: none;
}
.nav-link {
    font-weight: 700;
    font-size: var(--fs-button);
    color:var(--color-tc-mint-ice-cream);
    text-transform: uppercase;
    text-box-edge: cap alphabetic;
    text-box-trim: trim-both;
    padding: 8px 24px;
    letter-spacing: 7%;
    display: flex;
    text-decoration: none;
}
header nav ul li a:focus, footer nav ul li a:focus {
    outline: none !important;
}
#menu-button {
    background-color: transparent;
    border: none;
    color: inherit;
}
#menu-button:hover, #menu-button:focus {
    color: var(--wp--preset--color--button-fill);
}