*{
	box-sizing: border-box;
}
body, html {
    min-height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
	font-family: 'Advent Pro', sans-serif;
	min-width: 100%;
    position: relative;
    background: #ffffff;
    text-align: left;
    color: #ffffff;
    font-size: 0;
    font-weight: 500;
    overflow-x: hidden;
    letter-spacing: 0.3px;

}
.ui-widget{
	font-family: 'Advent Pro', sans-serif;

}
html, body.home{
/*	height: 100%;*/
}
img{
	max-width: 100%;
	vertical-align: top;
}
/**{
	transition: all .2s linear 2s;	
}*/
a{
	text-decoration: none;
}
header{
	position: absolute;
	position: fixed;
	width: 50px;
	height: 100%;
	top: 0%;
	left: 0;
	z-index: 9999999;
	max-width: 20%;
}
header:before{
	content: "";
	width: 4px;
	height: 80%;
	position: absolute;
	left: 0;
	top:10%;
	background: #8e713c;
}
header nav{
 	padding: 50px 0;
	position: absolute;
	height: auto;
	padding-left: 4px;
	max-width: 100%;
	width: auto;
	top: 15%;
	display: inline-block;
/*	transition: all .1s ease ;*/
	left: -315px;
	transition: left .2s linear 0s;
}
header nav.open_mobile{
	left: -4px;
}
header nav:hover{


}
header nav > ul{
	width: 365px;

	height: auto;
	position: relative;
	background: #8e713c;
	padding-right: 50px;
	font-size: 0;
    letter-spacing: 0px;
	
	display: inline-block;

}
header nav > ul > li{

	text-align: center;
	display: inline-block;
	width: auto;


}
header nav > ul > li > a, header nav > ul > li > p{
	display: inline-block;
	color: #fff;
	padding: 0px 17px;
	font-size: 20px;
	height: auto;
	width: auto;
	font-weight: 300;
	line-height: 50px;
}
header nav > ul > li > a.active{
	color: #064a82;
}

header nav > ul > li:first-child{
	position: absolute;
	width: 50px;
	height: 100%;
	right: 0;
	text-align: center;
	background: #594726; 
}
header nav #botao{
	width: 30px;
	position: relative;
	height: 25px;

	margin-top: 17px;
	-webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	  -webkit-transition: .5s ease-in-out;
	  -moz-transition: .5s ease-in-out;
	  -o-transition: .5s ease-in-out;
	  transition: .5s ease-in-out;
	  cursor: pointer;
	  z-index: 9;
	  display: inline-block;
}
header nav #botao.open{
	margin-top: 16px;
}
header nav #botao span{
	display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 19px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
header nav #botao span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

header nav #botao span:nth-child(2) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

header nav #botao span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

header nav #botao.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 4px;
}

header nav #botao.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

header nav #botao.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 4px;
}
header nav > ul > li{
	max-height: 50px;
	overflow:hidden;
}
header nav > ul > li:hover{
	max-height: 10000px;
}
header nav > ul > li > ul{
	position: absolute;
	top: 100%;
	height: 0;
	left: 100px;
	width: auto;
	background: #064a82;
	text-align: left;
	display: inline-block;
	transition: all 0.5s linear 0s;
	min-height: 0;
	display: none;

}

header nav > ul > li:hover > ul{
	height: auto;
	opacity: 1;
	min-height: 100%;
	display: inline-block;
}

header nav > ul > li > ul > li{
	padding: 10px 20px;
	position: relative;

}
header nav > ul > li > ul > li p{
	font-size: 16px;
	color: #fff

}

header nav > ul > li > ul > li:hover p{
	color: #000;
}
header nav > ul > li > ul > li p.active, header nav > ul > li > ul > li:hover p.active{
	color: #8e713c;
}
header nav > ul > li > ul > li ul{
	position: absolute;
	left: 100%;
	top: 0; 
	width: 0;
	opacity: 0;
	background-color: #8e713c;
	transition: all 0.1s linear 0s;
	overflow: hidden;
	display: inline-block;
	min-width: 0;
}
header nav > ul > li > ul > li:hover ul{
	max-width: 10000px;
	opacity: 1;
	width: auto;
	min-width: 100%;
}
header nav > ul > li > ul > li ul li{
	display: block;

}
header nav > ul > li > ul > li ul li a{
	font-size: 15px;
	color: #fff;
	display: inline-block;
	padding: 10px;
	max-width: 100000px;
	width: auto;
	padding-bottom: 0;
}
header nav > ul > li > ul > li ul li a.active{
	color: #000;
}
header nav > ul > li > ul > li ul li:last-child a{
	padding-bottom: 10px;
}
section{
	display: inline-block;
	width: 100%;
	height: auto;
	position: relative;
	padding: 110px 0;
	z-index: 1;
}
section.intro{
/*	background: url(../images/parede.jpg) no-repeat center center;
*/	background-size: cover;
	min-height:100vh;
	padding: 0;
	z-index: 0;
}
.contactos section.intro{
	background: #fff;
}
.empresa section.intro{
	min-height: inherit;

	padding-bottom: 104px;
	background: url(../images/fundo.png) no-repeat center bottom 30%;
	background-size: cover;

}
.produtos section.intro{
	background: url(../images/fundo_produtos.png) no-repeat center center;
	background-size: cover;
	height: auto;
	font-size: 0;
	    letter-spacing: 0px;

}
.produtos_in section.intro{
	background: url(../images/fundo_produtos_in.png) repeat center center;
/*	padding-bottom: 77px;
*/}
.home section.intro .medalha{
	position: absolute;
	bottom: 10%;
	left: 77px;
	z-index: 3;
}
.home section.intro .medalha p{
	font-size: 15px;
	text-align: center;
	width: 100%;
	margin-top: 10px;
	color: #064a82;
	font-weight: 700;
}
section.premiados{
	padding-top: 0;
	padding-bottom: 50px;
}
section.intro .logo{
	margin-left: 77px;
	margin-top: 40px;
	padding-right: 50px;
	position: relative;
	z-index: 3;
}
.produtos section.intro .logo, .contactos section.intro .logo{
	padding-left: 77px;
	padding-top: 40px;
	margin: 0;
	width: 40%;
	vertical-align: top;
	display: inline-block;
}
.contactos section.intro .logo{
	z-index: 1;
	position: relative;
	width: 30%;
	padding-bottom: 50px;
}
section.intro .logo h1{
	font-size: 80px;
	color: #064a82;
	font-weight: 300;
	text-transform: uppercase;
	margin-top: 5%;
}

section.descricao{
	text-align: center;
}
.home section.descricao{
	background: url(../images/parede_descricao.jpg) center bottom;
	background-size: cover;
}
.home section.descricao .coluna1, .home section.descricao .coluna2{
	position: absolute;
	width: 20%;
	bottom: 0;
}
.home section.descricao .coluna1{
	left: 2%;

}
.home section.descricao .coluna2{
	right: 0;
	text-align: right;
}
.home section.descricao .content{
/*	background: rgba(255,255,255,0.8);
*/	padding: 2% 4%;
	position: relative;
	z-index: 3;	
}
section.descricao .content{
	width: 60%;
	display: inline-block;

}
section h2{
	font-size: 50px;
	color: #8e713c;
	font-weight: 300;
	display: inline-block;
	width: 100%;
	margin-bottom: 70px;
	text-align: center;
}
section.descricao h2{
	margin-bottom: 60px;
}
section h3{
	font-size: 20px;
	color: #8e713c;
	width: 100%;
	font-weight: 300;
	margin: 20px 0;
}
section.produtos h2{
	color: #fff;
}
section.premiados h2{
	background: #f9f9f9;
	padding: 70px 0 40px;
}
.empresa section h2{
	margin-bottom: 20px;
}
section.descricao p{
	font-size: 18px;
	line-height: 25px;
	color: #000;
}
section.intro .element{
	position: absolute;
	right: 20%;
	width: auto;
	text-align: right;
	height: 65%;
	transition: all .2s linear 0s;
	display: inline-block;
	top: 0;
}
section.intro #box, section.intro .box1,  section.intro .box2{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	transition: all .2s linear 0s;
}
section.intro .box2{
	z-index: 3;
}
section.intro #box{
	z-index: 1;
		background: url(../images/fundo.png) no-repeat center bottom;
		background-size: 100% auto;

}
section.intro #box img{
	height: 100%;
	opacity: 0;


}
section.intro .box1 img, section.intro .box2 img{
	opacity: 1;
	height: 100%;
	position: absolute;
	left: -10%;
	top: 0;
	max-width: inherit;
	transition: all .2s linear 0s;
}

section.produtos{
	background: url(../images/fundo_produtos.png) no-repeat top center #f9f9f9;
	padding-bottom: 0;
}

section.produtos #tabs{
	position: relative;
	background:transparent;
	text-align: center;
}
section.produtos #tabs > #bx-pager{
	font-size: 20px;
	color: #fff;
	text-align: center;
	margin-bottom: 50px;
}

section.produtos #tabs div div ul li a img{
	width: 50%;
}

section.produtos #tabs > #bx-pager a{
	color: #fff;
	display: inline-block;
	padding: 5px 10px;
	border: 1px solid rgba(255,255,255,0);
	float: none;
	font-weight: 300;
	margin: 0 20px;
	transition: all .2s linear 0s;
}
section.produtos #tabs > #bx-pager a:hover{
	border: 1px solid rgba(255,255,255,0.5);

}
section.produtos #tabs > #bx-pager a.active{
	color: #8d703a;
	border: 1px solid #8d703a;
}
.ui-widget.ui-widget-content{
	border: 0;
		border-radius: 0;
		background: transparent;
}
.ui-tabs .ui-tabs-nav{
	border-radius: 0;
	padding: 0;
	background: transparent;
	border:0;
}
section.produtos #tabs .tabs_content {
	width: 100%;
	display: inline-block;
	margin-top: 10px;

}
section.produtos #tabs .tabs_content ul li ul li{
	text-align: center;
}
.home section.produtos #tabs .tabs_content ul li ul li img{
	width: 40%;
}
.produtos section.produtos #tabs .tabs_content ul li ul li img{
	width: 60%;
	display: inline-block;
	position: relative;
}
section.produtos #tabs .tabs_content ul li ul li img{
	position: relative;
}


.bx-wrapper .bx-pager{
	display: none;
}
.bx-controls-direction{
	
}
.bxslider_slide li{
	width: 20%;
}
.empresa section:nth-of-type(2n){
	background: rgba(0,0,0,0.05);
}

section.descricao.historia .content{
	width: 80%;

}
.empresa section.descricao{
	font-size: 0;
    letter-spacing: 0px;

}
.empresa section.descricao article{
	width: 32%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
	padding: 20px 30px;

	margin-bottom: 20px;
	min-height: auto;
}
.empresa section.descricao article:nth-of-type(3n){
	margin-right: 0;
}
.empresa section.descricao article p{
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 22px;
}

.produtos section.intro #tabs{
	display: inline-block;
	font-size: 0;
	height:auto;
letter-spacing: 0px;
}
.produtos section.intro #tabs .logo #bx-pager{
	display: inline-block;
	padding: 30% 0;
	width: 100%;

}
.produtos section.intro #tabs .logo #bx-pager ul li{
	display: block;
	font-size: 31px;
	text-align: left;
	color: #fff;
	line-height: 35px;
	width: 100%;
	float: none;
	top: inherit;
	margin: 0;
	border: 0;
	background: transparent;
}
.produtos section.intro #tabs .logo #bx-pager ul li.ui-tabs-active{

}
.produtos section.intro #tabs .logo #bx-pager ul li a{
	display: inline-block;
	float: none;
	color: #fff;
	font-weight: 300;
	padding:0;
	
}
.produtos section.intro #tabs .logo #bx-pager ul li.ui-tabs-active a{
	color: #8d703a;
}
.produtos section.intro .tabs_content{
	width: 60%;
	display: inline-block;
	vertical-align: middle;
	padding: 10% 0;
}
.produtos .ui-tabs .ui-tabs-nav li.ui-tabs-active{
	margin: 0;
	padding: 0;
}
.produtos section.intro .tabs_content ul {
	transition: all .2s linear 0s;
}
.produtos section.intro .tabs_content ul li .bx-pager{
	font-size: 0;
	letter-spacing: 0px;
	margin-top: 40px;
	text-align: center;
}
.produtos section.intro .tabs_content ul li .bx-pager a{
	font-size:22px;
	color: #fff;
	display: inline-block;
	font-weight: 300;
	padding: 10px 20px;
	border: 1px solid rgba(0,0,0,0);
	    letter-spacing: 1px;
}

.produtos section.intro .tabs_content ul li .bx-pager a.active{
	border: 1px solid #8e713c;
}
body.produtos .bx-wrapper ul li{
	text-align: center;
}
body.produtos .bx-wrapper img{
	width: 70%;
	    margin-top: 0px;
	display: inline-block;
			transition: all .2s linear 0s;
			
}
.produtos section.intro .tabs_content ul li{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding-right: 1%;

}
.produtos section.intro .tabs_content ul li span{
	position: absolute;
	width: 50%;
	height: 60%;
	top: 10%;
	left: 20%;
	background: rgba(255,255,255,0.05);
			
}
body.produtos .ui-tabs .ui-tabs-panel{

}

.produtos_in section.intro .logo{
	min-height: 100%;
	position: relative;
	min-height: 100vh;
	width: 500px;
	background: rgba(255,255,255,0.9);
		z-index:4;
		padding-bottom: 70px;
}
.produtos_in section.intro .logo h1{
	font-size: 50px;
	color: #000;
	font-weight: 700;
	text-transform: none;
	position: relative;
	margin-bottom: 90px;
}
.produtos_in section.intro .logo h1 .special{
	display: inline-block;
	width: 100%;
	position: absolute;
	bottom: -60px;
	left: -27px;

}
.produtos_in section.intro .logo .text{
	font-size: 16px;
	color: #000;
	line-height: 20px;
}
.produtos_in section.intro .logo #slide_mobile{
	display: none;
}
.produtos_in section.intro .logo .text > span{
	display: inline-block;
	width: 100%;
}
.produtos_in section.intro .logo .text .morecontent > span{
	display: none;
}
.produtos_in section.intro .logo .text a{
	display: inline-block;
	width: auto;
	padding: 10px 25px;
	margin-top: 30px;
	background: #091b43;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}
.produtos_in section.intro .logo .medalha{
	margin-top: 50px;
	text-transform: uppercase;
	text-align: center;
	color: #b09e61;
}
.produtos_in section.intro .logo .medalha h3{
	font-size: 25px;
	color: #b09e61;
	font-weight: 700;
	margin-bottom: 5px;
}
.produtos_in section.intro .logo .medalha h4{
	font-size: 14px;
}
.produtos_in section.intro .logo .medalha p{
	font-size: 11.5px;
	margin-top: 5px;
}
.produtos_in section.intro .logo .medalha img{
	max-width: 100px;
}
.produtos_in section.intro article{
	margin-left: 550px;
	position: relative;
	z-index: 3;
	height: auto;
	margin-right: 77px;
	min-height: 100vh;
	font-size: 0;
	

	position: absolute;
	left: 0;
	right: 0;
	width: calc(100% - 628px);
	top: 0;
}
.produtos_in section.intro article .composicao{
	position: absolute;
	left: 0;
	top: 22%;
	width: 210px;
	height: 452px;
	background: url(../images/composicao.png) no-repeat center center ;
	background-size: cover;
}
.produtos_in section.intro article .composicao .imagem{
	max-width: 71%;
	margin-left: 14%;
	margin-top: 3px;

}
.produtos_in section.intro article .composicao .text{
	font-size: 14px;
	color: #999999;
	margin-top: 20%;
	text-align: center;
}
.produtos_in section.intro article .icons{
	position: absolute;
	bottom: 5%;
	left: 0;
	width: 100%;
	z-index: 5;
}
.produtos_in section.intro article .icons ul{
	font-size: 0;
	letter-spacing: 0px;
	display: inline-block;
	width: 100%;
	margin: 20px 0;
}
.produtos_in section.intro article .icons ul li{
	display: inline-block;
	width: 4.5%;
	background-color: #191e42;
	position: relative;
    mask-repeat: no-repeat;
    mask-size: cover;
    margin-right: 1%;
    -webkit-border-radius: 5px;
-moz-border-radius: 5px;
text-align: center;
border-radius: 5px;
margin-bottom: 5px;
}
/*.produtos_in section.intro article .icons ul li:nth-of-type(10n){
	margin-right: 0;
}*/
.produtos_in section.intro article .icons ul li:hover{
	background-color: #8e713c;	
}
.produtos_in section.intro article .icons ul li span{
	width: auto;
	position: absolute;
	display: inline-block;
	bottom:110%;
	left: 0;
	font-size: 15px;
	padding: 10px;
	display: none;
	text-transform: uppercase;
	background: #fff;
	max-width: 10000px;
	color: #8f723c;
}
.produtos_in section.intro article .icons ul li:hover span{

	display: inline-block;
}
.produtos_in section.intro article .icons img{
	display: inline-block;
	width: 100%;
	
}
.produtos_in section.intro article .articulado{
	position: absolute;
	right: 0;
	bottom: 15%;
	z-index: 5;

}
.produtos_in section.intro article .articulado img, .produtos_in section.intro .logo #slide_mobile .articulado_mobile .articulado img{
	display: block;
	background: #fff;
	-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
margin-top: 10px;
}
.produtos_in section.intro article .articulado img{
	min-width: 100px;
}
.produtos_in section.intro article .slide{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
}
.produtos_in section.intro article .slide .bx-wrapper, body.produtos_in .bx-wrapper{
	display: inline-block;
	vertical-align: middle;
}
.produtos_in section.intro article .slide .bx-wrapper ul li .imagem{
	margin-top: 30%;
	vertical-align: middle;
}
.produtos_in section.intro article .slide .bx-wrapper ul li .imagem > img{
	max-width: 800px;
	display: inline-block;
}
.produtos_in section.intro article .slide .bx-wrapper ul li .patente{
	position: absolute;
	right: 15%;
	bottom: 30px;
}
.produtos_in section.intro article .legenda{
	width: 268px;
	height: auto;
	position: absolute;
	top: 0;
	right: 0;
	padding-top:46px;
	padding-bottom: 12px;
	text-align: left;
	position: absolute;
}
.produtos_in section.intro article .legenda:before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	height: 47px;
	width: 100%;
	background: url(../images/legenda_cima.png) no-repeat center center;
	background-size: cover;
}
.produtos_in section.intro article .legenda:after{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	height: 12px;
	left: 0;
	width: 100%;
	background: url(../images/legenda_baixo.png) no-repeat center center;
	background-size: cover;


}
.produtos_in section.intro article .legenda ul{
	width: 87%;
	position: relative;
	z-index: 1;
	background: #eeeeee;
		border-top: 1px solid #8a8a8a;
	border-left: 1px solid #8a8a8a;
	border-right: 1px solid #8a8a8a;
	display: inline-block;
	padding: 10px;
	margin-left: 18px;
	margin-top: -4px;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#919095+0,f8f8f8+18 */
	background: rgb(145,144,149); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(145,144,149,1) 0%, rgba(248,248,248,1) 18%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(145,144,149,1) 0%,rgba(248,248,248,1) 18%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(145,144,149,1) 0%,rgba(248,248,248,1) 18%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#919095', endColorstr='#f8f8f8',GradientType=0 ); /* IE6-9 */
}
.produtos_in section.intro article .legenda ul li{
	font-size: 13px;
	color: #000;
	padding: 2px 0;
}
.produtos_in section.intro article .legenda ul li span{
	display: inline-block;
	padding: 4px 0px;
	width: 35px;
	text-align: center;
	color: #fff;
	background: #bf2f26;
	vertical-align: top;
	font-weight: 700;
	margin-right: 6px;
}
.produtos_in section.intro article .legenda ul li p{
	padding-top: 4px;
	display: inline-block;
}
.produtos_in section.intro .fundo{
	position: absolute;
	background: no-repeat center center;
	background-size: cover;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}



.contactos section h2{
	text-align: left;
}
.contactos #map{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
}
.contactos section.intro .logo .formulario{
	margin-top: 100px;
}
.contactos section.intro .logo .formulario p{
	font-size: 16px;
	color: #081946;
	line-height: 20px;
	margin-bottom: 10px;

}
.contactos section.intro .logo .formulario p a{
	color: #081946;	
}
.contactos section.intro .logo .formulario p a:hover{
	color: #8e713c;
}
.contactos section.intro .logo form{
	margin-top: 20px;
}
.contactos section.intro .logo form input, .contactos section.intro .logo form textarea{
	width: 100%;
	padding: 10px 20px;
	background: #fff;
	border:0;
	resize: none;
	color: #081946;
	font-family: 'Advent Pro', sans-serif;
	font-size: 16px;
	margin-bottom: 10px;
}
.contactos section.intro .logo form input[type="submit"]{
	margin-bottom: 0;
	background: #081946;
	color: #fff;
	text-transform: uppercase;
}
.produtos_in section.intro article .slide{
  left: 100%;
}
footer{
	width: 100%;
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
	background: #34353a;
	color: #fff;
}
footer p{
	padding: 20px 77px;
}
@media only screen and (max-width: 840px){
	section.intro .element{
		right: 0;
	}
	section.intro .logo{
		z-index: 999;
		position: relative;
		margin-left: 0;
	}
	section.produtos #tabs > #bx-pager ul {
		font-size: 0;
		width: 100%;
		padding: 0 4%;
	}
	section.produtos #tabs > #bx-pager ul li{
		width: auto;
		height: auto;
		font-size: 17px;
		text-align: center;
	}
	section.produtos #tabs > #bx-pager ul li a{
		margin: 0;
		width: 100%;
	}
	.bx-wrapper img{
		width: 60%;
	}
	section.produtos #tabs .tabs_content{
		margin-top: 40px
	}
	.empresa section.descricao article{
		width: 100%;
	}
	.produtos section.intro .logo, .contactos section.intro .logo, .produtos section.intro .tabs_content, section.intro .logo{
		width: 100%;
		text-align: center;
	}
	

	section.intro .element{
		display: none;
	}
	.produtos section.intro #tabs .logo #bx-pager{
		padding:0;
		padding-top: 30px;
		text-align: center;
	}
	.produtos section.intro #tabs .logo #bx-pager ul li{
		text-align: center;
		font-size: 18px;
		width: auto;
		display: inline-block;
	}
	.produtos section.intro #tabs .logo #bx-pager ul li a{
		padding: 0 10px;
	}
	.produtos section.intro .tabs_content{
		padding-top: 30px;
	}
	.contactos section.intro .logo .formulario{
		padding: 30px;
		background:#fff;
	}
	.contactos section.intro .logo .formulario{
		width: 70%;
		display: inline-block;
	}
	.contactos section h2{
		text-align: center;
	}
	.contactos section.intro .logo form input, .contactos section.intro .logo form textarea{
		text-align: center;
		background: rgba(0,0,0,0.1)
	}
	
	header nav{
		top: 0;
		left: 0;
		width: 100%;
		max-width: inherit;
	}
	header nav:hover{
		left:0px;
	}
	header nav.open_mobile{
		left: 0px;
	}
	header nav ul{
		max-width: 50px;
		transition: all .2s linear 0s;
		overflow:hidden;

	}
	header nav.open_mobile ul{
		width: auto;
		max-width: 160px;
	}
	header nav ul li{
		
		width: 100%;
	}
	header::before {
		height: 90%;
		top: 5%;
	}
	.contactos section.intro .logo form input, .contactos section.intro .logo form textarea{
		border-radius: 0;
		box-shadow: none;
	}
	.contactos section.intro .logo form input[type="submit"]{
		border-radius: 0;
		box-shadow: none;
	}
	.premiados .bx-wrapper .bx-prev, .premiados .bx-wrapper .bx-next{
		display: none;
	}
}
@media only screen and (max-width: 480px){
	section.intro .element{
		max-width: 50%;
	}
	
	section.intro .logo{
		margin-left: 0;
		padding-right: 0;
	}
	section.intro .logo h1{
		width: 100%;
		font-size: 40px;
		margin-top: 50px;
	}
	.home section.intro .medalha{
		text-align: center;
		left: 0;
		width: 100%;
	}
	.bx-wrapper .bx-controls-direction a.bx-prev{
		left: 4px;
	}
	.bx-wrapper .bx-controls-direction a.bx-next{
		right: 4px;
	}
	section.produtos #tabs > #bx-pager ul li{
		width: 100%;
	}
	
	section.premiados{
		padding-bottom: 20px;
	}
	section.premiados h2{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	body .bx-wrapper .bx-controls-direction a{
		height: 35px;
		width: 15px;
		background-size: cover;
	}
	section.descricao .content{
		width: 90%;
	}
	footer p{
		padding: 20px 40px;
		text-align: center;
	}
	.produtos section.intro #tabs .logo #bx-pager ul li{
		width: 100%;
	}
	.produtos section.intro .logo, .empresa section.intro .logo{
		padding:20px 50px 0;
	}
	.contactos section.intro .logo{
		padding: 20px 0 0;
	}
	.produtos section.intro .tabs_content ul li .bx-pager a{
		width: 100%;
		font-size: 15px;
	}
	.produtos section.intro .tabs_content ul li span{
		height: 40%;
		top: 0;
		left: 25%;
	}
	.contactos section.intro .logo .formulario{
		width: 100%;
	}
	.contactos #map{
		display: none;
	}
	.contactos section.intro{
		background: #f9f9f9;
	}
	.produtos_in section.intro .logo #slide_mobile{
		display: inline-block;
		position: relative;
		width: 100%;
	}
	body.produtos .bx-wrapper ul li .imagem{
		position: inherit;
		width: auto;
		max-width: 100%;
	}
	body.produtos .bx-wrapper ul li .imagem .patente{
		position: absolute;
		right: 0px;
		bottom: 0;
	}
	.produtos_in section.intro .logo #slide_mobile .articulado_mobile{
		position: relative;
		width: 100%;
		margin: 50px 0;
		z-index: 9;
	}
	.produtos_in section.intro .logo #slide_mobile .articulado_mobile .articulado{
		display: inline-block;
		width: 100%;
	}
	body.produtos_in .slide{
		position: relative;
	}
	.produtos_in section.intro .logo #slide_mobile .articulado_mobile .articulado img{
		display: inline-block;
		width: 32%;
		margin-right: 1%;
	}
	.produtos_in section.intro .logo #slide_mobile .articulado_mobile .articulado img:nth-of-type(3n){
		margin-right: 0;
	}
	body.produtos_in .bx-wrapper{
		width: 100%;
	}
	body.produtos .bx-wrapper ul li .imagem > img{
		width: auto;
		max-width: 80%;
		padding-top: 50px;
	}
	.produtos_in section.intro .logo{
		padding: 20px 0 0;
	}
	.produtos_in section.intro .logo .text{
		padding: 50px 20px 0;
		text-align: left;
	}
	.produtos_in section.intro article, 
	.produtos_in section.intro article .composicao, 
	.produtos_in section.intro article .legenda,
	.produtos_in section.intro article .icons{
		position: relative;
		height: auto;
		min-height: inherit;
	}
	.produtos_in section.intro article{
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.produtos_in section.intro{
		background: transparent;
	}
	.produtos_in section.intro article:nth-of-type(1){
		background: url(../images/fundo_mobile.jpg) no-repeat center center;
		background-size: cover;

		
	}
	.produtos_in section.intro article .composicao, .produtos_in section.intro article .legenda{
		width: 60%;
		margin-right: 1%;
		display: inline-block;
		vertical-align: top;
		padding: 0 5%;
	}
	.produtos_in section.intro article .composicao{
		margin-top: 50px;
		width: 39%;
		background-position: center top;
		background-size: cover;
		padding: 0;
		left: inherit;
		top: inherit;
		min-height: inherit;
		background: url(../images/composicao.png) no-repeat center top;
		background-size: 100% auto;
	}
	.produtos_in section.intro article .legenda{
		margin-right: 0;
	}
	.produtos_in section.intro article .legenda ul li{
		font-size: 12px;
		list-style: none;
	}
	.produtos_in section.intro article .composicao .text{
		margin-top: 20%;
	}
	.produtos_in section.intro article .composicao .imagem{
		max-width: 65%;
	}
	.produtos_in section.intro article .legenda ul li span{
		padding: 4px 10px;
	}
	.produtos_in section.intro .logo .medalha{
		padding-bottom: 50px;
	}
	.produtos_in section.intro article .legenda ul{
		margin-left: 3%;
		width: 94%;
	}
	.produtos_in section.intro{
		height: auto;
	}
	.produtos_in section.intro .icons_mobile{

		display: inline-block;
		width: 100%;
		text-align: center;
	}
	.produtos_in section.intro .icons_mobile .icons{
		width: 90%;

		display: inline-block;
	}
	.produtos_in section.intro .icons_mobile .icons ul{
		font-size: 0;
		letter-spacing: 0px;
		display: inline-block;
		width: 100%;
		margin: 20px 0;
	}
	.produtos_in section.intro .icons_mobile .icons ul li{
		display: inline-block;
		width: 5%;
		background-color: #191e42;
		position: relative;
	    mask-repeat: no-repeat;
	    mask-size: cover;
	    margin-right: 1%;
	    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	text-align: center;
	border-radius: 5px;
	}
	.produtos_in section.intro .icons_mobile .icons ul li:nth-of-type(10n){
		margin-right: 0;
	}
	.produtos_in section.intro .icons_mobile .icons ul li:hover{
		background-color: #8e713c;	
	}
	.produtos_in section.intro .icons_mobile .icons ul li span{
		width: auto;
		position: absolute;
		display: inline-block;
		bottom:110%;
		left: 0;
		font-size: 15px;
		padding: 10px;
		display: none;
		text-transform: uppercase;
		background: #fff;
		max-width: 10000px;
		color: #8f723c;
	}
	.produtos_in section.intro .icons_mobile .icons ul li:hover span{

		display: inline-block;
	}
	.produtos_in section.intro .icons_mobile .icons img{
		display: inline-block;
		width: 100%;
		
	}
	.produtos_in section.intro article .legenda::before, .produtos_in section.intro article .legenda::after{
		position: relative;
	}
	.produtos_in section.intro article .legenda::before{
		height: 21px;
	}
	.produtos_in section.intro .icons_mobile .icons ul li{
		width: 9%
	}
	.produtos_in section.intro .fundo{
		background-position: center center;
	}
	header nav.open_mobile ul{
		top: 0;
		left: 0;
	}
	header nav ul{
		overflow-x: hidden;
	}
	header nav > ul > li:hover > ul{
		height: auto;
		opacity: 1;
		min-height: 100%;
		display: none;
	}
	header nav ul{
		overflow: inherit;
	}
	header nav > ul > li > ul.open_mobile{
		display: inline-block;
		overflow:auto;
	}
	header{
		max-width: inherit;
		width: auto;
		overflow: auto;
	}
	header nav{
		top: 0;
		left: 0;
		width: 100%;
		max-width: inherit;
		position: relative;
	}
	header nav:hover{
		left:0px;
	}
	header nav.open_mobile{
		left: -5px;
	}
	header nav ul{
		max-width: 50px;
		transition: all .2s linear 0s;
		overflow:hidden;
		max-height: 50px;

	}
	header nav.open_mobile ul{
		width: auto;
		max-width: 100%;
		max-height: inherit;
		overflow:inherit;
	}
	header nav ul li{
		width: auto;
		max-height: inherit;
	}
	header nav > ul > li > a, header nav > ul > li > p{
		padding: 0 10px;
	}
	header nav.open_mobile ul{
		top: 100%;
		width: 100%;

	}
	header nav.open_mobile ul li ul li ul{
		display: none;
		position: absolute;
		left: 100%;
	}
	header nav.open_mobile ul li ul li ul.open_mobile2{
		display: inline-block;
		position: relative;
		left: inherit;
		opacity: 1;
		width: 100%;
		margin: 10px 0;
		overflow-x: auto;

	}
	header nav.open_mobile ul li ul.open_mobile2 li ul {
		top: 0;
		left: 100%;
	}
	header nav > ul > li > ul:hover{
		display: inline-block;
	}
	header nav > ul > li > ul > li:hover ul, header nav > ul > li > ul > li ul{
		max-width: 10000px;
		opacity: 1;
		width: auto;
		min-width: 100%;

	}
}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
	

}
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : landscape) {
	section.intro .logo{
		padding-right: 0;
		padding-bottom: 70px;
	}
	.produtos section.intro .logo, .contactos section.intro .logo, .produtos section.intro .tabs_content, section.intro .logo{
		padding-left: 50px;
		padding-right: 50px;
	}
	section.intro .logo h1{
		font-size: 50px;
	}
	.bx-wrapper .bx-controls-direction a.bx-prev{
		left: 8px;
	}
	.bx-wrapper .bx-controls-direction a.bx-next{
		right: 8px;
	}
	body .bx-wrapper .bx-controls-direction a{
		height: 35px;
		width: 15px;
		background-size: cover;
	}
	.home section.intro .medalha{
		display: none;
	}
	.produtos section.intro .tabs_content ul li span{
		top: 0;
		left: 25%;

	}
	

}
.clear{
	clear: both;
	float: none;
}
.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}