/* Clearfix */
.navigation .nav:before,
.navigation .nav:after {
    content: " ";
    display: table;
}
.navigation .nav:after {
    clear: both;
}
.navigation .nav {
    *zoom: 1;
}

/* Basic Styles */
.navigation {
	position: relative;
	text-transform: uppercase;
}
.header ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.navigation li {
	display: inline-block;
	text-align: center;
}
.navigation a {
	color: #FFF;
	border-bottom: #141414 2px solid;
	display: block;
	text-decoration: none;
	padding: 4px;
	margin: 0 20px;	
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;	
}
.navigation a:hover, .navigation a:active, .navigation a:focus, .navigation a.nav-path-selected {
	color: #39F;
	border-bottom: #39F 2px solid;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;		
}
@media only screen and (max-width : 1024px) {
/* Clearfix */
.navigationmobile nav:before,
.navigationmobile nav:after {
    content: " ";
    display: table;
}
.navigationmobile nav:after {
    clear: both;
}

/* Basic Styles */
.navigationmobile nav {
	display: none;	
	position: relative;		
	margin: 50px 0 0;
	}
.navigationmobile nav ul.nav {
	height: auto;
	padding: 20px 5px 15px;	
	background-color: #39F;	
}
.navigationmobile a#pull {
	box-sizing: border-box;
	display: block;
	width: 100%;
	position: relative;
	height: 0;
	overflow: visible;
	z-index: 99;
	text-decoration: none;
	border-bottom: none;	
}
.navigationmobile a#pull:after {
	content:"";
	background: url('navbar.svg') no-repeat;
	background-position: center;
	background-size: contain;
	width: 30px;
	height: 30px;
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 15px;
}
.navigationmobile a {
	color: #FFF;
	border-bottom: #39F 2px solid;
	display: block;
	text-decoration: none;
	padding: 4px;
	margin: 0 20px;	
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;	
}
.navigationmobile a:hover, 
.navigationmobile a:active, 
.navigation a:focus, 
.navigation a.nav-path-selected {
	color: #000;
	border-bottom: #000 2px solid;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;		
}
}