Multiple Active Nav Links (styling)

Looking for assistance styling my bottom nav so that it doesn’t show multiple active links when on the homepage.

The two “active” links showing in dark grey in the attached image are both anchors on the homepage, so when a visitor is on the homepage, the links both show as active.

I want them to show in white (the regular link colour set in Nav Style) unless they are specifically clicked on.

If these texts are made with BB, you might already know how to change the color of text.
If not, use “inspect” menu on Chrome, and find the applied CSS selector, and apply your new color at (Appearance>Customize>Additional CSS) such as,

.selector_name a {
color: #FFFFFF !important;
}

It will be complicated because both links point at the same page and therefore receive a current-menu-item class when one visit this page.
Which is why they get the same style (through this class).
At most simple, create separate pages for Services and About Us.