/* THIS FILE IS COPYRIGHT ©2015 OSCAR STRANGIO AND IS INTENDED ONLY FOR USE ON THE COMMON ROOM PRODUCTIONS SITE */

/* - - - HOME - - - */
.loaders{
	display: none;
	visibility: hidden;
}
.header{
	position: relative;
	width: 100%;
	height: 100%;
	text-shadow: 1px 1px 0px rgba(0,0,0,1);
}
.header .bg{
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
	opacity: 0;
}
.header .bg.active{
	opacity: 1;
}
.header .bg-dark{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}
.header .nav{
	display: none;
}
.header .text-wrapper{
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -117px;
	color: white;
}
.header .nav-wrapper{
	width: auto;
	height: auto;
	background: none;
}
.header .text-wrapper .logo{	
	position: relative;
	top: auto;
	left: auto;
	width: 80%;
	height: 145px;
	margin: 0px auto;
}
.header .text-wrapper hr{
	margin: 30px auto;
	display: block;
}
.header .text-wrapper ul{
	text-align: center;
	line-height: 28px;
}
.header .text-wrapper .home-nav{
	position: relative;
	top: auto;
	right: auto;
}
.header .byline{
	position: absolute;
	bottom: 20px;
	right: 22px;
	text-align: right;
	color: white;
	font-size: 14px;
	-webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    visibility: hidden;
	opacity: 0;
}
.header .byline.active{
	visibility: visible;
	opacity: 1;
}
.header .byline a:hover{
	color: inherit;
	text-decoration: none;
}
.header .byline b{
	font-size: 16px;
}
.header .byline br{
	line-height: 25px;
}
.about-content{
	padding: 50px 20px;
}
.about-content .about{
	width: 80%;
	margin: 0px auto;
}
.about-content .bio .bio-image{
	float: left;
	padding: 3%;
	width: 20%;
	height: 250px;
}
.about-content .bio .bio-text{
	float: right;
	padding: 3%;
	padding-top: 0px;
	width: 64%;
}

/* - - - MOBILE - - - */
@media all and (max-width:768px){
	.header .text-wrapper{
		margin-top: -72px;
	}
	.header .text-wrapper hr, .header .text-wrapper .home-nav{
		display: none;
	}
	.header .nav{
		display: block;
	}
	.about-content .bio .bio-image{
		width: 94%;
		padding: 3%;
		height: 210px;
	}
	.about-content .bio .bio-text{
		width: 94%;
		padding: 3%;
		padding-top: 30px;
	}
}
@media all and (max-height: 300px) {
	.header .byline{
		display: none;
	}
}
@media all and (min-width:769px){
	.footer.detached{
		position: absolute;
		top: 100%;
		bottom: auto;
	}
}