li {
	text-decoration: none;
}

.nav {
	text-decoration: none;
	z-index: 1;
}

.nav_main {
	padding: 8px 0 0 0;
}

@media (max-width: 1024px) {
	.nav_main {
		padding: 0px;
	}
}

.nav_list_items {
	display: inline-block;
}

.nav_list_item_active a {
	color: #fff;
}

.nav_active a {
	color: #fff;
}

@media (max-width: 1024px) {
	.hamburger {
		padding: 1em;
		position: absolute;
		z-index: 2;
		display: block;
		cursor: pointer;
		right: 1em;
   		top: 1.8em;
	}

	#nav-icon1 span:nth-child(1) {
		position: relative;
		z-index: 1;
		height: 3px;
		width: 24px;
		display: block;
		margin: 0 0 8px 0;
		background-color: #fff;
	}

	#nav-icon1 span:nth-child(2) {
		position: relative;
		z-index: 1;
		height: 3px;
		width: 24px;
		display: block;
		background-color: #fff;
	}

	#nav-icon1.open span:nth-child(1) {
		position: relative;
		top: 5px;
		-webkit-transform: rotate(135deg);
  		-moz-transform: rotate(135deg);
  		-o-transform: rotate(135deg);
  		transform: rotate(135deg);
	}

	#nav-icon1.open span:nth-child(2) {
		position: relative;
		top: -6px;
		-webkit-transform: rotate(-135deg);
  		-moz-transform: rotate(-135deg);
  		-o-transform: rotate(-135deg);
  		transform: rotate(-135deg);
	}

	/* arrow */

	#arrow span:nth-child(1) {
		position: relative;
		top: 0;
		z-index: 1;
		height: 3px;
		width: 24px;
		display: block;
		margin: 0 0 8px 0;
		background-color: #fff;
		-webkit-transform: rotate(135deg);
  		-moz-transform: rotate(135deg);
  		-o-transform: rotate(135deg);
  		transform: rotate(135deg);
	}

	#arrow span:nth-child(2) {
		position: relative;
		z-index: 1;
		top: -10px;
		left: -16px;
		height: 3px;
		width: 24px;
		display: block;
		background-color: #fff;
		-webkit-transform: rotate(-135deg);
  		-moz-transform: rotate(-135deg);
  		-o-transform: rotate(-135deg);
  		transform: rotate(-135deg);

	}

	#arrow.open span:nth-child(1) {
		position: relative;
		top: 5px;
		-webkit-transform: rotate(-135deg);
  		-moz-transform: rotate(-135deg);
  		-o-transform: rotate(-135deg);
  		transform: rotate(-135deg);
	}

	#arrow.open span:nth-child(2) {
		position: relative;
		top: -6px;
		-webkit-transform: rotate(135deg);
  		-moz-transform: rotate(135deg);
  		-o-transform: rotate(135deg);
  		transform: rotate(135deg);
	}


/* sidebar */

	.sidebar {
		height: 100vh;
		width: 100%;
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		z-index: 1;
		background-color: #121212;
		transform: translate3d(-100%,0,0);
	}

	.sidebar.visible {
		transform: translate3d(0,0,0);
	}

	.top-bar {
		height: 50vh;
		width: 100%;
		position: fixed;
		display: block;
		top: 0;
		left: 0;
		z-index: 1;
		background-color: #191919;
		transform: translate3d(0,-100%,0);
		box-shadow: 0px 0px 0px #000;
	}

	.top-bar.visible {
		transform: translate3d(0,0,0);
		box-shadow: 2px -15px 170px #000;
	}
	
	.nav_list {
		top: 0;
    	left: 0;
    	position: absolute;
	    height: 100vh;
	    width: 100%;
	    z-index: 2;
	}

	.nav ul {
		z-index: 2;
		opacity: 0;
		transform: translate3d(-100%,0,0);
	    width: 100%;
	    height:auto;
	    top: 25%;
	    position: absolute;
	    list-style: none;
	 }

	 .nav ul.visible {
		transform: translate3d(0,0,0);
		opacity: 1;
	}

	.nav-top ul {
		top: 0;
		z-index: 2;
		opacity: 0;
		transform: translate3d(0,-100%,0);
	    width: 100%;
	    height:auto;
	    top: 25%;
	    position: absolute;
	    list-style: none;
	 }

	 .nav-top ul.visible {
		transform: translate3d(0,0,0);
		opacity: 1;
	}

	 .nav_list li {
	 	text-align: center;
	 }

	 .nav_list li:nth-child(1) {
		padding: 0 0 2em 0;
	}

	.nav_list li:nth-child(2) {
		padding: 0 0 2em 0;
	}

	.nav-top li:nth-child(3) {
		padding: 0 0 2em 0;
	}
	
	.nav_list_items {
		display: block;
	}

	.nav_list.visible {
		position: relative;
		left: 0;
	}
}


/* sticky nav */

.fixed {
	position: fixed;
}

.fixed--nav {
	position: fixed;
	right: 55px;
}

.fixed--hamburger {
	right: 16px;
}

.project-description {
	cursor: pointer;
}
