@charset "UTF-8";
/* 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: headerFont;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/headerFont.ttf);/*.ttf for non-IE browsers*/
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: paragraphFont;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/paragraphFont.ttf);/*.ttf for non-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*/
    margin: 0;
    padding: 0;
}
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: paragraphFont;/*change this for your design*/
	font-size: 66%;/*DON'T CHANGE THIS VALUE HERE - you can set font sizes in other selector styles*/
	color: #000000;/*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*/
	background-color: #FFFFFF;
	position: relative;
}
*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;/*change as needed*/
	height: 100px;/*change as needed*/
	z-index: 1001;/*stacking order, bigger numbers are on top*/
	display: -webkit-flex;/*allows elements in nav to have flexible locations*/
	display: flex;/*allows elements in nav to have flexible locations*/
	justify-content: center;/*horizontally centers all elements in nav*/
	align-items: center;/*vertically centers all elements in nav for a single row of elements*/
	flex-direction: row;/*places all elements in nav in a row - other option is column*/
	flex-wrap: no-wrap;/*ensures that elements in nav do NOT wrap to a 2nd row*/
	background-color: #FFFFFF;
	border: thin solid rgba(0,0,0,1.00);
}
nav a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	outline: none;
	color: #000000;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	font-family: headerFont;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1em;
}
nav a:hover,
nav a:focus {
	outline: none;
}



/* Effect 8: border slight translate */
.cl-effect-8 a {
	padding: 10px 20px;
	font-size: large;
}

.cl-effect-8 a::before,
.cl-effect-8 a::after  {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 3px solid #000;
	content: '';
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
}

.cl-effect-8 a::after  {
	border-color: rgba(162,162,162,1.00);
	opacity: 0;
	-webkit-transform: translateY(-7px) translateX(6px);
	-moz-transform: translateY(-7px) translateX(6px);
	transform: translateY(-7px) translateX(6px);
}

.cl-effect-8 a:hover::before,
.cl-effect-8 a:focus::before {
	opacity: 0;
	-webkit-transform: translateY(5px) translateX(-5px);
	-moz-transform: translateY(5px) translateX(-5px);
	transform: translateY(5px) translateX(-5px);
}

.cl-effect-8 a:hover::after,
.cl-effect-8 a:focus::after  {
	opacity: 1;
	-webkit-transform: translateY(0px) translateX(0px);
	-moz-transform: translateY(0px) translateX(0px);
	transform: translateY(0px) translateX(0px);
}





header {
	position: relative;
	width: 100%;
	height: 300px;
	display: -webkit-flex;/*allows elements in nav to have flexible locations*/
	display: flex;/*allows elements in nav to have flexible locations*/
	align-items: center;/*vertically centers all elements in header for a single row of elements*/
	justify-content: center;
	z-index: 1000;/*stacking order - small numbers a below high numbers*/
	background-image: url(../images/header.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	margin-top: 100px;
}
header h1 {
	font-family: headerFont;
	font-weight: bold;
	font-size: 4em;
	color: #000000;
}
#centeringDiv, .centeringDiv{
    max-width:980px;/*optimum width for both desktops, laptops, and tablets*/
    width:100%;/*allows the page to resize it's width to fit smaller devices*/
    height: auto;/*optimum height for both desktops, laptops, and tablets*/    
    margin:0 auto;/*0 = no margin for top and bottom and auto = same margin for left and right*/
    z-index:1;/*stacking order - small numbers a below high numbers*/
	position: relative;
}
section {/*used for the main content area*/
	width: 100%;
	height: auto;
	z-index: 900;/*stacking order - below nav and .btn and article*/
	clear: both;/*clears away and floating or text wrapping*/
	min-height: 500px;
	position: relative;
	padding: 30px 0;
}
section h2 {
	font-family: headerFont;
	text-align: center;
	font-size: 3.5em;
	color: #13B6F3;
	margin-bottom: 15px;
}
.dropcap {
	color: rgba(0,165,5,1.00);
	font-style: italic;
	font-size: 2em;
	display: inline-block;
}
section p {
    text-indent: 2rem;/*an rem is the size of a letter m relative to what's set in the body css rule*/
	font-size: 1.8em;
	color:#000000;
}
.centernoindent{
	text-indent: 0;
	text-align: center;
}
img {
	margin-top: 8px;
	margin-right: 8px;
	margin-left: 8px;
	margin-bottom: 8px;
	border-radius: 0%;
	padding: 20px;/*between image and border*/
}
footer {
	clear: both;/*clears away and floating or text wrapping*/
	text-align: center;
	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*/
	position: relative;
}
/*===========Class rules to apply to multiple elements in the HTML===============================*/
figure, figure p, figcaption p {text-indent: 0; text-align:center;}/*for any captions or paragraphs inside figure tags*/
figure img {
	width: 100%;
	height: auto;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
}/*forces image in figure to fit a specific figure width set with other CSS - default is 500px wide*/
.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*/
.clearFloats {clear: both; width:100%; position:relative; height:1px;}/*apply to div tags - clears away and floating or text wrapping*/
.screenshot {
	max-width: 980px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 0 20px 0;/*top, right, bottom, left; so 20px from bottom*/
	border: none;
	border-radius: 0;
	padding: 0;
	clear: both;
}
.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;/*change as desired*/
	max-height:480px;/*if you change max-width, make sure the height has a ratio of 16:9*/
	width: 100%;
	height: 100%;
}
.fullwidthimage{
	width: 100%;
	height: auto;
}
#portraitshots{
	width: 100%;
	height: auto;
	position: relative;
	display: -webkit-flex;/*allows elements in nav to have flexible locations*/
	display: flex;/*allows elements in nav to have flexible locations*/
	justify-content: center;/*horizontally centers all elements in nav*/
	align-items: flex-end;/*vertically centers all elements in nav for a single row of elements*/
	flex-direction: row;/*places all elements in nav in a row - other option is column*/
	flex-wrap: no-wrap;/*ensures that elements in nav do NOT wrap to a 2nd row*/
}
#portraitshots figure{
	width: 33%;
	height: auto;
	position: relative;
	
}
/*Styles for mobile device in portrait orientation*/
@media screen and (max-width:667px){
	nav {/*no buttons needed for mobile phones - just scrolling*/
		display: none;
	}
	header {
		margin-top: 0;
		height: 50px;
		background-size: cover;
	}
	header h1 {
		font-size: 1.5em;
	}
	section {
		padding-left: 5px;
		padding-right: 5px;
	}
	section h2 {
		font-size: 1.2em;
	}
	section p {
		font-size: 1em;
	}
	img {
	width: 100%;
	height: auto;
	
	}
	#portraitshots{
	display: block;/*allows elements in nav to have flexible locations*/
	}
	#portraitshots figure{
		width: 100%;
	}
}
