*{
	margin: 0px;
	padding: 0px;
}
body{
	font-family: 'Montserrat', sans-serif;
}
.topo-todo{
	width: 100%;
	position: absolute;
	z-index: 999;
	/*height: 90vh;*/
/*	background-image: url(../img/banner-home.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;*/
}
.topo{
	width: 80%;
	margin: 0px auto;
	padding: 50px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo{
	width: 179px;
	height: 35px;
}
.menu-mobile{
	width: 100%;
	display: none;
	position: absolute;
	z-index: 99999;
}
ul.menu{
	width: auto;
	display: flex;
	margin-left: 40px;
	position: relative;
}
ul.menu li{
	list-style: none;
	margin: 0px 10px;
}
@media screen and (max-width: 960px){
	ul.menu li{
		margin: 0px 0px;
	}
}
@media screen and (max-width: 870px){
	.topo{
		flex-direction: column;
	}
	.logo{
		margin-bottom: 20px;
	}
	ul.menu{
		margin-left: 0px;
	}
	ul.menu li{
		margin: 0px 10px;
	}
}
ul.menu li a{
	color: #FFF;
	text-decoration: none;
	font-size: 0.9em;
	font-weight: 300;
	padding: 10px 10px;
	text-transform: uppercase;	
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
ul.menu li a:hover{
	color: #DC713B;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
ul.menu li  ul{
	position: absolute; 
	top: 20px; 
	left: 20%;
	display: none;
	z-index: 9999;
}
ul.menu li:hover ul, .menu li.over ul{
	display: block;
}
ul.menu li ul li{
	border-bottom: 1px solid #FFF;
	padding: 10px 0px;
	display: block; 
	width: auto;
	text-align: center;
}
@media screen and (max-width: 768px){
	.topo{
		width: 90%;
		padding: 60px 0px 0px 0px;
	}
	ul.menu{
		display: none;
	}
	.menu-mobile{
		display: block;
	}
}
.bt-topo{
	text-transform: uppercase;
	border: 1px solid #DC713B;
	color: #DC713B!important;
}
.area-info{
	width: 70%;
	height: calc(100% - 75px);
	margin: 0px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.area-info h1{
	font-weight: 500;
	font-size: 3em;
	text-align: center;
	color: #FFF;
}
@media screen and (max-width: 960px){
	.area-info{
		width: 90%;
	}
	.area-info h1{
		font-size: 2em;
	}
}
.area-info p{
	text-align: center;
	line-height: 30px;
	color: #FFF;
	font-weight: 300;
	margin: 20px 0px;
}
.bt-info{
	background-color: #DC713B ;
	padding: 10px 20px;
	color: #FFF;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.bt-info:hover{
	background-color: #003333;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.caixas-banner{
	width: 80%;
	height: 130px;
	z-index: 9999;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: stretch;
	margin: -65px auto 0px auto;
	background-color: #003333;
}
@media screen and (max-width: 998px){
	.caixas-banner{
		width: 90%;
	}
}
@media screen and (max-width: 768px){
	.caixas-banner{
		width: 100%;
		height: auto;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		margin: 0px auto;
	}
}
.item-caixa-banner{
	width: 25%;
	height: 130px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}
.borda-caixa{
	border-right: 0.5px solid #bebebe;
}
@media screen and (max-width: 768px){
	.caixas-banner{
		width: 100%;
		height: auto;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		margin: 0px auto;
	}
	.item-caixa-banner{
		width: 100%;
		height: auto;
		padding: 20px 0px;
	}
	.borda-caixa{
		border-right: none;
		border-bottom: 0.5px solid #bebebe;
	}
}
.item-caixa-banner h3{
	width: 85%;
	margin: 0px auto;
	text-align: center;
	font-weight: 300;
	font-size: 1em;
	color: #fff;
}
.item-caixa-banner a{
	color: #FFF;
	text-decoration: none;
}
.servico-home{
	width: 100%;
	margin: 0px auto;
	padding: 40px 0px;
	text-align: center;
}
.servico-home h1{
	display: block;
	color: #003333;
	text-align: center;
	padding-bottom: 15px;
	cursor: pointer;
}
.servico-home-todo{
	width: 100%;
	background-color: #f8f9fa;
}
.servico-home hr{
	width: 40px;
	height: 5px;
	margin: 0px auto;
	border: none;
	background-color: #DC713B;
}
.area-servico-home{
	width: 100%;
	padding: 60px 0px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	align-content: stretch;
	flex-wrap: wrap;
}
.icones-servico-home{
	width: 25%;
	display: flex;
	margin: 0px 30px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.icones-servico-home img{
	max-height: 110px;
	padding-bottom: 10px;
}
@media screen and (max-width: 350px){
	.icones-servico-home img{
		width: 50%;
	}
}
.icones-servico-home h1{
	color: #003333;
	font-weight: 400;
	font-size: 1.3em;
	padding: 10px 0px;
}
.icones-servico-home p{
	/*height: 170px;*/
	color: #161616;
	font-weight: 300;
	font-size: 1.4em;
	text-align: justify;
	line-height: 25px;
}
@media screen and (max-width: 970px){
	.icones-servico-home{
		width: 40%;
		margin: 0px 30px;
	}
}
@media screen and (max-width: 768px){
	.servico-home{
		width: 90%;
		flex-direction: column;
		padding: 40px 0px;
	}
	.icones-servico-home{
		width: 90%;
		margin: 40px 0px;
	}
	.icones-servico-home p{
		height: auto;
	}
}
.icones-servico-home a{
	margin: 20px 0px 10px 0px;
	padding: 10px 20px;
	text-decoration: none;
	border: 1px solid #DC713B;
	color: #DC713B;
	transition: all 0.3s;
}
.icones-servico-home a:hover{
	border: 1px solid #003333;
	background-color: #003333;
	color: #FFF;
	transition: all 0.3s;
}
.sobre-home{
	width: 80%;
	margin: 0px auto;
	padding: 60px 0px;
	display: flex;
	justify-content: space-between;
}
.sobre-home-texto{
	width: 40%;
}
.sobre-home-texto{
	width: 40%;
}
.topo-sobre-home-texto{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 15px;
}
.topo-sobre-home-texto h6{
	font-size: 1.3em;
	font-weight: 400;
	color: #666666;
}
.linha-topo{
	width: 40px;
	height: 5px;
	border: none;
	background-color: #DC713B;
	margin: 0px 10px;
}
.sobre-home-texto h1{
	color: #003333;
}
.sobre-home-texto p{
	color: #161616;
	font-weight: 300;
	font-size: 1.4em;
	line-height: 30px;
	margin-top: 15px;
	text-align: justify;
}
.sobre-home-texto a{
	color: #DC713B;
	text-decoration: none;
	font-weight: 600;
}
.sobre-home-img{
	width: 50%;
	background-image: url(../img/img2.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
}
@media screen and (max-width: 854px){
	.sobre-home{
		width: 90%;
	}
	.sobre-home-texto p{
		height: 210px;
		overflow: hidden;
	}
	.sobre-home-img{
		width: 55%;
	}
}
@media screen and (max-width: 660px){
	.sobre-home{
		flex-direction: column;
	}
	.sobre-home-texto{
		width: 100%;
	}
	.sobre-home-img{
		width: 100%;
		height: 400px;
		background-position: bottom;
		margin-top: 20px;
	}
}
.todo-portfolio-home{
	width: 100%;
	padding: 60px 0px;
}
.todo-portfolio-home h1{
	display: block;
	color: #003333;
	text-align: center;
	padding-bottom: 15px;
}
.todo-portfolio-home hr{
	width: 40px;
	height: 5px;
	margin: 0px auto;
	border: none;
	background-color: #DC713B;
}
.todo-portfolio-home p{
	width: 60%;
	margin: 40px auto;
	color: #003333;
	text-align: center;
	font-size: 1.3em;
	font-weight: 300;
	line-height: 30px;
}
.galeira-portfolio-home{
	display: flex;
	flex-wrap: wrap;
}
.galeira-portfolio-home img{
	width: 25%;
}
@media screen and (max-width: 960px){
	.galeira-portfolio-home img{
		width: 33.33%;
	}
}
@media screen and (max-width: 500px){
	.galeira-portfolio-home img{
		width: 50%;
	}
}
@media screen and (max-width: 350px){
	.galeira-portfolio-home img{
		width: 100%;
	}
}
.rodape-todo{
	width: 100%;
	background-color: #003333;
	padding: 20px 0px;
}
.rodape{
	width: 80%;
	margin: 0px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.rodape img{
	width: 179px;
	height: 35px;
}
.rodape p{
	color: #FFF;
	text-align: left;
	font-weight: 300;

	cursor: pointer;
}

.rodape p a{
	color: #FFF;
}
.redes-rodape{
	display: flex;
	justify-content: center;
	/*align-items: center;*/
}
.redes-rodape img{
	width: 34px;
	height: 34px;
	margin: 0px 5px;
}
@media screen and (max-width: 800px){
	.rodape{
		flex-direction: column;
	}
	.rodape img{
		margin-bottom: 20px;
	}
	.rodape p{
		margin-bottom: 20px;
	}
}
a.link-mais-servico{
	margin-top: 40px;
	color: #DC713B;
	border: 1px solid #DC713B;
	text-decoration: none;
	padding: 10px 20px;
	text-align: justify;
	transition: all 0.3s;
}
a.link-mais-servico:hover{
	color: #fff;
	background-color: #DC713B;
	transition: all 0.3s;
}
/*DC713B laranja
003333 azul
666666 cinza*/
.traducao{
	position: absolute;
/*	margin-top: -135px!important;
	margin-left: 5px;*/
}
.traducao{
	list-style:none; 
	float:left;
	display: flex;
	/*margin-bottom: 5px;*/
}
@media screen and (max-width: 450px){
	.traducao{
/*		float: none;
		display: block;
		position: relative;
		margin-top: 0px!important;
		top: -60px;
		left: 8px;
		margin-left: auto;
		margin-right: auto;*/
	}
}
.traducao li{
	position:relative; 
	float:left; 
}
.traducao li a{
	color: #333333;
	text-decoration: none;
	padding: 5px 5px;
	display: block;
} 
.traducao li a:hover{
	color: #FFFFFF; 
	-moz-box-shadow: 0 3px 10px 0 #CCC; 
	-webkit-box-shadow: 0 3px 10px 0 #ccc; 
	text-shadow: 0px 0px 5px #fff; 
}
.traducao li  ul{
	position: absolute; 
	top: 100%; 
	left: 0;
	display: none;
}
.traducao li:hover ul, .traducao li.over ul{
	display: block;
}
.traducao li ul li{
	display: block; 
	width: 100%;
}
@media screen and (max-width: 500px){
	.traducao{
		width: 100%;
		position: absolute;
		float: none;
		text-align: center;
		display: flex;
		justify-content: center;
	}
	.traducao li{
		position:relative; 
		float:none; 
	}
}
.texto-banner-novo{
	position:relative;
	width:80%;
	margin: 20% auto 0px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index:0;
	padding:5px;
	box-sizing:border-box;
}
.texto-banner-novo h1{
	color: #FFFF!important;
	font-size: 1.6em;
	font-weight:400;
	color:#000000;
	line-height:35px;
	text-align: center;
}
@media screen and (max-width: 998px){
	.texto-banner-novo h1{
		font-size: 2em;
	}
}
@media screen and (max-width: 768px){
	.texto-banner-novo{
		display: none;
	}
}