
.upper-header{
    background-color:var(--orange);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    height:60px;
    position:relative;
    z-index:3;
    & p{
        font-size:0.9rem;
    }
}

.bottom-header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    background-color:var(--white);
    height:80px;
    position:relative;
    z-index:3;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px;
}

.menu-logo img{
    width:100%;
    max-width:320px;
}


nav ul {
	padding: 0;
    margin: 0;
	list-style: none;
	position: relative;
	}
	
nav ul li {
	display:inline-block;
	background-color: var(--white);
	}

nav a {
	display:block;
    font-family:'ProximaNovaSemiBold';
	padding:0 20px;	
	color:var(--black);
	font-size:1.1rem;
	line-height: 60px;
	text-decoration:none;
    transition:all 0.2s;
}

nav a:hover { 
	color:var(--orange);
    transition:all 0.2s;
}

/* Hide Dropdowns by Default */
nav ul ul {
	display: none;
	position: absolute; 
	top: 60px; /* the height of the main nav */
    padding-top:10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px;
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
    transition:all 0.2s;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:260px;
	float:none;
	display:list-item;
    transition:all 0.2s;
	position: relative;
    & a{
        font-family:'ProximaNovaRegular';
        padding: 12px 0 12px 20px;
        line-height:1;
        font-size:1rem;
    }
}
