#site-header {
    position: sticky;
    top: 0;
    z-index: 10000;
}

#site-header .logo {
    width: 200px;
}

#header-main {
    position: sticky;
    top: 0;
    backdrop-filter: blur(15px);    
    z-index: 999;
    color: var(--wp--preset--color--cloud);
    background-color: rgba(25, 25, 25, 0.5);
    transition: all 0.2s ease;
}
@media screen and (max-width: 991px) {
    #site-header.active #header-main {
        background-color: rgba(25, 25, 25, 0.85);
    }
}

@media screen and (min-width: 991px) {
    .logged-in #site-header {
        top: 32px;
    }
}

body.single #site-header {
    position: fixed;
    width: 100%;
}

#site-header .menu-item {
    white-space: nowrap;
    font-size: 1rem;
}

@media screen and (max-width: 991px) {
    #site-header #header-main {
        height: 100%;
    }
    #site-header .menu-item {
        border-top: 1px solid;
        padding-top: 1rem;
        font-size: 1.5rem;
    }
    #site-header .menu-item:last-child {
        border-bottom: 1px solid;
        padding-bottom: 1rem;
    }
    #site-header nav {
        width: 100%;
    }
}

#site-header .current-menu-item::before,
a.overlay::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: relative;
    display: inline-flex;
    margin-right: 10px;
    background-color: currentColor;
}
@media screen and (max-width: 991px) {
    #site-header .current-menu-item::before {
        width: 15px;
        height: 15px;
    }
}

@media screen and (max-width: 991px) {
    
    #site-header #primary-menu-list {
        display: none !important;
    }

    #site-header #primary-menu-list.active {
        margin-top: var(--two-spacer);
        display: flex !important;
        flex-direction: column !important;
    }

}

#site-header img#scroll-top {
    height: 15px;
}
@media screen and (max-width: 991px) {
    #site-header #scroll-top {
        display: none !important;
    }
}

#menu-toggle {
    gap: 8px;
    transition: all 0.2s ease;
}

#menu-toggle.active {
    gap: 0px;
}

#menu-line-1,
#menu-line-2,
#menu-line-3 {
    width: 50px;
    height: 1px;
    background-color: white;
    transition: all 0.2s ease;
}

#menu-toggle.active #menu-line-1 {
    transform: rotate(30deg) translateY(1.25px);
    margin-top: 1px;
}

#menu-toggle.active #menu-line-2 {
    opacity: 0;
}

#menu-toggle.active #menu-line-3 {
    transform: rotate(-30deg) translateY(-1.25px);
}

.options button.active {
    width: 100%;
}

.logo-text {
    font-size: 1.25rem !important;
}
@media screen and (max-width: 991px) {
    .logo-text {
        white-space: nowrap;
        font-size: 1rem !important;
    }
}