/* CSS Document */

html {
	overflow-x: hidden;
	box-sizing: border-box;
}

html, html * {
	padding: 0;
	margin: 0;
}

body {
	background-image: url("inc/img/bgimg.jpeg");
	background-size: cover;
}

header {
	width: 100%;
	background-color: #69b8ee;
	background-image:  repeating-linear-gradient(45deg, #34b7f9 25%, transparent 25%, transparent 75%, #34b7f9 75%, #34b7f9), repeating-linear-gradient(45deg, #34b7f9 25%, #69b8ee 25%, #69b8ee 75%, #34b7f9 75%, #34b7f9);
	background-position: 0 0, 4px 4px;
	background-size: 8px 8px;
	height: 80px;
}

#logo {
	max-height: 80px;
	padding: 10px;
}

#logo img {
	width: auto;
	height: 100%;
}

main {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	background-color: hsla(0,0%,100%,0.90);
}

#hero {
	max-width: 100%;
}

#hero img {
	width: 100%;
	height: auto;
}

.content {
	padding: 15px 5px;
}

.input-sep {
	
}

#contact-box {
	display: block;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 10000;
}

footer {
	height: 200px;
	background-color: #00062B;
	color: #FEFEFE;
	position: relative;
}

footer #copy {
	font-size: 14px;
	display: inline-block;
	position: absolute;
	bottom: 0;
	padding: 5px 0;
	text-align: center;
	width: 100%;
}