/* ==== Google font ==== */
@import url('http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Montserrat:700|Merriweather:400italic');


@font-face {
    font-family: 'montserratregular';
    src: url('montserrat-regular-webfont.woff2') format('woff2'),
         url('montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


body {
    width: 100%;
    height: 100%;
    font-family: 'Lato',sans-serif;
	font-weight: 300;
    color: #666;
    background-color: #fff;
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 5px 0px;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6em;
}

p.lead {
	font-weight: 600;
}

a {

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
}

.light {
    font-weight: 400;
}

.navbar {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
	
}

.navbar-brand {
    font-weight: 700;
}
.navbar-brand {
  height: 40px;
  padding: 5px 15px;
  font-size: 18px;
  line-height: 1em;
}

.navbar-brand h1{
	color: #fff;
  font-size: 20px;
  line-height: 40px;
}

.navbar-brand:focus {
    outline: 0;
}

.nav.navbar-nav {
    background-color: rgba(255,255,255,.6);
}


.navbar-custom.top-nav-collapse .nav.navbar-nav {
    background-color: rgba(0,0,0,0);
}


.navbar-custom ul.nav li a {
	font-size: 12px;
	letter-spacing: 1px;
    color: #444;
	text-transform: uppercase;
	font-weight: 700;
}

.navbar-custom.top-nav-collapse ul.nav li a {
	    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	color: #999;
}


.navbar-custom.top-nav-collapse ul.nav li a:hover, 
.navbar-custom.top-nav-collapse ul.nav li a:focus,
.navbar-custom.top-nav-collapse ul.nav li a:active{
	    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    background-color: #fff;
	    color: #85b426;
}


.navbar-custom ul.nav ul.dropdown-menu {
	  border-radius: 0;	
}

.navbar-custom ul.nav ul.dropdown-menu:hover {
	color: #85b426;
}

.navbar-custom ul.nav ul.dropdown-menu li {
	border-bottom: 1px solid #f5f5f5;

}

.navbar-custom ul.nav ul.dropdown-menu li:last-child{
	border-bottom: none;
}

.navbar-custom ul.nav ul.dropdown-menu li a {
	padding: 10px 20px;
}

.navbar-custom ul.nav ul.dropdown-menu li a:hover {
	background: #fefefe;
	color: #85b426;
}

.navbar-custom.top-nav-collapse ul.nav ul.dropdown-menu li a {
	color: #666;
}

.navbar-custom.top-nav-collapse ul.nav ul.dropdown-menu li a:hover {
	color: #85b426;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    outline: 0;
    background-color: #fff;
}
.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    outline: 0;
    background-color: #fff;
	    color: #85b426;
}






.navbar-toggle {
    padding: 4px 6px;
    font-size: 14px;
    color: #fff;
}

.navbar-toggle:focus,
.navbar-toggle:active {
    outline: 0;
}


/* loader */
#preloader {
    background: #ffffff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}


#loaderInner {
    background:#ffffff url(../img/spinner.gif) center center no-repeat;
    height: 60px;
    left: 50%;
    margin: -50px 0 0 -50px;
    position: absolute;
    top: 50%;
    width: 60px;
}

@keyframes boxSpin{
  0%{
    transform: translate(-10px, 0px);
  }
  25%{
    transform: translate(10px, 10px);
  }
  50%{
    transform: translate(10px, -10px);
  }
  75%{
    transform: translate(-10px, -10px);
  }
  100%{
    transform: translate(-10px, 10px);
  }
}


@keyframes shadowSpin{
  0%{
    box-shadow: 10px -10px #000, -10px 10px #000;
  }
  25%{
    box-shadow: 10px 10px #000, -10px -10px #000;
  }
  50%{
    box-shadow: -10px 10px #000, 10px -10px #000;
  }
  75%{
    box-shadow: -10px -10px #000, 10px 10px #000;
  }
  100%{
    box-shadow: 10px -10px #000, -10px 10px #000;
  }
}

#load {
    z-index: 9999;
    background-color: #85b426 !important;
    opacity: 0.75;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    margin: -5px auto 0 auto;
    left: 0;
    right: 0;
    border-radius: 0px;
    border: 5px solid #85b426;
    box-shadow: 10px 0px #000, 10px 0px #85b426 !important;
    animation: shadowSpin 1s ease-in-out infinite;
}

/* misc */
hr {
  margin-top: 10px;
}

/* margins */
.marginbot-0{margin-bottom:0 !important;}
.marginbot-10{margin-bottom:10px !important;}
.marginbot-20{margin-bottom:20px !important;}
.marginbot-30{margin-bottom:30px !important;}
.marginbot-40{margin-bottom:40px !important;}
.marginbot-50{margin-bottom:50px !important;}

/* ===========================
--- General sections
============================ */

.home-section {
    padding-top: 110px;
    padding-bottom: 110px;
	display:block;
    position:relative;
    z-index:120;
}


.home-section2 {
    background-color: #f1f1f1;
    padding-top: 110px;
    padding-bottom: 110px;
    display: block;
    position: relative;
    z-index: 120;
}


.section-heading h2 {
	font-size: 36px;
	    color: #85b426;
}

@media all and (max-width: 768px) {
.section-heading h2 {
	font-size: 22px;
    padding: 0 15px;
    line-height: 1.2;
}
}

.section-heading i {
	margin-bottom: 20px;
	    color: #85b426;
}


/* --- section bg var --- */

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #f8f8f8;
}


.bg-dark {
	background: #575757;
}

/* --- section color var --- */

.text-light {
	color: #fff;
}



/* ===========================
--- Intro
============================ */

.intro {
	width:100%;
	position:relative;
	
	/*background: url(../img/bg1.jpg) no-repeat top center;*/
}

#intro.intro {
    padding: 20% 0 0 0;
    top: 0;
    position: absolute;
}

.intro.homeslider {
    display: block;
    position: relative;
    background-repeat: no-repeat;
    overflow: hidden;
}

.intro.homeslider img {
display: block;
margin: 0 auto;
position: relative;

}



@media (max-width: 768px)  {

	
.intro.homeslider img {
max-height:520px;
}
	}


@media (max-width: 480px) and (min-width: 120px) {
.intro.homeslider img {
display: block;
margin: 0 auto;
position: relative;
max-height:350px;
}
}



.intro .slogan {
	text-align: center;

}

.intro .page-scroll {
	text-align: center;
}

.brand-heading {
    font-size: 40px;
}

.intro-text {
    font-size: 18px;
}

.intro .slogan h2 {
	color: #FFF;
	text-shadow: none;
    font-size: 36px;
    line-height: 44px;
	    padding: 0 15px;
	font-weight: 700;
	font-family: Montserrat, sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
    /* border-width: 0px; */
    /* border-color: #000; */
    /* border-style: none; */
    /* text-shadow: -1px 0 1px #000; */
}


@media (max-width: 768px) {	
.intro .slogan h2 {
	font-size: 20px;
	line-height: 23px;
	padding:0 15px;
}
}

.intro .slogan h4 {
	color: #fff;
	text-shadow: -1px 1px 1px #000;
}


/* ===========================
--- About
============================ */

.boxed-grey {
    background: #f1f1f1;
	padding: 20px;
	font-weight: 400;
}

.boxed-grey2 {
    background: #339bd0;
    padding: 20px;
}

.team h5 {
	margin-bottom: 10px;
}

h5.team-title {
    margin-bottom: 10px;
    background-color: #85b426;
    color: #fff;
    display: block;
    padding: 20px 0 10px 0;
    margin-bottom: 0px;
    width: 100%;
	letter-spacing: 0.5px;
}


.team p.subtitle {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4em;
}

p.subtitle a{
padding-top: 10px !important;
    display: block !important;
}

@media (max-width: 480px) and (min-width: 320px) {
.team p.subtitle {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.4em;
}
}


.team p.subtitle spanteam {
    color: #e22021;
}

span.team {
	color: #85b426 !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    bottom: 0 !important;
	margin-bottom: -18px !important;
}



.avatar {
	margin-bottom: 20px;
}


@media (max-width: 480px) and (min-width: 320px) {
.avatar {
    margin-bottom: 20px;
    /* margin: 0 auto; */
    /* display: block; */
    /* text-align: center; */
    margin-right: 10px;
    margin-left: 10px;
}
}


.team-social {
	margin-left: 0;
	padding-left: 0;
	
}

.team-social {
	text-align: center;
}

.team-social li{
    display: inline-block;
	margin:0 !important;
	padding:0;
}


.team-social a{
	margin:0;
	padding:0;
    display: block;
	width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #3bbec0;
	color: #fff;
    -webkit-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}
.team-social a i{
	text-align: center;
	margin:0;
	padding:0;
}
.team-social .social-facebook a{background: #3873ae;}
.team-social .social-twitter a{background: #62c6f8;}
.team-social .social-dribble a{background: #d74980;}
.team-social .social-deviantart a{background: #8da356;}
.team-social .social-google a{background: #000;}
.team-social .social-vimeo a{background: #51a6d3;}
.team-social .social-facebook a:hover{background: #4893ce;}
.team-social .social-twitter a:hover{background: #82e6ff;}
.team-social .social-dribble a:hover{background: #f769a0;}
.team-social .social-deviantart a:hover{background: #adc376;}
.team-social .social-google a:hover{background: #333;}
.team-social .social-vimeo a:hover{background: #71c6f3;}


/* ===========================
--- Services
============================ */

.service-icon {
	margin-bottom: 20px;
}	



/* ===========================
--- Contact
============================ */

form#contact-form .form-group label {
	text-align: left !important;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
}
form#contact-form input,form#contact-form select,form#contact-form textarea {
	border-radius: 0;
	border: 1px solid #eee;
  -webkit-box-shadow: none;
          box-shadow:  none;
}

form#contact-form input:focus,form#contact-form select:focus,form#contact-form textarea:focus {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.input-group-addon {
  background-color: #e22021;
  border: 1px solid #e22021;
  border-radius: 0;
}

.widget-contact {
    text-align: left;
    color: #000;
}


@media (max-width: 1200px) {
.widget-contact {
    text-align: center;
    margin: 30px 0 0 0;;
}
}


.company-social {
	margin-left: 0;
	padding-left: 0;
	margin-top: 10px;
}

.company-social {
	text-align: left;
}

.company-social li{
    display: inline-block;
	margin:0 !important;
	padding:0;
}


.company-social a{
	margin:0;
	padding:0;
    display: block;
	width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #3bbec0;
	color: #fff;
    -webkit-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}
.company-social a i{
	text-align: center;
	margin:0;
	padding:0;
}
.company-social .social-facebook a{background: #3873ae;}
.company-social .social-twitter a{background: #62c6f8;}
.company-social .social-dribble a{background: #d74980;}
.company-social .social-deviantart a{background: #8da356;}
.company-social .social-google a{background: #000;}
.company-social .social-vimeo a{background: #51a6d3;}
.company-social .social-facebook a:hover{background: #4893ce;}
.company-social .social-twitter a:hover{background: #82e6ff;}
.company-social .social-dribble a:hover{background: #f769a0;}
.company-social .social-deviantart a:hover{background: #adc376;}
.company-social .social-google a:hover{background: #333;}
.company-social .social-vimeo a:hover{background: #71c6f3;}



/* ===========================
--- Footer
============================ */

footer {
	text-align: center;
	padding: 50px 0 ;
	
}

footer p {
	color: #f8f8f8;
}

/* ==========================
Parallax
============================= */

#parallax1{	
	background-image: url(../img/parallax/1.jpg);
}

#parallax1:after {	
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.7;
	z-index: -1;
}


#parallax2{	
	background-image: url(../img/parallax/2.jpg);

}

#parallax2:after  {	
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.7;
	z-index: -1;
}


/* ===========================
--- Elements
============================ */

.btn {
	border-radius: 0;
	    width: 81px;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.btn-circle {
	width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 4px 16px;
    border: 2px solid #85b426;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
	    background-color: #85b426 !important;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle.btn-dark {
    border: 2px solid #666;
    color: #666;
}


.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
	border: 2px solid #fff;
	
}

.btn-circle.btn-dark :hover,
.btn-circle.btn-dark :focus {
    outline: 0;
    color: #999;
    background: #fff;
		border: 2px solid #fff;
}

.btn-circle.btn-dark :hover i,
.btn-circle.btn-dark :focus i{
    color: #999;
}

.page-scroll .btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.page-scroll .btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}


#text {
    color: #fff;
    background: #ffcc00;
}

#map {
	height: 500px;
}


.btn-skin:hover,
.btn-skin:focus,
.btn-skin:active,
.btn-skin.active {
    color: #fff;
    background-color: #85b426;
    border-color: #85b426;
}


.btn-default:hover,
.btn-default:focus {
    border: 1px solid #28c3ab;
    outline: 0;
    color: #000;
    background-color: #28c3ab;
}

.btn-huge {
    padding: 25px;
    font-size: 26px;
}

.banner-social-buttons {
    margin-top: 0;
}


/* Media queries */

@media(min-width:767px) {

    .navbar {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
    /* background-color: rgba(6,6,6,0.5); */
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .top-nav-collapse {
        padding: 0;
        background-color: #000;
    }
	
	
	
    .top-nav-collapse img {
    max-width: 250px;
    padding-top: 38px;
	    margin-left: 56px;
		    }
	
	
	

    .navbar-custom.top-nav-collapse {
        border-bottom: 1px solid rgba(255,255,255,.3);
    }
	
	
    .intro {
        height: 100%;
        padding: 0;
    }

    .brand-heading {
        font-size: 100px;
    }
	

    .intro-text {
        font-size: 25px;
    }


}
@media (max-width:768px) {
	
	.team.boxed-grey {
		margin-bottom: 30px;
	}
	
	.boxed-grey {
		margin-bottom: 30px;
	}
	}


@media (max-width:767px) {
.nav.navbar-nav {
    background-color: #fff;
    margin-left: -15px;
    width: 100%;
}	

.social {
    height: 44px;
}

	
}

@media (max-width:480px) {

	.navbar-custom .nav.navbar-nav {
    background-color: #fff;
    width: 100%;
    margin: 7px 0 0 -15px;
	}

	.container {
    width: 100%;
    overflow: hidden;
	}
	
	.socialnav {
    margin-left: -15px !important;
	width:100%;
	}
	
	.social {
    padding-right: 0 !important;
	    padding: 15px 18px !important;
	}
	
	.tp-banner-container {
		padding-top:40px;
	}

	.page-scroll a.btn-circle {
		width: 40px;
		height: 40px;
		margin-top: 10px;
		padding: 7px 0;
    border: 2px solid #85b426;
		border-radius: 50%;
		font-size: 20px;
	}
	
	.page-scroll a.btn-circle:hover,
	.page-scroll a.btn-circle:focus,
	.page-scroll a.btn-circle:active {
    border: 2px solid #85b426;
	}
	
	
	
	
}



.language {
		color:#85b426 !important;
		background-color:#fff;
	}
	
	
.social {
		color:#fff !important;
		background-color:#3b5998 !important;
   		padding: 15px 18px !important;
		font-size: 14px !important;
	}	
	
	
.social:hover,
.social:focus,
.social:active {
		color:#fff !important;
		background-color:#85b426 !important;
		padding: 15px 18px !important;
		font-size: 14px !important;
	}

	
.social2 {
		color:#fff !important;
		background-color:#007bb5;
		font-size: 14px !important;
	}	
	
.social2:hover,
.social2:focus,
.social2:active {
		color:#fff !important;
		background-color:#85b426 !important;
		font-size: 14px !important;
	}	



	
.socialnav {
		margin-left:10px;
	}	
	
	
	
	
.slogansmall {
    text-align: center;
    background-color: #85b426;
    /* height: 226px; */
    /* padding: 67px 0; */
    padding-top: 67px;
    padding-bottom: 32px;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 3px solid #fff;
}


.slogansmall h7{
	color: #FFF;
    text-shadow: none;
    font-size: 25px !important;
    line-height: 30px;
    font-family: 'montserratregular';
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
	}
	
	
	
	
@media (max-width: 768px) {
.slogansmall h7{
	color: #FFF;
    text-shadow: none;
    font-size: 18px !important;
    line-height: 22px;
    font-family: 'montserratregular';
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
	}
	
}		
	
	
	
	
	
.slogansmall span{
    color: #FFF;
    background-color: #fff;
    width: 14px;
    height: 35px;
    display: block;
    position: relative;
    margin: 0 auto;
    bottom: -32px;
    /* z-index: 500; */
}


#ajax-content.content span {
    color: #FFF;
    background-color: #85b426;
    width: 14px;
    height: 35px;
    display: block;
    position: relative;
    margin: 0 auto;
    bottom: -32px;
    /* z-index: 500; */
}


.rectangulo {
    color: #FFF;
    background-color: #85b426;
    width: 14px;
    height: 35px;
    display: block;
    position: relative;
    margin: 0 auto;
    bottom: -32px;
    /* z-index: 500; */
}




.files {
	text-align: center;
    background-color: #339bd0;
	/* height: 226px; */
	/* padding: 67px 0; */
    padding-top: 67px;
    padding-bottom: 32px;
    border-top: 3px solid #fff;
	padding-right: 15px;
    padding-left: 15px;
}


h2.slogan {
    color: #FFF;
    text-shadow: none;
    font-size: 25px !important;
    line-height: 30px;
    font-family: 'montserratregular';
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;

    margin: 0;
    font-weight: normal;
	}
	
@media (max-width: 768px) {	
h2.slogan {
	color: #FFF;
    text-shadow: none;
    font-size: 18px !important;
    line-height: 22px;
    font-family: 'montserratregular';
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
	display: block;

	}
	}
	
	
h2.slogan2 {
    color: #FFF;
    text-shadow: none;
    font-size: 25px !important;
    line-height: 30px;
    font-family: 'montserratregular';
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
	padding-bottom:50px;
    margin: 0;
    font-weight: normal;
	}
	
@media (max-width: 768px) {	
h2.slogan2 {
	color: #FFF;
    text-shadow: none;
    font-size: 18px !important;
    line-height: 22px;
    font-family: 'montserratregular';
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
	display: block;
	padding-bottom:50px;
	}
	}
	
	
	
	
	
.files h9{
	color: #FFF;
    text-shadow: none;
    font-size: 14px !important;
    line-height: 16px;
    margin-top: -10px;
    font-family: 'montserratregular';
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
	display: block;
	}
	
.files span{
    color: #FFF;
    background-color: #fff;
    width: 14px;
    height: 35px;
    display: block;
    position: relative;
    margin: 0 auto;
    bottom: -32px;
    /* z-index: 500; */
}

.documentcontainer {
    width: 500px;
    position: relative;
    margin: 0 auto;
    display: block;
    padding-bottom: 0px;
}



@media (max-width: 768px) {	
.documentcontainer {
    width: 250px;
    position: relative;
    margin: 0 auto;
    display: block;
    padding-bottom: 0;
}

.files h9{
    font-size: 10px !important;
    line-height: 14px;
}

.documentleft {
    width: 100px;
}

.documentright {
    width: 100px;
}
}




.documentleft {
    color: #FFF;
    /* width: 209px; */
    float: left;
    /* height: 160px; */
    display: none;
    position: relative;
    /* margin: 0 auto; */
    /* bottom: 0; */
}



.documentright {
    color: #FFF;
    /* width: 209px; */
    float: none;
    /* height: 160px; */
    display: block;
    margin-left: 0;
    position: relative;
    margin: 0 auto;
    /* bottom: 0; */
}


.overlay {
    color: #FFF;
    background-color: #3f3f3f;
    opacity: 0.9;
    width: 99.8%;
    height: 160px;
    display: block;
    position: absolute;
    margin: 0 auto;
    bottom: 0;
    /* z-index: 500; */
    /* left: -1px; */
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.overlay:hover {
    background-color: #85b426;
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}




a.link {
	text-shadow: none;
    font-size: 14px !important;
    line-height: 16px;
    font-family: 'Lato',sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 10px 0 10px;
    margin: 0;
    color: #FFF;
    background-color: rgba(63,63,63,0.6);
    /* background-color: #3f3f3f; */
    opacity: 1;
    width: 280px;
    height: 124px;
    display: block;
    position: absolute;
	    overflow: hidden;
    margin: 0 auto;
    bottom: 0;
    cursor: pointer;
    z-index: 500;
    /* left: -1px; */
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}


a.link:hover {
	text-shadow: none;
    font-size: 14px !important;
    line-height: 16px;
    font-family: 'Lato',sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 20px;
    margin: 0;
    color: #FFF;
    background-color: #85b426;
    /* background-color: #3f3f3f; */
    opacity: 1;
    width: 280px;
    height: 124px;
    display: block;
    position: absolute;
	    overflow: hidden;
    margin: 0 auto;
    bottom: 0;
    cursor: pointer;
    z-index: 500;
    /* left: -1px; */
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}


a.link span {
    color: #FFF;
    text-shadow: none;
    background-color: rgba(226, 32, 33, 0) !important;
    font-size: 12px !important;
    line-height: 12px;
    width: 100% !important;
    padding-top: 5px;
    font-weight: 300;
    font-family: 'Lato',sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin: 0;
    padding-bottom: 90px;
    bottom: 0px !important;
}









@media (max-width: 1330px) and (min-width: 1180px)  {
a.link {
    width: 100%;
}


a.link:hover {
    width: 100%;
}


}









@media all and (max-width: 1179px) and (min-width: 1024px) {
a.link {
    font-size: 12px !important;
    line-height: 14px;
    height: 110px;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
	}
	
a.link:hover {
    font-size: 12px !important;
    line-height: 14px;
	height: 110px;
	padding-top: 15px;
	width: 100%;
	}
	
	
a.link span {
    font-size: 10px !important;
    line-height: 10px;
    padding-top: 0px;
}
	
}




@media all and (max-width: 1023px) and (min-width: 769px) {
a.link {
    font-size: 14px !important;
    line-height: 20px;
    height: 130px;
	padding-top: 20px;
	width: 100%;
	}
	
a.link:hover {
    font-size: 14px !important;
    line-height: 20px;
    height: 130px;
	padding-top: 20px;
	width: 100%;
	}
	
	
a.link span {
    font-size: 10px !important;
    line-height: 10px;
    padding-top: 0px;
}
	
}




@media all and (max-width: 768px) and (min-width: 481px) {
	a.link {
    font-size: 14px !important;
    line-height: 20px;
    height: 130px;
	padding-top: 20px;
	width: 100%;
	}
	
a.link:hover {
    font-size: 14px !important;
    line-height: 20px;
    height: 130px;
	padding-top: 20px;
	width: 100%;
	}
	
	
a.link span {
    font-size: 10px !important;
    line-height: 10px;
    padding-top: 0px;
}
	
}


@media all and (max-width: 480px) and (min-width: 320px) {
a.link {
    font-size: 14px !important;
    line-height: 20px;
    height: 130px;
	padding-top: 20px;
	width: 100%;
	}
	
a.link:hover {
    font-size: 14px !important;
    line-height: 20px;
    height: 130px;
	padding-top: 20px;
	width: 100%;
	}
	
	
a.link span {
    font-size: 10px !important;
    line-height: 10px;
    padding-top: 0px;
}


.circlegallery {
    margin-top: 0px !important;
}
	
}




.circle {
width: 33px;
    height: 33px;
    margin-top: 15px;
    text-align: center;
    padding-top: 5px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 21px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}


.circlesmall {
    width: 33px;
    height: 33px;
    margin-top: 15px;
    margin-left: -10px;
    /* padding-top: 5px; */
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}


.circlev {
width: 33px;
    height: 33px;
    margin-top: 15px;
    text-align: center;
    padding-top: 5px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 21px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}


.circlesmallv {
    width: 33px;
    height: 33px;
    margin-top: -5px;
    /* padding-top: 5px; */
    margin-bottom: 20px;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}



.circlesmall2 {
width: 32px;
    height: 32px;
    /* border-radius: 100%; */
    border-color: #000;
    padding: 15px 15px;
    margin-top: 15px;
    /* padding-top: 5px; */
	display: block;
margin: 0 auto;
    margin-top: 15px;
position: relative;
    background: 0 0;
    background-repeat: no-repeat;
    background-image: url(../img/circle.svg);
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.circlesmall2:hover {
		background-image:url(../img/circle2.svg);
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}


.circledocument {
	width: 33px;
    height: 33px;
    margin-top: 15px;
    padding: 5px 0 0 0px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 21px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}



.circledocument:hover {
	width: 33px;
    height: 33px;
    margin-top: 15px;
    padding: 5px 0 0 0px;
    border: 2px solid #e22021;
    border-radius: 50%;
    font-size: 21px;
    color: #e22021;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}



.destaquesgallery {
    height: 76px;

}


.overlaydestaques {
    color: #FFF;
    background-color: #e22021;
    width: 100%;
    height: 72px;
    display: block;
    position: absolute;
    margin: 0 auto;
    bottom: 0;
    /* z-index: 500; */
    /* left: -1px; */
	
    text-shadow: none;
    font-size: 13px !important;
    line-height: 16px;
    font-family: 'Lato',sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    /* letter-spacing: 0.2px; */
    padding-top: 27px;
    display: block;

	
	
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}



.overlaydestaques:hover {
	background-color: #3f3f3f;
	    color: #FFF;
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}


.overlaydestaques h8 {
color: #FFF;
    text-shadow: none;
    font-size: 13px !important;
    line-height: 16px;
    font-family: 'Lato',sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    /* letter-spacing: 0.2px; */
    padding-top: 27px;
    display: block;
}





@media all and (max-width: 1179px) and (min-width: 1024px) {
.overlaydestaques {
    font-size: 11px !important;
    line-height: 14px;
}
}


@media (max-width: 1023px) and (min-width: 769px) {
.overlaydestaques {
    font-size: 12px !important;
    line-height: 14px;
}
}

@media (max-width: 480px) and (min-width: 320px) {
.overlaydestaques {
    font-size: 12px !important;
    text-align: center;
    line-height: 14px;
    padding-right: 8px;
}
}



#contactos {
    background-color: #fff;
	    padding-bottom: 150px;

}


address a {
	color:#339bd0;
	}
	
address a:hover{
	color:#666;
	}
	

	
.navbackground {
    background-color: #3f3f3f;
    height: 110px;
    display: block;
	}

	
.overlay h2.port2{
    color: #FFF;
    text-shadow: none;
    font-size: 15px !important;
    line-height: 14px;
    padding-top: 5px;
    font-weight: 300;
    font-family: 'Lato',sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin: 0;
	padding-bottom: 90px;
	}
	

.overlay h2.port1 {
	color: #FFF;
    text-shadow: none;
    font-size: 17px !important;
    line-height: 20px;
    font-family: 'Lato',sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding-top: 30px;
	margin: 0;
}


h2.port2{
    color: #FFF;
    text-shadow: none;
    font-size: 15px !important;
    line-height: 14px;
    padding-top: 5px;
    font-weight: 300;
    font-family: 'Lato',sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin: 0;
	padding-bottom: 90px;
	}
	

h2.port1 {
	color: #FFF;
    text-shadow: none;
    font-size: 17px !important;
    line-height: 20px;
    font-family: 'Lato',sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding-top: 30px;
	margin: 0;
}

	


#obrasferroviarias,
#multidisciplinares,
#reabilitacaopontes,
#estruturascontencao,
#consultoria,
#historial,
#servicos,
#certificacoes,
#gestao,
#organizacao,
#inovacao,
#history,
#management,
#organisation,
#inovation,
#railway,
#multidisciplinary,
#bridgesrehabilitation,
#containmentstructures,
#consulting,
#aae,
#gr,
#pga,
#internacional,
#mission,
#organisation,
#services,
#certifications,
#sea,
#wm,
#emp,
#international
{
    background-color: #f1f1f1;
	}
	
	
.top-nav-collapse {
margin-top: -22px;
	}
	
/* 
.wrappergallery {
    width: 1170px;
	margin: 0 auto;
}
	
	
.x {
    max-width: 1170px;
    float: right;
    margin-right: 15px;
    margin-left: 15px;
    display: block;
    position: fixed;
    z-index: 500;
}


.x a .circle {
    width: 33px;
    height: 33px;
    margin-top: 70px;
    padding: 6px 0 0 0px;
    border: 1px solid #e22021;
    border-radius: 50%;
    font-size: 21px;
    color: #e22021;
    background: 0 0;
	    background-color: #fff;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

*/



.wrappermodal {
    margin-bottom: 60px;
	padding-top: 80px;
}
@media (min-width: 1200px)
.container {
    width: 1170px;
}
@media (min-width: 992px)
.container {
    width: 970px;
}
@media (min-width: 768px)
.container {
    width: 750px;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}



.rownew {
    /* margin-right: 15px; */
    /* margin-left: 15px; */
}


.col-lg-8-new {
    width: 100% !important;
    /* padding-top: 30px; */
}
.col-lg-offset-new {
    margin-left: 0% !important;
}

.modal-body {
    position: relative;
    padding: 0px;
}

.x {
    max-width: 1170px;
    float: right;
    margin-right: 33px;
    z-index: 500;
    background-color: #000;
    display: block;
    position: relative;
}


.btn-primary {
    color: #fbca01;
    background-color: #3c2a81;
    border-color: #3c2a81;
    display: block;
    position: fixed;
    /* margin: 0 auto; */
    top: 20px;
    /* right: 0; */
    /* float: right; */
    /* width: 1.8%; */
}



.img-responsive, .thumbnail>img, .thumbnail a>img, .carousel-inner>.item>img, .carousel-inner>.item>a>img {
    display: block;
    height: auto !important;
    margin-top: 15px;
}
.img-responsive, .thumbnail>img, .thumbnail a>img, .carousel-inner>.item>img, .carousel-inner>.item>a>img {
    display: block;
    max-width: 100%;
    height: auto;
}

.clientes {
    display: inline-block;
    margin: 20px 20px 0 0;
    max-width: 100px;
}


img {
    vertical-align: middle;
}

img {
    border: 0;
}


.sgs  {
    max-width: 10%;
    margin-left: 15px;
    margin-right: 15px;	
		}



.circlegallery {
	width: 33px;
    height: 33px;
    margin-top: 5px;
    padding: 0px 0 0 0px;
    padding-bottom: 5px;
    border: 0px solid #85b426;
    border-radius: 50%;
    font-size: 19px;
    font-family: 'Lato',sans-serif;
    font-weight: 400;
    text-transform: lowercase;
    color: #fff;
    background: 0 0;
    background-color: #85b426;
    -webkit-background-clip: padding-box;
    background-clip: border-box;

}




h8.obra {
    color: #666;
    text-shadow: none;
    font-size: 25px !important;
    line-height: 20px;
    font-family: 'Lato',sans-serif;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    /* padding-top: 30px; */
}



h8.local {
    color: #666;
    text-shadow: none;
    font-size: 18px !important;
    /* line-height: 0px; */
    font-family: 'Lato',sans-serif;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding-top: 10px;
}




h8.cliente {
	color: #e22021;
    text-shadow: none;
    font-size: 16px !important;
    /* line-height: 0px; */
    font-family: 'Lato',sans-serif;
    font-weight: 400;
    text-decoration: none;
    /* text-transform: lowercase; */
    letter-spacing: 1px;
    display: block;
    padding-top: 3px;
    padding-bottom: 20px;
}




h3.obra {
    color: #666;
    text-shadow: none;
	max-width: 1140px;
    font-size: 25px !important;
    line-height: 25px;
	padding-right: 15px;
    font-family: 'Lato',sans-serif;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    /* padding-top: 30px; */
    margin: 0;
}





@media all and (max-width: 1199px) {
p.gallerytext {
    padding-top: 114px !important;
}

}






@media all and (max-width: 768px) {
h3.obra {
    color: #666;
    text-shadow: none;
    font-size: 20px !important;
    line-height: 20px;
    padding-right: 15px;
    font-family: 'Lato',sans-serif;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    /* padding-top: 30px; */
    margin: 0;
}

p.gallerytext {
    padding-top: 114px !important;
}

}


@media all and (max-width: 480px) and (min-width: 320px) {
p.gallerytext {
    padding-top: 134px !important;
}

}



h3.local {
    color: #666;
    text-shadow: none;
    font-size: 18px !important;
    line-height: 1px;
    font-family: 'Lato',sans-serif;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding-top: 19px;
    margin: 0;
}




h3.cliente {
    color: #85b426;
    text-shadow: none;
    font-size: 16px !important;
    /* line-height: 0px; */
    font-family: 'Lato',sans-serif;
    font-weight: 400;
    text-decoration: none;
    text-transform: none !important;
    letter-spacing: 1px;
    display: block;
    padding-top: 10px;
    /* padding-bottom: 20px; */
}



h3.legenda {
    color: #666;
    text-shadow: none;
    font-size: 14px !important;
    /* line-height: 0px; */
    font-family: 'Lato',sans-serif;
    font-weight: 400;
    text-decoration: none;
    text-transform: none !important;
    letter-spacing: 1px;
    display: block;
    margin-top: -14px;
    padding-bottom: 10px;
    /* padding-bottom: 20px; */
}





p.gallerytext {
    color: #666;
    text-shadow: none;
    font-size: 16px !important;
    /* line-height: 4px; */
    font-family: 'Lato',sans-serif;
    font-weight: 400;
    text-decoration: none;
    /* text-transform: lowercase; */
    letter-spacing: 1px;
    display: block;
    padding-top: 84px;
    padding-bottom: 20px;
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.2em;
}



p.empresatext {
	color: #000;
    text-shadow: none;
    font-size: 16px !important;
    /* line-height: 4px; */
    font-family: 'Lato',sans-serif;
    font-weight: 400;
    text-decoration: none;
    /* text-transform: lowercase; */
    letter-spacing: 1px;
    text-align: left;
    display: block;
    /* padding-top: 40px; */
    padding-bottom: 20px;
    margin: 0 0 20px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16px;
    line-height: 1.2em;
}


.textclientes {
    text-align: center !important;
}



p.empresatext span2 {
    color: #e22021;
    text-shadow: none;
    font-size: 16px !important;
    /* line-height: 4px; */
    font-family: 'Lato',sans-serif;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    display: block;
    /* padding-top: 40px; */
    /* padding-bottom: 20px; */
    /* margin: 0 0 20px; */
    margin-bottom: -15px;
    /* margin-right: 15px; */
    font-size: 16px;
    line-height: 1;
}


span.red {
    color: #85b426 !important;
    background-color: rgba(255, 255, 255, 0) !important;
    text-shadow: none;
    width: auto !important;
    height: auto !important;
    font-size: 16px !important;
    /* line-height: 4px; */
    font-family: 'Lato',sans-serif;
    font-weight: 900;
    margin: 0px !important;
    bottom: 0px !important;
    margin-bottom: -15px !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    display: block;
    /* padding-top: 40px; */
    /* padding-bottom: 20px; */
    /* margin: 0 0 20px; */
    margin-bottom: -15px;
    /* margin-right: 15px; */
    font-size: 16px;
    line-height: 1;
}




span.black {
    color: #000 !important;
    background-color: rgba(255, 255, 255, 0) !important;
    text-shadow: none;
    width: auto !important;
    height: auto !important;
    font-size: 16px !important;
    /* line-height: 4px; */
    font-family: 'Lato',sans-serif;
    font-weight: 900;
    margin: 0px !important;
    bottom: 0px !important;
    margin-bottom: -15px !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    display: block;
    /* padding-top: 40px; */
    /* padding-bottom: 20px; */
    /* margin: 0 0 20px; */
    margin-bottom: -15px;
    /* margin-right: 15px; */
    font-size: 16px;
    line-height: 1;
}





p.empresatext span3 {
    color: #000;
    text-shadow: none;
    font-size: 16px !important;
    /* line-height: 4px; */
    font-family: 'Lato',sans-serif;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    display: block;
    /* padding-top: 40px; */
    /* padding-bottom: 20px; */
    /* margin: 0 0 20px; */
    margin-bottom: -15px;
    /* margin-right: 15px; */
    font-size: 16px;
    line-height: 1;
}



.container.wrappermodal span {
    color: #FFF;
    background-color: #666;
    width: 14px;
    height: 35px;
    display: block;
    position: relative;
    margin: 0 auto;
    bottom: -60px;
    /* z-index: 500; */
}



.titlefixed  {
    display: block;
    position: fixed;
    padding-top: 80px;
    /* padding-right: 200px; */
    width: 100%;
    background-color: #fff;
    /* clear: both; */
    top: 0;
}



@media all and (max-width: 1200px) {
.titlefixed  {
    padding-right: 200px;
}
}


@media all and (max-width: 1250px) {
.titlefixed  {
    /* padding-right: 150px; */
}
}

@media all and (max-width: 1100px) {
.titlefixed  {
    padding-right: 120px;
}
}

@media (max-width: 992px) {
.titlefixed  {
    padding-right: 200px;
}
}


@media (max-width: 900px) {
.titlefixed  {
    padding-right: 150px;
}
}

@media (max-width: 850px) {
.titlefixed  {
    padding-right: 110px;
}
}

@media (max-width: 768px) {
.titlefixed  {
    padding-right: 30px;
}
}

@media all and (max-width: 767px) and (min-width: 481px) {
.titlefixed  {
    padding-right: 30px;
}
}









.containercontact  {
	position: relative;
    display: block;
    /* margin: 0 0 0 0; */
    /* margin-bottom: -1303px; */
    /* margin-top: -1303px; */
    z-index: 100;
}


.containerbody {
    position: relative;
    /* display: block; */
    z-index: 500;
    background-color: #fff;
}


.hidediv {
    display: block;
    max-height: 300px;
    overflow: hidden;
}



.indent {
    color: #000;
    text-shadow: none;
    font-size: 16px !important;
    /* line-height: 4px; */
    font-family: 'Lato',sans-serif;
    font-weight: 400;
    text-decoration: none;
    /* text-transform: lowercase; */
    letter-spacing: 1px;
    text-align: left;
    display: block;
    /* padding-top: 40px; */
    /* padding-bottom: 20px; */
    /* margin: 0 0 20px; */
    margin-left: 40px;
    margin-right: 15px;
    font-size: 16px;
    line-height: 1.2em;
}




iframe {
	padding-top:50px;
	width:1140px;
	height:600px;
	}
	
	


	
@media all and (max-width: 1200px) {	
iframe {
	padding-top:50px;
	width:940px;
	height:600px;
	}
	
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -165px;
    display: block;
    top: -14px;
    float: left;
    position: absolute;
    transform: scale(0.28);
    transform-origin: 0.28;
    margin-top: -2px;
}

.navbackground {
    background-color: #3f3f3f;
    height: 51px;
    display: block;
}
				}
				
				
				
@media all and (max-width: 1000px) {	
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -154px;
    display: block;
    left: 0;
    top: -14px;
    float: left;
    position: absolute;
    transform: scale(0.23);
    transform-origin: 0.23;
    margin-top: -2px;
}
}
				
				
				
@media (max-width: 991px) {
iframe {
    padding-top: 50px;
    width: 750px;
    height: 400px;
    padding: 0 15px;
	}
}
				


@media (max-width: 768px) {
iframe {
    padding-top: 50px;
    width: 750px;
    height: 400px;
    padding: 0 15px;
	}
}


@media all and (max-width: 767px) and (min-width: 481px) {
iframe {
    padding-top: 50px;
    width: 100%;
    height: 350px;
    padding: 0 15px;
}
}



@media all and (max-width: 480px) and (min-width: 320px) {
iframe {
    padding-top: 50px;
    width: 100%;
    height: 300px;
    padding: 0 15px;
}




@media all and (max-width: 1000px) {	
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -144px;
    display: block;
    left: -17px;
    top: -14px;
    float: left;
    position: absolute;
    transform: scale(0.23);
    transform-origin: 0.23;
    margin-top: -2px;
				}	
				
.navbackground {
    background-color: #3f3f3f;
    height: 45px;
    display: block;
}				
				
}	



a.activated {
    color: #85b426  !important;
	}	
	

.boxed-chave {
    background: #f1f1f1;
}

p.label  {
    margin: 0 0 -27px;
    font-size: 16px;
    line-height: 1.6em;
}






.intro img#homeslider {
    margin: 0 0 -27px;
    font-size: 16px;
    line-height: 1.6em;
}

.intro#homeslider {
    margin: 0 0 -27px;
    font-size: 16px;
    line-height: 1.6em;
} {
    margin: 0 0 -27px;
    font-size: 16px;
    line-height: 1.6em;
}
