html, body{
    margin: 0px;
    padding: 0px;
    width: 100vw;
    overflow-x: hidden;
}


body {
    font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
}

body::-webkit-scrollbar{
    display:none;
}







/* Old Nav Bar  ------------------------------------*/
/*#topSection{*/
/*    position:relative;*/
/*    width:100vw;*/
/*    left: 0px;*/
/*}*/


/*#header {*/
/*    position:relative;*/
/*    background-color: white;*/
/*    width:100%;*/
/*    height:auto;*/
/*    padding: 10px;*/
/*    display:flex;*/
/*    justify-content: center;*/
/*}*/

/*#header img{*/
/*    width: 50%;*/
/*    max-width: 400px;*/
/*}*/

/*#navbar{*/
/*    position:relative;*/
/*    width: 100%;*/
/*    height: auto;*/
/*    background-color: #a8a7a7;*/
/*    display:flex;*/
/*    flex-wrap: wrap;*/
/*}*/

/*#navbar div{*/
/*    padding: 10px 16px;*/
/*    width: auto;*/
/*    height: 20px;*/
/*    text-align: center;*/
/*}*/

/*#navbar div a{*/
/*    color: black;*/
/*    text-decoration:none;*/
/*    font-size: 17px;*/
/*}*/

/*#navbar div:hover{*/
/*    background-color: #ffffff;*/
/*}*/

/*.onPage{*/
/*    background-color: #0088cc;*/
/*}*/


/*New Nav Bar ------------------------------------------------------------------*/


/* nav stuff --------------*/
            
#nav2{
    position:absolute;
    background-color: white;
    width: 100vw;
    height: 100px;
    z-index: 1000;
}

#navLogo{
    height: 100%;
    display:flex;
    align-items: center;
}

#navLogo img{
    margin-left: 60px;
    height: 60px;
    width: auto;
}

#navButtons{
    position: absolute;
    right:0;
    top: 0;
    display:flex;
    width:auto;
    height: 100%;
    align-items: center;
    margin-right: 40px;
}

 #navButtons::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom: 36px;
    height:2px;
    border-radius: 2px;
    scale: var(--_width, 0.125) 1 ;
    translate: var(--_left, 100%) 0;
    opacity: var(--_opa, 0);
    transition: scale 500ms, translate 500ms, opacity var(--_opaTrans, 200ms);
    transform-origin:left;
    background-color: black;
}

#navButtons div{
    position: relative;
    padding: 7px 10px;
    border-radius: 10px;
    margin-right: 5px;
    font-weight: 400;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;;
}

#navButtons div:not(.currentlyOn) a{
    text-decoration: none;
    color: black;
}

#currentlyOn{
    background-color: #d5d9ed;
}

#currentlyOn a{
    text-decoration: none;
    color:#021570;
}

/* small nav*/

#smallNav{
    display:none;
    width: 100vw;
}


#burgerNav{
    position: absolute;
    top: 0;
	right: 50px;
	width: 40px;
	height: 100%;
	transition: opacity 0.2s ease-in-out, right 0.5s ease-in-out ;
	cursor: pointer;
}

#burger {
    position: relative;
    top: 50%;
    translate: 0 -50% ;
    width: 30px;
    height: 3px;
    background-color: black;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}
#burger::before, 
#burger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: inherit;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}
#burger::before {
    transform: translateY(-10px);
}

#burger::after{
    transform: translateY(10px);
}

#burgerNav.BNopen #burger {
    background-color: transparent;
    box-shadow: none;
}

#burgerNav.BNopen #burger::before {
    transform: rotate(45deg);
    background-color: rgb(153, 5, 5);
}

#burgerNav.BNopen #burger::after{
    transform: rotate(-45deg);
    background-color: rgb(208, 4, 4);
}

#overlayContainer{
    position: relative;
    width: 100vw;
    display:flex;
    justify-content: center;
}

#burgerOverlay{
    border-top: none;
    width: fit-content;
    background-color: white;
    height: fit-content;
    max-height: 0px;
    transition: max-height 500ms;
}

#burgerOverlay a{
    text-decoration: none;
    font-family: sans-serif ;
    color: black;
    pointer-events: none;
}

#burgerOverlay div{
    padding: 5px 60vw 5px 10px;
    margin: 5px 6px;
    opacity: 0;
    transition: background 500ms, opacity 500ms;
}

#burgerOverlay div:not(#currentlyOnBurgerNav):hover{
    background-color: #e8e8e8;
}

#currentlyOnBurgerNav{
    background-color: #d5d9ed;
    padding: 5px 2px;
    border-radius: 2px;
}


/* Blank Div */

#navBlankDiv{
    position:relative;
    background-color: white;
    width: 100vw;
    height: 100px;
}


@media (max-width: 1150px){
    #largeNav{
        display:none;
    }
    #smallNav{
        display:block;
    }
    
    #navLogo img{
        margin-left: 5.5vw;
    }
    #nav2{
        height: 8.5vw;
        min-height: 80px;
    }
    #navBlankDiv{
        height: 8.5vw;
        min-height: 80px;
    }
    
}



