Hi Jacob,
Thanks for writing in! It seems you have the following code on your Customizer :
.x-navbar .desktop .x-nav > li > a {
height: 55px;
padding-top: 45px;
}
Kindly update this to following :
.x-navbar .desktop .x-nav > li > a {
height: 55px;
padding-top: 25px;
margin-top: 20px;
}
If you are planning to get the whole navbar down to create a space above then you can use this instead :
.x-navbar {
margin-top: 10px;
}
Hope this helps.
Cheers!