@import url(https://use.fontawesome.com/releases/v5.0.6/css/all.css);
@import url(https://fonts.googleapis.com/css?family=Oswald:400|Raleway:400,700,400italic,700italic);


/************************************************/
/****************** .menu-respIGATION ******************/
/************************************************/
.menu-resp {
    /*background: #e5e5e5;
    color: #002752;*/
    right:45px;
    position: absolute;
    top: 60px;
    width: 100%;
    z-index: 9999;
}

/*** INPUT ***/
.menu-resp input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

/*** LABEL ***/
.menu-resp label {
    cursor: pointer;
    display: block;
    font: 2em/1 'Oswald', sans-serif;
    padding: 12px 0;
	width:30px;
	float:right;
}

/* Hamburger Icon */
#menu-icon,
#menu-icon:before,
#menu-icon:after {
    background: #003770;
    border-radius: 0.05em;
    height: 0.15em;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

#menu-icon {
    display: inline-block;
    /*margin: 0.4em 0;*/
    max-width: 1em;
    position: relative;
}

.menu-resp label #menu-icon {
    float: right;
}

#menu-icon:before,
#menu-icon:after {
    content: '';
    left: 0;
    position: absolute;
}

#menu-icon:before {
    top: -0.4em;
}

#menu-icon:after {
    bottom: -0.4em;
}

/* Close Icon */
.menu-resp input[type=checkbox]:checked + label #menu-icon {
    background: transparent;
}

.menu-resp input[type=checkbox]:checked + label #menu-icon:before {
    top: 0;
    transform: rotate(-45deg);
}

.menu-resp input[type=checkbox]:checked + label #menu-icon:after {
    bottom: 0;
    transform: rotate(45deg);
}


/*** MENU ***/
/* Overlay */
.menu-resp input:checked ~ #overlay {
    /*background: #e5e5e5;*/
    background: #fff;
    bottom: 0;
    left: 0;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: -1;
}

/* List */
.menu-resp ul {
    font-size: 1.5em;
    list-style: none;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    text-align: left;
}

.menu-resp input:checked ~ ul {
    margin: 1em;
    max-height: inherit;
    opacity: 1;
	margin-top: 100px;
	width: 25%;
	padding-left: 15px;
}

.menu-resp ul > li {
    margin: 0.5em 0;
}

.menu-resp ul a {
    color: #013473 !important;
    text-decoration: none;
	/*text-transform:uppercase;*/
	padding:5px 25px;
	font-weight:600;
	font-size:16px;
}

.menu-resp ul a:hover {
    /*text-decoration: underline;*/
	background:#013473 !important;
	color: #fff !important;
}

/* Social Media */
.menu-resp ul#social-media > li {
    display: inline-block;
    font-size: 1.5em;
    margin: 0.5em;
}


@media(max-width:767px){
	.menu-resp input:checked ~ ul {
		width: 55%;
	}	
}