Hi @mickster58,
The added content in your header are malformed, example,
`
Get in touch: +971 4 880 8006
`
It should have a closing </a> like this
<p>Get in touch: <a href="tel+97148808006" style="text-decoration: underline; color:rgb(33, 102, 177);">+971 4 880 8006</a></p>
And there are multiple of it, this breaks the flex layout pushes the other content (broken layout became invisible elements on the left of the logo).
As for the footer, you have this CSS that hides it, please remove it
.page-id-114 .e40-1.x-bar.x-bar-footer.x-bar-h.x-bar-relative.x-bar-outer-spacers {
display: none;
}
Thanks!