/* Mobile navigation */
.nav-mobile {
	display: none; /* Hide from browsers that don't support media queries */
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	background: url(../images/nav.svg) no-repeat center center;
	background-size: 50px;
	height: 50px;
	width: 50px;
}
/* Mobile navigation, clickable area for revealing <ul> */
.nav-click {
	position: absolute;
	top: 0;
	right: 30px;
	display: none;
	border-left: 1px solid #f5e5d6ff;
	height: 49px;
	width: 100%;
	cursor: pointer;
}
.nav-click i {
	display: block;
	height: 48px;
	width: 48px;
	background: url(../images/drop.svg) no-repeat center center;
	background-size: 20px;
	float: right;
}

.nav-rotate {
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}

/*------------------------------------*\
    Media Queries
\*------------------------------------*/

@media only screen and (min-width: 320px) and (max-width: 1000px) {

	header {	
		justify-content: center;
		flex-direction: column;
	}

	header ul li + li {
    	margin: 10px 0 0 0;
	}

	.nav-mobile {
		display: block;
	}
	.nav {
		/* padding: 50px 0 0; */
		width: 100%;
	}
	.nav-list {
		display: none;
		padding: 10px;
		top: 70px;
		position: absolute;
		background: rgba(0, 0, 0, .7);
		width: 100%;
	}
	.nav-list a {
		width: 100%;
		display: block;
	}
	.nav-item {
		float: none;
	}
	.nav-item > a {
		padding: 15px;
	}
	.nav-click {
		display: block;
	}
	.nav-mobile-open {
		border-radius: 5px 5px 0 0;
		-webkit-border-radius: 5px 5px 0 0;
		-moz-border-radius: 5px 5px 0 0;
	}
	.nav-item:hover .nav-submenu {
		display: none;
	}
	.nav-submenu {
		position: static;
		width: 100%;
	}
}