Here is what I’ve done to organize my categories in my subnav bar:
In header.php find this or something similar to it:
<?php wp_list_categories('orderby=name&title_li=&depth=4'); ?>
Now replace “name” with “slug”
Now when you create your categories you use numbers to create the slugs for them. For instance, on my page ( you can see on https://sdhumanist.org ) my slug for News is 1news. Slug for events is 2events and so on.
Hope that helped!