/* SB CSS header */

header {
	margin:0;
	top:100px;
	left:50px;
	padding:0;
	width:200px;
	box-sizing: border-box;
	position: fixed;
	display:block;
	z-index:999;
	background:#FFF;
}
header h1 {
	text-indent:-99999px;
	margin:-31px 0 50px 0;
	padding:0;
	width:200px;
	height:84px;
	display:block;
	background:url(../imgs/content/studio-buschow-logo.svg) no-repeat;
	background-size:contain;
	float: left;
}
header h1 a {
	margin:0;
	padding:0;
	width:200px;
	height:84px;
	display:block;
}

header .box {
	position: fixed;
	visibility:hidden;
	background:#ACAD00;
	width:0;
	height: calc(100% - 279px);
	top:279px;
	left:50px;
	display:block;
	padding:50px 0;
	margin:0;
	box-sizing:border-box;
	text-align:center;
	-webkit-transition: visibility .3s, width .3s cubic-bezier(1,0.2,0.2,1);
	transition: visibility .3s, width .3s cubic-bezier(1,0.2,0.2,1);
}
header .box.open {
	visibility: visible;
	width:200px;
}
header ul {
	position: relative;
	width:100%;
	display:block;
	list-style:none;
	padding:0;
	margin:0;
	box-sizing:border-box;
	text-align:center;
}
header ul li {
	font-size:30px;
	padding:0 0 15px 0;
	opacity: 0;
    -webkit-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
	-webkit-transition: all .1s ease;
	transition: all .1s ease;
}
header .open ul li:nth-child(2) {
	-webkit-transition: all .6s .3s ease;
	transition: all .6s .3s ease;
}
header .open ul li:nth-child(3) {
	-webkit-transition: all .9s .3s ease;
	transition: all .9s .3s ease;
}
header .open ul li {
	opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
	-webkit-transition: all .3s .3s ease;
	transition: all .3s .3s ease;
}
header ul li a {
	color:#FFF;
}
header ul li.current-menu-item a {
	color:#EFE800;
}

header p {
	color:#595B00;
	font-size:13px;
	font-family: 'sans', sans-serif;
	position:absolute;
	bottom:25px;
	left:0;
	width:100%;
	margin:0;
	opacity: 0;
    -webkit-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
	-webkit-transition: all .1s ease;
	transition: all .1s ease;
}
header .open p {
	opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
	-webkit-transition: all 1.2s .3s ease;
	transition: all 1.2s .3s ease;
}
header p a {
	color:#595B00;
}


#trigger-overlay {
	margin:0 auto;
	padding:12px 0 0 0;
	width:50px;
	height:26px;
	border:none;
	display: block;
	cursor:pointer;
	position:relative;
	bo-sizing:border-box;
	clear:both;
}
.lines-button:hover, .lines-button:active {
  opacity: 1;  
}
.lines-button:active {
  transition: 0;
}

.lines {
  display: block;
  width: 25px;
  height: 2px;
  margin:0;
  background: #ACAD00;
  position: relative;
  transition:width 0.3s;
}
.lines::before {
  display: block;
  width: 37px;
  height: 2px;
  background: #ACAD00;
  transition: 0.3s;
  position: absolute;
  left: 0;
  content: '';
}
.lines::after {
  display: block;
  width: 50px;
  height: 2px;
  background: #ACAD00;
  transition: 0.3s;
  position: absolute;
  left: 0;
  content: '';
}
.lines::before {
  top: 12px;
}
.lines::after {
  top: -12px;
}

a.lines-button:hover .lines, a.lines-button:hover .lines:before, a.lines-button:active .lines, a.lines-button:active .lines:before {
  width: 50px;
}
.lines-button.x2 .lines {
  transition: background 0.15s 0.15s ease, width 0.3s;
}
.lines-button.x2 .lines::before, .lines-button.x2 .lines::after {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: top 0.15s 0.15s ease, -webkit-transform 0.3s ease, width 0.3s;
  transition: top 0.15s 0.15s ease, transform 0.3s ease, width 0.3s;
}

.lines-button.x2.close .lines {
  transition: background 0.3s 0s ease, width 0.3s;
  background: transparent;
}
.lines-button.x2.close .lines::before, .lines-button.x2.close .lines::after {
  transition: top 0.3s ease, -webkit-transform 0.15s 0.15s ease, width 0.3s;
  transition: top 0.3s ease, transform 0.15s 0.15s ease, width 0.3s;
  top: 0;
  width: 50px;
}
.lines-button.x2.close .lines {
	width: 50px;
}
.lines-button.x2.close .lines::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.lines-button.x2.close .lines::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

a#trigger-overlay span {
  display: block;
  position:relative;
  z-index:9;
}
