body{
	font-size: 1.5em;
	color: inherit;
	line-height: 1.5em;
	font-family: 'Open Sans', sans-serif;
	margin: 0;	
}

h1{	
	font-family: 'Lato', sans-serif;	
	font-size: 4em;
	color: white;
	line-height: 1em;
}

h2{
	font-size: 1.5em;
	line-height: 1.5em;
	font-family: 'Open Sans', sans-serif;
	color: #ffffff;	
}

h4{
	font-family:'Short Stack', cursive; 
	font-size: 5em;
	margin-bottom: 0.5em;
}

.logoFont{
	font-family:'Short Stack', cursive !important; 
}

a{
	color: inherit;	
	text-decoration: none;
}

p{
	font-size: 0.8em;
}

.hSplitBody{
	margin: 0, 0;
	background-color: #d8d8d8;	
}

.iconMenu img{
	max-width: 60px;
}

.iconMenu{
	text-align: center;
	list-style: none;
    display: -moz-box;
    display: -webkit-box;
    display: -ms-flexbox;  
    display: -o-box;	
  	display: box;	
}

.menuItems{
	font-size: 0.8em;
	cursor: pointer;
    -moz-box-flex: 1;
    -webkit-box-flex: 1;	
 	 box-flex: 1;
	-ms-flex-wrap: wrap;
  	-webkit-transition: all 0.6s ease;
  	-moz-transition:    all 0.6s ease;
  	-o-transition:      all 0.6s ease;
  	-ms-transition: 	all 0.6s ease; 
  	transition: 		all 0.6s ease;   	
  	color: white;	 
}

.menuItems:hover {
    -ms-transform: translate(0px, -30px); /* IE 9 */
    -webkit-transform: translate(0px, -30px); /* Safari */
    transform: translate(0px, -30px);
}

/*Navigation Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
nav ul{
	position: fixed;
	background-color: white;
	overflow: hidden;
	color: black;
	padding: 0;
	text-align: center;
	margin: 0;
	width: 100%;
	border-bottom: 5px solid #16a6b6;	
	-webkit-transition: max-height 0.4s;
	-ms-transition: max-height 0.4s;
	-moz-transition: max-height 0.4s;
	-o-transition: max-height 0.4s;
	transition: max-height 0.4s, background 1s;
	-webkit-box-shadow: 0px 25px 50px 12px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 25px 50px 12px rgba(0,0,0,0.3);
	box-shadow: 0px 25px 50px 12px rgba(0,0,0,0.3);
	z-index: 10000;				
}

.navMargined{
	border-bottom: 1px solid black;
}

nav ul li{
	font-size: 0.8em;
	display: inline-block;
	padding: 20px 2.5%;
	z-index: 10000;		
}

nav ul li:hover, .activeLink{
	background-color: #16a6b6;
	color: white;
}

.handle{
	z-index: 10000;	
	position: fixed;
	text-align: left;
	padding: 15px 10px;
	cursor: pointer;
	color: black;
	display: none;
}

.handleActive{
	position: fixed;
	width: 100%;
	background-color: white;
	z-index: 10000;
}

/*Navigation Icon--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.c-hamburger:focus {
  outline: none;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 22px;
  left: 9px;
  right: 9px;
  height: 4px;
  background: white;
}

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  content: "";
}

.c-hamburger span::before {
  top: -10px;
}

.c-hamburger span::after {
  bottom: -10px;
}

.c-hamburger--htx {
  background-color: #16a6b6;
}

.c-hamburger--htx span {
  transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: #117c88;
}

.c-hamburger--htx.is-active span {
  background: none;
}

.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}
/*Button Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.buttonGhost{
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8em;	
	cursor: pointer;
	padding: 0.4em 0.4em;
	width: 10em;
	background-color: transparent;
	color: white;
	border: 1px solid white;
	transition: background 1s;
	margin-left: auto;
	margin-right: auto;
}

.buttonGhost:hover, .button:hover{
	background-color: #16a6b6;
}


.button{
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8em;	
	cursor: pointer;
	width: 10em;
	padding: 0.4em 5em;
	min-width: 5em;
	background-color: #d8d8d8;
	color: white;
	transition: background 1s;	
}

.buttonActive{
	background-color: #16a6b6 !important;	
}

/*Return to top arrow--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#return-to-top {
	z-index: 5000;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(238, 100, 87);
    background: rgba(238, 100, 87);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 5px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(192, 40, 26);
}
#return-to-top:hover i {
    color: #fff;
    top: 1px;
}


/*Splash Page Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.splashBody{
	margin: 0 0;
}

#splash{
	position: fixed;
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/splashBg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: white;
	z-index: -1;
	display: flex;
	display: -ms-flex;
	display: -webkit-flex;
	display: -o-flex;
	justify-content: center;
	-ms-flex-align:center;	
	margin: 0 auto;		
}

#splashContainer{
	display: block;
	text-align: center;	
	position: relative;
	width: 50%;
	align-self: center;	
	-ms-flex-align:center;	
}


.blue{
	color: #16a6b6;
	font-weight: bold;
}

.red{
	color: #ee6457;
	font-weight: bold;
}

#splashButton{
	margin-top: 3em;
}

#splashNav{
	padding-top: 2em;
	display: none;
}

/*Horizontal Split Page Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.row{
	display: flex;
	display: -ms-flex;
	display: -webkit-flex;	
	display: -moz-flex;
	padding: 4% 5% 0% 5%;
	text-align: center;
	min-height: 90vh;
}

.col{
	flex: 1;
	padding: 0 75px;
}

.colRight{
	display: flex;
	display: -ms-flex;
	display: -webkit-flex;
	display: -moz-flex;	
	background: white;
}

.articleContent{
	align-self: center;
}

.iconSplit{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	right: 50%;
	max-width: 150px;
	z-index: 1;
	-webkit-transition: -webkit-transform 1.5s;
    -ms-transition: -ms-transform 1.5s;
    transition: transform 1.5s;		
}

.iconSplitTransformed{
    transform:  translatey(-75px) translatex(-75px) rotate(360deg);
    -ms-transform: translatey(-75px) translatex(-75px) rotate(360deg);
    -webkit-transform:  translatey(-75px) translatex(-75px) rotate(360deg);
}

/*Vertical Split Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.headerDiv{
	padding-top: 5%;
	padding-bottom: 7.5%;
	width: 100%;	
	text-align: center;
}

.headerDiv h1{
	padding-bottom: 1em;
}

.verticalSplitContent{
	position: relative;
	text-align: center;
	padding-bottom: 5%;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: -10%;
	margin-left: 5%;
	margin-right: 5%;
	margin-top: -5%;
	margin-bottom: 2.5%;
	background-color: white;
	-webkit-box-shadow: 0px 25px 50px 12px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 25px 50px 12px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 25px 50px 12px rgba(0, 0, 0, 0.3);	
}

.verticalIcon{
	display: block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	max-width: 150px;
	left: -600px;
    -webkit-transition: -webkit-transform 1.5s;
    -ms-transition: -ms-transform 1.5s;
    transition: transform 1.5s;	
}

.verticalIconTransformed{
    transform:  translatey(-70px) translatex(600px) rotate(360deg);
    -ms-transform: translatey(-70px) translatex(600px) rotate(360deg);
    -webkit-transform:  translatey(-70px) translatex(600px) rotate(360deg);
}


.buttonList{
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: 0;
	list-style: none;
	text-align: center;
	display: flex;
	justify-content: center;	
}

.buttonList li{
	padding: 0 2%;
}

/*About Page Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#aboutCol{
	background-image: url(../img/StockAbout.jpg);
	background-position: left -2.5%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 50%;	
}


/*About Page Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#servicesCol{
	background-image: url(../img/StockServices.jpg);
	background-position: left -2.5%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 50%;		
}

/*Prices Page Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#pricesHeader{
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/StockPrices.jpg);
	background-position: center 50%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;	
}


/*Feedback Page Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#feedbackHeader{
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/StockFeedback.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;		
}

/*FAQ Page Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#faqHeader{
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/stockFaq.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;		
}

.questions{
	padding-top: 1.5em;
}

.question{
	color: #16a6b6;
	background-color: #f2f2f2;
	padding: 0.5em;
	cursor: pointer;
	transition: background 1s;
}

.question:hover{
	background-color: #d9d9d9;	
}

.answer{
	font-size: 0.8em;
}

article a{
	color: #ee6457;
	font-weight: bold;
	text-decoration: underline;

}

article a:hover{
	color: #ea3e2e;
}

/*Contact Page Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#contactCol{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/splashBg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;	
}

#contactForm{
	text-align: left;
	margin-top: 2em;
}

input[type=text], input[type=email], textarea {
	font-family: 'Open Sans', sans-serif;	
	border: 0;	
	border-bottom: 1px solid black;
	outline: none;
	padding: 1em;
	margin-bottom: 1em;
	font-size: 0.5em;
	width: 80%;	
	transition: background 1s;
}

input:focus{
	border-bottom: 1px solid #16a6b6;
	background-color: #f2f2f2;
}

textarea{
	resize: none;
	border: 1px solid black;
	padding: 0.5em;
	width: 95%;
	font-size: 0.5em;
	transition: border 1s;	
}

textarea:focus{
	border: 1px solid #16a6b6;
	background-color: #f2f2f2;	
}

input[type=submit]{
	font-family: 'Open Sans', sans-serif;
	border: none;
	font-size: 0.8em;	
	cursor: pointer;
	padding: 0.4em 2em;
	background-color: #d8d8d8;
	color: white;
	transition: background 1s;	
}

input[type=submit]:hover{
	background-color: #16a6b6;
}

.contactInfo{
	position: absolute;
	bottom: 10%;
	left: 5%;
	text-align: left;
	list-style: none;
}

.contactInfo li{
	color: white;
	margin: 5px;
}

.contactInfo img, .mobileIconMenu img{
	vertical-align: middle;
	max-width: 75px;
}

.mobileIconMenu{
	display: none;
	list-style: none;
	text-align: left;
}

label.error{
	color: #ee6457;
	font-size: 0.5em;
}

.userMessage{
	color: #ee6457;
	font-size: 0.6em;	
}

/*Footer Styles--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.footer{
	border-top: solid 5px #16a6b6;
	width: 100%; 
	text-align: center; 
	/*background-color: #d8d8d8;*/
	background-color: white;
	color: black;
}

.legalInfo{
	font-size: 0.6em;
}

.footerRow{
	min-height: auto !important;
}

.footerCol{
	background: white;
	height: auto;
	border: #16a6b6 solid 1px;
	margin: 10px;
	padding: 50px 25px !important;
}

.footerIcons{
	display: block;
	margin-left: auto;
	margin-right: auto;
	list-style: none;
}

.footerIcons li{
	text-align: left;
	padding-right: 20px;
	font-size: 0.6em;
}

.inlineIcon{
	display: inline-block;
}

.footerIcons img{
	max-width: 40px;
	vertical-align: middle;
}

@media screen and (max-width: 960px){
	
	nav ul{
		margin-top: 3em;
		max-height: 0;
		border: none;
		-webkit-box-shadow: 0px 25px 50px 12px rgba(0,0,0,0);
		-moz-box-shadow: 0px 25px 50px 12px rgba(0,0,0,0);
		box-shadow: 0px 25px 50px 12px rgba(0,0,0,0);
	}

	.navShow{
		max-height: 20em;
	}

	nav ul li{
		box-sizing: border-box;
		text-align: left;
		width: 100%;
		padding: 5px;
		font-size: 0.6em;
	}

	.handle{
		display: block;
	}

	.row{
		display: block;
		padding: 0 0;
	}

	.col{
		height: 50vh;
		display: block;
		padding: 10% 2.5%;
	}

	.colRight{
		height: 100%;
	}

	.iconSplit{
		display: block;
		margin-top: auto;
		margin-left: auto;
		margin-right: auto;
		max-width: 100px;
		transform: translatey(75px) translatex(-50px);
	}

	.verticalIconTransformed{
		max-width: 100px;
	}

	.verticalSplitContent{
		margin: 0;
	}				

	h1{
		font-size: 2.5em;
	}

	h2{
		font-size: 1em;
	}

	h4{
		font-size: 1em;
	}

	#splashContainer{
		width: 75%;
	}

	.button, .buttonGhost{
		width: 5em;
	}

	.iconMenu img{
		display: none;
	}

	.iconMenu li{
		display: none;
	}

	#splashButton{
		display: none;
	}

	.buttonList{
		display: inline-table;
		margin-left: auto;
		margin-right: auto;
	}	

	.buttonList li{
		margin-top: 1em;
	}

	.bx-prev, .bx-next{
		display: none;
	} 

	.contactInfo{
		display: none;
	}

	.mobileIconMenu{
		display: block;
	}	

	#aboutCol, #servicesCol{
		background-size: 100%;
		background-position: center 20%;
	}


}

@media screen and (max-width: 420px){
	nav ul li{
		font-size: 0.5em;
	}

	.row{
		font-size: 0.8em;
	}

	.iconSplit{
		transform: translatey(50px) translatex(-50px); 		
	}

	h4{
		font-size: 1em;
	}
	

}