Img load while refreshing

You are resizing your logo in your css, giving that flash of unstyled content on load/reload. It’s original size is 150x150px. You have at least two options:

  1. Change it for a smaller version (75x75px), avoiding the jarring resize.
  2. Alter the css to make it display:none (like your other logos) and make it fade in with javascript.

Give these a try.