/* =============================================================================
   03-header.css
   Site header and main navigation.

   Split out of style.css, which had grown to 3,647 lines. Loaded via
   wp_enqueue_style() in inc/enqueue.php - the load ORDER there matches the
   numeric filename order, and matches the order these rules appeared in the
   original file, so the cascade is unchanged.
   ============================================================================= */
/* ============
|| HEADER 
============== */
header {
	margin-top: 100px;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
}
header .menu {
	width: 50px;
	height: 41px;
	position: relative;
	transform: rotate(0deg);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
	display: none;
}
header nav {
	position: absolute;
	right: 26px;
	top: 17px;
	transform: rotate(0deg);
	-webkit-transition: all 0.25s ease;
	pointer-events: auto;
	opacity: 1;
}
header nav.active {
	opacity: 1;
	pointer-events: auto;
}
header nav ul {
	margin: 0px;
	padding: 0px;
}
header nav ul li {
	display: inline-block;
	position: relative;
	color: var(--js-white);
	font-family: "effraregular";
	font-size: 15pt;
	line-height: 20pt;
}
header nav ul li a {
	margin: 0 5px;
	color: var(--js-white);
	font-family: "effraregular";
	font-size: 15px;
	line-height: 20pt;
	text-decoration: none;
}
header nav ul li::after {
	content: " ";
	position: absolute;
	top: 7px;
	right: -3px;
	width: 2px;
	height: 15px;
	background-color: var(--js-white);
}
header nav ul li.menu-item-135 {
	margin-right: 0px;
}
header nav ul li.menu-item-135::after {
	display: none;
}
.menu.right.active {
	transform: rotate(90deg);
}
header .menu .bar {
	background-color: var(--js-white);
	width: 100%;
	height: 7px;
	position: absolute;
	transform-origin: 50% 50%;
	transition: transform 400ms ease-out;
	border-radius: 20px;
}
header .menu .bar.one {
	top: 0;
	left: 0;
}
header .menu .bar.two {
	top: 16px;
	left: 0;
	opacity: 1;
}
header .menu .bar.three {
	top: 32px;
	left: 0;
}

/* ! JOBCLUB PAGE TO BE REMOVED */
body.page-template-template_jobclub header .menu .bar {
	background-color: var(--js-black);
}

