/* ============================================================
   SENZAVI · Mobile Navigation (Elementor Nav-Menu Dropdown)
   ============================================================ */

@media screen and (max-width: 768px) {

    .elementor-nav-menu--dropdown[aria-hidden="true"] {
        transition: 1s all;
        position:   fixed;
        left:       0px;
        width:      100vw;
        opacity:    0;
    }

    .elementor-nav-menu--dropdown[aria-hidden="false"] {
        position:   fixed;
        transition: 1s all;
        top:        60px;
        left:       0px;
        width:      100vw;
        height:     100vh;
        padding:    32px;
        opacity:    1;
    }
}
