/*
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: font1;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../../project7/fonts/bodyfont.ttf) ,/*.ttf for non-IE browsers - the comma is very important!!!!*/
url(../../project7/fonts/font1.eot);/*.eot for IE browsers*/ 
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: font2;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../../project7/fonts/titlefont.ttf) ,/*.ttf for non-IE browsers - the comma is very important!!!!*/ 
url(../../project7/fonts/font2.eot);/*.eot for IE browsers*/ 
}
* {
    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-family: font1;/*change this for your design*/
    font-size:100%;/*DON'T CHANGE THIS VALUE HERE - you can set font sizes in other selector styles*/
    color:rgba(0,0,0,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;
}
#topBar{/*This is a fixed position bar along the top*/
	background-color: rgba(255,255,255,0.50);/*0.5 makes the bar 50% transparent*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;/*makes this bar as wide as the browser*/
	height: auto;
	z-index: 99998;/*places bar top most so it's always clickable*/
}
#topBarCentering{
   width:1000px;
   height:50px;
   margin:0 auto;/*this centers this box*/
   position:relative;
   z-index:99999;
   -webkit-display:flex;
   display:flex;
   justify-content:center;
   flex-wrap:no-wrap;
}
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*/
	font-family: font1;
}
#section1 {
	background-image: url(../images/studio5.JPG);/*Path relative to CSS file, not relative to html file*/
	margin-top: 95px;
}
#section2 {
	background-image: url(../images/Studio2.JPG);/*Path relative to CSS file, not relative to html file*/
	margin-top: 0px;
}
#section3 {
	background-image: url(../images/bg3.JPG);/*Path relative to CSS file, not relative to html file*/
	margin-top: 0px;
}
#section4 {
	background-image: url(../images/Studio4.JPG);/*Path relative to CSS file, not relative to html file*/
	margin-top: 0px;
}
#section5 {
	background-image: url(../images/Studio1.JPG);/*Path relative to CSS file, not relative to html file*/
	margin-top: 0px;
}

header {
	width: 100%;
	height: 201px;
	padding-top: 27px;
	font-size: 2em;
	text-align: center;
	position: relative;
	top: -8px;
	left: 0;
	font-family: font2;
	color: #FFFFFF
}
article {
	background-color: rgba(220,198,198,1.00);
	height: auto;/*Allows this area to be vertically ELASTIC with non-floated content*/
	width: 100%;
	position: relative;
	overflow: auto;/*Allows this area to be vertically ELASTIC with floated content*/
	min-height: calc(100vh - 300px);
}
.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;
}
.floatRight {/*YOU MAY ALREADY HAVE THIS SO don't copy this in such a case*/
	float:right;
}
.floatLeft {/*YOU MAY ALREADY HAVE THIS so don't copy this in such a case*/
	float:left;
}


.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;
}

.btn {
	margin-right:30px;
	font-family: font2;
	font-size:20px;
}
.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%;
}
