@jzhess88: I see that you have customize the core theme files, you are not supposed to do that. For any custom CSS, you can either add it in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in child theme style.css
If you look are the customization you have done in style.css. You will see the following CSS.
strong, b {
color: #666666;
font-weight: bold;
}
See here, you have defined color for bold text. Just remove that.
Your call to action box background color is defined in http://www.fantasygeniuses.com/wp-content/uploads/js_composer/js_composer_front_custom.css. So, you can either disable this CSS or you can overwrite it by adding the following CSS in “Appearance => Theme Options => Custom CSS” box. In the following CSS, you can customize the color code as per you need.
#main .wpb_call_to_action {
background-color: #E1BA00;
border: 1px solid #D4AD00;
}