How to hide an item from nav menu on desktop view?(without plugin)

You can set a CSS class on the menu item, and then in the Custom CSS feature of Elementor, define the class.

@media ( min-width: 768px ) {
    .hide-if-desktop {
        display: none;
    }
}

WordPress nav menu interface