Hi Ellen,
To change blue background color of secondary drop down navigation while hovering to main menu, please use this css to fix your issue.
ul.navmenu > li:hover > a {
background-color: #970e01;
}
To change button background color on hover , please use this css.
.btn2:hover,
.btn2:focus,
.btn2 a:hover,
.btn2 a:focus,
.btn2 a:visited {
color: #fff !important;
background-color: #970e01 !important;
}
Note: please use child theme[style.css] to add this above css, otherwise your changes will be lost on theme update.