/* ------------- pattern Goon */
@charset "utf-8";*, body, html {
    margin: 0;
    padding: 0
}
a, button:focus, input:focus, select:focus, textarea:focus {
    outline: 0 
}
.wrap, body, html {
    min-height: 100%
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
body, html {
    font-family: Montserrat-ExtraLight, Arial, Helvetica, sans-serif;
    height: 100%;
}
a {
    text-decoration: none;
    color: #000;
}
a img, img {
    border: 0
}
a, h1, h2, h3, h4, p {
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    font-weight: 400;
}
article, footer, header, nav, section {
    display: block
}
::-moz-selection {
	color: #FFF;
	background: #70534A;
}
::selection {
	color: #FFF;
	background: #70534A;
}
/* ------------- fonts */
@font-face { 
	font-family: Montserrat-Bold;
	src:url(fonts/Montserrat-Bold.eot);
	src:url(fonts/Montserrat-Bold.eot?#iefix) format('embedded-opentype'), url(fonts/Montserrat-Bold.woff) format('woff'), url(fonts/Montserrat-Bold.ttf) format('truetype'), url(fonts/Montserrat-Bold.svg#svgFontName) format('svg');
	font-weight:normal;
	font-style:normal
}
@font-face { 
	font-family: Montserrat-ExtraLight;
	src:url(fonts/Montserrat-ExtraLight.eot);
	src:url(fonts/Montserrat-ExtraLight.eot?#iefix) format('embedded-opentype'), url(fonts/Montserrat-ExtraLight.woff) format('woff'), url(fonts/Montserrat-ExtraLight.ttf) format('truetype'), url(fonts/Montserrat-ExtraLight.svg#svgFontName) format('svg');
	font-weight:400;
	font-style:normal
}
@font-face { 
	font-family: Regular;
	src:url(fonts/Regular.eot);
	src:url(fonts/Regular.eot?#iefix) format('embedded-opentype'), url(fonts/Regular.woff) format('woff'), url(fonts/Regular.ttf) format('truetype'), url(fonts/Regular.svg#svgFontName) format('svg');
	font-weight:400;
	font-style:normal
}
h1 {
	font-size: 50px;
	line-height: 56px;
	font-family: Montserrat-Bold, Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	margin-bottom: 50px;
}
h2{
	font-family: Montserrat-Bold, Arial, Helvetica, sans-serif;
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 30px;
}
h3{
	font-family: Montserrat-Bold, Arial, Helvetica, sans-serif;
	font-size: 30px;
	line-height: 36px;
}
p{
	font-family: Montserrat-ExtraLight, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 30px;
}
/* ------------- main */
.wrap {
    position: relative;
    overflow-x: hidden;
}
.content {
    padding-bottom: 1100px;
    margin-top: 0;
    overflow: hidden;
}
.center {
    margin: 0 auto;
}

/* ------------- nav old */
.veryold {
    width: 100%;
    height: 400px;
    background: #FFF;
    position: absolute;
    z-index: 1100;
    text-align: center;
}
.veryold h1 {
    font-size: 40px;
    line-height: 70px;
    color: #666;
    font-weight: 600
}
.veryold h2 {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px
}
.veryold a {
    padding: 10px 20px;
    border: 1px solid #999;
    background: #666;
    color: #FFF
}
.veryold a:hover {
    background: #444
}
/* ------------- effects */
.transition {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}
.grow {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}
.grow:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}
#loader{
	position:fixed;
	z-index:1111;
	width:100%;
	height:100%;
	background:#FFF;
	margin-top:0px;
}
.gradient{
	background: #ddc26f; /* Old browsers */
	background: -moz-linear-gradient(top, #ddc26f 0%, #bd9a5f 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #ddc26f 0%,#bd9a5f 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #ddc26f 0%,#bd9a5f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddc26f', endColorstr='#bd9a5f',GradientType=0 ); /* IE6-9 */
}
.shadow{
	background: #FFF;
	-webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.50);
	-moz-box-shadow:    0px 0px 40px 0px rgba(0, 0, 0, 0.50);
	box-shadow:         0px 0px 40px 0px rgba(0, 0, 0, 0.50);
}
.inline {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top
}
.fly {
	opacity: 0;
	transition: all 500ms ease-in-out;
	transform: translateY(100px) scale(1.05) translate3d(0, 0, 0);
}
.show-block {
	opacity: 1;
	transform: translateY(0) scale(1) translate3d(0, 0, 0);
}
/* ------------- auxiliary */
.left {
	float: left;
}
.right {
	float: right;
}
.section_top{
	margin-top: 300px;
}
.txt_center{
	text-align: center;
}
.txt_center p{
	margin-top: -30px;
}
.txt_center span{
	font-size: 40px;
	margin: 10px 15px;
	color: #70534A;
}
.txt_center span:hover{
	color: #D98969;
}
/* ------------- header */
header {
    width: 100%;
    position: fixed;
    z-index: 1012;
	height: 150px;
	float: left;
}
.header{
	width: 95%;
	height: 150px;
	padding-top: 50px;
	margin: 0 auto;
}
.logo img{
	float: left;
	z-index: 1011;
	position: absolute;
}
.logo_color{
	display: none;
}
/* ------------- menu */
.menu{
	width: 40%;
	min-height: 1100px;
	height: 100%;
	z-index: 1010;
	background: #70534A;
	float: right;
	overflow: hidden;
	margin-right: -60%;
	margin-top: -330px;
	padding-left: 60px;
}
.menu_active{
	margin-right: 0px;
}
.language{
	margin-bottom: 50px;
}
.language a{
	color: #FFF;
	margin-right: 10px;
}
.language .language_active,.language a:hover{
	font-weight: 600;
	color: #D88868;
}
nav{
	margin-top: 300px;
}
nav a h1{
	font-family: Montserrat-Bold, Arial, Helvetica, sans-serif;
	font-size: 40px;
	line-height: 30px;
	color: #FFF;
	text-transform: uppercase;
	margin-bottom: 0px;
}
nav a:hover h1{
	color: #D88868;
}
nav a span{
	font-size: 30px;
	line-height: 30px;
	color: #FFF;
	margin-right: 10px;
}
nav a:hover span{
	color: #D88868;
}
nav a p, nav p{
	color: #FFF;
}
/* ------------- menufixo */
.menufixo{
	height: 80px;
	/*background: none;
	-webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow:    0px 0px 40px 0px rgba(0, 0, 0, 0.75);
	box-shadow:         0px 0px 40px 0px rgba(0, 0, 0, 0.75);*/
}
.menufixo .header{
	width: 99%;
	height: 80px;
	padding-top: 0px;
}
.menufixo .menu{
	margin-top: -300px;
	margin-right: -50%;
}
.menufixo .menu_active{
	margin-right: 0%;
}
.menufixo .header .header_menu{
	margin-top: -10px;
}
.menufixo .logo img{
	width: 135px;
	margin-top: 5px;
	background: #FFF;
	padding: 15px 10px;
}
/* ------------- hamburger */
.header_menu{
	width: 100px;
	height: 90px;
	padding-top: 20px;
	background: #70534A;
	float: right;
}
.hamburger{ 
	display: block; 
}
.hamburger .line{
  width: 50px;
  height: 5px;
  background-color: #FFF;
  display: block;
  margin: 9px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover{
  cursor: pointer;
}
#hamburger-1.is-active .line:nth-child(2){
  opacity: 0;
}
#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(14px) rotate(45deg);
  -ms-transform: translateY(14px) rotate(45deg);
  -o-transform: translateY(14px) rotate(45deg);
  transform: translateY(14px) rotate(45deg);
}
#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-14px) rotate(-45deg);
  -ms-transform: translateY(-14px) rotate(-45deg);
  -o-transform: translateY(-14px) rotate(-45deg);
  transform: translateY(-14px) rotate(-45deg);
}
/* ------------- topo home */
.top{
	width: 100%;
	height: 750px;
	background: url(../img/topo.jpg) no-repeat top center;
	position: relative;
	z-index: 1010;
	overflow: hidden;
}
.top_gradient{
	width: 100%;
	height: 100%;
	background: url(../img/black_gradient.png) repeat;
	padding-top: 15%;
    position: absolute;
    z-index: 1010;
}
.top_txt{
	width: 50%;
	height: 100%;
	float: left;
	color: #FFF;
}
.top_txt h1{
	text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}
.top_txt p{
	font-size: 20px;
	line-height: 30px;
}
.top_txt button{
	width: 80px;
	height: 80px;
	font-size: 30px;
	margin-top: 50px;
}
.back_video{
	width: 100%;
	position: absolute;
    z-index: 1000;
}

.top_video{
	width: 50%;
	min-width: 500px;
	height: 350px;
	background: #70534A;
	float: right;
	margin-top: -280px;
	display: inline-block;
	position: relative;
	z-index: 1011;
}
.top_video_pop{
	width: 500px;
	height: 280px;
	float: left;
	background: url(../img/top_video.jpg) no-repeat top center;
	cursor: pointer;
}
.top_video_gradient{
	width: 100%;
	height: 100%;
	background: url(../img/black_gradient.png) repeat;
	text-align: center;
	padding-top: 100px;
}
.top_video_gradient span{
	font-size: 80px;
	color: #FFF;
}
.top_video_gradient:hover{
	background: url(../img/black_gradient2.png) repeat;
}
.arrowr{
	width: 214px;
	height: 104px;
	background: url(../img/arrowr.png) no-repeat top center;
}
.arrowl{
	width: 214px;
	height: 104px;
	background: url(../img/arrowl.png) no-repeat top center;
	position: absolute;
}
.top_video .arrowr{
	float: right;
	margin-right: 10%;
    margin-top: -190px;
}
/* ------------- cebipam*/
.cebipam{
	width: 100%;
	min-height: 800px;
	background: url(../img/map.jpg) no-repeat top left;
	margin-top: -80px;
	position: relative;
	z-index: 1001;
	padding-top: 300px;
	padding-bottom: 200px;
}
.gallery{
	padding: 80px 0px 50px 0px;
}
.gallery_pag{
	padding: 0px 0px 50px 0px;
}
.social{
	width: 100%;
	height: 320px;
}
.company{

}
.links{
	width: 100%;
	margin: 50px 0px 100px 0px;
}
.links .tit{
	color: #FFF;
	min-height: 30px;
	margin-bottom: 0px;
}
.links_interno{
	background: #70534A;
	padding: 3%;
}
.links_col{
	float: left;
	width: 25%;
	min-height: 100px;
}
.links_lin{
	width: 100%;
	height: auto;
	margin-bottom:10px;
	padding-right: 10px;
	color: #FFF;
}
.links_lin a{
	color: #FFF;
}
.links_lin a:hover{
	color: #D98969;
}



/* ------------- structure col */
.col1{
	width: 100%;
	min-height: 200px;
}
.col1_hidden{
	height: 400px;
	overflow: hidden;
}
.col1_color{
	background: #70534A;
	color: #FFF;
	height: 700px;
}
.col1_color a{
	color: #FFF;
}
.col1_color a:hover{
	color: #D98969;
}
.col1_color span{  
	margin-right: 10px;
}
.col1_color .arrowl{
	margin: -250px 0px 0px 400px;
}
.col1_left{
	width: 35%;
	height: 100%;
	float: left;
	padding: 170px 0px;
}
.col1_right{
	width: 55%;
	height: 100%;
	float: right;
	overflow: hidden;
}
.col2{
	width: 50%;
	min-height: 100px;
	display: inline-block;
}
.col2 img{
	width: 80%;
	float: right;
}
.col3{
	width: 24%;
	height: 480px;
	float: left;
	margin: 4%;
	border-radius: 10px;
}
.col3_shadow,.col4_shadow{
	width: 100%;
	height: 100%;
	background: url(../img/shadow.png) repeat-x;
	border-radius: 10px;
	color: #FFF;
	padding: 30px;
}
.col3:hover,.col4:hover{
    -webkit-box-shadow: 3px 20px 56px 0px rgba(0,0,0,0.42);
	-moz-box-shadow: 3px 20px 56px 0px rgba(0,0,0,0.42);
	box-shadow: 3px 20px 56px 0px rgba(0,0,0,0.42);
}
.col3:hover .col3_shadow,.col4:hover .col4_shadow{
	background: url(../img/brown_gradient.png) repeat;
}
.col4{
    width: 21%;
    height: 200px;
    overflow: hidden;
    margin: 1.9%;
    border-radius: 10px;
    float: left;
}
.col4_shadow{
	background:none;
	text-align: center;
}
.col4_shadow span{
	display: none;
	margin: 20% 22%;
	font-size: 50px;
}
.col4_shadow p{
	display: none;
	font-size: 20px;
	font-weight: 600;
	margin-top: 10px;
}
.col4_shadow a{
	font-size: 20px;
	font-weight: 600;
	margin-top: 10px;
	color: #FFF;
}
.col4:hover .col4_shadow span,.col4:hover .col4_shadow p{
	display: block;
}
/* ------------- structure row */
.row1{
	width: 113%;
	height: 600px;
	margin: 20px 0px;
	overflow: hidden;
	margin-left: -4%;
}
.row2{
	width: 113%;
	height: auto;
	margin: 20px 0px;
	margin-left: -4%;
}
.row4{
	width: 105%;
	height: auto;
	margin: 20px 0px;
	margin-left: -2%;
}
.row5{
	height: auto;
	overflow: visible;
}
/* ------------- pages */
.pag{
	width: 100%;
	height: 350px;
	margin-bottom: 100px;
	background: url(../img/header.jpg) repeat-x top center;
}
.pag button{
	margin-top: 310px;
}
.pag_video{
	width: 100%;
	height: 570px;
	margin: 80px 0px;
	cursor: pointer;
	text-align: center;
	color: #FFF;
	font-size: 100px;
    padding-top: 230px;
}
/* ------------- text */
.txt p{
	margin-bottom: 20px;
}
.txt_left{
	float: left;
	width: 48%;
}
.txt_right{
	float: right;
	width: 48%;
}
.txt_video span{
	font-size: 80px;
    color: #FFF;
    position: absolute;
    margin-top: 22%;
    margin-left: 20%;
    cursor: pointer;
}
/* ------------- tit */
.tit{
	width: 100%;
	min-height: 60px;
	margin-bottom: 50px;
}
.tit_color h1{
	color: #70534A;
}
.tit_left,.tit_left_pag{
	width: 65%;
	float: left;
	text-align: left;
}
.tit_left h1{ margin-bottom: 10px; }
.tit_right{
	width: 30%;
	float: right;
	text-align: right;
}
.tit_right .button{
	margin-top: 0px;
}

/* ------------- video */
.popup_open{
	cursor: pointer;
}
.popup_open h1, .popup_open h2{
	color: #FFF;
}
.popup_open div{
	font-size: 80px;
	color: #FFF;
}
.popup_video{
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 1011;
	top: 0px;
	margin: 0px;
	padding: 0px;
	left: 0px;
}
.popup_home{
	display: none;
}
.popup_txt{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1011;
}
.popup_txt iframe{
	height: 80vh;
}
.popup_back{
	width: 100%;
	height: 100vh;
	background: #000;
	position: absolute;
	z-index: 1010;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}
.popup_close{
	width: 100%;
	height: 60px;
	text-align: right;
	font-size: 30px;
	cursor: pointer;
	color: #AAA;
	padding: 20px;
}
.popup_close:hover{
	color: #FFF;
}
.popup_center{
	padding: 150px 20% 0px 20%;
	text-align: center;
}
/* ------------- Modal */
.modall{
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 99990;
	top: 0px;
	margin: 0px;
	padding: 0px;
	left: 0px;
}
.modall_back{
	width: 100%;
	height: 100vh;
	background: #4D4D4B;
	position: absolute;
	z-index: 99990;
	overflow-y: auto;
}
.modall .tit, .modall .tit h5{
	color: #FFF;
}
.modall_txt{
	position: relative;
	z-index: 99991;
}
.modall .txt{
	padding-top: 20px;
	color: #FFF;
}
.modall_header{
	width: 100%;
	height: 180px;
	top: 0px;
	overflow: hidden;
	background: #4D4D4B;
	position: fixed;
	z-index: 99990;
	border-bottom: 1px solid #777;
}
.modall_close{
	width: 100%;
	height: 60px;
	text-align: right;
	font-size: 30px;
	cursor: pointer;
	color: #AAA;
	padding: 20px;
}
.modall_close:hover{
	color: #FFF;
}
.modall_center{
	padding: 150px 20% 0px 20%;
	text-align: center;
}
.modall_content{
	margin-top: 185px;
	overflow-x: hidden;
	text-align: center;
}
.modall_content img{
	margin-bottom: 110px;
}
/* ------------- pagination */
.pagination{
	width: 100%;
	min-height: 50px;
	margin: 20px 0px 80px 0px;
	text-align: center;
	display: inline-block;
}
.pg{
	width: 40px;
	height: 40px;
	display: inline-block;
	color: #FFF;
	font-size: 18px;
	line-height: 40px;
	background: #CCC;
}
.pg:hover, .pg_active{
	background: #70534A;
	color: #FFF;
}
/* ------------- other */
.map{
	width: 55%;
	height: 100%;
	overflow: hidden;
	float: right;
}
.map iframe{
	min-height: 500px;
}
.g-recaptcha{
	width: 100%;
	display: inline-block;
    overflow: hidden;
    margin: 30px 0px 0px 0px;
}
/* ------------- footer */
footer {
	width: 100%;
	height: 1100px;
    bottom: 0;
	position: absolute;
	z-index: 1001;
	overflow: hidden;
}
footer h2{
	font-size: 40px;
	line-height: 40px;
}
footer p{
	line-height: 25px;
}
.contribute{
	width: 50%;
	height: 400px;
	float: left;
	background: #CCC;
	overflow: hidden;
}
.contribute_txt{
	width: 32%;
	margin-left: 15%;
	margin-top: -300px;
	color: #FFF;
	position: absolute;
	z-index: 1010;
}
.contribute img, .news img {
	max-width: 100%;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.contribute:hover img,.news:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.news{
	width: 50%;
	height: 400px;
	float: right;
	background: #AAA;
	overflow: hidden;
}
.news_txt{
	width: 32%;
	color: #FFF;
	margin-top: -350px;
    margin-left: 5%;
	position: absolute;
	z-index: 1010;
}
.contribute_txt span,.news_txt span{
	color: #FFF;
	margin-right: 10px;
	font-weight: 600;
}
.contribute_txt a,.news_txt a{
	color: #FFF;
}
.contribute_txt a:hover,.news_txt a:hover{
	color: #FFF;
}
.contribute_txt .arrowl{
	margin-left: -50%;
}
.foo{
	width: 100%;
	height: 600px;
	float: left;
	padding-top: 100px;
}
.foo h2{
	font-size: 18px;
	line-height: 25px;
}
.foo_logo img{
	width: 180px;
}
.foo_col1{
	width: 50%;
	float: left;
}
.foo_col2{
	width: 20%;
	float: right;
}
.foo_col2 a:hover{
	color: #D98969;
}
.foo_col3{
	width: 20%;
	float: right;
}
.foo_col3 a span{
	margin-right: 10px;
}
.foo_col3 a:hover span{
	color: #D98969;
}
.foo_bottom{
	width: 100%;
	float: left;
}
.foo_bottom h4{
	float: left;
	line-height: 70px;
	font-style: italic;
}
footer .goonc {
    padding: 0px;
	float:right;
}
.goon {
	width: 77px;
	height: 20px;
	background: url(../img/sprite.png) -8px -5px no-repeat;
	margin: 0 auto;
}
.goon:hover {
	width: 77px;
	height: 20px;
	background: url(../img/sprite.png) -8px -25px no-repeat;
	margin: 0 auto;
}
/* ------------- form */
input, select{
	width: 100%;
	height: 50px;
	border: none;
	border-bottom: 1px solid #FFF;
	color: #FFF;
	padding:5px 15px;
	font-size: 16px;
	margin: 10px 0px;
	background: none;
}
iframe{
	width: 100%;
	min-width: 300px;
	height: 100%;
	min-height: 450px;
}
.select2{
	margin-top: -50px;
}
.select2 select{
	border: 1px solid #4D4D4B;
	width: 50%;
	height: 40px;
	line-height: 40px;
}
.inp_1{
	width: 20%;
}
.inp_2{
	width: 48%;
}
.input_error{
	color: #FF7373;
	border-bottom: 2px solid #FF7373;
}
.checkbox {
    width: 100%;
    height: 30px;
    font-size: 15px;
    padding: 0px;
    color: #FFF;
    margin: 20px 0px;
}
.checkbox input {
    width: 20px;
    height: 20px;
}
.msg{
	width: 100%;
	height: 30px;
	font-size: 15px;
	line-height: 30px;
	text-align: center;
}
.success{
	width: 100%;
	height: 100%;
	color: #FFF;
	background: #00B259;
}
.error{
	width: 100%;
	height: 100%;
	color: #FFF;
    background: #FF7373;
}
.face_g{ display: block }
.face_p{ display: none }

textarea{
	width: 100%;
	height: 100px;
	border: none;
	border-bottom: 1px solid #BBB;
	font-size: 18px;
	color: #999;
	padding: 5px 15px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 20px;
}
/* ------------- button */
.button {
	font-size: 16px;
	padding: 15px 30px;
	border: none;
	background: none;
	z-index: 1001;
	position: relative;
	color: inherit;
	vertical-align: middle;
	position: relative;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	cursor:pointer;
	font-family: Montserrat-Extralight, Arial, Helvetica, sans-serif;
	margin: 50px auto;
	text-transform: uppercase;
}
.button:focus {
	outline: none;
}
.button_left{
	float: left;
}
.button_isi {
	color: #FFF;
	background: #70534A;
	border: none;
	overflow: hidden;
}
.button_isi:hover {
	
}
.col_form .button_isi:hover{
	border: 1px solid #FFF;
}
.button_isi::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 100%;
	margin: -15px 0 0 1px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #D98969;
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transform: scale3d(1, 2, 1);
	transform: scale3d(1, 2, 1);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	transition-timing-function: cubic-bezier(0.7,0,0.9,1);
}
.button_isi > span {
	
}
.button_isi:hover::before {
	-webkit-transform: scale3d(9, 9, 1);
	transform: scale3d(9, 9, 1);
}

.button_isi2 {
	color: #FFF;
	background: none;
	border: 1px solid #FFF;
	overflow: hidden;
}
.button_isi2:hover {
	color: #000;
}
.button_isi2::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 100%;
	margin: -15px 0 0 1px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #FFF;
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transform: scale3d(1, 2, 1);
	transform: scale3d(1, 2, 1);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	transition-timing-function: cubic-bezier(0.7,0,0.9,1);
}
.button_isi2 > span {
	vertical-align: middle;
	padding-left: 0.75em;
}
.button_isi2:hover::before {
	-webkit-transform: scale3d(9, 9, 1);
	transform: scale3d(9, 9, 1);
}

.button_line {
	color: #FFF;
	border: 1px solid #FFF; 
	background: none;
	overflow: hidden;
	padding: 10px 20px;
	font-size: 13px;
	text-transform: uppercase;
}
.button_line:hover {
	background: #FFF;
	color: #627352;
}

.button_margin{
	margin-top: -20px;
}

/* --------------------------------------------------- media query */
@media screen and (min-width :1281px){
	.logo img {
    	width: 248px;
	}
	.center {
		width: 1150px;
	}
	.top_video .arrowr{
		margin-right: 15%;
	}
	.contribute_txt{
		margin-top: -350px;
	}
	.news_txt{
		margin-top: -350px;
	}
}
@media screen and (max-width :1366px){
	.center {
		width: 1050px;
	}
	.foo_col3,.foo_col2{
		width: 25%;
	}
	.contribute_txt .arrowl{
		margin-left: -55%;
	}
}
@media screen and (max-width :1280px){
	h1 {
		font-size: 44px;
		line-height: 50px;
	}
	.logo img {
    	width: 200px;
	}
	.center {
		width: 980px;
	}
	.top{
	    height: 700px;
	}
	.top_txt p {
	    font-size: 17px;
	    line-height: 30px;
	    margin-top: 30px;
	}
	.top_video .arrowr{
		margin-right: 5%;
	}
	.cebipam{
		background-size: 800px;
	}
	.col1_color .arrowl{
		margin: -260px 0px 0px 350px;
	}
	.col3_shadow{
		padding: 20px;
	}
	.col3_shadow h2{
		font-size: 25px;
		line-height: 30px;
	}
	.news_txt{
		margin-top: -300px;
	}
}
@media screen and (max-width :1024px){
	.logo img {
    	width: 170px;
	}
	.center {
		width: 70%;
	}
	.top_video .arrowr{
		margin-right: -100px;
	}
	.cebipam{
		background-size: 600px;
	}
	.col1_color .arrowl{
		margin: -260px 0px 0px 280px;
	}
	.contribute,.news{
		height: 315px;
	}
	.contribute_txt .arrowl{
		margin-left: -70%;
	}
}
@media screen and (max-width : 1023px) {

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

	h1 {
		font-size: 30px;
		line-height: 33px;
		margin-bottom: 15px;
	}
	h2{
		font-size: 25px;
		line-height: 28px;
		margin-bottom: 15px;
	}
	h3{
		font-size: 20px;
		line-height: 28px;
	}
	.center {
		width: 80%;
	}
	.txt_center p{
		margin-top: 0px;
	}
	header{
		height: 60px;
		background: #70534A;
	}
	.header{
		height: 60px;
    	padding-top: 5px;
	}
	.header_menu {
	    width: 50px;
	    height: 50px;
	    padding-top: 0px;
	}
	.logo img {
    	width: 100px;
    }
    .menu{
    	width: 100%;
    	margin-right: -100%;
    	margin-top: 0px;
    	padding-left: 30px;
    }
    .menu_active{
    	margin-right: 0px;
	}
	.language {
	    margin-bottom: 10px;
	}
	nav {
	    margin-top: 20px;
	}
	nav a h1 {
	    font-size: 20px;
	    line-height: 10px;
	}
	nav a span {
    	font-size: 20px;
	}
	.top {
	    height: 300px;
	    background: url(../img/topo_p.jpg) no-repeat top center;
	}
	.back_video{
		width: auto;
		height: 100%;
	}
	.top_txt h1 {
	    font-size: 20px;
	    line-height: 26px;
	}
	.top_txt p {
	    font-size: 12px;
	    line-height: 15px;
	    margin-top: 10px;
	}
	.top_txt button {
	    width: 40px;
	    min-width: 40px;
	    height: 40px;
	    font-size: 20px;
	    margin-top: 10px;
	}
	.top_txt {
	    width: 100%;
	    padding-top: 30%;
	}
	.top_txt button span{
    	margin-left: -10px;
    	position: relative;
	}
	.top_video{
		width: 100%;
		min-width: 100%;
		height: 300px;
		text-align: center;
		margin-top: 0px;
	}
	.top_video_pop {
    	width: 250px;
    	height: 230px;
    	float: none;
    	margin: 30px auto;
	}
	.top_gradient{
		padding-top: 5%;
	}
	.top_video_gradient{
		padding-top: 80px;
	}
	.cebipam {
	    background-size: 350px;
	    margin-top: 260px;
	    background-position: right 280% top 0%;
	    padding-top: 100px;
	    padding-bottom: 0px;
	}
	.gallery{
		padding: 50px 0px;
	}
	.social{
		height: 250px;
	}
	.links_col{
		width: 100%;
		min-height: 100px;
	}
	.pag{
		height: 0px;
		background: none;
	}
	.pag_btn{
		height: 50px;
	}
	.col2{
		width: 100%;
		margin: 20px 0px;
	}
	.col2 img{
		width: 100%;
	}
	.txt_video span{
		margin-top: 50%;
    	margin-left: 25%;
	}
	.col1_color{
		height: 600px;
	}
	.contacts .col1_color{
		height: 800px;
	}
	.col1_left {
	    width: 100%;
	    padding-top: 70px;
	    padding-bottom: 0px;
	}
	.col1_right{
		width: 100%;
	}
	.col1_right img{
		width: 100%;
	}
	.col3{
		width: 90%;
		margin-bottom: 20px;
	}
	.col4{
		width: 100%;
		margin: 10px 0px;
	}
	.row1{
		height: 1600px;
	}
	.projeto .col1_right{
		height: 300px;
		margin-top: 32px;
	}
	.col1_color .arrowl{
		margin: 90px 0px 0px -150px;
	}
	.tit_left,.tit_right{
		width: 100%;
	}
	.tit_right .button{
		margin-top: 20px;
	}
	.button{
		min-width: 100%;
	}
	.pag button {
	    margin-top: 80px;
	}
	.content{
		padding-bottom: 1500px;
	}
	/* ------------- footer */
	footer {
		height: 1500px;
		padding-top: 50px;
	}
	footer h2 {
	    font-size: 25px;
	    line-height: 30px;
	}
	.contribute,.news{
		width: 100%;
		height: 170px;
	}
	.contribute_txt,.news_txt{
		width: 100%;
		height: 300px;
		margin: 0px;
		margin-top: -160px;
		margin-left: 20px;
	}
	.contribute_txt .arrowl {
    	background-size: 60%;
    	margin-left: -30%;
    	margin-top: -68px;
	}
	.foo{
		padding-top: 50px;
	}
	.foo_col1,.foo_col2,.foo_col3{
		width: 100%;
		margin-bottom: 50px;
		text-align: center;
	}
	.foo_bottom h4{
		line-height: 20px;
		text-align: center;
	}
	.checkbox{
		font-size: 10px;
	}
	.back_video{
		display: none;
	}
}


