/* geral */
.hidden{
	display: none !important;
}
.show{
	display: block !important;
}
input,
select,
button,
body{
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-weight: 400;
	font-size: 16px;
}
body{
	background: white;
	color: black;
}
img{
	max-width: 100%;
}
.in{
	max-width: 1600px;
	padding: 0px 15px;
}
.in_med{
	max-width: 1100px;
}
/* headings */
h1{
	font-size: 40px;
	font-weight: 700;
}
h2{
	font-size: 35px;
	font-weight: 700;
}
h3{
	font-size: 30px;
	font-weight: 700;
}
h4{
	font-size: 30px;
}
h5{
	font-size: 25px;
	font-weight: 700;
}
h6{
	font-size: 25px;
}
a{
	color: black;
}
/* texto */
.txt p{
	font-size: 18px;
	min-height: 25px;
	line-height: 25px;
	color: #333;
}
.txt p a{
	color: inherit;
	text-decoration: underline;
}
.txt p strong{
	font-weight: 600;
}
.txt p em{
	font-style: italic;
}

/* radio */
.radio{
	position: relative;
}
.radio input{
	display: none;
}
.radio label{
	padding-left: 30px;
	position: relative;
	height: 30px;
	line-height: 30px;
	cursor: pointer;
}
.radio label:before{
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	box-sizing: border-box;
	border: 2px solid rgba(0,0,0,0.3);
}
.radio label:after{
	content: " ";
	width: 12px;
	height: 12px;
	background: #000;
	position: absolute;
	left: 4px;
	top: 4px;
	border-radius: 100%;
	opacity: 0;
}
.radio input[type=radio]:checked ~ label:after{
	opacity: 1;
}
.radio{
	position: relative;
}
.radio input{
	display: none;
}
.radio label{
	padding-left: 30px;
	position: relative;
	height: 30px;
	line-height: 30px;
	cursor: pointer;
}
.radio label:before{
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	box-sizing: border-box;
	background: rgba(0,0,0,0.3);
}
.radio label:after{
	content: " ";
	width: 9px;
	height: 5px;
	position: absolute;
	left: 4px;
	top: 4px;
	opacity: 0;
	transform: rotate(-45deg);
	border: 3px solid #fff;
	border-top: none;
	border-right: none;
	transform: scale(0,0) rotate(-45deg);
	opacity: 0;
}
.radio input[type=radio]:checked ~ label:after{
	opacity: 1;
	transform: scale(1,1) rotate(-45deg);
}
.radio input[type=radio]:checked ~ label{
	color: #fff;
}
/* checkbox */
.checkbox{
	position: relative;
}
.checkbox input{
	display: none;
}
.checkbox label{
	padding-left: 30px;
	position: relative;
	height: 30px;
	line-height: 30px;
	cursor: pointer;
}
.checkbox label:before{
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	box-sizing: border-box;
	border: 2px solid rgba(0,0,0,0.3);
}
.checkbox label:after{
	content: " ";
	width: 9px;
	height: 5px;
	position: absolute;
	left: 4px;
	top: 4px;
	opacity: 0;
	transform: rotate(-45deg);
	border: 3px solid black;
	border-top: none;
	border-right: none;
}
.checkbox input[type=checkbox]:checked ~ label:after{
	opacity: 1;
}

/* select */
.select{
	background: white;
	border: 2px solid rgba(0,0,0,0.15);
	position: relative;
	display: inline-block;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
}
.select select{
	border: none;
	box-shadow: none;
	background-image: none;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance:  none;
	padding: 10px 40px 10px 10px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
}
.select select:focus{
	outline: none;
}
.select:before{
	content: "";
	width: 10px;
	height: 10px;
	right: 10px;
	top: 50%;
	margin-top: -6px;
	position: absolute;
	transform: rotate(45deg);
	box-sizing: border-box;
	border: 3px solid rgba(0,0,0,0.15);
	border-left: none;
	border-top: none;
}
.select:hover{
	border-color: rgba(0,0,0,0.5);
}
.select:hover:before{
	border-color: rgba(0,0,0,0.5);
}

/* lightbox */
.lb.animated {
	animation-duration: .3s;
}
.lb{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: none;
	overflow-x: hidden;
	overflow-y: auto;
	background: rgba(0,0,0,0.5);
}
.lb_x{
	position: fixed;
	right: 15px;
	top: 15px;
	width: 20px;
	height: 20px;
	padding: 10px;
	z-index: 2;
}
.lb_in{
	z-index: 1;
}
.lb_centro .lb_in{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}
.lb_ct{
	position: relative;
	width: 100%;
}

/* accordion */
ul.acc{
	background: rgba(0,0,0,0.15);
}
ul.acc dt{
	background: rgba(0,0,0,0.15);
	cursor: pointer;
}
ul.acc dd{
	background: rgba(0,0,0,0.3);
	display: none;
}
ul.acc .aberto ~ dd{
	display: block;
	height: auto;
}
/* slider */
.owl-carousel{
	position: relative;
}
.owl-carousel .owl-nav {
	position: absolute;
	background: red;
	height: 0px;
	-webkit-tap-highlight-color: transparent;
	width: 100%;
	top: 50%;
	opacity: 0;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next{
	background: transparent;
	width: 60px;
	height: 60px;
	display: block;
	z-index: 10;
	position: absolute;
	transform: translateY(-50%);
	top: 0;
	opacity: 0.2;
}
.owl-carousel .owl-next{
	left: auto;
	right: 1px;
}
.owl-carousel .owl-prev span,
.owl-carousel .owl-next span{
	position: absolute;
	right: 35%;
	top: 25%;
	width: 50%;
	height: 50%;
	box-sizing: border-box;
	transform: rotate(-45deg);
	border: 5px solid #000;
	border-left: none;
	border-top: none;
}
.owl-carousel .owl-prev span{
	transform: rotate(135deg);
	left: 35%;
	right: auto;
}
.owl-carousel:hover > .owl-nav{
	opacity: 1;
}
.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover{
	opacity: 0.6;
}
.owl-carousel .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	position: absolute;
	width: 100%;
	bottom: 10px;
	height: 25px;
	font-size: 0px;
}
.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
	background: transparent;
	width: auto;
	height: auto;
}
.owl-carousel .owl-dots .owl-dot span {
	width: 15px;
	height: 15px;
	background: rgba(255,255,255,0.25);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
	display: block;
	-webkit-backface-visibility: visible;
	border-radius: 30px;
	margin: 5px;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
	background: white;
}
/*
██████████   ███   ███   ███   ██████████  
██████████░░ ███░░ ███░░ ███░░ ██████████░░
████░░░░░░░░ ███░░ ███░░ ███░░ ████░░░░░░░░
██████████   ███░░ ███░░ ███░░ ██████████  
██████████░░ ███░░ ███░░ ███░░ ██████████░░
░░░░████░░ ███░░ ███░░ ███░░   ░░░░████░░
██████████░░ ███████████████░░ ██████████░░
██████████░░ ███████████████░░ ██████████░░
░░░░░░░░░░  ░░░░░░░░░░░░░░░░   ░░░░░░░░░░
*/
.form_input {
	padding-bottom: 30px;
}
.form_input textarea {
	min-height: 150px;
	width: 100%;
	padding: 10px;
	font-size: 18px;
	font-weight: 300;
	box-sizing: border-box;
	background-color: white;
	border: 1px solid rgba(0,0,0,0.15);
	font-family: 'Source Sans Pro', sans-serif;
}
.form_input input {
	width: 100%;
	font-size: 22px;
	font-weight: 300;
	color: rgba(0,0,0,0.8);
	padding-left: 20px;
	box-sizing: border-box;
	border: 1px solid rgba(0,0,0,0.15);
	padding: 10px 15px;
}
.h_top_in{
	height: 155px;
	background-color: #000000;
}
.h_top .menu_btn{
	padding: 0 30px;
}
.h_top .menu_btn span{
	color: #fff;
	font-size: 19px;
	font-weight: normal;
}
.menu_fixo .menu_btn{
	padding: 0 10px;
}
.menu_fixo .menu_btn span{
	color: white;
	font-size: 20px;
}
.footer{
	background-color:#333333;
	padding: 0 40px;
	margin-left: 90px;
}
.footer > .ct{
	height: 90px;
}
.footer{z-index: 2;}
.h_top{
	z-index: 20;
}
.footer .redes_sociais a{
	opacity: 0.2;
	border-radius: 100%;
	background-color: white;
	display: block;
	padding:5px 6px;
	margin: 0 10px;
}
.footer .redes_sociais img{
	width: 25px;
}
.side_menu{
	position: fixed;
	width: 350px;
	background-color: #c3a459;
	z-index: 3;
	height: 100%;
	padding-top: 155px;
	top: 0;

}
/*.home .side_menu{
	height: calc(100vh - 155px - 0px);
	padding-top: 0;
	position: absolute;
	top: 155px;
	}*/
	.icon-bar a {
		box-sizing: border-box;
		display: block;
		transition: all 0.3s ease;
		color: white;
		position: relative;
		padding: 0;
	}
	.icon-bar a.active{
		background-color: white;
	}
	.icon-bar {
		background-color: #C8A65C;
		width: 90px;
	}
	.abs{
		box-shadow: 0px 4px 2px transparent, 0px -4px 10px transparent;
		box-sizing: border-box;
		position: absolute;
		left: 100%;
		top: 50%;
		transform: translateY(-50%);
		height: 100%;
		background-color: white;
		color: black;
		width: 260px;
		display: none;
	}
	.abs_in{
		top: 50%;
		transform: translateY(-50%);
		position: absolute;
		width: 100%;
		padding: 0 15px 0 35px;
		box-sizing: border-box;
	}
	.abs_in span{
		font-weight: bold;
		font-size: 15px;
	}
	.side_btn:hover .abs{
		display: block;
		box-shadow: 0px 4px 2px rgba(0,0,0,0.3), 0px -4px 10px rgba(0,0,0,0.3);
	}
	.side_btn{
		box-shadow: 0px 4px 2px transparent, 0px -4px 10px transparent;
	}
	.side_btn:hover{
		/*box-shadow: 0px 3px 30px 0px black;*/
		box-shadow: 0px 4px 2px rgba(0,0,0,0.3), 0px -4px 10px rgba(0,0,0,0.3);
	}

	.termos{
		color: #999;
	}
	.termos a{
		padding-top: 5px;
		display: inline-block;
		margin-right: 10px;
	}
	.direitos span,
	.termos a span{
		color: rgba(255,255,255,0.5);
	}
	.termos .it:first-child a{
		margin-right: 45px; 
	}
	.termos .it:last-child a{
		margin-left: 45px; 
	}
	.lang_btn{
		padding: 0 5px;
	}
	.lang_btn.marcado span{
		text-decoration: none;
		color: rgba(255,255,255,1);
	}
	.lang_btn span{
		color: rgba(255,255,255,0.5);
	}
	.redes_sociais span{
		color: rgba(255,255,255,0.5);
	}
	.redes_sociais .it:first-child{
		margin-right: 15px;
	}
	.footer .redes_sociais a:hover{
		opacity: 1;
	}
	.termos a:hover span{
		color: rgba(255,255,255,1);
	}
	.text_home{
		position: absolute;
		top: 50%;;
		/*left: calc(50% + 45px);*/
		left: calc(50% + 0px);
		transform: translate(-50%,-50%);
		text-align: center;

	}
	.text_home h1{
		text-align: center;
		width: 1000px;
		color: white;;
	}
	.text_home .btn{
		margin-top: 50px;
		display: inline-block;
		padding: 0;
		background: transparent;
		height: 45px;
		font-size: 16px;
		color: white;
		border: 1px solid white;
	}
	.text_home .btn span{
		line-height: 45px;
		padding: 0 15px;
	}
	.intro .ct.main{
		padding: 100px 0;
	}
	.intro .in{
	}
	.intro .title{}
	.intro .title h1{
		font-size: 33px;
		line-height: 35px;
		padding-bottom: 15px;
		text-align: justify;
	}
	.areas_page .intro .title h1{
		font-size: 50px;
	}
	.areas_page .intro .title h3{
		font-size: 30px;
	}
	.intro .title h3{
		font-weight: 300;
		padding-bottom: 40px;
		font-size: 25px;
		line-height: 30px;
	}
	.intro .txt{}

	.intro .txt p{
		font-size: 20px;
		line-height: 32px;
		padding-bottom: 30px;
		text-align: justify;
	}
	.destaque .ct{
		align-items: stretch;
	}
	.destaque .wrapper{
		padding: 50px 100px;
		/*position: absolute;*/
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}
	.destaque .bg{
		background-color: #C8A65C;
	}
	.destaque .wrapper h1{
		color: white;
		font-size: 30px;
		padding-bottom: 35px;
	}
	.destaque .wrapper h1 strong{
		font-weight: 300;
		display: block;
	}
	.destaque .wrapper p{
		font-size: 20px;
		line-height: 30px;
		text-align: justify;
	}
	.destaque .wrapper p strong{
		font-weight: bold;
	}
	.info .in > .ct{
		padding: 125px 0;
	}
	.info .title{
		padding-bottom: 50px;
	}
	.info .title h1{
		font-size: 33px;
		color: #c8a65c;
		padding-bottom: 20px;
	}
	.info .title h3{
		font-size: 25px;
		color: #c8a65c;
		font-weight: 400;
		line-height: 28px;
	}
	.destaque .list li p{
		line-height: 20px;
	}
	.destaque .list li{
		margin-bottom: 20px;
		position: relative;
	}
	.areas h3{
		font-size: 24px;
		color: #C8A65C;
		padding-bottom: 20px;
	}
	.areas.inverso .ct{
		background-color: #C8A65C;
	}
	.areas.inverso h3{
		color:white;
	}
	.areas.inverso .list p{
		color:black;
	}
	.areas .list{
		padding-right: 65px;
	}
	.areas .list ul{
	}
	.areas .list li{
		position: relative;
		margin-bottom: 10px;
	}
	.areas .list li p{
		font-size: 16px;
		line-height: 18px;
	}
	.bottom .list{
		padding-left: 50px;
		padding-right: 20px;
	}
	.bottom .w25:first-child{
		padding-right: 80px;
	}
	.areas.p100{
		padding:100px 0;
	}
	.info .list li{
		margin-bottom: 20px;
		position: relative;
	}
	.portfolio_page .list li{
		position: relative;
		margin-bottom: 10px;
	}
	.portfolio_page .list{
		padding-right: 50px;
	}
	.portfolio_page .list li:before,
	.areas .list li:before,
	.destaque .list li:before,
	.info .list li:before{
		position: absolute;
		display: block;
		content:"";
		left:-30px;
		top: 4px;
		width: 3px;
		border: solid #000;
		border-width: 0 2px 2px 0;
		height: 6px;
		transform: rotate(45deg);
	}
	.info .list p{
		font-size: 18px;
		text-align: justify;
		line-height: 22px;
	}
	.info .right{
		padding-right: 60px;
		padding-left: 100px;
	}
	.info .left,
	.info .title_wrapper{
		padding-left: 15px;
		padding-right: 75px;
	}
/*.intro .w70{
	padding-right: 125px;
	}*/
	.intro .w30{
		padding-left: 0;
	}
	.intro .w30 h6{
		font-size: 16px;
		padding-bottom: 15px;
		color: #C8A65C;
	}
	.intro .w30 h3{
		font-size: 18px;
		padding-bottom: 5px;
	}
	.intro .w30 .dl{
		padding-left: 10px;
	}
	.intro .links{
		padding-top: 30px;
	}
	.intro .links li{
		padding-bottom: 10px;
		margin-bottom: 15px;
		border-bottom: 1px solid rgba(0,0,0,0.2);
	}
	.intro .links h1{
		font-size: 15px;
		padding-bottom: 5px;
	}
	.intro .links p{
		font-size: 12px;
	}
	.intro .links li:last-child{
		border: none;
	}
	.menu_fixo {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		color: white;
		background: black;
		z-index: 1000;
		box-shadow: 0 4px 8px rgba(0,0,0,0.3);
		height: 85px;
		margin-top: -100px;
	}
	.menu_fixo .hdestaque .ct{
		height: 85px;
	}
	.fixo .menu_fixo{
		margin-top: 0;
		transition: all 600ms cubic-bezier(0.000,.845,.44,1);
	}
	.links a,
	.intro .w30 .dl a{
		color: rgba(0,0,0,0.7);
	}
	.links a:hover,
	.intro .w30 .dl a:hover{
		color: rgba(0,0,0,1);
	}
	.h_top .menu_btn:hover span{
		font-weight: bold;
		color: #C8A65C;
	}
	.corpo_termos .in,
	.corpo_ral .in{
		max-width: 1000px;
		padding-top: 50px;
		padding-bottom: 50px; 
	}
	.corpo_termos h6,
	.corpo_ral h6{
		font-size: 25px;
		color: #C8A65C;
		padding-bottom: 20px;
	}
	.corpo_termos h3,
	.corpo_ral h3{
		font-size: 35px;
		text-align: center;
		padding-bottom: 40px;
	}
	.corpo_termos .txt,
	.corpo_ral .txt{
		padding-bottom: 30px;
		text-align: justify;
	}
	.home_banner,
	.list_testemunhos,
	.videos,
	.corpo_termos,
	.corpo_ral,
	.areas_banner,
	.artigo_banner,
	.areas.inverso,
	.areas,
	.portfolio_banner,
	.banner_empresa,
	.mapa,
	.contact_page,
	.info,
	.premios,
	.intro,
	.destaque{
		margin-left: 90px;
	}
	.videos{
		padding-bottom: 75px;
	}
	.videos .in{
		padding: 0 15px;
	}
	.videos .it:first-child{
		padding-right: 15px;
	}
	.videos .it:last-child{
		padding-left: 15px;
	}
	.premios .in{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.premios .right{
		padding: 0 30px;
	}
	.premios .title h3{
		padding-bottom: 25px;
	}
	.premios .it.w50:first-child{
		padding-right: 100px;
	}
	.premios .it.w50:last-child{
		padding-left: 100px;
	}
	.contact_page .in{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.contact_page .title{
		padding-bottom: 80px;
	}
	.contact_page .title h1{
		padding-bottom: 20px;
		font-size: 45px;
	}
	.contact_page .title h6{
		font-size: 20px;
		line-height: 22px;
	}
	.form .label{
		padding-bottom: 10px;
	}
	.form_input.telefone{
		padding-right: 25px;
	}
	.form_input.cidade{
		padding-left: 25px;
	}
	.contact_page .content .right{
		padding-top: 26px;
		padding-left: 100px;
	}
	.contact_page .title_morada h6{
		color: #C8A65C;
		padding-bottom: 25px;
		font-weight: bold;
	}
	.contact_page .wrapper{
		padding-bottom: 30px;
	}
	.contact_page .wrapper p{
		line-height: 20px;
		font-size: 18px;
	}
	.contact_page .wrapper a{
		font-size: 18px;
	}
	.contact_page .wrapper .contacto,
	.contact_page .wrapper .morada{
		padding-bottom: 20px;
	}
	.contact_page .wrapper p strong{
		font-weight: bold;
		text-transform: lowercase;
	}
	.send_btn a{
		border: 1px solid #C8A65C;
		display: inline-block;
		background-color: #C8A65C;
		height: 50px;
		padding: 0;
		color: white;
	}
	.send_btn a:hover{
		background-color: white;
		color: #C8A65C;
	}
	.send_btn span{
		line-height: 50px;
		padding: 0 40px;
	}
	#mapa_in{
		height: 450px;
		width: 100%;
	}
	.form_input textarea:hover,
	.form_input input:hover{
		outline: 2px solid #C8A65C;
		cursor: pointer;
	}
	.form_input textarea:focus,
	.form_input input:focus{
		outline: 2px solid #C8A65C;
	}
	.side_btn img {
		width: 50px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.h_top .first img{
		max-width: 50%;
	}
	.h_top .first{
		text-align: center;
	}
	.hdestaque .ct{
		height: 155px;
		background: #c3a459;
		text-align: center;
		padding: 20px 0;
	}
	.hdestaque .horas{
		display: inline-block;
		color: white;
		font-size: 35px;
		font-weight: 900;
		margin-right: 5px;
	}
	.hdestaque .piquete{
		display: inline-block;
		color: white;
		font-weight: bold;
	}
	.hdestaque .numero{
		height: 35px;
		display: inline-block;
		padding:0;
		color: #c3a459;
		background: white;
		font-size: 22px;
		font-weight: 900;
	}
	.hdestaque .numero span{
		line-height: 35px;
		padding: 0 10px;
	}
	.home_banner{
		background-size: cover;
		background-position: center center;
		height: calc(100vh - 155px - 0px);
	}
	.intro .frase p{
		font-weight: 600;
		padding-top: 30px;
		font-size: 18px;
	}
	.empresa_page .intro .title h3{
		color: #c3a459;
	}
	.energetica .destaque .wrapper h1 b{
		font-weight: 600;
	}
	.auditoria .info .title,
	.software .info .title{
		padding-bottom: 0;
	}
	.menu_resp{
		display: none;
	}
	.auditoria .info .mid{
		padding: 0 25px;
	}
	.auditoria .info .left{
		padding-right: 45px;
	}
	.auditoria .info .right{
		padding-left: 45px;
	}
	.auditoria .info .txt p{
		font-size: 18px;
		padding-bottom: 20px;
	}
	.portfolio_page .areas h6{
		font-size: 22px;
		color: #C8A65C;
		padding-bottom: 10px;
		font-weight: bold;
	}
	.portfolio_page .areas p{
		font-size: 17px;
	}
	.portfolio_items{
		padding-right: 100px;
	}
	.portfolio_items li{
		margin-bottom: 20px;
	}
	.portfolio_page .areas.inverso h6{
		color: white;
	}
	.artigo .info .in{
		padding-left: 40px;
		padding-right: 40px;
	}
	.stretch{
		align-items: stretch;
	}
/*.intro .w30{
	max-width: 40%;
	width: 40%;
	}*/
	.intro .w30 .target_inline{
		max-width: 360px;
		display: inline-block;
	}
	.back-img{
		background-size: cover;
		background-position: center center;
	}
	.p50{
		padding: 50px 0;
	}
	.portfolio_page .intro .main{
		padding-left: 35px;
	}
	.js_margin{
		margin-left: 50px;
	}
	.portfolio_page .inverso .right .ct{
		padding-left: 50px;
	}

	.portfolio_page .intro .left{
		padding-left: 35px;
	}
	.areas_page .areas.inverso .right .ct,
	.areas_page .areas .left .ct{
		padding-left: 80px;
	}

	.text_home .btn:hover{
	}
	.text_home .btn:hover span{
		padding: 0 30px;
	}
	.artigo .destaque .wrapper{
		padding: 75px 100px;
	}
	.software .info h1 {
		font-size: 33px;
		color: #c8a65c;
		padding-bottom: 20px;
	}
	.software .info .right{
		padding-left: 0;
	}

	.software .info .right h1{
		font-size: 27px;
		padding-left: 30px;
	}
	.remodelacoes .destaque .wrapper h1,
	.energetica .destaque .wrapper h1{
		font-weight: normal;
		line-height: 30px;
		padding-bottom: 0;
		font-size: 24px;
	}
	.artigo.remodelacoes .destaque .wrapper,
	.artigo.energetica .destaque .wrapper{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.fcasaislogo{
		margin-left: 40px;
		opacity: 0.4;
	}
	.fcasaislogo img{
		width: 100px;
	}
	.fcasaislogo:hover{
		opacity: 1;
		cursor: pointer;
	}

	.side_menu.resp{
		position: absolute;
		height: calc(100vh - 70px - 0px);
		top: 70px;
	}
	.menu_resp .menu_btn.marcado span{
		font-weight: 600;
	}
	.menu_fixo .menu_btn.marcado span,
	.h_top .menu_btn.marcado span{
		color: #C8A65C;
		font-weight: 900;
	}

	#erro1, #erro2, #sucesso {
		z-index: 10000;
		display: none;
		position: fixed;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		width: 350px;
		height: 120px;
		box-sizing: border-box;
		padding: 30px;
		font-size: 22px;
		background-color: white;
		text-align: center;
		line-height: 30px;
	}

	#erro1, #erro2 {
		border: 1px solid red;
		color: red;
	}
	.overlay_loading {
		position: fixed;
		background: rgba(0,0,0,0.15);
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		display: none;
	}
	#sucesso {
		border: 1px solid green;
		color: green;
	}
	.files span{
		font-size: 16px;
	}
	.fecha_not {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 30px;
		height: 30px;
	}
	.fecha_not:hover{
		cursor: pointer;
		background-color: rgba(0,0,0,0.03);
	}
	.servicos_tecnicos .destaque strong,
	.servicos_tecnicos .info .list strong,
	.servicos_tecnicos .main .txt strong{
		display: block;
		font-size: 22px;
		color: #C8A65C;
		padding-bottom: 10px;
		font-weight: bold;
	}
	.servicos_tecnicos .destaque strong{
		color: black;
	}
	.fotovoltaico .destaque .list{
		margin-top: 20px;
		margin-bottom: 15px;
	}
	.fotovoltaico .info p{
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 20px;
	}
	.servicos_tecnicos .destaque p{
		font-size: 20px;
		line-height: 32px;
		padding-bottom: 30px;
		text-align: justify;
	}
	.artigo_resp{
		display: none;
	}
	.menu_btn.lang_resp a.marcado{
		border-width: 2px; 
	}
	.lang_btn:hover span{
		color:rgba(255,255,255,1);
	}
	.h_top .menu_padding_left{
		padding-right: 130px;
	}

	.menu_resp .artigo_resp img {
		width: 35px;
		position: absolute;
		top: 50%;
		left: 10px;
		display: inline-block;
		transform: translateY(-50%);
	}
	.direcoes{
		display: none;
		text-align: left;
		margin-top: 20px;
	}
	.direcoes .btn{
		display: inline-block;
		padding: 0;
		background: black;
		color: white;
		height: 50px;
	}

	.direcoes span{
		padding:0 20px;
		line-height: 50px;
	}
	#erro1 p ,
	#erro2 p ,
	#sucesso p {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
		padding: 0 10px;

	}
	.corpo_ral .txt p strong{
		color: #c3a459;
	}
	.list_testemunhos .ct{
		padding-bottom: 80px;
	}
	.list_testemunhos .it{
		padding: 30px 0;
		text-align: left;
	}
	.list_testemunhos .it:first-child{
		padding-right: 30px;
	}
	.list_testemunhos .it:nth-child(2),
	.list_testemunhos .it:nth-child(4){
		padding-left: 30px;
	}
	.portfolio_page.clientes .list li{
		margin-bottom: 20px;
	}
	.aspa{
		height: 35px;
		margin-bottom: 10px;
	}
	.list_testemunhos strong{
		font-size: 18px;
		font-weight: 500;
		line-height: 22px;
	}
	.testemunhos .intro .ct.main{
		padding: 70px 0 40px;
	}
	.hlogo img{
		max-width: 150px; 
	}
	.clientes .main .w25{
		padding-left: 35px;
	}

	.certificados a{
		display: inline-block;
		margin-right: 5px;
		opacity: 0.5;
		position: relative;
	}
	.certificados a:hover{
		opacity: 1;
		transform: scale(1.8,1.8) translateY(-15px);
		z-index: 2;
	}

	.certificados a img{
		width: 40px;
	}

	.anexos_base a{
		display: block;
		font-size: 0px;
		margin-bottom: 10px;
		max-width: 400px;
		white-space: nowrap;
	}
	.anexos_base a span,
	.anexos_base a div{
		display: inline-block;
		vertical-align: middle;
		white-space: normal;
	}
	.anexos_base a span img{
		width: 80px;
	}
	.anexos_base a strong,
	.anexos_base a em{
		margin-left: 40px;
	}
	.anexos_base a strong{
		font-size: 25px;
		display: block;
		margin-bottom: 20px;
	}
	.anexos_base a em{
		display: inline-block;
		font-size: 20px;
		color: #C8A65C;
		padding: 10px 20px;
		background: rgba(0,0,0,0.05);
	}

	.anexos_base a:hover > div strong{
		opacity: 0.7;
	}

	.anexos_base a:hover > div em{
		background: rgba(0,0,0,0.1);
		color: #000;
	}

	.anexos_base a:hover > span{
		transform: scale(1.05,1.05);
	}


	.logo_rl{
		width: 90px;
		opacity: 0.4;
	}
	.logo_rl:hover{
		opacity: 1;
	}
	.logo_rl img{
		max-width: 100%;
	}





