Change color of Selected Menu

I need you in the Superior when hovering or select a menu change menu background color of that menu item What should I do? Currently just change the font color of the selected menu or when it passes over the course.

Web site is:

Hi @rilaxapp,

I hope you are well today and thank you for your question.

You can change it by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

.navbar li.current-menu-item,
.navbar li:hover {
  background-color: #DA4453;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin