#site-header {
    position: relative;
    top: 0;
    height: 12.5rem;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 5px 5px -5px rgb(0 0 0 / 15%);   
}

#site-header .custom-logo-link {
    display: flex;
}

#site-header .site-logo img {
    display: block;
    height: 4rem;
    width: auto;
    max-width: fit-content !important;
    max-width: -webkit-fit-content;
    max-width: -ms-fit-content;
}

#site-header .site-logo img:first-child {
    margin-bottom: 0.5rem;
}

#site-header .menu-item {
    white-space: nowrap;
}

#site-header .menu-item a {
    font-size: 2.4rem;
    font-weight: bold;
    color: black;
    text-decoration: none;
}

#site-header .menu-item.current-menu-item a {
    color: var(--orange);
}

#site-header #menu-toggle {
    display: block;
}

#site-header #menu-toggle,
#site-header #menu-toggle img {
    height: 3rem;
}

#site-header #menu-toggle .close {
    display: none;
}

#site-header #menu-toggle img {
    border-bottom: 3px solid;
    box-sizing: content-box;
    padding-bottom: 3px;
}

#site-header input[type="search"] {
    display: none;
    outline: none;
    font-family: 'Founders Grotesk';
    font-weight: bold;
    font-size: 2.4rem;
    border-width: 0px 0px 2px 0px;
    border-color: var(--black);
    border-radius: 0;
    -webkit-appearance: none;
}

#site-header button#search {
    font-family: 'Founders Grotesk';
    font-weight: bold;
    font-size: 2.4rem;
    opacity: 0.5;
    margin-left: 2rem;
}

@media screen and (min-width: 991px) {
    #site-header #menu-toggle {
        display: none;
    }
}

@media screen and (max-width: 991px) {

    #site-header {
        height: 10.375rem;
    }

    #site-header > div:first-child {
        box-shadow: 0px -5px 5px 5px rgb(0 0 0 / 15%);
    }
    
    #site-header .site-logo img {
        height: 3rem;
    }
    
    #site-header .site-logo img:first-child {
        margin-bottom: 0.375rem;
    }

    #site-header #primary-menu-list {
        display: none;
    }

    #site-header #primary-menu-list.active {
        display: flex;
        flex-direction: column;
        margin-top: 4rem;
    }

    /* Hiding site content on header open (mobile) */
    #page-wrapper.hidden,
    #site-footer.hidden {
        opacity: 0;
    }

    #site-header input[type="search"],
    #site-header button#search {
        display: none;
    }

    #site-header button#search {
        margin-left: 0rem;
        text-align: left;
    }

}