Hi @ccwadsworth,
Thanks for clarifying.
You can add a class to the Women in Agile Programs menu item then add a custom CSS to its color and its submenu items color and hover color.
To do this, please go to WP Admin > Appearance > Menus then click on the Screen Options link on the top right part of the page.

Once click, you should see a collapsed panel. Make sure that CSS Classes is active under Show advanced menu properties.

Go to your menu items and you should see the CSS Classes (optional) field under the menu item settings:

Add a class to the menu item that you want to target. In this example, we will use the class highlight to the menu item.
Once the menu is saved, go to X > Theme Options > CSS then add this code:
.x-navbar .desktop .x-nav li.highlight a {
color: #2a68a5;
}
.x-navbar .desktop .x-nav li.highlight a:hover {
color: #339999;
}
Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.
Hope this helps.