you did a really nice job on uploading really small and size optimised images! You seem to have practice in this field!?
there is one thing I don’t know why this is. In you top header your phone number and other information have the css rules:
.et_nav_text_color_light, .et_nav_text_color_light #et-secondary-nav a, .et_nav_text_color_light .et-social-icon a, .et_nav_text_color_light #et-info a {
color: rgba( 255, 255, 255, 0.6 );
}
not that 0.6 is the opacity. so you can’t barely see it clearly on this green/blue (anyway it’s #54b0bf) background.
so I would change it to white by using:
.et_nav_text_color_light, .et_nav_text_color_light #et-secondary-nav a, .et_nav_text_color_light .et-social-icon a, .et_nav_text_color_light #et-info a {
color: rgba( 255, 255, 255, 1);
}
all the best for you’r web development:) I bet you’ll be successful:)
Malte Helmhold