/*
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:300,700" />
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,700);*/
*{
	padding:0px;
	margin:0px;
	text-decoration:none;
	list-style-type: none;
	border:none;
	border-spacing:0;
	cursor:default;
	position:relative;
	text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
	
	image-rendering: auto;
	-webkit-backface-visibility: hidden;
	outline: 1px solid transparent;
}

html {
    height: 100%;
}

p, li, span, a, input, textarea, address, label{
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}
h1, h2, h3, .destaque, button, .bold{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
}
a, a *, #hamburguer, #sideTogleBG{
	cursor:pointer;	
	color:inherit;
}

button{
	width:140px;
	height:60px;
	background-color:#0F0;
	color:#000;
	cursor:pointer;
	font-size: 16px;
}
.destaque{
	color:#0F0 !important;	
}

.clearfix:after {
   content: " "; /* Older browser do not support empty content */
   visibility: hidden;
   display: block;
   height: 0;
   clear: both;
}
body, #container{
	height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;	
}
#container{		
	min-height:370px;
	padding-top: 100px;

}	

.darkBg{
	background-color:#000;
}
.lightBg{
	background-color:#FFFFFF;
}
/**************************************************************************/
#mainHeader{
	width:100%;
	
	box-sizing: border-box;
	border-top: 2px #00FF00 solid;
	transition: height 1s;

	position:fixed;
	z-index: 10;
	top:0px;
}

#header_cont{
	transition: top 1s;
	width: 95%;
	margin:auto;
}
#header_cont svg{
	width:100px;
	height:40px;	
}
#logo{
	position:relative;
	width:100px;
}


@media only screen and (max-width: 800px) {
	#mainHeader{
		height:60px;
	}
	#header_cont{
		top:10px;
	}

	#sideTogleCont, #sideBar{
		display:block;
	}
	
	#mainNav{
		display:block;
		top:40px;
		width:100%;
	}
	
	#mainNav li{
		margin:15px 0px;
	}
	
}
@media only screen and (min-width: 800px) {
	#mainHeader{
		height:100px;
	}
	#sideTogleCont, #sideBar{
		display:none;
	}
	
	#mainNav{
		top:11px;
		width:auto;
	}
	#mainNav, #mainNav *{
		display:inline-block;
	}
	#mainNav li{
		margin:0 17px;
	}
	#mainNav li:last-child{
		margin:0px 0px 0px 15px;
	}
}

/**MENU***********************************************/
#sideTogleCont{
	position: absolute;
    right: 0px;
	top:6px;	
}

/**hamburguerCLASS****************************************************/
.menuHamburguer{
	width:40px;
	height:40px;
}
.menuHamburguer *{
	cursor:pointer;	
}

.hamburguerLabel{
	position:relative;
	width:100%;
	height:100%;
	display: block;	
}
.hamburguerBG{
	position: absolute;
	display: block;	
	width: 100%;
	height:100%;
    left: 0px;
    top: 0px; 
}

.hamburguer {
    position: relative;
    transition: all 0.3s ease 0s;
	width: 80%;
}
.hamburguer::before {
    top: 17px;
}
.hamburguer::after {
    top: -17px;
}

.hamburguer, .hamburguer::before, .hamburguer::after{
	background: #0F0 none repeat scroll 0 0;
    content: "";
    display: inline-block;
	height: 2px;
	
}
.hamburguer::before, .hamburguer::after {
    left: 0;
    position: absolute;
    transform-origin: 0.28571rem center 0;
    transition: transform 0.3s;
	width: 100%;
}


.hamburguerSwitch{
	display: none;
}
.hamburguerSwitch:checked + label .hamburguer::before, .hamburguerSwitch:checked + label .hamburguer::after{
	transform-origin: 50% 50%;
	top:0px;
}

.hamburguerSwitch:checked + label .hamburguer::before{
	transform: rotate3d(0, 0, 1, -45deg);
}
.hamburguerSwitch:checked + label .hamburguer::after{
	transform: rotate3d(0, 0, 1, 45deg);
}

.hamburguerSwitch:checked + label .hamburguer{
	background:transparent;
}
/******************************************************/

#sideBar{
	position:fixed;
	top:60px;
	left:-100%;
	width:100%;
	height:100%;
	-webkit-transition: left 1s; /* Safari */
	transition: left 1s;	
	
	z-index: 10;
}

#sideBarCont{
	position:absolute;
	background-color:#FFF;
	width:100%;
	height:100%;
	max-width: 100%;
}

#sideBarTogle{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
}

#sideBarTogle div{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background-color:#FFF;
	opacity:0.2;
}

#sideBar #mainNav a{
	font-size: 30px;
}
/*************************************************/
#mainNav{
	position: absolute;
    right: 0px;	
}

#mainNav ul{
	width:auto;
}
#mainNav li{
	text-align:center;
	vertical-align:top;
}
	
#mainNav li a{
	font-size:18px;
	-webkit-transition: color 0.3s; /* Safari */
	transition: color 0.3s;	
	
}
#mainNav li:last-child a{
	color:#0F0;
}
#mainNav li a:hover{
	color:#0F0;
}
/***************************************************************************/
#main{
	position:relative;
	height:auto;
	display:block;
}
.sectionBorders{
	margin:auto;
	width:90%;	
}
 
#mainFooter{
	position:relative;
	height:110px;
	
	box-sizing: border-box;
	padding-top:40px;
}


#socialNav{
	position:relative;
}
#socialNav ul{
	margin:auto;
	text-align:center;
}
#socialNav li{
	margin:0 10px;
	display:inline-block;
	vertical-align: top;
}
#socialNav img{
	width:30px;
	vertical-align: middle;
}

.iconHover{
	width:30px;
	height:30px;
	vertical-align: middle;	
	cursor:pointer;
}
.iconHover img{
	position:absolute;	
	top:0px;
	left:0px;
	cursor:pointer;
}
.iconHover img:last-child{
	opacity:0;
	transition: opacity 0.3s;
	
}
.iconHover:hover img:last-child{
	opacity:1;
}

#socialNav svg{
	width:30px;
	vertical-align: middle;
}

#socialNav a *{
	transition: fill .4s ease;
}
	
#socialNav a:hover *{
	fill: #0F0;
}

/***************************************************************************/
.cont_parts{
	width:100%;
	max-width:900px;
	margin:auto;
	text-align:center;
	flex-direction: row;
	flex-wrap:wrap;
}
.cont_parts p{
	text-align:left;
	font-size:16px;
}

.cont_part_space{
	flex: 1 1 auto;
}


@media only screen and (min-width: 933px) {

	.cont_parts{
		display: flex;
	}

	.cont_part_duo{
		flex: 0 0 420px;
		margin:0px;
	}
	
	.cont_part_trio{
		flex: 0 0 260px;
		margin:0px;
	}
	
	.cont_part_space{
		display:block;
	}
}

@media only screen and (max-width: 933px) {
	.cont_part_duo{
		margin:45px auto;
	}
	.cont_part_trio{
		margin:45px auto;
	}
	.cont_part_space{
		display:none;
	}
}
