#hamburger {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #E31E24;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 101;
    background-image: url('../img/hamburger.png');
    background-size: 100%;
    background-position: 0% 0%;
}
#hamburger.clicked {background-position: 0% 100%}

#menu {
    display: block;
    box-sizing: border-box;
    width: 400px;
    max-width: 85%;
    height: 100%;
    background: white;
    padding: 10px;
    position: fixed;
	z-index: 100;
    top: 0;    
    right: -450px;
    display: none;
}

#menu > div {
    position: relative;
    top: 100px;
}

#menu-logo {
	display: block;
	padding: 0 20px;
	box-sizing: border-box;
	height: 172px;
	position: relative;
	margin-bottom: 100px;
	background-image: url('../img/menu-logo.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 0;
}

#menu-cont {
    padding: 20px 0;
    box-sizing: border-box;
    height: 70%;
}

#menu-cont ul {
	list-style: none;
	height: 100%;
}

#menu-cont  li {
    display: block;
	margin-bottom: 20px;
}

#menu-cont  li a {
	font-weight: 900;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
}

#menu-cont  li.current_page_item a {color: #E31E24 !important}

#menu-socials {
	margin-top: 30px;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
}

#menu-socials div {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0 2px;
}

#menu-socials a {
	display: block;
	position: relative;
	width: 34px;
	height: 34px;
	top: 3px;
	left: 3px;
	border-radius: 50%;
	background-position: center;
	background-size: 30px;
	background-repeat: no-repeat;
}

/* GRID: 1280px */
@media all and (max-width: 1280px) {
	
#menu > div {top: 60px}
	
#menu-logo {
	height: 150px;
	margin-bottom: 50px;
}

}


/* GRID: 1024px */
@media all and (max-width: 1024px) {
	
#hamburger {
    top: 20px;
    right: 20px;	
	background-color: #E31E24 !important;
}

#menu > div {top: 60px}

#menu-logo {
	height: 140px;
	margin-bottom: 30px;
}

#menu-cont li {margin-bottom: 15px}

#menu-cont  li a {color: #404040 !important}

#menu-socials {margin-top: 20px}

#menu-socials a {
	width: 34px !important;
	height: 34px !important;
	top: 3px !important;
	left: 3px !important;
}

}


/* #Base 750 Grid
================================================== */
@media only screen and (max-width: 750px) {
	
#hamburger {
    top: 15px;
    right: 15px;	
}

#menu {width: 300px}

#menu-logo {
	height: 100px;
	margin-bottom: 20px;
}

#menu-cont li {margin-bottom: 10px}

#menu-socials {margin-top: 15px}

}


/* #Base 500 Grid
================================================== */
@media only screen and (max-width: 500px) {
	
#hamburger {
    top: 10px;
    right: 10px;
	width: 32px;
	height: 32px;	
}	
	
#menu {width: 250px}

#menu > div {top: 40px}

#menu-logo {
	height: 80px;
	margin-bottom: 20px;
}

#menu-cont li {margin-bottom: 10px}

#menu-cont li a {font-size: 15px}

#menu-socials {margin-top: 0}

}