/*
https://css-tricks.com/hash-tag-links-padding/
this will make space for a specific height ,
This is useful on fixed menus and lets you specify the height above the fixed menu
*/
<div id="location">
<h1 class="text-center"></h1>
</div>
#location h1:before {
display: block;
content: " ";
margin-top: -102px;
height: 102px;
visibility: hidden;
}