Change the Color of one menu item (Context Theme)

How can I change the color of “Shop the Cure” in my menu to be hex #e55ea1 ?

I am using context theme.

The website is https://sabichic.ca/

I need it also for mobile.

Thanks

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
li.nav__item.nav__item-shop-the-cure {
color: #e55ea1!important;
}

hello @GYBcais

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.header__nav .nav.nav--depth-1 :nth-child(4){
    color: #e55ea1!important;
}