/* Header styles
-------------------------------------------------- */

@keyframes hamburger-line-3-ani-on {
    0%   {transform: rotate(0deg); top: 0px;}
    100% {transform: rotate(40deg); top: -7px;}
}

@keyframes hamburger-line-1-ani-on {
    0%   {transform: rotate(0deg); top: 0px;}
    100% {transform: rotate(-40deg); top: 5px;}
}

@keyframes hamburger-line-3-ani-off {
    0%   {transform: rotate(40deg); top: -7px;}
    100% {transform: rotate(0deg); top: 0px;}
}

@keyframes hamburger-line-1-ani-off {
    0%   {transform: rotate(-40deg); top: 5px;}
    100% {transform: rotate(0deg); top: 0px;}
}


header{
	height: 50px;
	padding: 10px;
	text-align: right;
	position: relative;
	margin: 0px;
	padding: 0px;
	height: 50px;
	z-index: 1;
	flex: 0 0 auto;
}
.logo{
	position: absolute;
    top: 5px;
    left: 15px;
    width: 48px;
    z-index: 1;
}
.hamburger-icon{
	width: 28px;
	cursor: pointer;
	position: absolute;
	top: 15px;
	right: 15px;
}
.hamburger-line{
	position: relative;
	top: 0px;
	height: 2px;
    width: 20px;
    background-color: #ffffff;
    margin: 4px;

}

.hamburger-line-1-ani{
    animation-name: hamburger-line-1-ani-on;
    animation-duration: 0.5s;
    transform: rotate(-40deg);
    top: 5px;
}

.hamburger-line-2-ani{
    opacity: 0;
}

.hamburger-line-3-ani{
    animation-name: hamburger-line-3-ani-on;
    animation-duration: 0.5s;
    transform: rotate(40deg);
    top: -7px;
    
}

.hamburger-line-3-ani-off{
    animation-name: hamburger-line-3-ani-off;
    animation-duration: 0.5s;
    transform: rotate(0deg);
    top: 0px;
    
}

.hamburger-line-2-ani-off{
	transition: opacity .5s ease-out;
    -moz-transition: opacity .5s ease-out;
    -webkit-transition: opacity .5s ease-out;
    -o-transition: opacity .5s ease-out;
	opacity: 1;
}

.hamburger-line-1-ani-off{
    animation-name: hamburger-line-1-ani-off;
    animation-duration: 0.5s;
    transform: rotate(0deg);
    top: 0px;
    
}

.nav-holder{
	background-color: #2a6098;
	position: absolute;
	top: 0px;
	width: 100%;
	height: 50px;
	transition: height .5s ease-out;
    -moz-transition: height .5s ease-out;
    -webkit-transition: height .5s ease-out;
    -o-transition: height .5s ease-out;
    overflow: hidden;
}
.nav-list{
	margin-top: 50px;
	padding-bottom: 0px;
	height: 0px;
	padding-right: 40px;
}

.nav-list-open{
	padding-bottom: 20px;
	height: 359px;
}

.nav-item{
	display: block;
	font-size: 18px;
	line-height: 50px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	cursor: pointer;
	font-weight: 400;
	padding-left: 20px;
}
.nav-item a{
	text-decoration: none;
	color: #ffffff;
}
.nav-item:hover{
	opacity: .5;
}
	
.nav-item-spacer{
	display: block;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	border-bottom: 1px solid #d1d1d1;
	text-align: center;
}
.nav-selected{
	opacity: .5;
}
/* disable transitions during page resizes - add/remove class in resize handler
-------------------------------------------------- */

/*
.notransition {
	.transition (none) !important;
}
*/

/* Responsive
-------------------------------------------------- */

/* Tablet: >= 480px
------------------------- */
@media (min-width: 480px) {
	
}

/* Desktop (small): >= 768px
------------------------- */
@media (min-width: 768px) {
	.logo{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100px;
		z-index: 1;
		padding: 15px;
		background-color: #2a6098;
	}
	.hamburger-icon{
		display: none;
	}
	.nav-list{
		height: 50px;
	}
	
	.nav-list-open{
		height: 50px;
		padding-bottom:0px;
	}
	.nav-list{
		margin-top: 0px;
		padding-bottom: 0px;
	}
	.nav-item{
		display: inline-block;
		font-size: 18px;
		line-height: 50px;
		width: auto;
		padding-left: 0px;
		font-size: 14px;
	}
	
	.nav-item-spacer{
		display: inline-block;
		width: 20px;
		margin-left: auto;
		margin-right: auto;
		border-bottom: none;
		text-align: left;
	}
	
}

/* Desktop (medium): >= 992px 
------------------------- */
@media (min-width: 992px) {

}

/* Desktop (large): >= 1200px
------------------------- */
@media (min-width: 1200px) {
	
}