/*
PCO Tracker
*/

/*--------------------------------------*/
/* BASIC SETUP */
/*--------------------------------------*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	background-color: #fff;
	color: #555;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 300;
	font-size: 20px;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

.clearfix {zoom: 1}
.clearfix:after {
	content: '.';
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}

/*--------------------------------------*/
/* HEADINGS */
/*--------------------------------------*/

h1,
h2,
h3 {
	font-weight: 300;
	text-transform: uppercase;
	word-spacing: 4px;
}

h1 {
	margin: 0;
	margin-bottom: 20px;
	color: #fff;
	font-size: 240%;
	word-spacing: 4px;
	letter-spacing: 1px;
}

h2 {
	font-size: 180%;
	word-spacing: 2px;
	text-align: center;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

h3 {
	font-size: 110%;
	margin-bottom: 15px;
}

h2:after {
	display: block;
	height: 2px;
	background-color: #e67e22;
	content: " ";
	width: 100px;
	margin: 0 auto;
	margin-top: 30px;
}
/* ------------------------------------ */
/* INDEX PAGE */
/* ------------------------------------ */

.index-page{
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/Hero.jpg);
	background-size: cover;
    height: 100vh;
    background-attachment: fixed;
}

.hero-text-box {
    position:absolute;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ------------------------------------ */
/* HEADER */
/* ------------------------------------ */

header {
	background-color: #555;
	height: 65px;
	
}


/*--------------------------------------*/
/* TABLES */
/*--------------------------------------*/

table {
	margin: 8px;
}

th {
	font-size: 1.0em;
	word-spacing: 2px;
	text-align: center;
	letter-spacing: 1px;
	padding: 5px;
	border: 1px solid;
}

td {
	font-size: .9em;
	padding: 3px 3px;
	border: 1px solid;
	
}

.num {
	text-align: right;
}

/* ----------LINKS---------- */

a:link,
a:visited {
	padding: 8px 0; 
	color: #e67e22;
	text-decoration: none;
	padding-bottom: 1px;
	border-bottom: 1px solid #e67e22;
	transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
	color: #555;
	border-bottom: 1px solid transparent;
}

.aux-menu a:link, 
.aux-menu a:visited {
	color: #555;
	text-transform: uppercase;
	font-size: 110%;
}

.aux-menu a:hover,
.aux-menu a:active {
	color: #555;
	border-bottom: 1px solid transparent;
}

/* ------------------------------------ */
/* FORM */
/* ------------------------------------ */

.contact-form {
	width : 90%;
	margin: 0 auto;
}

input[type=text],
input[type=email],
input[type=password],
select,
textarea {
	width: 100%;
	padding: 7px;
	border-radius: 3px;
	border: 1px solid #ccc;
}

textarea {
	height: 100px;
}

input[type=checkbox] {
	margin: 10px 5px 10px 0;
}

*:focus {outline: none;}

.map-box {
	width: 100%;
	height: 630px;
	position: relative;
	}

.map {
	width: 100%;
	height: 630px;
	position: relative;
	z-index: 5;
}

.form-box {
	text-align: center;
	width: 80%;
	background-color: rgba(255, 255, 255, 0.8);
	padding-top: 40px;
}

.form-messages {
	width: 70%;
	margin: 0 auto;
	padding: 10px;
	border-radius: 3px;
	margin-bottom: 20px;
	color: #333;
}

.success { background-color: rgba(38, 191, 68, 0.8); }

.error { background-color: rgba(209, 46, 46, 0.8); }

/* ----------BUTTONS--------*/

.btn:link,
.btn:visited,
input[type=submit] {
	display: inline-block;
	padding: 10px 30px;
	font-weight: 300;
	text-decoration: none;
	border-radius: 200px;
	color: #fff;
	transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type=submit] {
	background-color: #e67e22;
	border: 1px solid #e67e22;
	color: #fff;
	margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
	border: 1px solid #e67e22;
	color: #e67e22;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
	background-color: #cf6d17;
}

.btn-full:hover,
.btn-full:active,
input[type=submit] {
	border: 1px solid #cf6d17;
	color: #fff;
}

.btn-ghost:hover,
.btn-ghost:active {
	border: 1px solid #cf6d17;
	color: #fff;
}

/* ---------- Main Navi --------*/

.main-nav {
	float: left;
	list-style: none;
	margin-top: 20px;
}

.main-nav li {
	display: inline-block;
	margin-left: 40px;
    color: #e67e22;
}

.main-nav li a:link,
.main-nav li a:visited {
	padding: 8px 0; 
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 90%;
	border-bottom: 2px solid transparent;
	transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
	border-bottom: 2px solid #e67e22;
}

/* Sticky Navi */ 

.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height:60px;
	background-color: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 2px #efefef;
	z-index: 9999;
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
	padding: 18px 0; 
	color: #555;
}

.sticky .main-nav {	margin-top: 16px; }

/* ------------------------------------ */
/* REUSABLE COMPONENTS */
/* ------------------------------------ */

.row {
	max-width:1140px;
	margin: 0 auto;
}

section {
	padding:80px 0;
}

/* ----------ICONS----------*/
.icon-menu {
	font-size: 325%;
	display: block;
	color: #e67e22;
	margin-bottom: 10px;
}

.icon-small {
	display: inline-block;
	width: 30px;
	text-align: center;
	color: #e67e22;
	font-size: 120%;
	margin-right: 10px;
	
	/*secrets to align text and icons*/
	line-height: 120%;
	vertical-align: middle;
	margin-top: -5px;
}
/* ------------------------------------ */
/* FOOTER */
/* ------------------------------------ */

footer {
	background-color: #333;
	padding: 10px;
	font-size: 80%;
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
}

footer p{
	color: #888;
	text-align: center;
	margin-top: 10px;
}

footer li {
    display: inline-block;
    margin-left: 40px;
}

.login {
    color: #cecece;
}