/*-----------------------------------------------------------*/
/*--------------------MOBILE FIRST---------------------------*/
/*-----------------------------------------------------------*/
#header
{

	width:100%;
	height: 100px;
	position: fixed;
	z-index: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background: transparent;
	transition: all .3s ease-in-out;
}
#header.active
{
	-webkit-box-shadow: -1px 10px 18px 2px rgba(0,0,0,0.67);
	-moz-box-shadow: -1px 10px 18px 2px rgba(0,0,0,0.67);
	box-shadow: -1px 10px 18px 2px rgba(0,0,0,0.67);
	transition: all .3s ease-in-out;
	background-color: #0a1b29;
}
#header.active nav ul li
{
	font-size:0.9em;
}
/*-----------------------------------------------------------*/
/*----------------------------HEADERLOGO----------------------*/
/*-----------------------------------------------------------*/
header > #headerLogo
{
	font-family: oswaldregular, sans-serif ;
	cursor: pointer;
	color: #ffffff;
	font-size:2em;
	overflow:visible;
	margin-left:1%;
	text-decoration: none;
	margin-right:auto;
	font-style: italic;
	font-weight: bold;

}
header  #headerLogo:hover
{
	color:#949494;
}
/*-----------------------------------------------------------*/
/*--------------------------MOBILE MENU----------------------*/
/*-----------------------------------------------------------*/
.mobileMenuIcon
{
	width:70px;
	height:70px;
	float: right;
	cursor: pointer;
	overflow: hidden;
	border-radius: 10px;
}
.mobileMenuIcon:hover
{
	overflow: hidden;
	background-color: white;
	content: url("../images/mobileMenuIconDark.png")
}

.mobileMenu
{
	z-index: 1;
	padding: 0;
	margin: 0;
	background-color: transparent;
	width: 100%;
	top:0;
	left:0;
	right: 0;
	bottom:0;
	margin-top: 100px;
	position: fixed;
	display: flex;
	align-items:flex-start;
	opacity: .96;
	transition: all .6s ease-out;
	pointer-events: none;
	-webkit-clip-path: circle(0 at 100% -30%);
	clip-path: circle(0 at 100% -30%);
	overflow: auto;
}
.mobileMenu.open
{
	pointer-events: all;
	-webkit-clip-path: circle(100%);
	clip-path: circle(100%);
}

.mobileMenu ul
{
	background-color: #212121;
	list-style-type: none;
	font-size: 1.5em;
	cursor: pointer;
	font-family: oswaldregular, sans-serif;
	color: white;
	padding: 0;
	margin:0;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	flex: 1 0 auto;
}
.mobileMenu ul a
{
	text-decoration: none;
	color:white;
}
.mobileListElement
{
	box-sizing:border-box;
	line-height: 70px;
	font-size:20px;
}
.mobileMenu ul .mobileListElement:nth-child(2) a
{
	position: relative;
	left:10px;
}
.mobileMenu ul .mobileListElement:nth-child(2)::after
{
	content:"";
	width:1em;
	height:1em;
	background-image: url("../images/downward_arrow.png");
	background-size: cover;
	display: inline-block;
	position: relative;
	left:13px;
}
.mobileMenu ul .mobileListElement:nth-child(2):hover::after
{
	background-image: url("../images/downward_arrow_dark.png");
}
.mobileListElement:hover a
{
	color:black;
}
.mobileListElement:hover
{
	background-color: white;
	color:black;
}

#mobileDropList
{
	display: none;
	background-color: #121212;
}
#mobileDropList.open
{
	display:flex;
	flex-direction: column;
}
#mobileDropList li
{
	font-size:20px;
	background-color: transparent;
}
#mobileDropList li:hover
{
	background-color: white;
}
/*-----------------------------------------------------------*/
/*--------------------HIDE DESKTOP MENU----------------------*/
/*-----------------------------------------------------------*/
header > nav > .desktopMenu
{
	display: none;
}


/*-----------------------------------------------------------*/
/*--------------------DESKTOP VERSION----------------------*/
/*-----------------------------------------------------------*/
@media screen and (min-width:992px)
{
	/*-----------------------------------------------------------*/
	/*--------------------HIDE MOBILE MENU----------------------*/
	/*-----------------------------------------------------------*/

	.mobileMenuIcon
	{
		display: none;
	}
	.mobileMenu
	{
		display: none;
	}
	.mobileMenu.open
	{
		display: none;
	}
	#header
	{
		height:100px;
	}
	/*-----------------------------------------------------------*/
	/*----------------------DESKTOP MENU-------------------------*/
	/*-----------------------------------------------------------*/
	header > #headerLogo
	{
		font-size: 2.4em;
	}
	header > nav
	{
		height:100%;
		margin:0;
		padding: 0;
		position: absolute;
		display: flex;
		align-items: flex-end;
	}
	header > nav > .desktopMenu
	{
		height:100%;
		color:white;
		display:flex;
		font-family: oswaldregular;
		font-size: 1.6em;
		list-style-type: none;
		position: relative;
		justify-content: center;

	}
	header >nav > .desktopMenu > a
	{
		height:100px;
		text-decoration: none;
		color:white;
	}
	.listElement
	{
		display: flex;
		align-items: center;
		clear: both;
		height:65px;
		padding: 20px;
		cursor:pointer;
		justify-content: center;
		margin-top:20px;
		transition: all .2s ease-in-out;
	}

	.listElement:hover
	{
		background-color: white;
		color:black;

	}


	/*-----------------------------------------------------------*/
	/*----------------------DROP LIST-----------------------------*/
	/*-----------------------------------------------------------*/
	#dropList
	{
		position: absolute;
		top:125px;
		text-align: center;
		background-color: #696969;
	}

	#dropList a
	{
		text-decoration: none;
		color:white;
	}

	#dropList li:hover
	{
		background-color: white;
		color:black;
	}
	.listElement:hover .dropListElement
	{
		display: block;
	}
	.dropListElement
	{
		width: 100%;
		transition: all .3s ease-in-out;
		padding: 20px;
		align-self: center;
		display: none;
		font-size:0.8em;
		position: relative;
		right:40px;
		background-color: #121212;
	}

	#dropList.active
	{
		background-color: #202020;
	}

	.listElement:nth-child(2)::after
	{
		content:"";
		width: 2em;
		height: 2em;
		background-size: 2em 2em;
		background-image: url("../images/downward_arrow.png");
		display: inline-block;
		position: relative;
		left:3px;
		margin-right:-15px;
	}

	.listElement:nth-child(2):hover::after
	{
		background-image: url("../images/downward_arrow_dark.png");
	}

}

@media screen and (max-width:192px)
{
	#headerLogo
	{
		display: none;
	}
}
