/* HEADER.CSS */

header {
	position: fixed;
	display: block;
	width: 100%;
	background-color: #0c0707;
	color: #956d5a;
	padding-top: 45px;
	transition: all .65s ease-in-out;
	z-index: 100;
}

header .sound-wrap {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	display: none;
	cursor: pointer;
	top: 5px;
	right: 15px;
	opacity: .5;
	transition: all .3s ease-in-out;
}

header .sound-wrap.loud {
	opacity: 1 !important;
}

header .sound-wrap.loud::before {
	width: 0px;
}

header .sound-wrap:hover {
	opacity: .75 !important;
}

header .sound-wrap::before {
	position: absolute;
	content: '';
	height: 2px;
	width: 30px;
	background-color: #956d5a;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	transition: all .3s ease-in-out;
}

header.scrolled {
	padding-top: 25px;
}

header.scrolled .subline {
	margin-bottom: 25px;
}

header .branding {
	position: relative;
	display: table;
	width: 100%;
	color: #956d5a;
	text-decoration: none;
	text-transform: uppercase;
	margin-bottom: 10px;
	transition: all .65s ease-in-out;
	outline: none;
}

header .branding::after, header .branding::before {
	position: absolute;
	content: '';
	background-color: #956d5a;
}

header .branding::after {
	width: 167px;
	height: 2px;
	right: calc(100% + 18px);
	top: -2px;
}

header .branding::before {
	width: 2px;
	height: 26px;
	right: calc(100% + 306px);
	top: -45px;
}

header .branding span {
	display: block;
	font-size: 35px;
	font-weight: 300;
	line-height: 25px;
	float: left;
}

header .branding span.big {
	font-weight: 700;
}

header .branding span:first-of-type {
	padding-right: 3px;
}

header .subline {
	position: relative;
	display: table;
	margin-bottom: 30px;
	transition: all .65s ease-in-out;
}

header .subline span {
	display: block;
	font-size: 14px;
	line-height: 10px;
	text-transform: uppercase;
	padding-right: 4px;
	float: left;
}

@media only screen and (min-width: 420px) {

	header .branding {
		margin-bottom: 15px;
	}
	
	header .branding span {
		font-size: 45px;
	}
}

@media only screen and (min-width: 752px) {

	header .branding {
		width: auto;
		margin-right: 18px;
		float: left;
	}

	header .subline {
		padding-top: 18px;
		margin-bottom: 45px;
	}

	header .subline::after {
		position: absolute;
		content: '';
		width: 259px;
		height: 2px;
		background-color: #956d5a;
		left: 100%;
		top: 26px;
	}

	header .subline span {
		padding-right: 8px;
	}

}

@media only screen and (min-width: 992px) {

	header .sound-wrap {
		display: block;
	}

}


/* END OF HEADER.CSS */