@font-face {
	font-family: 'Roboto-Black';
	font-weight: normal;
	font-style: normal;
	src: url(../fonts/Roboto-Black.woff) format('woff');
}
@font-face {
	font-family: 'Roboto-Regular';
	font-weight: normal;
	font-style: normal;
	src: url(../fonts/Roboto-Regular.woff) format('woff');
}
@font-face {
	font-family: 'Roboto-Light';
	font-weight: normal;
	font-style: normal;
	src: url(../fonts/Roboto-Light.woff) format('woff');
}
@font-face {
	font-family: 'Roboto-Thin';
	font-weight: normal;
	font-style: normal;
	src: url(../fonts/Roboto-Thin.woff) format('woff');
}

html, body{
	width: 100%;
	height: 100%;
    position: relative;
}

body{
	background-color: #fff;
}


.left{ text-align: left; }
.center{ text-align: center; }
.right{ text-align: right; }

.no_mar{ margin: 0 !important; }
.no_pad{ padding: 0 !important; }

a:hover,
a:active,
a:focus{
	outline: 0;
	text-decoration: none;
}

/*==================================================================================================*/
/*MISC*/
/*==================================================================================================*/


button.v1{
    font-family: "Roboto-Regular";
    border: 2px solid #fff;
    padding: 0 26px;
    height: 50px;
    min-width: 220px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
    background: transparent;
}

button.v1.black{
    border: 2px solid #2a2a2a;
    color: #2a2a2a;
}

button.v1:hover{
    background: rgba(255, 255, 255, 0.2);
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}


@media screen and (max-width: 992px) {
	
	button.v1{
		height: 40px;
		min-width: 150px;
	}
}

/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/


.menu_holder{
	position: fixed;
	top: 0;
	background: #000;
	padding: 10px 2%;
	width: 100%;
	height: 66px;
	z-index: 2;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.menu_holder.white{
	background: #fff;
	border-bottom: 1px solid rgba(132, 131, 131, 0.85);
}

.menu_holder .navbar-header{
    display: inline-block;
	position: absolute;
	top: 9px;
}

.menu_holder .navbar-header img{
    width: 90px;
}

/*
.menu_holder.white .navbar-header img{
	-webkit-filter: invert(0.5);
	filter: invert(0.5);
}
*/

.menu_holder .menu-toggler{
	position: absolute;
	background: transparent;
	border: 0;
	width: 35px;
	top: 20px;
	right: 15px;
    cursor: pointer;
    
	display: none;
}

.menu_holder .menu{
	background: transparent;
    display: inline-block;
	margin: 10px 0 0 50px;
	float: right;
}

.menu_holder .menu-nav{
	list-style: none;
	margin: 0;
}

.menu_holder .menu-nav .dropdown{
    display: inline-block;
    padding: 0 15px 0;
    cursor: pointer;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.menu_holder.white .menu-nav .dropdown{
    padding: 0 15px;
}

.menu_holder .menu-nav .dropdown:not(:last-child){
    border-right:  1px solid rgba(255, 255, 255, 0.2);
}

.menu_holder.white .menu-nav .dropdown:not(:last-child){
	border-right: 1px solid rgba(132, 131, 131, 0.2);
}

.menu_holder .menu-nav .dropdown a{
	font-family: 'Roboto-Black';
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
}

.menu_holder.white .menu-nav .dropdown a{
	color: rgba(132, 131, 131, 0.85);
}

.menu_holder .menu-nav .dropdown.language a{
	color: #298e2a;
}

.menu_holder .menu-nav .dropdown a:hover, 
.menu_holder .menu-nav li.active > a, 
.menu_holder .menu-nav li.active:hover > a {
    color: #fff !important;
	text-decoration: none !important;
}

.menu_holder.white .menu-nav .dropdown a:hover{
	color: rgba(132, 131, 131, 1) !important;
}

.menu_holder.white .menu-nav li.active > a, 
.menu_holder.white.menu-nav li.active:hover > a {
	color: #666565!important;
}


@media screen and (min-width: 993px) {
	
	.menu_holder .menu {
		display: inline-block !important;
	}
	
}

@media screen and (max-width: 992px) {
	
	.menu_holder {
		padding: 10px 15px;
		min-height: 66px;
		height: auto;
	}
	
	.menu_holder .container{
		padding: 0 20px;
		width: 90%;
	}
	
	.menu_holder .navbar-header img{
		width: 80px;
	}
	
	.menu_holder .menu-toggler{
		display:block;
	}
	
	.menu_holder .menu {
		margin: 60px 0 0px;
		width: 100%;
		
		display: none;
	}
	
	.menu_holder .menu-nav {
		padding: 0;
	}
	
	.menu_holder .menu-nav .dropdown {
		display: block;
		width: 100%;
		margin: 15px 0;
		border: 0 !important;
		padding: 0 15px;
	}

	.menu_holder .menu-nav .dropdown a{
		font-size: 14px;
		color: #848383;
	}
}


/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/


.banner{
	position: relative;
	width: 100%;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.banner ul{
	width: 100%;
	padding: 0;
	list-style: none;
}

.banner ul img{
	width: 100%;
}

.banner ul li{
	width: 100%;
	
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.banner.internas li {
    height: 450px;
	background-position: top center;
}

.banner #slider_home .owl-controls {
    width: 100%;
    text-align: center;
}

.banner #slider_home .owl-dots {
    position: absolute;
    bottom: -30px;
    text-align: center;
    margin: -25px auto 0;
    left: 0;
    right: 0;
}

.banner #slider_home .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 100%;
	border: 2px solid #000;
    background: transparent;
}

.banner #slider_home .owl-dots .owl-dot.active {
    background: #000;
}


.banner .conteudo{
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    text-align: center;
	width: 80%;
	margin: auto;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.banner .conteudo .nome{
	font-family: 'Roboto-Regular';
	color: #fff;
	font-size: 37px;
	margin-bottom: 35px;
	line-height: 40px;
}

@media screen and (max-width: 992px) {
	
	.banner,
	.banner ul li,
	.banner.internas li {
		height:290px;
	}
	.banner ul img{
		display: none !important;
	}
	.banner .conteudo {
		top: 40%;
		width: 70%;
	}
	.banner .conteudo .nome {
		font-size: 4vW;
		line-height: initial;
	}
}

@media screen and (max-width: 470px) {
	
	.banner .conteudo{
		width: 100%;
		padding: 0 5%;
	}	
	.banner .conteudo .nome {
		font-size: 18px;
	}
}


/*==================================================================================================*/
/*BLOCOS*/
/*==================================================================================================*/


.bloco{
	position: relative;
	width: 100%;
	padding: 45px 0 85px;
	overflow: hidden;
}

.bloco.clearfix{
	padding: 35px;
}

.bloco.bg{
	background: url('/site/imagens/bg_bloco.jpg') no-repeat center / cover;
	display: flex;
}

.bloco.center{
	text-align: center;
}

.bloco.midder {
    width: 100%;
    height: 650px;
    position: relative;
	
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.bloco.midder .conteudo {
    width: 100%;
    top: 40%;
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}



.bloco h2{
	font-family: "Roboto-Light";
	font-size: 31px;
	color: #343434;
}

.bloco h3{
    font-family: "Roboto-Black";
    font-size: 15px;
    color: #292929;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bloco h4{
    font-family: "Roboto-Thin";
    font-size: 87px;
    color: #fff;
    text-transform: uppercase;
}

.bloco p{
	font-family: "Roboto-Regular";
	font-size: 17px;
	color: #6b6b6b;
}

.bloco strong,
.bloco b{
	font-family: "Roboto-Black";
}

.bloco .row{
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 992px) {

	.bloco{
		padding: 40px 0;
	}
	.bloco.bg{
		display: block;
	}
	.bloco.midder {
		height: 400px;
	}
	.bloco.midder .conteudo {
		top: 30%;
	}
	
	
	.bloco h2{
		font-size: 22px;
	}	
	.bloco h4{
		font-size: 37px;
	}
	.bloco p{
		font-size: 14px;
	}
}


/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/


.separador_missao_visao {
    height: 100%;
}

.separador_missao_visao span {
    border-right: 1px solid #c7c7c7;
    height: 100%;
    display: inline-block;
}

@media screen and (max-width: 992px) {

	.separador_missao_visao{
		display: none;
	}
}


/*==================================================================================================*/
/*SERVICOS*/
/*==================================================================================================*/


.row_servicos{	
	display: flex;
}

.holder_conteudo_servicos{	
	display: flex;
}

.holder_conteudo_servicos .conteudo_servicos {
    margin: auto;
    width: 70%;
}

@media screen and (max-width: 992px) {
	
	.row_servicos,
	.holder_conteudo_servicos{	
		display: block;
	}
}


/*==================================================================================================*/
/*PORTFOLIO*/
/*==================================================================================================*/


.holder_filtros_portfolio{
    background: #171717;
    overflow: hidden;
    font-family: "Roboto-Black";
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
}

.holder_filtros_portfolio.interno{
    padding: 20px 0;
}

.holder_filtros_portfolio .filtro_portfolio{
    padding: 20px 0;
	cursor: pointer;
}

.holder_filtros_portfolio .filtro_portfolio.active,
.holder_filtros_portfolio .filtro_portfolio:hover{
	background: #dbdbdb;
	color: #171717;
}

.item_portfolio{
	padding: 0;
	height: 450px;
	
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.item_portfolio .above{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	text-align: center;
	padding: 130px 0;
	
	display: none;
}

.item_portfolio .above p{
    font-family: "Roboto-Black";
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
}

.holder_slide_portfolio ul{
    width: 100%;
    padding: 0;
    list-style: none;
}

.holder_slide_portfolio li {
	width: 100%;
    height: 600px;
	
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.holder_slide_portfolio li img{
    image-orientation: from-image;
    height: 600px;
    width: auto !important;
    margin: auto;
}

.holder_slide_portfolio #slider_portfolio .owl-controls {
    width: 100%;
    text-align: center;
}

.holder_slide_portfolio #slider_portfolio .owl-dots {
    position: absolute;
    bottom: 20px;
    text-align: center;
    margin: -25px auto 0;
    left: 0;
    right: 0;
}

.holder_slide_portfolio #slider_portfolio .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 100%;
	border: 2px solid #fff;
    background: transparent;
}

.holder_slide_portfolio #slider_portfolio .owl-dots .owl-dot.active {
    background: #fff;
}

@media screen and (max-width: 992px) {

	.item_portfolio{
		height: 220px;
	}

	.item_portfolio .above{
		padding: 50px 0;
	}
}


/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/


.holder_contactos{
	padding-left: 15%;
}

.holder_contactos .flex{
	display: flex;
}

.holder_contactos img{
	height: 41px;
	margin-right: 17px;
}

#form_contactos{
	margin: 25px 0 45px;
}

#form_contactos input,
#form_contactos textarea{
    border: 0;
    background: transparent;
    border-bottom: 2px solid #c4c4c4;
    width: 100%;
    padding: 9px 3px;
	font-family: "Roboto-Regular";
	font-size: 15px;
	color: #6b6b6b;
}

#form_contactos button{
	background: #000;
}

@media screen and (max-width: 992px) {
	
	.holder_contactos{
		padding-left: 15px;
		margin-bottom: 85px;
	}
}


/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/


.footer .row,
.footer .holder_conteudo{
	display: flex;
	background: #c4c4c4;
}

.footer .holder_conteudo .conteudo{
    margin: auto;
    width: 70%;
}

.holder_gmaps {
    position: relative;
    width: 100%;
    height: 550px;
}

.gmaps_blocker {
    background: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    cursor: pointer;
}

#googleMap {
    width: 100%;
    height: 550px;
}

.holder_gmaps.contactos,
.holder_gmaps.contactos #googleMap{
    height: 1000px;
}

.lower_footer{
	background: #171717;
	padding: 45px 0;
}

.lower_footer p,
.lower_footer a{
	color: #fff;
}

#slider_home .owl-prev{
	position: absolute;
    top: 51%;
    left: 30px;
}

#slider_home .owl-next{
	position: absolute;
    top: 51%;
    right: 30px;
}

#slider_home .owl-prev i{
	font-size:45px;
	color:#fff;
}

#slider_home .owl-next i{
	font-size:45px;
	color:#fff;
}

#slider_home .owl-prev img{
	width: 50px;
}

#slider_home .owl-next img{
	width: 50px;
}

.redes_sociais_footer{
	margin: 20px 0;
}

.redes_sociais_footer a{
	width: 35px;
	margin: 0 10px;
}

.redes_sociais_footer img{
	width: 35px;
}

@media screen and (min-width: 1565px) {
	
	.banner.internas li{
		height: 550px;
	}
	
}

@media screen and (max-width: 992px) {
	
	.footer .row {
		display: block;
	}
	
	.footer .holder_conteudo{
		display: block;
		padding: 85px 0;
	}
	
	.holder_gmaps.contactos, 
	.holder_gmaps.contactos #googleMap,
	.holder_gmaps,
	#googleMap {
		height: 400px;
	}
	
	#slider_home .owl-prev img,
	#slider_home .owl-next img{
		display:block !important;
	}
	
}

@media screen and (max-width: 768px) {
	#slider_home .owl-next i,
	#slider_home .owl-prev i{
		font-size:35px;
	}
	
}

@media screen and (max-width: 500px) {
	
	#slider_home .owl-next i,
	#slider_home .owl-prev i{
		font-size:30px;
	}
	
	#slider_home .owl-prev{
		position: absolute;
		top: 50%;
		left: 20px;
	}


	#slider_home .owl-next{
		position: absolute;
		top: 50%;
		right: 20px;
	}
	
}
