/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


nav {
	width: 100%;
	background: #362f2d;
	position: relative;
	line-height: normal;
	z-index: 9999;
	font-size: 1em;
	margin: 0;
	padding: 0;
	font-family: 'Coda-Regular';
	color: #fff;
	letter-spacing: 0.5px;
}

nav ul {
	padding: 0;
	margin: 0 5%;
	width: 90%;
	text-align: center;
}

nav li {
	list-style: none;
	position: relative; 
	line-height: normal; 
	vertical-align: middle;
	display: inline-block;
	padding: 0.7em 0;
	margin: 0 1%;
}

nav a {
	color: #fff;
	display: block;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box; 
	-webkit-transition: all .3s ease-out; 
	-moz-transition: all .3s ease-out; 
	transition: all .3s ease-out;
}

nav a:hover, nav a:active {
	text-decoration: underline;
}

nav a#pull {
	display: none;
}


/*Styles for screen 600px and lower*/
@media screen and (max-width: 992px) {
	
nav { 
	height: auto;
}
	
nav ul {
	width: 100%;
	display: none;
	height: auto;
	margin: 0;
	padding: 0;
}
	
nav li {
 	width: 100%;
	padding: 1em 0;
	margin: 0;
	border-bottom: 1px solid #959595;
}

nav a {
	text-align: center;
	width: 100%;
}

nav a#pull {
	display: block;
	background-color: #283744;
	width: 100%;
	position: relative;
	padding: 0.8em;
	text-align: left;
	margin: 0;
}
	
nav a#pull:after {
	content:"";
	background: url('../slike/nav-icon.png') no-repeat;
	width: 1.875em;
	height: 1.875em;
	display: inline-block;
	position: absolute;
	right: 1em;
	top: 0.7em;
}
	
}

/*Smartphone*/
@media only screen and (max-width : 480px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
}

@media (min-width:800px) and (max-width:1200px){
	
nav ul {
	padding: 0;
	margin: 0 5%;
	width: 90%;
	text-align: center;
}
	
nav li {
	margin: 0 1%;
}
	
}