@charset "UTF-8";
*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
nav a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	outline: none;
	color: #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.35em;
}
.cl-effect-6 a {
	margin: 0 10px;
	padding: 10px 20px;
	top: 0px;
	color: #FF7100;
}

.cl-effect-6 a::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #00ACFF;
	content: '';
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	transition: top 0.3s;
	color: #02B9FF;
}

.cl-effect-6 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 2px;
	background-color: #00AAFF;
	content: '';
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

.cl-effect-6 a:hover::before {
	top: 100%;
	opacity: 1;
}

.cl-effect-6 a:hover::after {
	height: 100%;
} 
/* CSS Document */
/*
Here are some commonly used CSS class selectors which 
-class rules can applied to multiple elements on a page
-can be applied in any combination
*/
@font-face {/*instructions to browser where to find your custom font*/
	font-family: aladin;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src: url(../fonts/filename1.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
    url(../fonts/filename1.eot);/*.eot for IE browsers*/
	font-style: normal;
	font-weight: 400;
}
@font-face {/*instructions to browser where to find your custom font*/
	font-family: aladin;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src: url(../fonts/filename2.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/ 
    url(../fonts/filename2.eot);/*.eot for IE browsers*/
	font-style: normal;
	font-weight: 400;
}
* {
    box-sizing:border-box;/*This allows you to set and border width and padding but the div will retain its set width and set height*/
}
html, body {
	width: 100%;
	min-height: 100%;
	height: auto;
}
header, nav, section, article, figure, figcaption, aside, footer {/*ensures older browsers display these tags correctly*/
    display:block;
    /*DON'T ADD anything else in this selector block - only this property should be in this CSS selector set*/
}
body {/*these are the 5 basic CSS properties and values to start a website*/
	font-size: 147%;/*DON'T CHANGE THIS VALUE HERE - you can set font sizes in other selector styles*/
	color: rgba(255,255,255,1.00);/*main text color, default black, change as needed*/
	margin: 0;/*removes default edges*/
	padding: 0;/*removes default settings*/
	z-index: 0;/*stacking order - small numbers a below high numbers*/
	position: relative;
	font-family: aladin;
	font-style: normal;
	font-weight: 400;
}
nav {
	position: relative;/*all children divs inside nav take their (x,y) position from top left of nav*/
	width: 100%;/*change as needed*/
	height: 100px;/*change as needed*/
	z-index: 1001;/*stacking order, bigger numbers are on top*/
	display: flex;/*allows elements in nav to have flexible locations*/
	justify-content: center;/*centers all elements in nav*/
	flex-direction: row;/*places all elements in nav in a row - other option is column*/
	flex-wrap: no-wrap;
}
.btn {
	text-align: center;
	z-index: 1002;/*togther with nav justify-content will space out buttons automatically*/
	position: relative;
}
section {
	width: 100%;
	background-size: cover;/*This makes the image proportionally resize itself to cover the width of the screen*/
	background-origin: content-box;/*VERY IMPORTANT - this sets where the background begins to be visible*/
	background-attachment: fixed;/*VERY IMPORTANT - this makes the image NOT scroll with the content*/
	background-repeat: no-repeat;/*Not needed if your image is tall enough*/
}
#section1 {
	background:#EB6C1A
}
#section2 {
	background:#0092FF
}
#section3 {
	background:#EB6C1A
}
#section4 {
	background:#0092FF
}
#section5 {
	background-image: url(../images/background5.jpg);
}
header {
	width: 100%;
	height: 99px;
	padding-top: 10px;
	font-size: 3em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
}
.dropcap {
	font-family: dropcap;
	font-size: 3em;
	padding-right: 1px;
	padding-bottom: 1px;
	float: left;
	margin-right: 2px;
	margin-top: -20px;
}
article {
	background-color: #5E3B23;
	height: auto;/*Allows this area to be vertically ELASTIC with non-floated content*/
	width: 100%;
	position: relative;
	overflow: auto;
}
.centeringDiv {
	padding:10px;
	max-width: 960px;
	width:100%;
	min-height:300px;
	height: auto;/*Allows this area to be vertically ELASTIC*/
	margin: 0 auto;/*This centers the content on the browser*/
	position: relative;
	z-index: 200;
}
footer {
	clear: both;/*clears away and floating or text wrapping*/
	position: relative;
	text-align: right;
	font-size: 0.8rem;
	width: 100%;
	line-height: 1.2rem;/*This will help to vertically center the text */
	height: auto;
	z-index: 900;/*stacking order - below article, nav, and .btn*/
	padding: 25;
	color: #EB6C1A;
}
/*===========Class rules to apply to multiple elements in the HTML===============================*/
.frame {/*this creates a frame around photo/text*/
    width: auto;/*fits the frame tightly around the photo/text*/
    height: auto;/*fits the frame tightly around the photo/text*/  
    margin: 3px 10px 10px 10px;/*separates the outer wrapping text away from the frame border*/
    padding: 5px;/*separates the inner photo/text away from the frame border*/
    text-align: center;/*centers any caption under/above the photo inside frame*/
    border: 1px dotted #000000;/*styles the frame - adjust as desired*/
}
.frame p, figure p, figcaption p {text-indent: 0px;}/*for any paragraphs inside photo frames*/
.floatLeft {	float: left;}/*positions an element on the left of parent div and have text wrap around it*/
.floatRight {float: right;}/*positions an element on the right of parent div and have text wrap around it*/
.centerText {text-align: center;}/*apply to p, h1, h2, h3, h4, h5, h6 tags - positions text in center of parent div*/
.centerBox {	margin:0 auto;clear: both;}/*apply to div or figure tags - positions element in center of parent div - no outer text wrapping*/
.clearFloats {clear: both;}/*apply to div tags - clears away and floating or text wrapping*/
.roundedCorners10 {border-radius: 10px;}/*apply to img tags for rounded corners*/
.roundedCorners15 {border-radius: 15px;}
.roundedCorners20 {border-radius: 20px;}
.boxShadow5 {box-shadow: 5px 5px 5px #000000;}/*apply to div or img tags for shadows*/
.boxShadow10 {
	box-shadow: 10px 10px 10px #000000;
	width: 0px;
}
.textShadow5 {text-shadow: 5px 5px 10px #000000;}/*apply to p, h1, h2, h3, h4, h5, h6 tags for shadows*/
.textShadow10 {text-shadow: 10px 10px 20px #000000;}
#topBar, nav {
	height: 150px;
	
}
#section1 {
	margin-top: 150px;
}
#topBar {
	width: 100%;
	height: 150px;
	background-color: #4F3117;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 99999;
	background-image: url(url);
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	max-width:853px;/*same width as video itself*/
	width:100%;
	margin:0 auto;/*centers the video*/
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	max-width:853px;/*same width as video itself*/
	max-height:480px;/*same height as video itself*/
	width: 100%;
	height: 100%;
}
.bioBox {
	width: calc(25% - 10px);
	height: 350px;
	position: relative;
	margin: 5px;
	padding: 5px;
	float: left;
	border: 1px solid #000;
	cursor: pointer;
	background-color: rgba(255,132,132,1.00);
	background-image: -webkit-linear-gradient(270deg,rgba(255,200,151,1.00) 0%,rgba(255,101,103,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(255,200,151,1.00) 0%,rgba(255,101,103,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(255,200,151,1.00) 0%,rgba(255,101,103,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(255,200,151,1.00) 0%,rgba(255,101,103,1.00) 100%);
}
.bioBox h1 {
	text-align: center;
}
.bioPic {
	width: 80%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	position: relative;
}
.bioPic img {
	width: 100%;
	height: auto;
	position: relative;
	top: 0;
	left: 0;
	opacity: 1;
	-webkit-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
}
.bioPic img:hover {
	-webkit-opacity: 0.5;
	opacity: 0.5;
}
#bioCloseX {
	position: fixed;
	top: 20px;
	right: -50vw;
	width: 60px;
	height: 30px;
	margin: 0;
	padding: 0;
	background-image: url(../images/closeX.svg);
	background-repeat: no-repeat;
	z-index: 100002;
	cursor: pointer;
}
.bioInfo {
	position: fixed;
	top: 0;
	right: -50vw;
	height: 100vh;
	width: 50vw;
	padding: 0;
	margin: 0;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 100001;
	background-color: rgba(255,175,175,1.00);
}
.bioInfoContent {
	width: 100%;
	min-height: 100vh;
	height: auto;
	position: relative;
}
.bioInfoTitle {
	font-size: 2em;
	text-align: center;
	position: relative;
	width: 100%;
	height: 100px;
	margin-top: 50vh;
	color: rgba(255,255,255,1.00);
}
.bioText {
	width: 100%;
	height: calc(50vh - 100px);
	padding: 10px 50px 80px;
	overflow-y: auto;
	color: rgba(255,255,255,1.00);
	position: relative;
}
.bioInterview {
	width: 50%;
	margin: 20px 25% 0;
	display: block;
	position: relative;
}
#bioInfo1 {
	background-image: url(/project4/images/background.jpg);
}
#bioInfo2 {
	background-image: url(/project4/images/background.jpg);
}
#bioInfo3 {
	background-image: url(/project4/images/background.jpg);
}
#bioInfo4 {
	background-image: url(/project4/images/background.jpg);
}
#coverAll {
	width: 0vw;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	background-color: rgba(255,255,255,0.51);
	z-index: 100000;
	cursor: pointer;
}
.wrap {
	-webkit-shape-margin:0.2rem;/*This determines how close you want the text to be to the image*/
	-moz-shape-margin:0.2rem;/*rem stands for root em - you are changing the size relative to the size of 1em of the body (root) css instead of relative to the font-size of the parent container*/
	-ms-shape-margin:0.2rem;
	-o-shape-margin:0.2rem;
	shape-margin:0.2rem;
}
#MagThumb {/*Repeat this blcok for all image you want text to wrap around*/
	-webkit-shape-outside: url("../images/braingears.png");/*IMPORTANT!!!! - the URL path is relative to the CSS file, NOT the html file*/
	-moz-shape-outside: url("../images/braingears.png");
	-ms-shape-outside: url("../images/braingears.png");
	-o-shape-outside: url("../images/braingears.png");
    shape-outside: url("../images/braingears.png");
}
.quoteBlock {
	width: 350px;
	height: auto;
	position: relative;
	float: right;
	margin: 15px;
	padding: 15px;
	font-size: 1em;
	color: #01B4FF;
	background-color: #67432D;
	border: medium solid #00BAF6;
}
.burntorange{
	color:#E26513;
}
.lightblue{
	color:#0092FF;
}
