Is it possible to hide footer navigation in RW8 Engineer theme?

Is it possible to hide the navigation links that automatically appear in the footer of the RW8 Engineer theme? In other words, I only want navigation links at the top of the page (and not at both top and bottom).

With custom CSS:

footer .navbar-nav {
    display: none !important;
}

Hi Will…how about the same for Mountains?

.footer .navbar-nav {
     display: none !important;	
}

You are the best…thanks so much.

Awesome- Thanks Will