/********************************************************************************/
/* HEADER 
/********************************************************************************/

#header-container {
	height: 56px;
	background: #fff;
	color: #363636;
}


#site-header {
	position: relative;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 56px;
	padding: 17px 20px;
	background: #fff;
	-webkit-box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.75);
	   -moz-box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.75);
			box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.75);
	line-height: 1.5em;
	font-weight: 700;
	direction: rtl;
}
#site-header.sticky {
	position: fixed;
}

/* Contact button */
#contact-btn {
	float: left;
}
/***/

#navbar-container {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	-webkit-box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.75);
	   -moz-box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.75);
			box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.75);
}
#navbar {
	text-align: center;
	padding-bottom: 2px;
	background: #fff;
}
#navbar li {
	display: block;
	border-top: 1px solid #363636;
	padding: 9px 20px 7px 20px;
}
#navbar a {
	display: block;
}
#navbar a, 
#navbar a:visited {
}
#navbar a:hover, 
#navbar a:active,
#navbar li.active > a {
	color: #003b48;
}
.submenu {
	margin: 8px -20px 0 -20px;
}
.submenu > li:last-child {
	padding-bottom: 0;
}
/***/



/* Navbar toggle */
#navbar-toggle {
	display: block;
	position: absolute;
	top: 50%;
	right: 4px;
	width: 54px;
	height: 48px;
	margin-top: -24px;
	border: 0;
	padding: 16px;
	background: transparent;
	cursor: pointer;
}
#navbar-toggle:focus {
	outline: 0;
}
#navbar-toggle > span {
	display: block;
	width: 26px;
	height: 4px;
	background: #363636;
}
#navbar-toggle > span + span {
	margin-top: 3px;
}
/***/


@media only screen and (min-width : 1200px) {
/* lg */
	#site-header {
		padding: 5px 80px 0 80px;
	}
	#navbar-toggle {
		display: none;
	}
	#navbar-container {
		position: static;
		height: auto;
		margin-left: 120px;
		box-shadow: none;
		overflow: visible;
	}
	#navbar {
		padding-bottom: 0;
		text-align: right;
	}
	#navbar li {
		display: inline-block;
		border-top: 0;
		padding: 10px 40px 13px 40px;
	}
	
	
	
	.submenu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 0px;
		overflow: hidden;
		margin: 0;
		padding-right: 80px;
		background: rgba(255,255,255,0.6);
		line-height: 1.2em;
		-webkit-box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.5);
		   -moz-box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.5);
				box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.5);
		-webkit-transition:	height 0.35s ease 0.65s;
		   -moz-transition: height 0.35s ease 0.65s;
			-ms-transition: height 0.35s ease 0.65s;
			 -o-transition: height 0.35s ease 0.65s;
				transition: height 0.35s ease 0.65s;
	}
	
	li:hover > .submenu {
		height: 48px;
		-webkit-transition: height 0.35s ease;
		   -moz-transition: height 0.35s ease;
			-ms-transition: height 0.35s ease;
			 -o-transition: height 0.35s ease;
				transition: height 0.35s ease;
	}
	
	#contact-btn {
		margin-top: 10px;
	}

}
@media only screen and (min-width : 1600px) {
	#site-header {
		height: 72px;
		padding: 9px 9% 0 9%;
	}
	#navbar {
		margin-right: -60px;
	}
	#navbar li {
		padding: 10px 60px 19px 60px;
	}
	.submenu {
		padding-right: 9%;
		right: -60px;
		width: auto;
	}
	
}



/********************************************************************************/

