.body-container > .header {
	position: relative;
	display: block;
	width: 100%;
	height: 80px;
	
	line-height: 80px;
	
	z-index: 99;
	
	background: transparent;
	
	box-sizing: border-box;
}

.body-container > .header > div {
	height: 100%;
}

.body-container.has-docked-nav > .header {
	position: fixed;
	top: 0;
	left: 0;
	
	background: #FFF;
	
	border-bottom: 2px solid #262b3b;
}

.header a.logo {
	display: block;
	width: 163px;
	height: 100%;
}

.header a.logo img {
	height: 100%;
}

.navbar {
	position: absolute;
	top: 0;
	right: 0;
	
	height: 100%;
}

.navbar ul {
	height: 100%;
	margin: 0;
	list-style: none;
}

.navbar ul li {
	display: inline-block;
	width: 140px;
	height: 100%;
	
	text-align: center;
	margin: 0 -4px 0 0;
}

.navbar ul li:last-child {
	margin: 0;
}

.navbar ul li a {
	display: block;
	height: 100%;
	
	color: #262b3b;
	
	font-weight: 600;
	text-decoration: none;
}

.navbar ul li:hover {
	background-color: #5198cd;
}

.navbar ul li:hover a {
	color: #FFF;
}

.navbar ul li.active {
	background-color: #262b3b;
}

.navbar ul li.active a {
	color: #ffca44;
}




/* Responsive
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Plus petit que 730
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 730px) {
	.header .container {
		width: 100%;
	}
	
	.navbar {
		width: 100%;
		height: 0;
		top: 78px;
		z-index: 99;
	}
	
	.navbar.open {
		height: calc(100vh - 79px);
	}
	
	.navbar:before {
		content: '\2630';
		position: absolute;
		display: block;
		top: -60px;
		right: 3%;
		font-size: 40px;
		line-height: 40px;
		cursor: pointer;
	}
	
	.navbar ul {
		background: #222;
		width: 100%;
	}
	
	.navbar ul li {
		display: block;
		width: 100%;
		height: calc((100vh - 79px) / 4);
		
		text-align: left;
	}
	
	.navbar ul li a {
		padding: 0 0 0 20px;
		color: #FFF;
		
		border-top: 1px solid #333;
		
		line-height: calc((100vh - 79px) / 4);
	}
	
	.navbar ul {
		transition: 350ms;
		-moz-transition: 350ms;
		-webkit-transition: 350ms;
		transform:  translateY(-100vh);
		-moz-transform:  translateY(-100vh);
		-webkit-transform: perspective(600) rotate3d(1, 0, 0, -90deg);
		transform-origin: 50% 0;
		-moz-transform-origin: 50% 0;
		-webkit-transform-origin: 50% 0;
	}
	
	.navbar.open ul {
		transform: translateY(0px);
		-moz-transform: translateY(0px);
		-webkit-transform: perspective(600) rotate3d(0, 0, 0, 0);
	}
}