*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;    
              font-family: 'Montserrat', sans-serif;
     -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s; 
}
html, body {
  width: 100%;
  height: 100%;
}
body{
  width: 100%;
  background: #306036 url('img/bg1.jpg') no-repeat center top;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  padding: 0;
  margin: 0;
}
a{
  text-decoration: none !important;
}
article{
  
  padding: 20px  20px 20px 50px;
}
header{
  padding: 5px 20px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  overflow: hidden;
  width: 100%;
  height: auto;
 
}
header.active{
  background-color: rgba(0,0,0,.5);
  
}
#ancora{
  position: absolute;
  right: 20px;
  top: 35%;
  display: none;
  cursor: pointer;
  opacity: .7;
}
#ancora:hover{
  opacity: 1;
}
.wrapper {
  min-height: 100vh;
  position: relative;
}

section {
  min-height: 100vh;
  font-size: 40px;
  font-weight: 100;  
  display: flex;  
}
section:nth-child(1) {
 
}
section:nth-child(2) {  
 
}
section:nth-child(3) { 
  background: transparent;
}
section:nth-child(4) {
  background: #44603a url('img/bg2.jpg') no-repeat center center;
  background-size: cover;
}
section:nth-child(5) {
  background: #44603a url('img/bg5.jpg') no-repeat center center;
  background-size: cover;
}
section:nth-child(6) {
  background: #44603a url('img/bg3.jpg') no-repeat center center;
  background-size: cover;
}
section:nth-child(7) {
  background: #454834 url('img/bg4.jpg') no-repeat center center;
  background-size: cover;
}
section:nth-child(8) {
  background: linear-gradient(45deg, #F9690E, #f4a632);
}

.nav__wrapper {
  position: fixed;
  z-index: 99;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}
.nav {
  margin: 0 0 100px 30px;
  list-style: none;
  padding: 0;
}
.nav__counter {
  font-size: 14px;
  font-weight: 300;
  transition: all 0.15s ease-out;
}
.nav__title {
  font-size: 23px;
  font-weight: 300;
  margin: 0 0 0.25em;
  width: 300px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.3s ease-out, opacity 0.2s ease-out;
}
.nav__body {
  font-weight: 100;
  font-size: 18px;
  font-size: 18px;
  width: 300px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.3s ease-out, opacity 0.2s ease-out;
}
.nav li {
  position: relative;
  transition: all 0.3s ease-out;
  margin-bottom: 1em;  
}
.nav li:after {
  content: "";
  display: block;
  border-left: 2px solid white;
  border-top: 2px solid white;
  height: 250px;
  width: 15px;
  position: absolute;
  left: -30px;
  top: 15px;
}
.nav li a {
  display: block;
  padding: 0;
  color: #fff;
  transition: all 0.15s ease-out;
  margin-left: -5px;
}
.nav li a:hover {
  background-color: transparent;
  padding-left: .7em;
}
.nav li a:focus {
  background-color: transparent;
}
.nav li.active {
  pointer-events: none;
  padding-left: 1.7em;
}
.nav li.active:after {
  width: 35px;
  height: 400px;
  top: 35px;
}
.nav li.active .nav__counter {
  font-size: 23px;
  font-weight: 700;
}
.nav li.active .nav__title {
  height: 40px;
  opacity: 1;
  overflow: visible;
}
.nav li.active .nav__body {
  height: 100px;
  opacity: 1;
  overflow: visible;
}
/* ARTICLE */
article h2{
  font-weight: bold;
  font-size: 26px;
  text-transform: uppercase;
  border-left:4px solid #c4d758;
  padding-left: 18px;
  margin: 0 0 15px 0;
}
article p,
article ul li{
  font-weight: 400;
  font-size: 19px;
}

/* MOUSE ANIM */
.mouse-icon {
  position: absolute;
  left: 50%;
  bottom: 10%;
  z-index: 3;
  margin: 100px auto 0;
  border: 2px solid #fff;
  border-radius: 16px;
  height: 40px;
  width: 24px;
  display: block;
  z-index: 10;
  opacity: 0.7;
}
.mouse-icon .wheel {
  -webkit-animation-name: drop;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  -webkit-animation-name: drop;
          animation-name: drop;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.mouse-icon .wheel {
  position: relative;
  border-radius: 10px;
  background: #fff;
  width: 2px;
  height: 6px;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
}
@-webkit-keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}
@keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}

/* INICIO */

.section1 .intro{
  margin-left: 60px;
  padding-left: 60px;
}
.section1 .intro *{
  text-transform: uppercase;  
}
.section1 .intro p{
  font-size: 26px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.section1 .intro .invertido{
  position: absolute;
  left: -60px;
  top: 80px;
  transform: rotate(-90deg);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;  
}
.section1 .intro .icon{
  display: inline-block;  
  margin-right: 20px;
}
.section1 .row{  
  z-index: 0;
}
.section .row .columns.left{  
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;  
}
.section1 .bgbars{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  width: 90%;
  max-width: 600px;
  position: absolute;
  right: 5%;
  top: -30px;
  display: n;
  margin: 0px auto;
  position: absolute;
  margin-top: 10%;
}
.section1 .bgbars div{
  display: inline-block;
width: 160px;
height: 0;

}
.section1 .bgbars .b1{
  background: url('img/bgbars1.jpg') no-repeat left top;
  animation-name: barOpen1;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  -webkit-animation-name: barOpen1;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: .8s;
}
.section1 .bgbars .b2{
  background: url('img/bgbars1.jpg') no-repeat center -90px; margin-top:90px;
  animation-name: barOpen1;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  -webkit-animation-name: barOpen1;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 1.5s;
}
.section1 .bgbars .b3{
  background: url('img/bgbars1.jpg') no-repeat right top;
  animation-name: barOpen1;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  -webkit-animation-name: barOpen1;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 2s;
}
@-webkit-keyframes barOpen1 {
  0% {
  height: 0;
  }
  100% {  
  height: 65vh;
  }
}
/* CONTATO */
.section7 h2{
  border: none;
  padding-left: 0;
}
.section7 .row{  
  max-width: 1000px !important;  
  color: #454834;
  padding: 10vh 0;
}
.section7 article{
  text-align: center;
  margin: 0px auto;
  width: 100%;
  max-width: 400px;
  padding: 70px 0px;
}
#formulario{  
  position: relative;
  width: 100%;
  max-width: 550px;
  padding-top: 50px;
}
#formulario *{
  font-family: 'Poppins', sans-serif;
}
#formulario h3{  
  text-align: center;
  font-size: 22px;
}
.section7 form textarea,
.section7 form input[type=text]{
  width: 100%;
  max-width: 100% !important;
  display: block;
  clear: both;
background-color: #454834;
color: #fff;
padding: 13px;
font-size: 16px;
margin: 7px 0;
border: none;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
outline: none !important;
}
.section7 form textarea:focus,
.section7 form input[type=text]:focus{
  background: #53573d;
}
.section7 form input[type=submit]{
  width: 120px;
  background: url('img/enviar.png') no-repeat left center;
  padding: 23px 20px 20px 60px;
  text-transform: uppercase;
  font-weight: bold;
  color: #454834;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}
.section7 form input[type=submit]:hover{
  color: #306036;
}

.section7 form textarea{
  height: 130px;
}
.section7 .triade .col{
position: relative;
border-top:1px dashed #333;
padding: 10px 0;
}
.section7 .triade p{
  font-size: 20px;  
  text-align: center;
  font-weight: bold;
  
}
.section7 .icone-wats,
.section7 .icone-mail{
  display: block;
  margin: 0px auto;
}
.section7 .icone-wats *,
.section7 .icone-wats a{
 color: #306036 !important;
}

.section7 .social{
  display: table;
  list-style: none;
  padding: 0;
  margin: 0px auto;
}
.section7 .social li{
  padding: 16px 10px;
  display: table-cell;
  text-align: center;
}
.responses{
  background-color: #c4d758;
  color: #333;
  padding: 10px;
}

/* CLASSES */
.clear{
  clear: both;
}
.relativo{
  position: relative;
}

/* Grid HTML Classes */
.row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 1300px;
*zoom: 1;
  justify-content: flex-start;
  text-align: left;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row.collapse .column, .row.collapse .columns {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  float: left;
}
.row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
*zoom: 1;
}
.row .row:before, .row .row:after {
  content: " ";
  display: table;
}
.row .row:after {
  clear: both;
}
.row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none;
*zoom: 1;
}
.row .row.collapse:before, .row .row.collapse:after {
  content: " ";
  display: table;
}
.row .row.collapse:after {
  clear: both;
}
.column, .columns {
  position: relative;
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  width: 100%;
  float: left;
  justify-content: flex-start;
  vertical-align: top;
}
[class*="column"] + [class*="column"]:last-child {
  float: right;
}
[class*="column"] + [class*="column"].end {
  float: left;
}
.large-1 {
  position: relative;
  width: 6.25%;
}
.large-2 {
  position: relative;
  width: 12.5%;
}
.large-3 {
  position: relative;
  width: 18.75%;
}
.large-3col {
  position: relative;
  width: 33%;
  min-width: 33%;
  max-width: 33%;
}
.large-4 {
  position: relative;
  width: 25%;
}
.large-5 {
  position: relative;
  width: 31.25%;
}
.large-6 {
  position: relative;
  width: 37.5%;
}
.large-7 {
  position: relative;
  width: 43.75%;
}
.large-8 {
  position: relative;
  width: 50%;
}
.large-9 {
  position: relative;
  width: 56.25%;
}
.large-10 {
  position: relative;
  width: 62.5%;
}
.large-11 {
  position: relative;
  width: 68.75%;
}
.large-12 {
  position: relative;
  width: 75%;
}
.large-13 {
  position: relative;
  width: 81.25%;
}
.large-14 {
  position: relative;
  width: 87.5%;
}
.large-15 {
  position: relative;
  width: 93.75%;
}
.large-16 {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 1400px) {
  .row{
    max-width: 1000px;    
    margin-left: 150px;
  }
}
@media only screen and (max-width: 1200px) {
  
  .section1 .bgbars{
    max-width: 400px;
  }
  .section1 .bgbars div{
    display: inline-block;
  width: 120px;
  height: 0;
  
  }
}
@media only screen and (max-width: 960px) {
  .section1 .bgbars{
    display: none;
  }
  .section1 .intro{
    margin-left: 150px;
    
  }
  .nav__wrapper {
    display: none;
  }
  #ancora{
    display: none;
  }
  header{
    background-color: rgba(0,0,0,.7);
  }
  .row{
    margin-left: 0px;
  }
}
@media only screen and (max-width: 768px) {
  section {
    min-height: 50vh;   
    border-bottom:1px solid #fff
  }
  .section1{
    min-height: 100vh;       
  }
  section .row{
    margin: 50px auto;   
  }
  .section7 article{    
    padding: 0;

  }
  .section7 .row{
    margin: 0px auto;
    padding: 50px 15px;
  }
  .section7 .row .columns{        
    padding: 0 !important;
  }
  section .row .columns{    
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .section1 .intro{   
   top: 6%;
   left: 10%;
   margin: 0 auto;
   margin-left: 0%;
   padding-right: 0;
   width: 350px;
   max-width: 90%;
    position: relative;    
  }
  .row {
    max-width: 100%;
    margin: 0 auto;
  }
  .column, .columns, .large-3col {
    display: block !important;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .section7 .row{
    width: 100% !important;
    max-width: 90% !important;
  }
}
@media only screen and (max-width: 550px) {
  .logo {
    max-width: 74%;
    height: auto;   
    margin: 0px auto; 
    display: block;
  }
}