@font-face {
	font-family: 'GothamBook';
	font-weight: normal;
	font-style: normal;
	src: url(/site/fonts/Gotham/Gotham-Book.otf) format("opentype"),
		 url(/site/fonts/Gotham/GothamTrueType/Gotham-Book.ttf) format('truetype');
	font-display: swap;
}

@font-face {
	font-family: 'GothamBold';
	font-weight: normal;
	font-style: normal;
	src: url(/site/fonts/Gotham/Gotham-Bold.otf) format("opentype"),
		 url(/site/fonts/Gotham/GothamTrueType/Gotham-Bold.ttf) format('truetype');
	font-display: swap;
}

@font-face {
	font-family: 'GothamMedium';
	font-weight: normal;
	font-style: normal;
	src: url(/site/fonts/Gotham/Gotham-Medium.otf) format("opentype"),
		 url(/site/fonts/Gotham/GothamTrueType/Gotham-Medium.ttf) format('truetype');
	font-display: swap;
}

@font-face {
	font-family: 'GothamThin';
	font-weight: normal;
	font-style: normal;
	src: url(/site/fonts/Gotham/Gotham-Thin.otf) format("opentype"),
		 url(/site/fonts/Gotham/GothamTrueType/Gotham-Thin.ttf) format('truetype');
	font-display: swap;
}

@font-face {
	font-family: 'GothamNarrowBook';
	font-weight: normal;
	font-style: normal;
	src: url(/site/fonts/GothamNarrow/GothamNarrow-Book.otf) format("opentype"),
		 url(/site/fonts/GothamNarrow/GothamNarrowTrueType/GothamNarrow-Book.ttf) format('truetype');
	font-display: swap;
}


html, body{
	width: 100%;
	height: 100%;
    position: relative;
}

body{
	background-color: #fff;
	font-family: 'GothamBook';
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
	font-family: 'GothamBook';
}

.left{ text-align: left; }
.center{ text-align: center; }
.right{ text-align: right; }

.row,
.form-group{
	margin: 0 !important;
	overflow: hidden;
}

img{
	max-width: 100%;
}

.holder_background{
	background-image: url(/site/imagens/background.png);
	background-position: 0% 0%;
	background-size: 100% auto;
}


.btn1{
	text-transform: uppercase;
	font-family: 'GothamBold';
	font-size: 12px;
	color: #fff;

	background: rgb(81,142,226);
	background: -moz-linear-gradient(top, rgba(81,142,226,1) 0%, rgba(66,126,199,1) 100%);
	background: -webkit-linear-gradient(top, rgba(81,142,226,1) 0%,rgba(66,126,199,1) 100%);
	background: linear-gradient(to bottom, rgba(81,142,226,1) 0%,rgba(66,126,199,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#518ee2', endColorstr='#427ec7',GradientType=0 );

	border: none;
	padding: 9px 14px;
	border-radius: 4px;
}

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

	.display_flex{
		display: flex;
	}

	.mobile{
		display: none;
	}

	.center_vertical{
		position:relative;
		top:50%;
		-webkit-transform:translateY(-50%);
		-ms-transform:translateY(-50%);
		transform:translateY(-50%);
	}

	.center_vertical_abs{
		position:absolute;
		top:50%;
		-webkit-transform:translateY(-50%);
		-ms-transform:translateY(-50%);
		transform:translateY(-50%);
	}

}

@media screen and (max-width: 992px) {

	.desktop{
		display: none;
	}

}



/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/


.menu_holder {
    position: fixed;
    top: 0;
	left: 0;
	right: 0;
	margin: auto;
    /*background: rgba(0,0,0,0.2);*/
    background: rgba(0, 65, 128, 0.7);
    padding: 20px 0;
    width: 100%;
    z-index: 3;

	text-align: center;
}

.menu_holder .navbar-header {
    float:none;
	display: inline-block;
}

.menu_holder .navbar-header img{
	width: 50px;
}

.menu_holder .menu-toggler{
	position: absolute;
	background: transparent;
	border: 0;
	width: 35px;
	top: 60px;
	right: 5%;
	cursor: pointer;
	display: none;
}

.menu_holder .menu-toggler span {
    height: 3px;
    width: 100%;
    background-color: #e3861d;
    margin-top: 5px;
    display: block;
	border-radius: 2px;

	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.menu_holder .menu-toggler:hover span {
    background-color: #808b92;
}

.menu_holder .menu{
    display: inline-block;
	margin: 10px 0 10px 50px;
}

.menu_holder .menu-nav{
	list-style: none;
	margin: 0;
}

.menu_holder .menu-nav .dropdown{
    display: inline-block;
    margin: 0 15px;
    cursor: pointer;
	color: #fff;
	font-size: 14px;
}

.menu_holder .menu-nav .dropdown a{
	text-transform: uppercase;
	color: #fff;
	font-size: 13px;
	position: relative;
}

.menu_holder .menu-nav .dropdown i{
	font-size: 18px;
}

.menu_holder .menu-nav .dropdown.language a{
	color: #fff;
}

.menu_holder .menu-nav .dropdown.language a.lingua_ativa{
	font-family: 'GothamBold';
}

.menu_holder .menu-nav .dropdown a:hover,
.menu_holder .menu-nav li.active > a,
.menu_holder .menu-nav li.active:hover > a {
	color: #fff;
	text-decoration: none !important;
}

.menu_holder .menu-nav .dropdown.menu_hover a:after,
.menu_holder .menu-nav li.menu_hover > a:after{
	content: '';
	position: absolute;
	background: #fff;
	height: 2px;
	width: 0;
	bottom: -3px;
	left: 0;
	transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
}

.menu_holder .menu-nav .dropdown a:hover:after,
.menu_holder .menu-nav li.active > a:after,
.menu_holder .menu-nav li.active:hover > a:after{
	width: 100%;
}


.menu_holder .dropdown-menu {
    background-color: #333;
	cursor: default;
}
.menu_holder .dropdown-menu hr{
    width: 80%;
    margin: 8px auto;
    border-top: 1px solid #ccc;
}
.menu_holder .dropdown-menu a:hover{
    background-color: transparent;
}


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

	.menu_holder .menu {
		display: inline-block !important;
		margin-left: 10%;
	}

}

@media screen and (max-width: 992px) {

	.menu_holder .container{
		padding: 0 20px;
		width: 90%;
	}

	.menu_holder .navbar-header {
		top: -15px;
		float:left;
		margin-left: 30px;
	}

	.menu_holder .navbar-header img{
		width: 40px;
	}

	.menu_holder .menu-toggler{
		display:block;
		top: 41px;
	}

	.menu_holder .menu {
		margin: 40px 0 0;
		width: 100%;

		display: none;
	}

	.menu_holder .menu-nav {
		padding: 0;
	}

	.menu_holder .menu-nav .dropdown {
		display: block;
		width: 100%;
		margin: 15px;
	}

	.menu_holder .menu-nav .dropdown a{
		font-size: 14px;
	}

	.menu_holder{
		text-align: left;
	}

	.menu_holder .navbar-header{
		float: none;
	}

	.menu_holder .menu-nav{
		text-align: center;
	}

}


/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/


.banner{
	position: relative;
	width: 100%;

	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.banner ul{
	width: 100%;
	padding: 0;
	margin: 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.documentacao ul li{
	height: 500px;
}


.banner.documentacao .conteudo {
	top: 60%;
}

.banner.documentacao .conteudo .imagem img {
	width: 50px;
	opacity: 0.5;
}

.banner.documentacao .conteudo .nome{
	font-family: 'GothamBook';
	color: #fff;
	font-size: 50px;
	margin-top: 30px;
}

.banner.internas li {
    height: 260px;
	background-position: top center;
}

.banner #slider_home .owl-controls {
    width: 100%;
    text-align: center;
	position: absolute;
	bottom: 0;
}

.banner #slider_home .owl-dots {
    position: absolute;
    bottom: 20px;
    text-align: center;
    margin: -25px auto 0;
    left: 0;
    right: 0;
}

.banner #slider_home .owl-dots .owl-dot {
	width: 15px;
	height: 15px;
	display: inline-block;
	margin: 0 10px;
	border-radius: 100%;
	border: none;
	background: rgba(255,255,255,0.2);
}

.banner #slider_home .owl-dots .owl-dot.active {
    background: #fff;
}

.banner #slider_home .owl-prev img,
.banner #slider_home .owl-next img {
    width: 32px !important;
}


.banner .conteudo{
    /*position: absolute;
    top: 0%;
    left: 0;
    text-align: center;
	width: 100%;
	height: 100%;
	margin: auto;

	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
*/
	position: absolute;
	width: 100%;
	margin: 0;
	text-align: center;

	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}


.banner .conteudo.inovacao {
	position: absolute;
	width: 30%;
	margin: 0;
	text-align: left;
	top: 60%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	left: 60%;
}

.banner .conteudo .nome{
	font-family: 'GothamBook';
	color: #fff;
	font-size: 60px;
	text-transform: unset;

}

.banner .conteudo.inovacao .nome {
	line-height: normal;
}

.banner .conteudo .descricao{
	color: #838383;
	font-size: 17px;
	margin-bottom: 50px;
}

.banner .conteudo button{
	color: #fff;
	font-size: 16px;
	background: #25aae1;
	border: 0;
	padding: 15px 30px;
	text-transform: uppercase;
	margin-top: 20px;
}

.banner_interno{
	position: relative;
}


.banner_interno .conteudo{
	position: absolute;
	width: 40%;
	margin: 0;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 40px;
	right: 0;
}

.banner_interno .conteudo .nome{
	font-size: 24px;
	font-family: GothamBook;
	color: rgb(255, 255, 255);
	line-height: 1.2;
	text-align: right;
}


.banner_interno .conteudo .descricao{
	font-size: 24px;
	font-family: GothamBold;
	color: rgb(255, 255, 255);
	line-height: 1.2;
	text-align: right;
	margin-top: 90px;
}


@media screen and (max-width: 992px) {

	.banner,
	.banner ul li {
		height:350px;
	}

	.banner.internas,
	.banner.internas li {
		height:200px;
	}

	.banner ul img{
		display: none;
	}
	.banner .conteudo .nome {
		font-size: 4vW;
	}
	.banner .conteudo .descricao {
		color: #333;
		font-size: 15px;
		margin-bottom: 20px;
	}

	.banner.documentacao, .banner.documentacao ul li{
		height: 350px;
	}
}

@media screen and (max-width: 780px) {

	.banner ul li img{
		display: none !important;
	}

}

@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: 150px 0;
	overflow: hidden;
}

.bloco.no-margin{
	padding: 0;
}

.bloco h1,
.bloco h2{
	font-size: 32px;
	color: #17479e;
	margin-bottom: 100px;
	position: relative;
}

.bloco h1.color_white,
.bloco h2.color_white{
	color: #fff;
}

.bloco h2:after,
.bloco h1:after{
	content: '';
	background-color: #a7ddf8;
	height: 5px;
	width: 66px;
	position: absolute;
	bottom: -50px;
	left: Calc( 50% - 33px );
}

.bloco h3{
	font-size: 25px;
	color: #111;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.bloco h4{
	font-size: 17px;
	color: #111;
}

.bloco .texto{
	font-size: 15px;
	line-height: 23px;
}

.bloco hr{
	border-top: 3px solid #dbdbdb;
	width: 400px;
}

.imagem_type_solution{
	position: relative;
}

.imagem_type_solution .title_hover_image{
	position: absolute;
	color: #fff;
	font-size: 60px;
	text-transform: unset;
	width: 100%;
	text-align: center;
	margin: 0;

	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

@media screen and (max-width: 992px) {

	.bloco{
		padding: 60px 0;
	}

	.bloco hr{
		width: 100px;
	}

	.bloco h2{

	}

	.bloco p{
		font-size: 15px;
	}
}


/*==================================================================================================*/
/*MIDDER*/
/*==================================================================================================*/


.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;
}

.midder .conteudo {
    width: 30%;
    top: 20%;
    left: 0;
    text-align: left;
    position: absolute;
	padding: 0 2%;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.midder .conteudo h2 {
	font-size: 48px;
	color: #111;
	text-transform: none;
}
.midder .conteudo p {
	font-size: 17px;
	color: #838383;
}


@media screen and (max-width: 992px) {

	.midder {
		height: 250px;
		background-attachment: initial;
	}
	.midder .conteudo h2 {
		font-size: 25px;
	}
}

/*@media screen and (max-width: 470px) {

	.midder {
		height: 250px;
	}
	.midder .conteudo h2 {
		font-size: 25px;
	}
}*/


/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/

.content_about_type{
	max-width: 710px;
	margin: 0 auto 40px;
}

#about {
	padding-bottom: 0;
}

#projetos {
}


#about .video .videoWrapper{
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

#about .video .videoWrapper{
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

#about .video .videoWrapper iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


#about a.carta_apresentacao{
	background-color: #aae0fa;
	border: none;
	font-family: 'GothamMedium';
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	outline: none;
	padding: 12px 15px;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
	text-decoration: none;
	margin: 0 25px;
}

#about a.carta_apresentacao:hover{
	background-color: #17479e;
}

#about .cronologia{
	height: 1364px;
	background-size: 100% auto;
	background-repeat: no-repeat;
	/* margin: 107px 0; */
	background-position: center;
	position: relative;
}

#about .cronologia .single_anos {
	position: absolute;
	width: 28px;
	height: 28px;
	/*background: #abe1fa;*/
	background: #90e2fb;
	border-radius: 50%;
}



#about .cronologia .single_anos .info {
	position: absolute;
	padding: 0;
	background: #fff;
	left: 50%;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	text-align: center;
	width: 164px;
	font-size: 13px;
	color: rgb(35, 31, 32);
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	height: 0;
	overflow: hidden;
	border: 0;
}


#about .cronologia .single_anos .imagem {
	position: absolute;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}



#about .cronologia .single_anos:hover {
	background: #19499e;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}


#about .cronologia .single_anos:hover .info {
	height: auto;
	border: 1px solid rgb(180, 186, 190);
	padding: 5px 0;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

#about .cronologia .single_anos._2007 {
	top: 164px;
	left: 174px;
}



#about .cronologia .single_anos._2007 .info {
	width: 164px;
	bottom: -103px;
}


#about .cronologia .single_anos._2007 .imagem {
	width: 180px;
	bottom: 40px;
}

#about .cronologia .single_anos._2008 {
	top: 164px;
	left: 429px;
}



#about .cronologia .single_anos._2008 .info {
	width: 164px;
	bottom: -120px;
}


#about .cronologia .single_anos._2008 .imagem {
	width: 155px;
	bottom: 35px;
}

#about .cronologia .single_anos._2008_2 {
	top: 164px;
	left: 686px;
}




#about .cronologia .single_anos._2008_2 .info {
	bottom: -120px;
}


#about .cronologia .single_anos._2008_2 .imagem {
	width: 75px;
	bottom: 45px;
}


#about .cronologia .single_anos._2008_3 {
	top: 164px;
	left: 941px;
}



#about .cronologia .single_anos._2008_3 .info {
	bottom: -175px;
}


#about .cronologia .single_anos._2008_3 .imagem {
	width: 115px;
	bottom: 40px;
}


#about .cronologia .single_anos._2009 {
	top: 314px;
	left: 1101px;
}



#about .cronologia .single_anos._2009 .info {
	bottom: -215px;
	left: 165%;
}


#about .cronologia .single_anos._2009 .imagem {
	width: 180px;
	bottom: 35px;
	left: 120%;
}


#about .cronologia .single_anos._2010 {
	top: 463px;
	left: 941px;
}



#about .cronologia .single_anos._2010 .info {
	bottom: -103px;
}


#about .cronologia .single_anos._2010 .imagem {
	width: 165px;
	bottom: 50px;
}


#about .cronologia .single_anos._2014 {
	top: 463px;
	left: 685px;
}




#about .cronologia .single_anos._2014 .info {
	bottom: -175px;
}


#about .cronologia .single_anos._2014 .imagem {
	width: 160px;
	bottom: 45px;
}


#about .cronologia .single_anos._2015 {
	top: 463px;
	left: 430px;
}



#about .cronologia .single_anos._2015 .info {
	bottom: -175px;
}


#about .cronologia .single_anos._2015 .imagem {
	width: 220px;
	bottom: 50px;
}



#about .cronologia .single_anos._2016 {
	top: 463px;
	left: 174px;
}



#about .cronologia .single_anos._2016 .info {
	bottom: -140px;
}


#about .cronologia .single_anos._2016 .imagem {
	width: 70px;
	bottom: 50px;
}



#about .cronologia .single_anos._2017 {
	top: 613px;
	left: 12px;
}




#about .cronologia .single_anos._2017 .info {
	bottom: -175px;
}


#about .cronologia .single_anos._2017 .imagem {
	width: 55px;
	bottom: 50px;
}


#about .cronologia .single_anos._2018 {
	top: 762px;
	left: 174px;
}




#about .cronologia .single_anos._2018 .info {
	bottom: -85px;
}


#about .cronologia .single_anos._2018 .imagem {
	width: 125px;
	bottom: 50px;
}


#about .cronologia .single_anos._2018_2 {
	top: 762px;
	left: 352px;
}



#about .cronologia .single_anos._2018_2 .info {
	bottom: -157px;
}


#about .cronologia .single_anos._2018_2 .imagem {
	width: 95px;
	bottom: 50px;
}


#about .cronologia .single_anos._2018_3 {
	top: 762px;
	left: 478px;
}




#about .cronologia .single_anos._2018_3 .info {
	bottom: -103px;
}


#about .cronologia .single_anos._2018_3 .imagem {
	width: 145px;
	bottom: 50px;
}


#about .cronologia .single_anos._2018_4 {
	top: 762px;
	left: 657px;
}



#about .cronologia .single_anos._2018_4 .info {
	bottom: -140px;
}


#about .cronologia .single_anos._2018_4 .imagem {
	width: 95px;
	bottom: 50px;
}



#about .cronologia .single_anos._2018_5 {
	top: 762px;
	left: 798px;
}




#about .cronologia .single_anos._2018_5 .info {
	bottom: -122px;
}


#about .cronologia .single_anos._2018_5 .imagem {
	width: 70px;
	bottom: 50px;
}




#about .cronologia .single_anos._2019 {
	top: 762px;
	left: 942px;
}




#about .cronologia .single_anos._2019 .info {
	bottom: -104px;
}


#about .cronologia .single_anos._2019 .imagem {
	width: 220px;
	bottom: 50px;
}

#about .cronologia .single_anos._2020 {
	top: 913px;
    left: 1099px;
}


#about .cronologia .single_anos._2020 .info {
    bottom: -119px;
}


#about .cronologia .single_anos._2020 .imagem {
	width: 220px;
	bottom: 50px;
}

#about .cronologia .single_anos._2020_2 {
	top: 1061px;
    left: 942px;
}


#about .cronologia .single_anos._2020_2 .info {
    bottom: -119px;
}


#about .cronologia .single_anos._2020_2 .imagem {
	width: 220px;
	bottom: 50px;
}
#about .cronologia .single_anos._2020_3 {
	top: 1061px;
    left: 809px;
}


#about .cronologia .single_anos._2020_3 .info {
    bottom: -119px;
}


#about .cronologia .single_anos._2020_3 .imagem {
	width: 220px;
	bottom: 50px;
}

#about .cronologia .single_anos._2020_4 {
	top: 1061px;
    left: 681px;
}


#about .cronologia .single_anos._2020_4 .info {
    bottom: -119px;
}


#about .cronologia .single_anos._2020_4 .imagem {
	width: 220px;
	bottom: 50px;
}


#areas{
	padding: 0;
}

#block_areas {
	margin-top: 50px;
}

#block_areas .bloco_area{
	position: relative;
	cursor: pointer;
}

#block_areas .bloco_area.new_area .botoes label,
#block_areas .bloco_area.new_area .botoes label a{
	color: #fff;
	font-size: 12px;
	cursor: pointer;
	font-family: GothamMedium;
}

#block_areas .bloco_area.new_area .botoes {
	margin-top: 20px;
}


#block_areas .bloco_area.new_area .botoes label {
	border-bottom: 1px solid #fff;
	margin-right: 20px;
}

#block_areas .bloco_area.new_area .botoes label a{
	text-decoration: none;
}

#block_areas .bloco_area .hover_bg{
	position: absolute;
	top: 0;
	z-index: 1;
	display: flex;
	height: 100%;
}

#block_areas .bloco_area .name{
	position: relative;
	width: 35.8%;
	height: 100%;
	display: inline-block;
	vertical-align: top;
	color: #fff;
	line-height: 26px;
	font-size: 17px;
	font-family: 'GothamBook';
}

#block_areas .bloco_area .name img{
	margin-bottom: 15px;
}

#block_areas .bloco_area .description{
	position: relative;
	width: 64.4%;
	height: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 0 50px;
	color: #fff;
	line-height: 26px;
	font-size: 16px;
	font-family: 'GothamBook';
}

#block_areas .bloco_area .bg_image{

}


#bloco_prods .topo_prods{
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 20px;
	padding-bottom: 20px;
	text-align: right;
}

#bloco_prods .topo_prods .campo_pesq{
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

#bloco_prods .topo_prods .campo_pesq input{
	border: 1px solid #25aae1;
	padding: 5px 10px;
	width: 300px;
	outline:none;
}

#bloco_prods .topo_prods .campo_pesq button{
	border: none;
	background: none;
	position: absolute;
	right: 7px;
	top: 2px;
	font-size: 19px;
	color: #25aae1;
}

#bloco_prods .topo_prods .paginacao{
	display: inline-block;
	min-width: 217px;
	height: 23px;
	vertical-align: middle;
}

#bloco_prods .holder_prods{

}

#bloco_prods .holder_prods .categorias_laterais{
	width: 220px;
	display: inline-block;
	vertical-align: top;
}

#bloco_prods .holder_prods .categorias_laterais .categoria_lateral{
	margin-bottom: 20px;
	cursor: pointer;
}

#bloco_prods .holder_prods .categorias_laterais .categoria_lateral .img{
	width: 45px;
	display: inline-block;
}

#bloco_prods .holder_prods .categorias_laterais .categoria_lateral .img .active_img{
	display: none;
}

#bloco_prods .holder_prods .categorias_laterais .categoria_lateral.active .img .active_img,
#bloco_prods .holder_prods .categorias_laterais .categoria_lateral:hover .img .active_img {
	display: inline-block;
}

#bloco_prods .holder_prods .categorias_laterais .categoria_lateral.active .img .normal,
#bloco_prods .holder_prods .categorias_laterais .categoria_lateral:hover .img .normal {
	display: none;
}

#bloco_prods .holder_prods .categorias_laterais .categoria_lateral .titulo{
	width: Calc( 100% - 50px );
	display: inline-block;
	font-size: 19px;
	vertical-align: middle;
	color: #77c3e5;
}

#bloco_prods .holder_prods .container_prods{
	width: Calc( 100% - 225px );
	display: inline-block;
	vertical-align: top;
	position: relative;
}

#bloco_prods .holder_prods .container_prods button{
	margin: 0;
}

#bloco_prods .holder_prods .container_prods .produtos_relacionados{
	margin: 60px 0;
}

#bloco_prods .holder_prods .container_prods .block_prod{
	width: Calc( 100% / 3 );
	display: inline-block;
	overflow: hidden;
	margin-right: -3px;
	text-align: center;
	padding: 20px;
	border: 2px solid transparent;

	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

	vertical-align: top;
}

#bloco_prods .holder_prods .container_prods .block_prod button{
	background-color: #aae0fa;
	border: none;
	font-family: 'GothamBold';

	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

	outline: none;
	padding: 5px 15px;
	color: #fff;
	text-transform: uppercase;
}

#bloco_prods .holder_prods .container_prods .block_prod .img{
	height: 310px;
	width: 260px;
	margin: 0 auto;
}

#bloco_prods .holder_prods .container_prods .block_prod .img img{
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bloco_prods .holder_prods .container_prods .block_prod .titulo{
	font-size: 17px;
	margin: 10px 0 0;
	color: #25aae1;
	min-height: 75px;
	font-family: 'GothamMedium';
}


#bloco_prods .holder_prods .container_prods .block_prod:hover{
	border: 2px solid #25aae1;
}

#bloco_prods .holder_prods .container_prods .block_prod:hover .titulo{
	color: #17479e;
}

#bloco_prods .holder_prods .container_prods .block_prod:hover button{
	background-color: #25aae1;
}

#bloco_prods .paginacao_produtos {
	display: inline-block;
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

#bloco_prods .paginacao_produtos.topo{
	position: absolute;
	top: -93px;
	right: 0;
	width: auto;
}

#bloco_prods .paginacao_produtos a,
#bloco_news .paginacao_noticias a {
	background-color: #aae0fa;
	border: none;
	font-family: 'GothamBold';
	color: #fff;
	padding: 6px 12px;
	display: inline-block;
	text-decoration: none;
}

#bloco_news .paginacao_noticias {
	margin-top: 60px;
	text-align: center;
}

#bloco_prods .paginacao_produtos .products_paginate,
#bloco_news .paginacao_noticias .noticias_paginate {
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-ms-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
}

#bloco_prods .paginacao_produtos .products_paginate:hover,
#bloco_news .paginacao_noticias .noticias_paginate:hover{
	color: #fff;
	background-color: #25aae1ad;
}

#bloco_prods .paginacao_produtos .num.selected,
#bloco_news .paginacao_noticias .num.selected{
	color: #fff;
	background-color: #25aae1;
}

#bloco_prods .paginacao_produtos .pagi_prev,
#bloco_news .paginacao_noticias .pagi_prev {
	display: inline-block;
}

#bloco_prods .paginacao_produtos .pagi_next,
#bloco_news .paginacao_noticias .pagi_next {
	display: inline-block;
}

#bloco_prods .paginacao_produtos .pagi_nums,
#bloco_news .paginacao_noticias .pagi_nums {
	display: inline-block;
}

#bloco_news .holder_news .block_new{
	width: Calc( 100% / 3 );
	display: inline-block;
	margin-right: -3px;
	padding: 0 25px;
	vertical-align: top;
}

#bloco_news .holder_news .block_new .img{

}

#bloco_news .holder_news .block_new .titulo{
	color: #17479e;
	font-family: 'GothamBold';
	font-size: 19px;
	margin-top: 15px;
	margin-bottom: 2px;
}

#bloco_news .holder_news .block_new .data{
	color: #302e34;
	opacity: 0.4;
	font-size: 13px;
	font-family: 'GothamMedium';
}

#bloco_news .holder_news .block_new .descricao{
	font-family: 'GothamMedium';
	color: #302e34;
	margin-top: 15px;
	font-size: 15px;
}

#bloco_news .holder_news .bloco_new_small{
	width: Calc( 100% / 3 );
	display: inline-block;
	margin-right: -3px;
	padding: 0 25px;

	margin-top: 50px;
}

#bloco_news .holder_news .bloco_new_small .img{
	width: 100px;
	display: inline-block;
	vertical-align: top;
}

#bloco_news .holder_news .bloco_new_small .zone_texto{
	width: Calc( 100% - 105px );
	display: inline-block;
	vertical-align: top;
	padding-left: 10px;
}

#bloco_news .holder_news .bloco_new_small .titulo{
	color: #302e34;
	font-family: 'GothamMedium';
	font-size: 14px;
	margin-top: 0px;
	margin-bottom: 2px;
}

#bloco_news .holder_news .bloco_new_small .data{
	color: #302e34;
	opacity: 0.4;
	font-size: 13px;
	font-family: 'GothamMedium';
}



.login_form{
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	z-index: 1;

	display: none;
}

.login_form .holder_center{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 350px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.login_form h2{
	font-size: 40px;
	color: #fff;
	margin-bottom: 60px;
	position: relative;
}

.login_form .input-holder{

}

.login_form .input-holder label{
	width: 85px;
	color: #fff;
	font-family: 'GothamThin';
	text-align: right;
	padding-right: 15px;
}

.login_form .input-holder input{
	background-color: transparent;
	border: 2px solid #3c3c3c;
	padding: 10px 10px;
	color: #fff;
	font-family: 'GothamThin';
	width: 230px;
	margin-top: 20px;
}

.login_form .remember_me{
	width: 120px;
	display: inline-block;
	color: #fff;
	margin-left: 90px;
	font-size: 12px;
	margin-top: 10px;
}

.login_form .forgot_password{
	font-size: 12px;
	color: #fff;
}



.pedido_orcamento_form{
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	z-index: 10;

	display: none;
}

.pedido_orcamento_form .holder_center{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 350px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 3;
	max-height: Calc( 100vh - 60px );
	overflow-y: auto;
	padding: 20px 10px;
	max-width: 100%;
}

.pedido_orcamento_form .holder_center .close_prod_popup{
	text-align: right;
	margin-bottom: 20px;
}

.pedido_orcamento_form .close_aux{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.pedido_orcamento_form h2{
	font-size: 40px;
	color: #fff;
	margin-bottom: 60px;
	position: relative;
	text-align: center;
}

.pedido_orcamento_form .input-holder{

}

.pedido_orcamento_form .input-holder label{
	width: 110px;
	color: #fff;
	font-family: 'GothamThin';
	text-align: right;
	padding-right: 15px;
}

.pedido_orcamento_form .input-holder input{
	background-color: transparent;
	border: 2px solid #3c3c3c;
	padding: 10px 10px;
	color: #fff;
	font-family: 'GothamThin';
	width: 220px;
	margin-bottom: 20px;
}

.pedido_orcamento_form .input-holder textarea{
	background-color: transparent;
	border: 2px solid #3c3c3c;
	padding: 10px 10px;
	color: #fff;
	font-family: 'GothamThin';
	width: 219px;
	min-height: 70px;
	margin-bottom: 20px;
	resize: vertical;
	margin-left: -4px;
}

.pedido_orcamento_form .remember_me{
	width: 120px;
	display: inline-block;
	color: #fff;
	margin-left: 90px;
	font-size: 12px;
	margin-top: 10px;
}

.pedido_orcamento_form .forgot_password{
	font-size: 12px;
	color: #fff;
}



.popup_produtos{
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	z-index: 5;

	display: none;
}

.popup_produtos .holder_center{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	max-width: 1000px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-color: #fff;
	padding: 25px 20px;
	max-height: Calc( 100% - 120px );
	overflow: auto;
	z-index: 2;
}

.popup_produtos .close_aux{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.popup_produtos .holder_center .content_popup .row_aux{
	display: flex;
	height: 380px;
}

.popup_produtos .holder_center .content_popup .row_aux .col-md-5{
	overflow: auto;
}

.popup_produtos .holder_center .content_popup .row_aux .helper_slider{
	height: 100%;
}

.popup_produtos .holder_center .content_popup .row_aux .helper_slider img{
	max-height: 100%;
}

.popup_produtos .holder_center .titulo{
	font-family: 'GothamBold';
	font-size: 20px;
}

.popup_produtos .holder_center .texto {
	font-size: 13px !important;
	font-family: 'GothamBook' !important;
	color: #333 !important;
	border-top: 1px solid #bebebe;
	padding-right: 35px;
	padding-top: 15px;
	margin-top: 20px;
}

.popup_produtos .holder_center .texto p,
.popup_produtos .holder_center .texto span{
	font-size: 13px !important;
	font-family: 'GothamBook' !important;
	color: #333 !important;
}

.popup_produtos .holder_center .close_prod_popup{
	text-align: right;
	margin-bottom: 35px;
}

.popup_produtos .holder_center .close_prod_popup img{
	cursor: pointer;
}

.popup_produtos .holder_center h4{
	color: #17479e;
	font-size: 23px;
	margin-top: 40px;
	margin-bottom: 25px;
}


.slider_imagens_produto{
	padding: 0 30px;
}

.slider_imagens_produto .owl-prev{
	position: absolute;
	top: Calc( 50% - 25px );
	left: 0;
}

.slider_imagens_produto .owl-next{
	position: absolute;
	top: Calc( 50% - 25px );
	right: 0;
}

.slider_imagens_produto .owl-prev i,
.slider_imagens_produto .owl-next i{
	font-size: 50px;
	color: #23abe2;
}

.slider_imagens_produto .owl-prev i:hover,
.slider_imagens_produto .owl-next i:hover{
	color: #aae0fa;
}


#slider_produtos_relacionados{
	padding: 0 30px;
}

#slider_produtos_relacionados .owl-prev{
	position: absolute;
	top: 55px;
	left: 0;
}

#slider_produtos_relacionados .owl-next{
	position: absolute;
	top: 55px;
	right: 0;
}

#slider_produtos_relacionados .owl-prev i,
#slider_produtos_relacionados .owl-next i{
	font-size: 50px;
	color: #eeeeee;
}

#slider_produtos_relacionados .owl-prev i:hover,
#slider_produtos_relacionados .owl-next i:hover{
	color: #aae0fa;
}

#slider_produtos_relacionados .slide_produto_relacionado{
	padding: 15px 15px;
	cursor: pointer;
}


.add_orcamento .field_qty{
	display: inline-block;
}

.add_orcamento .field_qty .texto_qty{
	display: inline-block;
	margin-right: 10px;
}

.add_orcamento .field_qty .arrow_left{
	display: inline-block;
}

.add_orcamento .field_qty .field{
	width: 43px;
	display: inline-block;
	margin: 0 5px 0 5px;
}

.add_orcamento .field_qty .field input{
	padding: 5px 10px;
	width: 100%;
}

.add_orcamento .field_qty .arrow_right{
	display: inline-block;
}

.add_orcamento .btn_qty{
	display: inline-block;
}

.voltar{
	text-align: center;
	margin-top: 30px;
}

/*
.add_orcamento .btn_qty button,
.voltar button{
	text-transform: uppercase;
	font-family: 'GothamBold';
	font-size: 12px;
	color: #fff;

	background: rgb(81,142,226);
	background: -moz-linear-gradient(top, rgba(81,142,226,1) 0%, rgba(66,126,199,1) 100%);
	background: -webkit-linear-gradient(top, rgba(81,142,226,1) 0%,rgba(66,126,199,1) 100%);
	background: linear-gradient(to bottom, rgba(81,142,226,1) 0%,rgba(66,126,199,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#518ee2', endColorstr='#427ec7',GradientType=0 );

	border: none;
	padding: 9px 14px;
	border-radius: 4px;
}
*/

.add_orcamento .btn_qty button,
.voltar button{
	background-color: #17479e;
	border: none;
	font-family: 'GothamMedium';
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	outline: none;
	padding: 12px 15px;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
	text-decoration: none;
	margin: 0 25px;
}

.add_orcamento .btn_qty button:hover,
.voltar button:hover{
	background-color: #aae0fa;
}


.popup_produtos .holder_center .content_popup .deslizar{
	cursor: pointer;
	display: block;
	width: 100px;
	text-align: center;
	margin: 25px auto 25px;
	text-transform: uppercase;
	font-family: 'GothamBold';
	font-size: 12px;
	color: #fff;
	background: rgb(81,142,226);
	background: -moz-linear-gradient(top, rgba(81,142,226,1) 0%, rgba(66,126,199,1) 100%);
	background: -webkit-linear-gradient(top, rgba(81,142,226,1) 0%,rgba(66,126,199,1) 100%);
	background: linear-gradient(to bottom, rgba(81,142,226,1) 0%,rgba(66,126,199,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#518ee2', endColorstr='#427ec7',GradientType=0 );
	border: none;
	padding: 9px 14px;
	border-radius: 4px;
}

#pesq{
	width: 440px;
	padding: 10px 15px;
	max-width: 100%;
	outline: none;
	border: 1px solid #004aa6;
	margin-bottom: 15px;
}

.resultados_pesquisa .lista_resultados ul{
	list-style: none;
}

.footer .logo_omni {
	width: 100px;
}

.footer .footer_texts {}

.footer .certificados {
	position: relative;
	text-align: right;
}

.footer .certificados .certificado {
	max-width: 60px;
}

.footer .certificados .certificado.cert_apcer {}

.footer .certificados .certificado.cert_iqnet {
	margin-left: 10px;
}





#about .cronologia_mobile {
	display: none;
}


#about .cronologia_mobile .single_ano_mobile .traco{
	width: 6px;
	height: 60px;
	background: #abe1fa;
	margin: 0 auto;
}

#about .cronologia_mobile .single_ano_mobile .bola {
	width: 20px;
	height: 20px;
	background: #abe1fa;
	margin: -5px auto 0 auto;
	border-radius: 50%;
}

#about .cronologia_mobile .single_ano_mobile .info {
	margin: 20px 0;
}


#about .cronologia_mobile .single_ano_mobile .info .descricao {
	font-size: 16px;
	color: rgb(26, 74, 156);
}

#about .cronologia_mobile .single_ano_mobile .info .nome {
	font-size: 20px;
	color: rgb(26, 74, 156);
	font-family: "GothamBold";
}


#about .cronologia_mobile .single_ano_mobile .info .content {
	font-size: 15px;
	color: rgb(35, 31, 32);
	max-width: 200px;
	margin: 0 auto;
}




#about .cronologia_mobile .single_ano_mobile .info .imagem {
	margin: 20px 0;
}

@media screen and (max-width: 1320px){
	#about .cronologia .single_anos._2009 .imagem {
		width: 140px;
		bottom: 35px;
		left: 15%;
	}
}

@media screen and (max-width: 1200px){

	#areas {
		margin-top: -100px;
	}

	#about .cronologia {
		width: 800px;
		margin: 0 auto;
		height: 1253px;
	}

	#about .cronologia .single_anos {
		width: 17px;
		height: 17px;
	}

	#about .cronologia .single_anos._2007 {
		top: 264px;
		left: 122px;
	}

	#about .cronologia .single_anos._2007 .imagem {
		width: 150px;
		bottom: 20px;

	}

	#about .cronologia .single_anos._2007 .info {
		width: 164px;
		bottom: -88px;
	}

	#about .cronologia .single_anos._2008 {
		top: 264px;
		left: 302px;
	}

	#about .cronologia .single_anos._2008 .imagem {
		width: 125px;
		bottom: 20px;

	}

	#about .cronologia .single_anos._2008 .info {
		width: 164px;
		bottom: -106px;
	}


	#about .cronologia .single_anos._2008_2 {
		top: 264px;
		left: 481px;
	}
	#about .cronologia .single_anos._2008_2 .imagem {
		width: 65px;
		bottom: 25px;
	}
	#about .cronologia .single_anos._2008_2 .info {
		bottom: -106px;
	}


	#about .cronologia .single_anos._2008_3 {
		top: 264px;
		left: 661px;
	}

	#about .cronologia .single_anos._2008_3 .imagem {
		width: 95px;
		bottom: 25px;
	}

	#about .cronologia .single_anos._2008_3 .info {
		bottom: -124px;
		width: 232px;
		left: -70px;
	}

	#about .cronologia .single_anos._2009 {
		top: 370px;
		left: 773px;
	}

	#about .cronologia .single_anos._2009 .imagem {
		width: 140px;
		bottom: 20px;
		left: 50%;
	}
	#about .cronologia .single_anos._2009 .info {
		bottom: -235px;
		left: 165%;
		width: 122px;
	}

	#about .cronologia .single_anos._2010 {
		top: 474px;
		left: 661px;
	}

	#about .cronologia .single_anos._2010 .imagem {
		width: 130px;
		bottom: 30px;
	}

	#about .cronologia .single_anos._2010 .info {
		bottom: -90px;
	}

	#about .cronologia .single_anos._2014 {
		top: 474px;
		left: 481px;
	}

	#about .cronologia .single_anos._2014 .imagem {
		width: 115px;
		bottom: 25px;
	}

	#about .cronologia .single_anos._2014 .info {
		bottom: -108px;
		width: 225px;
	}




	#about .cronologia .single_anos._2015 {
		top: 474px;
		left: 302px;
	}
	#about .cronologia .single_anos._2015 .info {
		bottom: -126px;
		width: 225px;
	}


	#about .cronologia .single_anos._2016 {
		top: 474px;
		left: 122px;
	}
	#about .cronologia .single_anos._2016 .imagem {
		width: 55px;
		bottom: 25px;
	}

	#about .cronologia .single_anos._2016 .info {
		bottom: -108px;
	}

	#about .cronologia .single_anos._2017 {
		top: 580px;
		left: 9px;
	}

	#about .cronologia .single_anos._2017 .imagem {
		width: 55px;
		bottom: 25px;
	}

	#about .cronologia .single_anos._2017 .info {
		bottom: -200px;
		width: 120px;
	}

	#about .cronologia .single_anos._2018 {
		top: 684px;
		left: 122px;
	}

	#about .cronologia .single_anos._2018 .imagem {
		width: 95px;
		bottom: 25px;
	}

	#about .cronologia .single_anos._2018 .info {
		bottom: -70px;
	}

	#about .cronologia .single_anos._2018_2 {
		top: 684px;
		left: 247px;
	}

	#about .cronologia .single_anos._2018_2 .imagem {
		width: 80px;
		bottom: 25px;
	}

	#about .cronologia .single_anos._2018_2 .info {
		bottom: -142px;
	}

	#about .cronologia .single_anos._2018_3 {
		top: 684px;
		left: 336px;
	}

	#about .cronologia .single_anos._2018_3 .imagem {
		width: 100px;
		bottom: 35px;
	}

	#about .cronologia .single_anos._2018_3 .info {
		bottom: -88px;
	}

	#about .cronologia .single_anos._2018_4 {
		top: 684px;
		left: 462px;
	}

	#about .cronologia .single_anos._2018_4 .info {
		bottom: -106px;
	}

	#about .cronologia .single_anos._2018_4 .imagem {
		width: 75px;
		bottom: 30px;
	}



	#about .cronologia .single_anos._2018_5 {
		top: 684px;
		left: 561px;
	}

	#about .cronologia .single_anos._2018_5 .imagem {
		width: 55px;
		bottom: 30px;
	}

	#about .cronologia .single_anos._2018_5 .info {
		bottom: -106px;
	}
	#about .cronologia .single_anos._2019 {
		top: 684px;
		left: 661px;
	}

	#about .cronologia .single_anos._2019 .info {
		bottom: -88px;
	}
	
	#about .cronologia .single_anos._2020 {
		top: 790px;
        left: 773px;
	}
	
	
	#about .cronologia .single_anos._2020_2 {
		top: 895px;
        left: 661px;
	}
	
	
	#about .cronologia .single_anos._2020_3 {
		top: 895px;
        left: 570px;
	}
	
	#about .cronologia .single_anos._2020_4 {
		top: 895px;
        left: 481px;
	}
	
	
	#about .cronologia .single_anos._2020_2 .imagem,
	#about .cronologia .single_anos._2020_3 .imagem,
	#about .cronologia .single_anos._2020_4 .imagem{
		width: 80px;
		bottom: 30px;
	}
	
}

@media screen and (max-width: 992px) {
	#areas {
		margin-top: 0px;
	}

	#about a.carta_apresentacao {
		display: block;
		width: fit-content;
		margin: 25px auto;
		font-size: 12px;
	}

	#about {
		padding: 60px 0;
	}

	#about .cronologia {
		display: none;
	}



	#about .cronologia_mobile {
		display: block;
	}

	#block_areas{
		overflow: hidden;
		margin-top: 0px;
	}

	#bloco_prods .holder_prods .container_prods .block_prod {
		width: Calc( 100% / 2 );
	}


	#bloco_prods .holder_prods .container_prods .texto {
		margin-top: 20px;
	}

	#bloco_news .holder_news .bloco_new_small {
		width: Calc(100% / 2 );
		padding: 0px 15px;
	}

	#bloco_news .holder_news .block_new {
		width: 340px;
		display: block;
		margin: 40px auto;
		padding: 0 10px;
	}

	#block_areas .bloco_area .hover_bg{
		display: block;
	}

	#block_areas .bloco_area .name{
		width: 100%;
		height: 200px;
	}

	#block_areas .bloco_area .description{
		width: 100%;
	}

	#block_areas .bloco_area:nth-child(even) .bg_image img{
		width: 155.7%;
		max-width: unset;
		margin-right: -55.7%;
	}

	#block_areas .bloco_area:nth-child(odd) .bg_image img{
		width: 155.7%;
		max-width: unset;
		margin-left: -55.7%;
	}

	#block_areas .bloco_area .name img {
		margin-bottom: 15px;
		width: 70px;
		margin-top: 20px;
	}

	.popup_produtos .holder_center .content_popup .row_aux{
		display: block;
		height: auto;
	}

}

@media screen and (max-width: 767px) {

	#bloco_prods .holder_prods .container_prods .block_prod{
		width: 100%;
	}

	.imagem_type_solution .title_hover_image {
		font-size: 40px;
	}

}

@media screen and (max-width: 700px) {

	.popup_produtos .holder_center .close_prod_popup {
		margin-bottom: 20px;
	}

	.popup_produtos .holder_center {
		padding: 25px 10px;
		max-height: Calc( 100% - 200px );
	}

	.popup_produtos .holder_center .titulo {
		margin-top: 25px;
	}

	#bloco_prods .paginacao_produtos.topo {
		position: relative;
		top: 0px;
		right: 0;
		width: auto;
		display: block;
		margin-bottom: 20px;
		margin-top: 30px;
	}

	#bloco_prods .holder_prods .categorias_laterais{
		display: block;
		margin: 0 auto;
	}

	#bloco_prods .holder_prods .container_prods{
		width: 100%;
		display: block;
	}

	#block_areas .bloco_area .description {
		width: 100%;
		margin-bottom: 25px;
		padding: 0 25px;
	}

	#block_areas .bloco_area .bg_image {
		height: 400px;
		position: absolute;
		width: 100%;
	}

	#block_areas .bloco_area .hover_bg {
		display: block;
		height: auto;
		position: relative;
	}

	#block_areas .bloco_area:nth-child(even) .bg_image img {
		width: auto;
		max-width: unset;
		margin-right: -55.7%;
		height: 100%;
	}

	#block_areas .bloco_area:nth-child(odd) .bg_image img {
		width: auto;
		max-width: unset;
		margin-left: -55.7%;
		height: 100%;
		float: right;
	}

}


@media screen and (max-width: 600px) {

	.imagem_type_solution .title_hover_image {
		font-size: 31px;
	}

	#block_areas .bloco_area .bg_image {
		height: 100%;
	}

	#bloco_news .holder_news .bloco_new_small {
		width: 100%;
	}

}

@media screen and (max-width: 540px) {

}


/*==================================================================================================*/
/*PROJETOS E INOVAÇÃO*/
/*==================================================================================================*/
.bloco.projetos{
	padding-bottom: 0;
}

.zona{
	margin: 15px 0;
}

.zona.galeria {
	margin: 0 -10px 0 -6px;
}


.zona.galeria .single_imagem{
	display: inline-block;
	width: Calc(100% / 6);
	margin-left: -4px;
}

.zona.galeria .single_imagem img{
	width: 100%;
}


.zona.galeria .single_imagem{
	padding: 10px;
}

#services{

}


#services .holder_servicos{
	width: 80%;
	margin: 40px auto 0 auto;
}

#services .holder_servicos .single_servico{
	margin: 60px 0;
}


#services .holder_servicos .single_servico .icon{
	display: inline-block;
	width: 85px;
	vertical-align: middle;
	text-align: center;
}

#services .holder_servicos .single_servico .icon img{
	height: 80px;
}

#services .holder_servicos .single_servico .info{
	display: inline-block;
	width: Calc(100% - 90px);
	vertical-align: middle;

	font-size: 22px;
	color: rgb(23, 71, 158);
	line-height: 1.2;

	padding-left: 80px;

}


#case_studies{

}


#case_studies .holder_case_studies{
	margin: 0 -15px;
}

#case_studies .holder_case_studies .single_case_studie{
	display: inline-block;
	width: Calc(100% / 6);
	padding: 15px;
	position: relative;
	height: 180px;
	vertical-align: top;
	margin: 20px -4px 20px 0;
}


#case_studies .holder_case_studies .single_case_studie .icon{
	position: absolute;
	top: 50%;
	/* left: 50%; */
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 100%;
	padding: 15px;
	text-align: center;
}

#case_studies .holder_case_studies .single_case_studie .info{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgb(24, 73, 157);
	display: none;
}

#case_studies .holder_case_studies .single_case_studie .info a{
	font-size: 22px;
	font-family: GothamBook;
	color: rgb(255, 255, 255);
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	padding: 20px;
	line-height: 30px;
	text-decoration: none;
}

#case_studies .holder_case_studies .single_case_studie:hover .info{
	display: block;
}



#testemunhos{

}

#testemunhos .single_testemunho{
	display: flex;
}


#testemunhos .slider_testemunhos .icon{
	background: #fff;
	width: 50%;
	min-height: 350px;
	text-align: center;
	position: relative;
}

#testemunhos .slider_testemunhos .icon img{
	width: 270px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);

}

#testemunhos .slider_testemunhos .info{
	background-color: rgb(24, 73, 157);
	width: 50%;
	position: relative;
}


#testemunhos .slider_testemunhos .info .conteudo{
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	padding: 20px;
}


#testemunhos .slider_testemunhos .info .texto{
	font-size: 22px;
	color: #fff;
	text-align: center;
	font-family: GothamBook;
}


#testemunhos .slider_testemunhos .info .nome{
	font-size: 18px;
	color: #fff;
	text-align: center;
	font-family: GothamBook;
	margin-top: 20px;
}

#testemunhos .slider_testemunhos .info .descricao{
	font-size: 16px;
	color: #fff;
	text-align: center;
	font-family: GothamBook;
}


#testemunhos .slider_testemunhos{
	position: relative;
}

#testemunhos .slider_testemunhos .owl-controls{
	position: absolute;
	top: 50%;
	width: 100%;
	height: 0;
}

#testemunhos .slider_testemunhos .owl-controls .owl-prev{
	position: absolute;
	left: -75px;
	top: -15px;
}


#testemunhos .slider_testemunhos .owl-controls .owl-prev img{
	width: 25px;
	opacity: 0.3;
}

#testemunhos .slider_testemunhos .owl-controls .owl-prev img:hover{
	opacity: 1;
}

#testemunhos .slider_testemunhos .owl-controls .owl-next{
	position: absolute;
	right: -75px;
	top: -15px;
}


#testemunhos .slider_testemunhos .owl-controls .owl-next img{
	width: 25px;
	opacity: 0.3;
}

#testemunhos .slider_testemunhos .owl-controls .owl-next img:hover{
	opacity: 1;
}

#process .holder_processo{
	height: 800px;
	width: 800px;
	margin: 60px auto 0 auto;
}


#process .holder_processo{
	height: 800px;
	width: 800px;
	margin: 60px auto 0 auto;
	position: relative;
}

#process .holder_processo .single_case_studie{
	position: absolute;
	border: 6px solid rgb(168,222,249);
	border-radius: 50%;
	width: 120px;
	height: 120px;
	padding: 20px;
	background: #fff;
}

#process .holder_processo .single_case_studie.active{
	border: 6px solid #18499d;
}

#process .holder_processo .single_case_studie img{
	width: 65%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}



#process .holder_processo .single_case_studie.case_0{
	top: 15px;
	left: 360px;
}

#process .holder_processo .single_case_studie.case_1:before{
	content: "";
	width: 85px;
	height: 140px;
	background-image: url(/site/imagens/seta_cases.png);
	z-index: 2;
	position: absolute;
	background-repeat: no-repeat;
	background-size: auto 100%;
	transform: rotate(-44deg);
	top: -130px;
	right: 100px;
}


#process .holder_processo .single_case_studie.case_1.active:before{
	background-image: url(/site/imagens/seta_cases_blue.png);
}

#process .holder_processo .single_case_studie.case_1{
	top: 160px;
	right: 80px;
}



#process .holder_processo .single_case_studie.case_2:before{
	content: "";
	width: 85px;
	height: 140px;
	background-image: url(/site/imagens/seta_cases.png);
	z-index: 2;
	position: absolute;
	background-repeat: no-repeat;
	background-size: auto 100%;
	transform: rotate(-3deg);
	top: -155px;
	right: 10px;
}



#process .holder_processo .single_case_studie.case_2.active:before{
	background-image: url(/site/imagens/seta_cases_blue.png);
}

#process .holder_processo .single_case_studie.case_2{
	top: 430px;
	right: 0;
}

#process .holder_processo .single_case_studie.case_3:before{
	content: "";
	width: 85px;
	height: 160px;
	background-image: url(/site/imagens/seta_cases.png);
	z-index: 2;
	position: absolute;
	background-repeat: no-repeat;
	background-size: auto 100%;
	transform: rotate(48deg);
	bottom: 60px;
	right: -125px;
}



#process .holder_processo .single_case_studie.case_3.active:before{
	background-image: url(/site/imagens/seta_cases_blue.png);
}

#process .holder_processo .single_case_studie.case_3{
	bottom: 0;
	right: 190px;
}

#process .holder_processo .single_case_studie.case_4:before{
	content: "";
	width: 85px;
	height: 160px;
	background-image: url(/site/imagens/seta_cases.png);
	z-index: 2;
	position: absolute;
	background-repeat: no-repeat;
	background-size: auto 100%;
	transform: rotate(106deg);
	top: 30px;
	right: -130px;

}


#process .holder_processo .single_case_studie.case_4.active:before{
	background-image: url(/site/imagens/seta_cases_blue.png);
}

#process .holder_processo .single_case_studie.case_4{
	bottom: 0;
	left: 190px;
}

#process .holder_processo .single_case_studie.case_5:before{
	content: "";
	width: 85px;
	height: 160px;
	background-image: url(/site/imagens/seta_cases.png);
	z-index: 2;
	position: absolute;
	background-repeat: no-repeat;
	background-size: auto 100%;
	transform: rotate(160deg);
	bottom: -185px;
	left: 50px;
}



#process .holder_processo .single_case_studie.case_5.active:before{
	background-image: url(/site/imagens/seta_cases_blue.png);
}


#process .holder_processo .single_case_studie.case_5{
	top: 430px;
	left: 0;
}
#process .holder_processo .single_case_studie.case_6:before{
	content: "";
	width: 85px;
	height: 160px;
	background-image: url(/site/imagens/seta_cases.png);
	z-index: 2;
	position: absolute;
	background-repeat: no-repeat;
	background-size: auto 100%;
	transform: rotate(212deg);
	bottom: -140px;
	left: -80px;
}




#process .holder_processo .single_case_studie.case_6.active:before{
	background-image: url(/site/imagens/seta_cases_blue.png);
}

#process .holder_processo .single_case_studie.case_6{
	top: 160px;
	left: 80px;
}



#process .holder_processo .holder_info{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	width: 60%;
	text-align: center;
}


#process .holder_processo .holder_info .num{
	font-size: 35px;
	color: rgb(168,222,249);
	position: relative;
	font-family: 'GothamBold';
}


#process .holder_processo .holder_info .nome{
	font-size: 32px;
	color: #17479e;
	position: relative;
	font-family: 'GothamBold';
	text-transform: uppercase;
}


#process .holder_processo .holder_info .content{
	font-size: 20px;
	color: #17479e;
	position: relative;
	font-family: 'GothamThin';
}



@media screen and (max-width: 992px){

	.banner_interno .conteudo {
		width: 70%;
	}

	.banner_interno .conteudo .nome {
		font-size: 20px;
	}

	.banner_interno .conteudo .descricao {
		font-size: 20px;
		margin-top: 40px;
	}

	#process .holder_processo {
		height: 600px;
		width: 600px;
	}

	#process .holder_processo .single_case_studie {
		width: 95px;
		height: 95px;
	}


	#process .holder_processo .single_case_studie.case_0{
		top: 15px;
		left: 250px;
	}

	#process .holder_processo .single_case_studie.case_1:before{
		width: 45px;
		height: 110px;
		top: -95px;
		right: 87px;
	}

	#process .holder_processo .single_case_studie.case_1{
		top: 125px;
		right: 80px;
	}


	#process .holder_processo .single_case_studie.case_2:before{
		width: 45px;
		height: 110px;
		top: -125px;
		right: 30px;
	}


	#process .holder_processo .single_case_studie.case_2{
		top: 325px;
		right: 0;
	}

	#process .holder_processo .single_case_studie.case_3:before{
		width: 45px;
		height: 110px;
		bottom: 45px;
		right: -95px;
	}


	#process .holder_processo .single_case_studie.case_3{
		bottom: 0;
		right: 150px;
	}

	#process .holder_processo .single_case_studie.case_4:before{
		width: 45px;
		height: 110px;
		top: 23px;
		right: -87px;

	}

	#process .holder_processo .single_case_studie.case_4{
		bottom: 0;
		left: 145px;
	}

	#process .holder_processo .single_case_studie.case_5:before{
		width: 45px;
		height: 110px;
		bottom: -130px;
		left: 65px;
	}


	#process .holder_processo .single_case_studie.case_5{
		top: 325px;
		left: 0;
	}
	#process .holder_processo .single_case_studie.case_6:before{
		width: 45px;
		height: 110px;
		bottom: -95px;
		left: -60px;
	}

	#process .holder_processo .single_case_studie.case_6{
		top: 130px;
		left: 80px;
	}

	#process .holder_processo .holder_info .nome {
		font-size: 25px;
	}

	#process .holder_processo .holder_info .content {
		font-size: 16px;
	}

	#case_studies .holder_case_studies {
		padding: 20px;
	}

	#case_studies .holder_case_studies .single_case_studie {
		width: Calc(100% / 4);
		height: 140px;

	}

	#case_studies .holder_case_studies .single_case_studie .icon {
		width: 80%;
	}

	#case_studies .holder_case_studies .single_case_studie .info a {
		font-size: 16px;
	}

	#testemunhos .slider_testemunhos {
		position: relative;
		/* margin: 0 40px; */
		width: 80%;
		margin: 0 auto;
	}

	#testemunhos .single_testemunho {
		display: block;
	}
	#testemunhos .slider_testemunhos .icon {
		background: #fff;
		width: 100%;
		min-height: 214px;
		text-align: center;
		position: relative;
	}

	#testemunhos .slider_testemunhos .icon img {
	}

	#testemunhos .slider_testemunhos .info {
		width: 100%;
	}

	#testemunhos .slider_testemunhos .info .conteudo {
		position: relative;
		width: 100%;
		top: unset;
		transform: unset;
		-moz-transform: unset;
		-webkit-transform: unset;
		padding: 20px;
	}

	#testemunhos .slider_testemunhos .info .texto {
		font-size: 18px;
	}

	#testemunhos .slider_testemunhos .info .nome {
		font-size: 16px;
	}

	#testemunhos .slider_testemunhos .info .descricao {
		font-size: 14px;
	}
}



@media screen and (max-width: 650px){

	.banner_interno .conteudo .nome {
		font-size: 18px;
	}

	.banner_interno .conteudo .descricao {
		font-size: 18px;
		margin-top: 20px;
	}

	#process .holder_processo {
		height: auto;
		width: auto;
		text-align: center;
	}

	#process .holder_processo .single_case_studie {
		width: 75px;
		height: 75px;
	}

	#process .holder_processo .single_case_studie.case_0,
	#process .holder_processo .single_case_studie.case_1,
	#process .holder_processo .single_case_studie.case_2,
	#process .holder_processo .single_case_studie.case_3,
	#process .holder_processo .single_case_studie.case_4,
	#process .holder_processo .single_case_studie.case_5,
	#process .holder_processo .single_case_studie.case_6{
		top: unset;
		left: unset;
		right: unset;
		bottom: unset;
		position: relative;
		display: inline-block;
		margin: 10px 5px;
	}

	#process .holder_processo .single_case_studie.case_0:before,
	#process .holder_processo .single_case_studie.case_1:before,
	#process .holder_processo .single_case_studie.case_2:before,
	#process .holder_processo .single_case_studie.case_3:before,
	#process .holder_processo .single_case_studie.case_4:before,
	#process .holder_processo .single_case_studie.case_5:before,
	#process .holder_processo .single_case_studie.case_6:before{
		display: none;
	}

	#process .holder_processo .holder_info {
		position: relative;
		top: unset;
		left: unset;
		transform: unset;
		-moz-transform: unset;
		-webkit-transform: unset;
		width: 100%;
		text-align: center;
	}

	.zona.galeria .single_imagem {
		width: Calc(100% / 4);
	}

	#services .holder_servicos .single_servico .icon {
		display: block;
		width: 100%;
	}

	#services .holder_servicos .single_servico .info {
		display: block;
		width: 100%;
		font-size: 18px;
		padding-left: 0;
		text-align: center;
		margin-top: 30px;
	}

	#case_studies .holder_case_studies .single_case_studie {
		width: Calc(100% / 3);
		height: 120px;

	}

	#testemunhos .slider_testemunhos {
		width: 60%;
	}
}


@media screen and (max-width: 450px){

	.banner_interno .conteudo  {
		width: 100%;
	}

	.banner_interno .conteudo .nome {
		font-size: 16px;
	}

	.banner_interno .conteudo .descricao {
		font-size: 16px;
		margin-top: 15px;
	}

	#case_studies .holder_case_studies .single_case_studie {
		width: Calc(100% / 2);
		height: 100px;

	}

}
/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/




/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/


.footer{
	position: relative;
	width: 100%;
	color: #fff;
	background-image: url(/site/imagens/fundo_footer.png);
	font-size: 16px;
	font-family: 'GothamNarrowBook';
	line-height: 27px;
	padding-bottom: 100px;
	padding-top: 30px;
	margin-top: 50px;
}

.footer h2{
	font-size: 25px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.footer h3{
	font-size: 33px;
	color: #fff;
	text-transform: unset;
	margin-bottom: 20px;
}

.footer i{
	color: #25aae1;
	margin-right: 7px;
}

.footer .links_social i{
	font-size: 30px;
	margin-right: 20px;
}

.footer a{
	color: #fff;
	text-decoration: none;
}

.footer #form_newsletter input {
	border: none;
	width: 440px;
	padding: 10px 15px;
	max-width: 100%;
	outline: none;
}



.lower_footer {
	padding: 20px 0;
	background: rgba(6, 42, 101, 0.5);
	position: absolute;
	width: 100%;
	bottom: 0;
}

.lower_footer p,
.lower_footer a{
	font-size: 13px;
	color: #fff;
	margin: 0;
}

@media screen and (max-width: 992px) {

}

@media screen and (max-width: 500px) {

	#form_newsletter .input-group{
		display: block;
	}

}


.livro_reclamacoes{
	padding: 10px 0;
}


.livro_reclamacoes img{
	width: 75px;
}


.livro_reclamacoes{
	color: #302e34;
}

.livro_reclamacoes label{
	cursor: pointer;
}

#pagina_documentacao{
	display: flex;
	margin-bottom: -50px;
}

#pagina_documentacao .menu_doc{
	width: 30%;
	background-color: #d6d6d6;
	padding: 0 5%;
}

#pagina_documentacao .menu_doc .single_menu_cat{
	color: #929292;
	font-size: 20px;
	margin: 10px 0;
}


#pagina_documentacao .menu_doc .single_menu_cat.active{
	cursor: pointer;
}

#pagina_documentacao .listagem_doc{
	width: Calc(100% - 30%);
	padding: 0 5%;
}


#pagina_documentacao .listagem_doc .single_cat{
	font-size: 22px;
	margin-bottom: 40px;
}


#pagina_documentacao .listagem_doc .single_cat .single_doc{
	margin: 15px 0;
}

#pagina_documentacao .listagem_doc .single_cat .single_doc a{
	font-size: 18px;
	color: #373737;
	text-decoration: underline;
}

.categorias_documentacao_produtos{
	font-size: 15px;
	color: #d6d6d6;
}
.categorias_documentacao_produtos a{
	text-decoration: underline;
}


@media screen and (max-width: 1560px){

	.banner.documentacao .conteudo .nome {
		font-size: 35px;
		padding: 0 20px;
	}

	#pagina_documentacao .menu_doc .single_menu_cat {
		font-size: 18px;
	}
}

@media screen and (max-width: 1420px){

	#pagina_documentacao .menu_doc {
		padding: 0 15px;
	}
}

@media screen and (max-width: 992px){

	.banner.documentacao .conteudo .nome {
		font-size: 28px;
		padding: 0 20px;
	}

	#pagina_documentacao {
		display: unset;
	}

	#pagina_documentacao .menu_doc {
		width: 100%;
		text-align: center;
	}

	#pagina_documentacao .listagem_doc {
		width: 100%;
		padding: 0 15px;
	}

	#pagina_documentacao .menu_doc .single_menu_cat {
		font-size: 18px;
		display: inline-block;
		padding: 0 10px;
	}

	#pagina_documentacao .menu_doc .single_menu_cat.border {
		border-right: 1px solid;
	}
}

@media screen and (max-width: 450px){

	.banner.documentacao .conteudo .nome {
		font-size: 25px;
	}
	#pagina_documentacao .menu_doc .single_menu_cat {
		font-size: 16px;
	}

	#pagina_documentacao .listagem_doc .single_cat {
		font-size: 20px;
	}
	#pagina_documentacao .listagem_doc .single_cat .single_doc a {
		font-size: 16px;
		color: #373737;
		text-decoration: underline;
	}

}

button{
	background-color: #aae0fa;
	border: none;
	font-family: 'GothamMedium';
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	outline: none;
	padding: 12px 15px;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
	text-decoration: none;
	margin: 0 25px;
}


.ver_todas_noticias{
	margin-top: 30px;
	text-align: center;
}

.footer #form_newsletter button {
	background: transparent;
	border: none;
	font-size: 25px;
	position: absolute;
	right: 0;
	top: 9px;

	outline: none;
	margin: 0;
	padding: 0;
}

#bloco_prods .topo_prods .campo_pesq button{
	margin: 0;
	padding: 0;
}

.menu_holder .menu-toggler {
	margin: 0;
	padding: 0;
}






.breadcrumbs{
	font-size: 17px;
	margin: 10px 0 0;
	color: #17479e;
	min-height: 75px;
	font-family: 'GothamMedium';
}

.detalhe_produto .breadcrumbs{
	margin-bottom: 80px;
}

.breadcrumbs a{
	font-size: 17px;
	color: #25aae1;
}

.breadcrumbs a:hover{
	color: #17479e;
}



/* Estilos para a barra de política das cookies */

.cookie_bar {
	position: fixed;
	bottom: 0;
	width: 100%;
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	background: #494e54;
	color: white;
	z-index: 9999;
	font-family: Arial, Helvetica;
	font-size: 12px;
	min-height: 50px;
	line-height: 16px;
}

.center_cookie_container {
	position: relative;
	max-width: 850px;
	width: 100%;
	margin: 0 auto;
}

.cookie_bar .cookie_texto {
	position: relative;
	float: left;
	max-width: 830px;
	width: 100%;
	margin-right: -95px;
	padding: 0px 0;
	text-align: center;
}

.cookie_bar .cookie_texto .cookie_interior {
	margin-right: 95px;
	padding: 10px 10px;
}

.cookie_bar .cookie_texto a {
	color: white;
	text-decoration: underline;
}

.cookie_bar .cookie_aceitar {
	position: relative;
	float: right;
	margin-left: 10px;
	margin-right: 10px;
	background: white;
	margin-top: 10px;
}

.cookie_bar .cookie_aceitar #cookie_botao {
	background: white;
	border: 1px #FFFFFF solid;
	position: relative;
	width: 75px;
	height: 30px;
	color: #494e54;
	font-weight: bold;
	cursor: pointer;
	padding: 0;
	margin: 0;
	font-size: 12px;
	text-transform: none;
	font-weight: normal;
}

.cookies_politicas {
	position: relative;
	display: none;
	color: white;
	clear: both;
	width: 100%;
	max-width: 810px;
	margin: 0 auto;
}

.cookies_politicas a {
	color: white;
	text-decoration: underline;
}

.cookies_politicas .center_cookie_container {
	padding: 10px;
	width: 95%;
}