.site-header {
    height: 90px;
    z-index: 999;
    position: relative;    
    transition: all 0.25s;
}

.site-header.active {
    background: #fff;
    position: fixed !important;   
    top: 0;
    left: 0;
    right: 0;    
}

#page-home .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;    
}

.header-buttons {
    margin-left: auto;
}

.header-buttons a:last-child {
    margin-left: 30px;
}

#top-bar {
    height: 55px;
    background: var(--site-primary);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#top-bar svg {
    width: auto;
    height: 80%;
    margin-right: 10px;
}

#top-bar svg * {
    _fill: #fff;
}

.main-header-bar-wrap {
    z-index: 999;
    position: relative;   
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0px 30px;
    box-sizing: border-box;
    transition: all 0.2s;
}

.site-branding {
    display: block;
}

.site-branding img {
    max-height: 34px;
    height: 34px;
    width: auto;
    display: block;
}

.site-branding img:first-child {
    display: block;
}

.site-branding img:last-child {
    display: none;
}

#page-home .site-header img:first-child {
    display: none;
}

#page-home .site-header img:last-child {
    display: block;
}

.site-header.active .site-branding img:first-child {
    display: block !important;
}

.site-header.active .site-branding img:last-child {
    display: none !important;
}

.site-header .sub-menu {
    display: none;
}

.site-navigation {
    margin-left: auto;
    line-height: 0;
}

.main-header-menu {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-header-menu li {
    margin-right: 30px;
}

.main-header-menu a {
    color: var(--site-text);
    text-decoration: none;
    transition: all 0.2s;
    font-size: var(--site-size);
}

.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;
    }

    .mobile-menu-buttons {
        margin-right: 10px;
    }

    .header-footer-buttons {
        display: block;
    }

    .get-started-btn {
        display: none;
    }
}