#nav-trigger
{
	display: none;
}

#nav-mobile
{
	display: none;
}

/* ==================================================
   Desktop - Level 1
================================================== */

#nav-main
{
	line-height: 0;
}
	
	#nav-main ul
	{
		position: relative;
		display: inline-block;
		margin: 0 auto !important;
		padding: 0;
		list-style-type: none;
	}
	
		#nav-main ul li
		{
			position: relative;
			float: left;
			margin: 0;
			padding: 0;
		}
		
		#nav-main ul li:hover > ul
		{
			display: block;
		}
	
			#nav-main ul a
			{
				display: block;
				color: rgba(255,255,255,0.7);
				text-decoration: none;
				line-height: 56px;
				padding: 0 16px;
				font-size: 1.15em;
				font-weight: 400;
				letter-spacing: 0;
				font-family: "Tilt Warp"
			}
			
			#nav-main ul li a span
			{
				margin-left: 10px;
				margin-top: 0;
				color: var(--white);
				font-size: 60%;
			}
	
				#nav-main ul li:hover a,
				#nav-main ul li a:hover
				{
					color: #FFF;
				}
				
					#nav-main ul > li.active > a
					{
						color: var(--white);
					}
					
					#nav-main ul > li.active > a:hover
					{
						color: var(--white);
					}
				
						#nav-main ul li:hover a span,
						#nav-main ul li.active a span
						{
							color: var(--white);
						}
	
/* ==================================================
   Desktop - Level 2
================================================== */

#nav-main ul ul
{
	position: absolute;
	width: 280px;
	margin: 0;
	visibility: hidden;
	top: 56px;
	left: 0;
	z-index: 99999;
	opacity: 0;
	padding: 0;
	background: var(--orange);
	
	-webkit-transition: visibility 0s ease-out 0.1s, opacity 0.1s ease-out, top 0.1s ease-out;
    -moz-transition: visibility 0s ease-out 0.1s, opacity 0.1s ease-out, top 0.1s ease-out;
    -o-transition: visibility 0s ease-out 0.1s, opacity 0.1s ease-out, top 0.1s ease-out;
    transition: visibility 0s ease-out 0.1s, opacity 0.1s ease-out, top 0.1s ease-out;
}

	#nav-main ul ul li
	{
		float: none;
		margin: 0;
		display: block;
	}

		#nav-main ul ul li a
		{    
			float: none;
			display: block;
			padding: 12px 16px 12px 16px;
			width: 280px;
			height: auto;
			line-height: 1.2em;
			color: #FFF;
			font-size: 1em;
			font-weight: 400;
			text-decoration: none;
			font-family: "Tilt Warp";
			text-align: left;
		}
		
			#nav-main ul ul li.hasChild > a
			{
				padding-right: 20px;
			}
			
			#nav-main ul ul a span
			{
				position: absolute;
				top: 11px;
				right: 10px;
			}
			
			#nav-main ul ul li a span.fa-angle-down
			{
				display: none;
			}
			
			#nav-main ul li:not(:hover).hasChild ul
			{
				visibility: hidden;
				top: 66px;
			}

			#nav-main ul li:hover.hasChild > ul
			{
				visibility: visible;
				top: 56px;
				opacity: 1;

				-webkit-transition-delay: 0s;
				-moz-transition-delay: 0s;
				-o-transition-delay: 0s;
				transition-delay: 0s;
			}

				#nav-main ul ul li a:hover,
				#nav-main ul ul li:hover > a
				{
					background: var(--orange);
					color: #5d516f;
				}

/* ==================================================
   Mobile
================================================== */

#nav-mobile
{
	
}

	#nav-mobile ul
	{
		margin: 0;
		display: none;
		float: left;
		width: 100%;
		padding: 20px 0;
	}
	
		#nav-mobile ul li
		{
			float: left;
			width: 100%;
			list-style-type: none;
		}

			#nav-mobile ul li a
			{
				float: left;
				width: 100%;
				color: rgba(255,255,255,0.7);
				font-size: 1.4em;
				font-weight: 400;
				padding: 4px 0;
				text-transform: none;
				font-family: "Tilt Warp";
				text-align: center;
			}
			
			#nav-mobile ul li.active > a
			{
				color: var(--white) !important;
			}

				#nav-mobile ul ul li a
				{
					padding: 4px 0;
					font-weight: 400;
					line-height: 1em;
					font-size: 1em;
					text-transform: none;
				}
				
					#nav-mobile ul ul ul li a
					{
						padding: 2px 0 2px 20px;
					}
					
						#nav-mobile ul ul ul ul li a
						{
							padding: 2px 0 2px 30px;
						}

			#nav-mobile a span
			{
				display: none;
			}

			#nav-mobile ul li a:hover
			{
				color: var(--white);
			}
			
	#nav-mobile ul ul
	{
		padding: 0;
		display: block !important;
	}

/* ==================================================
   Media Queries
================================================== */

@media only screen and (max-width: 999px)
{

	#nav-trigger
	{
		position: relative;
		display: block;
		float: right;
	}
	
	    #nav-trigger button
	    {
	        background: none;
	        display: block;
	        outline: none;
	        border: 0;
	        margin-top: 30px;
	    }
	    
    	    #nav-trigger button span
    	    {
    	        font-size: 2em;
    	        color: var(--orange);
    	    }

	#nav-main
	{
		display: none;
	}

	#nav-mobile
	{
		display: block;
	}
	
}

@media only screen and (max-width: 576px)
{

    #nav-trigger button
    {
        margin-top: 20px;
    }
	
}