@charset "utf-8";

body, html{
	margin: 0;
}
header{
	width: 100%;
	min-height: 120px;
	display: table;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
	z-index: 100;
	position: relative;
	border-bottom: medium solid #004686;
}
main{
	width: 100%;
	display: table;
}
footer{
	width: 100%;
	display: table;
	background: #004686;
}
.footer_menu{
	list-style-type:none;
	display: block;
	margin: 0;
	padding:0;
	-webkit-padding-start: 0px;
	position: relative;
	text-align: left;
	z-index: 1000;
}
.footer_menu li {
	display:block;
	z-index: 1000;
}
.footer_menu li:hover{
	transform:translateX(-10px);
	transition-duration: .25s;
}
.footer_menu li a {
	text-align: left;
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: bold;
	line-height: 25px;
	height: 25px;
	font-family: 'Raleway', sans-serif;
	text-transform:uppercase;
	color: #FFF;
	text-decoration: none;
	z-index: 1000;
}
.footer_menu ul li:hover,
body.index li.footer_index a,
body.about li.footer_about a,
body.faq li.footer_faq a,
body.services li.footer_services a,
body.careers li.footer_careers a,
body.contact li.footer_contact a { 
	z-index: 1000;
	font-style: italic;
	color: #82c341;
	animation-name: fadeIn;
	animation-duration: 1s;
}
.menu {
	list-style-type: none;
	display: block;
	margin: 0;
	-webkit-padding-start: 0px;
	position: relative;
	text-align: center;
	z-index: 1000;
}
.menu li {
	display:inline-block;
	margin-right: 10px;
	z-index: 1000;
}
.menu li a {
	display: block;
	min-width: 110px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	line-height: 50px;
	height: 50px;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	color: #004686;
	text-decoration: none;
	z-index: 1000;
}
.menu ul li:hover,
body.index li.index a,
body.about li.about a,
body.faq li.faq a,
body.services li.services a,
body.careers li.careers a,
body.contact li.contact a {
    z-index: 1000;
    border: medium solid #82c55b;
  	border-radius: 5px;
    font-weight: bold;
    text-align: center;
}
.show-menu {
	font-family: 'Lato', sans-serif;
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-size: 20px;
	height: 25px;
	line-height: 25px;
	display: none;
	z-index: 100;
	cursor: pointer;
}
input[type=checkbox]{
    display: none;
}
input[type=checkbox]:checked ~ .menu{
    display: block;
	animation-name: slideInRight;
	animation-duration: 1s;
}

/*----------------Accordian Styles------------------*/

.tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #fff;
  overflow: hidden;
}
.accordion_input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion_label {
    position: relative;
    display: block;
    padding: .5em 3em .5em 1em;
	font-family: 'Lato', sans-serif;
	color: #333;
    font-weight: 100;
    line-height: 1.5;
    cursor: pointer;
}
.blue label {
  	background-color: #E8E8E8;
	border: thin solid rgba(181,181,181,.75);
	border-radius: 0px;
	margin-bottom: 2.5px;
	margin-top: 2.5px;
}
.tab-content {
	max-height: 0;
	overflow: hidden;
	font-family: 'Lato', sans-serif;
	line-height: 22px;
	text-align: justify;
	background-color: #f9f9f9;
	color: #333;
	animation-name: fadeinleft;
	animation-duration: 1s;
	/*-webkit-transition: max-height .5s;
	-o-transition: max-height .5s;
	transition: max-height .5s;*/
}
.blue .tab-content {
}
.tab-content p{
	text-align: left;
	color: #333;
}
.tab-content ul{
	text-align: left;
	color: #333;
}
input:checked ~ .tab-content {
  	max-height: 100em;
	padding: 1.5em;
	border: thin solid rgba(181,181,181,.75);
}
label::after {
	position: absolute;
	right: 0;
	top: 0;
	padding-left: .5em;
	display: block;
	width: 3em;
	height: 2.5em;
	line-height: 2.5;
	text-align: center;
	/*-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;*/
}
input[type=checkbox] + label::after {
  	content: "\f067";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: 100;
    text-decoration: inherit;
	color: #555;
}
input[type=checkbox]:checked + label::after {
  	transform: rotateX(180deg);
	content: "\f00d";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: 100;
    text-decoration: inherit;
	color: #555;
}