@charset "utf-8";

body{
	margin: 0;
	background-image: url(../images/background.png);
}
header{
	width: 100%;
	height: 180px;
	background-color: rgba(255,255,255,.8);
	display: block;
	position: relative;
	margin: auto;
}
main{
	width: 100%;
	min-height: 500px;
	background-color: rgba(255,255,255,.8);
	display: table;
	position: relative;
	margin: auto;
	z-index: 0;
}
footer{
	width: 100%;
	min-height: 40px;
	display: table;
	position: relative;
	margin: auto;
	background-color: #3a84b6;
	vertical-align: bottom;
	border-top: thick solid #9ecf7c;
	z-index: 1;
	box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.25);
}
.menu {
	list-style-type:none;
	display: block;
	margin: 0;
	padding:0;
	position: relative;
	text-align: center;
	z-index: 1000;
	border-bottom: thick solid #9ecf7c;
}

/*Create a horizontal list with spacing*/
.menu li {
	display:inline-block;
	margin-right: 10px;
	z-index: 1000;
}

/*Style for menu links*/
.menu li a {
	display: block;
	min-width:140px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-family: 'Lato', sans-serif;
	color: #fff;
	text-decoration: none;
	z-index: 1000;
}

.menu ul li:hover,
body.index li.index a,
body.about li.about a,
body.services li.services a,
body.careers li.careers a,
body.contact li.contact a { 
	font-weight: bold;
	background-color: #9ecf7c;
	color: #333333;
	z-index: 1000;
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: 'Lato', sans-serif;
	text-decoration: none;
	color: white;
	background-color: #3a84b6;
	text-align: center;
	padding: 15px 0px;
	display: none;
	z-index: 100;
	cursor: pointer;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ .menu{
    display: block;
}


/*------------------------------------------------*/
/* Acordeon 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: 0 0 0 1em;
    background: #16a085;
	font-family: 'Lato', sans-serif;
	color: #333333;
    font-weight: bold;
    line-height: 3;
    cursor: pointer;
}
.blue label {
  	background-color: gainsboro;
	border-radius: 10px;
	margin-bottom: 5px;
	margin-top: 5px;
}
.tab-content {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	font-family: 'Lato', sans-serif;
	line-height: 22px;
	text-align: justify;
	color: #555555;
	animation-name: fadeinleft;
	animation-duration: 1s;
	-webkit-transition: max-height .35s;
	-o-transition: max-height .35s;
	transition: max-height .35s;
}
.blue .tab-content {
  background: #fff;
}
.tab-content p {
  margin: 1em;
}
/* :checked */
input:checked ~ .tab-content {
  max-height: 15em;
}
/* Icon */
label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
input[type=checkbox] + label::after {
  content: "+";
}
input[type=radio] + label::after {
  content: "\25BC";
}
input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
}
input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}

/*------------------------------------------------*/
@media screen and (max-width : 800px){
	header{
		width: 100%;
		height: 130px;
		background-color: rgba(255,255,255,.8);
		display: block;
		position: relative;
		margin: auto;
	}
}
@media only screen and (max-width: 850px){
	.menu {
		position: static;
		display: none;
		z-index: 1000;
		border-bottom: none;
	}
	/*Create vertical spacing*/
	.menu li {
		border-top: thin solid white;
		z-index: 1000;
	}
	/*Make all menu links full width*/
	.menu li, li a {
		width: 100%;
		background-color: #3a84b6;
		z-index: 1000;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
		z-index: 1000;
	}
}
