@charset "UTF-8";
* { margin: 0; padding: 0; }
/* Body */
html {
  scroll-padding-top: 70px;
}
body {
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 12px;
	background-color: #ffffff;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-style: normal;
	font-weight: 100;
}
p {
  padding-bottom: 10px;
}
/* Container */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: fit-content;
	background-color: #FFFFFF;
}
.container1 {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 1000px;
	background-color: #FFFFFF;
}
/* Navigation */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  bottom: 0;
	width: 100%;
	height: 70px;
	background-color: #454545;
	border-bottom: 3px solid #ffcc33;
	z-index:1;
}
/*
header .contact {
	width: 100%;
	height: 50px;
	background-color: #454545;
	border-bottom: 3px solid #ffcc33;
	position: absolute;
}
*/
.logo {
	color: #ffcc33;
	font-weight: normal;
	text-align: left;
	width: auto;
	float: left;
	margin-top: 10px;
	margin-left: 20px;
}
.logo a {
	color: #ffcc33;
	text-decoration: none;
}
.logo a:visited {
	color: #ffcc33;
}


.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 500px;
  background-color: black;
  color: #fff;
  line-height:1.5;
  text-align: left;
  border-radius: 6px;
  padding: 10px;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -45px;
}

.tooltip:hover .tooltiptext 
{
  visibility: visible;
}

nav {
	float: right;
	width: auto;
	text-align: right;
	margin-top: 20px;
	margin-right: 15px;
	padding-bottom: 3px;
	padding-top: 3px;
}
header nav ul {
	list-style: none;
	float: right;
}
nav ul li {
	padding: 5px;
	display: inline-block;
	float: left;
	color: #ffffff;
	text-align: left;
	margin-right: 3px;
	letter-spacing: 1px;
	font-size: 10px;
	font-weight: bold;
	transition: all 0.3s linear;
}

.fa-home:hover {
    color: #ffcc33 !important;
	}
ul li a {
	color: #ffffff;
	text-decoration: none;
}
ul li a.contact {
	color: #000000;
	text-decoration: none;
}
ul li a.contact:hover {
	color: #ffffff;
	text-decoration: none;
}

ul li:hover a {
	color: #ffcc33;
}

nav ul ul {
	display: none;
	position: absolute;
	top: 42px;
	background-color: #444443;
}	
nav ul li:hover > ul {
	display:inherit;
}	
nav ul ul li {
	float: none;
	display: list-item;
	position: relative;
	font-size: 12px;
	font-weight: 100;
	color: #ffffff;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;	
	padding: 7px;
	border-bottom: 1px solid #ffffff;
}
nav ul ul li a {
	color: #ffffff;
	text-decoration: none;
}
nav ul ul li:hover a {
	color: #ffffff;
}



li.nolink{
color: #ffcc33;
}
a.nolink{
color: #ffcc33;
}
.copyright > a {
color: #000000;
}
.hero_header {
	color: #FFFFFF;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 4px;
}
/* Hero Section */
.hero {
	background-color: #454545;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;

}
.hero2 {
	display: flex;
	background-color: #454545;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 100%;
  background-color: #eee;
  color: #000;
  padding:10px;
  margin:1px;
  line-height:1.5;
}

.dropdown-content {
  display: none;
  position: absolute;
  font-style:normal;
  line-height:1.5;
  background-color: #eee;
  min-width: 160px;
  box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  margin-left: 100px;
  z-index: 2;
}
.dropdown:hover {
  background-color: #ddd;
}
.dropdown:hover .dropdown-content {
  display: block;
  background-color: #ddd;
}
input[type=text] {
  border: 1px solid gray;
  border-radius: 4px;
	padding: 10px;
	margin: 5px;
	width: 75%;
}
input[type=email] {
  border: 1px solid gray;
  border-radius: 4px;
	padding: 10px;
	margin: 5px;
	width: 75%;
}

input[type=tel] {
  border: 1px solid gray;
  border-radius: 4px;
	padding: 10px;
	margin: 5px;
	width: 75%;
}

textarea {
  height: 75px;
  box-sizing: border-box;
  border: 1px solid gray;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
	padding: 10px;
	margin: 5px;
	width: 79%;
}

input[type=button], input[type=submit], input[type=reset],  {
    background-color: #FFCC33;
    border: thin solid gray;
    color: black;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}
.actual {
  width: auto;
  height: auto;
}
.iwf {
  width: 50%;
  height: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.blurb {
	font-size:22px;
	color:#FFCC33;
	font-style: italic;
	padding-bottom: 10px;
	padding-top: 5px;
	padding-left: 100px;
	padding-right: 100px;
}
.blurb_sm {
	font-size:18px;
	color:#FFCC33;
	font-style: italic;
	padding-bottom: 10px;
	padding-top: 5px;
	padding-left: 100px;
	padding-right: 100px;
}

.checker_column {
	width: 50%;
	height: auto;
	text-align: left;
	float: left;
}
.checker_pad {
	padding-left: 100px;
	padding-right: 50px;
}
.checker_pad2 {
	padding-left: 50px;
	padding-right: 50px;
}
a.blck:link {color:#000000; text-decoration: none;}
a.blck:visited {color:#000000; text-decoration: none;}
a.blck:hover {color:#000000; text-decoration: none;}
a.whte:link {color:#ffffff; text-decoration: none;}
a.whte:visited {color:#ffffff; text-decoration: none;}
a.whte:hover {color:#ffffff; text-decoration: none;}
ul.plist {
	list-style-image: url('../images/bullet.gif');
	padding-left: 20px;
	padding-bottom: 20px;
}
ul.plist li {
	padding-bottom: 20px;
}
.light {
	font-weight: bold;
	color: #717070;
}
.tagline {
	text-align: left;
	color: #FFFFFF;
	margin-top: 4px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
}
/* About Section */
.text_column {
	width: 29%;
	text-align: justify;
	font-weight: lighter;
	line-height: 25px;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	color: #A3A3A3;
}
.about {
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 35px;
	display: inline-block;
	background-color: #FFFFFF;
	margin-top: 0px;
}
.cookie {
padding-top: 10px;
padding-bottom: 10px;
line-height: 1.5;
}
/* Stats Gallery */
.stats {
	color: #717070;
	margin-bottom: 5px;
}
.gallery {
	clear: both;
	display: inline-block;
	width: 100%;
	background-color: #FFFFFF;
	/* [disabled]min-width: 400px;
*/
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -5px;
	margin-bottom: 0px;
}
.thumbnail {
	width: 25%;
	text-align: center;
	float: left;
	margin-top: 35px;
}
.gallery .thumbnail h4 {
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #52BAD5;
}
.gallery .thumbnail p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #A3A3A3;
}
/* Parallax Section */
.banner {
	background-color: #2D9AB7;
	background-image: url(../images/parallax.png);
	height: 400px;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}
.parallax {
	color: #FFFFFF;
	text-align: right;
	padding-right: 100px;
	padding-top: 110px;
	letter-spacing: 2px;
	margin-top: 0px;
}
.parallax_description {
	color: #FFFFFF;
	text-align: right;
	padding-right: 100px;
	width: 30%;
	float: right;
	font-weight: lighter;
	line-height: 23px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
/* More info */
footer {
	background-color: #FFFFFF;
	padding-bottom: 35px;
}
.footer_column {
	width: 50%;
	text-align: center;
	padding-top: 30px;
	float: left;
}
footer .footer_column h3 {
	color: #B3B3B3;
	text-align: center;
}
footer .footer_column p {
	color: #717070;
	background-color: #FFFFFF;
}
.cards {
	width: 100%;
	height: auto;
	max-width: 400px;
	max-height: 200px;
}
footer .footer_column p {
	padding-left: 30px;
	padding-right: 30px;
	text-align: justify;
	line-height: 25px;
	font-weight: lighter;
	margin-left: 20px;
	margin-right: 20px;
}
/*
.button {
	width: 200px;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
	transition: all 0.3s linear;
}
.button:hover {
	background-color: #ffcc;
	color: #C4C4C4;
	cursor: pointer;
}
*/
.copyright {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFCC33;
	color: #000000;
	font-weight: lighter;
	clear: both;
    line-height: 1.5;
	border-top-width: 2px;
}
.footer_banner {
	background-color: #B3B3B3;
	padding-top: 60px;
	padding-bottom: 60PX;
	margin-bottom: 0px;
	background-image: url(../images/pattern.png);
	background-repeat: repeat;
}
.footer {
	display: inline-block;
	position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
.hidden {
	display: none;
}



/* Mobile */
@media (max-width: 320px) {
.logo {
	width: 100%;
	text-align: center;
	margin-top: 13px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.container header nav {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	display: none;
}

nav ul li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	text-align: center;
}
.text_column {
	width: 100%;
	text-align: justify;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 40%;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	font-size: 18px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 90%;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 12px;
	float: none;
	text-align: center;
}
.banner {
	background-color: #2D9AB7;
	background-image: none;
}
.tagline {
	margin-top: 20px;
	line-height: 22px;
}
.hero_header {
	padding-left: 10px;
	padding-right: 10px;
	line-height: 22px;
	text-align: center;
}
}

/* Small Tablets */
@media (min-width: 321px)and (max-width: 640px) {
.logo {
	width: 100%;
	text-align: center;
	margin-top: 13px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #FFCC33;
}
.container header nav {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	overflow: auto;
	display: inline-block;
	background: #454545;
	z-index: 7;
}
header nav ul {
	padding: 0px;
	float: none;
	z-index: 5;
}
nav ul li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
}
.text_column {
	width: 100%;
	text-align: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 40%;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	font-size: 18px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 30%;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: none;
	width: 100%;
	text-align: center;
}
.thumbnail {
	width: 50%;
}
.parallax {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-top: 20%;
}
.parallax_description {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	padding-top: 30px;
}
.banner {
	padding-left: 20px;
	padding-right: 20px;
}
.footer_column {
	width: 100%;
}
}

/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
.text_column {
	width: 100%;
}
.thumbnail {
	width: 50%;
}
.text_column {
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.banner {
	margin-top: 0px;
	padding-top: 0px;
}
}
