.site-header {
    height: 88px;
    z-index: 9;
    transition: all 0.25s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.3);
    padding-right: 30px;
    backdrop-filter: blur(15px);
}

#header-contact {
    margin-left: auto;
    background: #000;
    padding: 10px;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff !important;
    background: transparent !important;
    box-shadow: 0px 2px 0px 0px var(--site-primary) !important;
    border-style: solid !important;
    border-width: 2px 2px 2px 2px !important;
    border-color: var(--site-primary) !important;
    border-radius: 150px !important;
    padding: 6px 8px 6px 14px !important;
    color: var(--site-primary) !important;
    text-align: center !important;
    display: inline-flex;
    align-items: center;
    gap: 9px;

    span {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: #fff;
        background: var(--site-primary);
    }
}

#header-contact:hover {
    color: #fff;
    background: var(--site-primary);
}

.top-bar {
    height: 50px;
    background: var(--site-black);
    display: none;
}

.main-header-bar-wrap {
    display: flex;
    align-items: center;
    width: 100%;
}

.site-branding {
    width: 88px;
    height: 88px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-branding img {
    max-height: 35px;
    height: 35px;
    width: auto;
    display: block;
}

.site-header {
    display: flex;
    align-items: center;
}

.site-navigation {
    line-height: 0;
    margin-left: 50px;
}

.main-header-menu {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-header-menu li {
    margin-right: 20px;
}

.main-header-menu a {
    color: var(--site-text);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    font-family: var(--site-font-heading);
}

.main-header-menu a:hover,
.current-menu-item a {
    color: var(--site-primary) !important;
}


.header-footer-buttons {
    display: none;
}

@media (max-width: 1040px) {
    .site-navigation {
        display: none;
    }

    .header-footer-buttons {
        display: block;
    }
}