.angie-nav-container-94d856e0 {
    position: relative;
    width: 100%;
}

.angie-hamburger-94d856e0 {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: inherit;
    align-items: center;
    justify-content: center;
}

.angie-hamburger-94d856e0 i {
    font-size: 1em;
}

.angie-menu-94d856e0 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.angie-menu-94d856e0 li {
    margin: 0;
}

.angie-menu-94d856e0 a {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

/* Desktop Only */
@media (min-width: 768px) {
    .angie-hamburger-94d856e0 {
        display: none !important;
    }
    .angie-menu-94d856e0 {
        display: flex !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .angie-hamburger-94d856e0 {
        display: inline-flex;
    }
    
    .angie-menu-94d856e0 {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        z-index: 999;
        box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
        padding: 15px;
    }
    
    .angie-menu-94d856e0.is-active {
        display: flex;
    }
}