header {
    position: absolute;
    z-index: 2;
    width: 100vw;

    a {
        text-decoration: none !important;
    }

    ul {
        width: 100% !important;

        li {
            width: 100%;
            border-bottom: 1px solid black;
            margin-bottom: 12px;
            
            &:last-child {
                border-bottom: none !important;
                margin-bottom: 0 !important;
            }
        }
    }

    .header-ctas {
        position: fixed;
        right: 3rem;
        z-index: 99999;

        @media (max-width: 768px) {
            right: 1rem;
        }
    }

    .wp-block-navigation-item.has-child {
        gap: 0 !important;

        &::after {
            content: '';
            height: 60px;
            width: 60px;
            background-image: url(http://erova.srgry.com/app/uploads/2026/08/scroll-dwon.svg);
            position: absolute;
            top: -7px;
            right: 0;
            transition: transform 0.35s ease;
        }

        > ul {
            display: block !important;
            overflow: hidden !important;
            max-height: 0 !important;
            opacity: 0 !important;
            visibility: hidden !important;
            gap: 0 !important;
            margin-bottom: 0 !important;
    
            transition:
                max-height 0.35s ease,
                opacity 0.25s ease,
                margin-bottom 0.35s ease !important;
        }
    
        &.active {
            &::after {
                transform: rotate(180deg);
            }

            & > ul {
                max-height: 500px !important;
                opacity: 1 !important;
                visibility: visible !important;
                margin-bottom: 1rem !important;
            }
        }
    }
}

.single-post header {
    position: relative;
}