Hello there,
Add the following CSS code to customizer -> Additional CSS option
To change the default white background
.very-top-header .transparent-text-dark{
background-color: #a82c29;
}
To change the orange color background (on hover)
.very-top-header .transparent-text-dark:hover {
background: #f16c20;
}
//For Footer
To change the default transparent background
footer.footer .social-icons i:before {
background-color: #f16c20;
}
To change the orange color background (on hover)
footer.footer .social-icons i:hover:before {
background: #a82c29;
}
Change the color code of your choice.
Let us know if you need help with anything else!