I've taken over a website that was built on Bootstrap, and it has been brought to my attention that the hover color on Safari mobile does not work on the mobile navigation. When you select an option from the menu, it's supposed to change the color to yellow. Currently, no type of hover/selection effect happens regardless of what is implemented. The background color remains gray. I've tried all the CSS I can possibly think of to change it, but I'm struggling to find the right string of selectors to target the hover color specifically because there's multiple CSS files being used on it. Any pointers for the right selector?
<div id="second-navbar" class="navbar mega-menu" role="navigation">
<div class="container">
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-responsive-collapse">
<div class="menu-container">
<ul class="nav navbar-nav">
<!-- mobile navbar -->
<li><a href="book-now">Book Now</a></li>
<li><a href="womens-services">Women's Services</a></li>
<li><a href="mens-services">Men's Services</a></li>
<li><a href="waxon-way">Waxon Way</a></li>
<li><a href="why-franchise">Own A Waxon</a></li>
<li><a href="contact">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</div>
This is the website to view the source code.