/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

#navbarcorp {
    position: fixed; /* Makes the navbar stay in the same position even while scrolling */
    top: 0; /* Positions it at the top of the page */
    left: 0; /* Aligns it to the left */
    width: 100%; /* Makes sure the navbar takes the full width of the screen */
    height: fit-content;
    font-family: var(--default-font-family);
    background-color: var(--hero-bg);
    z-index: 9999;
}




