/* header */
#header { display: block; width: 100%; padding-bottom: 30px; }
#header #container:nth-child(2) {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	opacity: 0;
	padding: 0 20px;
	pointer-events: none;
	transition: opacity .2s;
	-webkit-transition: opacity .2s;
	-moz-transition: opacity .2s;
}
#header.open #container:nth-child(2) { opacity: 1; pointer-events: all; }

	/* media specific styles */
	@media( min-width: 768px ){
		#header { padding-bottom: 0; }
		#header #container:nth-child(1) #col:nth-child(1) { width: 25%; }
		#header #container:nth-child(1) #col:nth-child(2) { width: 40%; }
		#header #container:nth-child(1) #col:nth-child(3) { width: 35%; }
	}
	@media( min-width: 1024px ){
		#header #container:nth-child(1) #col:nth-child(1),
		#header #container:nth-child(1) #col:nth-child(2) { width: 33.3334%; }
		#header #container:nth-child(1) #col:nth-child(3) { width: 254px; float: right; }
		#header #container:nth-child(2) { padding: 0 50px; }
	}