*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 13px;
    overflow-x:hidden;
}

html{
  scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Cabeçario site */

header{
    height: 100px;
    background-color: #FFF;
    color:#000;
}

.header{
    max-width: 1140px;
    height: 100px;
    margin:auto;
    display: flex;
    align-items:center;
}

.logo{
    width: 110px;
}

.logoimg{
    height: 65px;
}

/* Fim - Cabeçario site */

/* Menu Btn Voltar inicio site */

.scroll-up-btn{
  position: fixed;
  height: 45px;
  width: 42px;
  background: #00A550;
  right: 30px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 9999;
  font-size: 30px;
  border-radius: 6px;
  border-bottom-width: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.scroll-up-btn.show{
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}
.scroll-up-btn:hover{
  filter: brightness(90%);
}

/* Fim - Menu Btn Voltar inicio site */

/* Botão menu */

.button{
    display: inline-block;
    background-color: #00A550;
    color:#FFF;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    margin-top: 30px;
    border-radius: 20px;
}

/* Fim - Botão menu */

/* Menu */

nav {
    color: #FFF;
    padding: 0 15px;
    height: 75px;
    display: flex;
    align-items: center;
    flex:1;
    justify-content: flex-end;
  }

  nav ul{
    display: none;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.9);
    width: 70vw;
    height: calc(100vh - 100px);
    top:100px;
  }
  
  nav ul li {
    list-style: none;
  }
  
  nav ul li a {
    color:#FFF;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    
  }
  
  nav ul li a:hover,
  nav .active {
    border-bottom: 5px solid #00A550;
    color:#666;
  }
  
  nav ul.menu {
    position: absolute;
    right: 0;
    padding: 15px;
    text-align: right;
    display: none;
    flex-direction: column;
  }
  
  nav ul.menu li:not(:last-child) {
    margin-bottom: 15px;
  }
  
  nav ul.buttonn {
    height: 25px;
    width: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background-color: #FFF;
  }
  
  nav ul.buttonn li {
    width: 100%;
    height: 5px;
    background: #00A550;
    border-radius: 3px;
    transition: 0.3s;
  }
  
  nav ul.buttonn:hover li {
    background: #666;
  }

/* Fim - Menu */

/* Banner */
.banner{
  height: calc(100vh -  100px);
  background-color: #333;
  background-image: url('../images/bg.png');
  background-size: cover;
  background-position:center;
  overflow: hidden;
}

.banner .sliders{
  width: 1000vw;
  height: 100%;
}

.banner .slide{
  width: 100vw;
  height: 100%;
  display: inline-block;
  background-color: rgba(20, 24, 20, 0.7);
}

.banner .slidearea{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  color:#FFF;
}

.banner h1{
  text-transform: uppercase;
  font-weight: bold;
  font-size: 40px;
  text-align: center;
}

.banner h1 span{
  color:#00A550;
}

.banner h2{
  text-transform: uppercase;
  margin-top: 40px;
}

.banner .sliders-pointer{
  width: 100vw;
  height: 20px;
  position: absolute;
  margin-top: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .pointer{
  width: 16px;
  height: 16px;
  border:2px solid #00A550;
  border-radius: 8px;
  margin-left: 5px;
  margin-right: 5px;
  cursor:pointer;
}

.banner .pointer.active{
  background-color: #00A550;
}

/* Animação para dar um charme na transição dos slides */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Fim - Banner */


/* Padrão de Layout */
.default{
  padding-top: 50px;
  padding-bottom: 50px;
}

.default .section-title,
.default  .section-desc{
  text-align: center;
  text-transform: uppercase;
  font-weight:600;
}

.default .section-title{
  font-size: 20px;
}

.default  .section-desc{
  font-size: 12px;
  color: #999;
  margin-top: 10px;
  margin-bottom: 40px;
}

.default .section-body{
  max-width: 1140px;
  margin: auto;
}

.default.light{
  background-color: #F7F7F7;
}

.default.light .section-title,
.default.light .section-body{
  color:#000;
}

.default.dark{
  background-color: #000;;
}

.default.dark .section-title,
.default.dark .section-body{
  color:#FFF;
}
/* Fim - Padrão de Layout */

/* Sobre Nós */
.section-aboutus{
  display:flex;
}

.section-aboutus--left{
  flex:1;
}

.section-aboutus--left p{
  font-size: 14px;
  line-height: 25px;
}

.section-aboutus--right{
  width: 520px;
  text-align:center ;
}

.section-aboutus--right img{
  width: 420px;
  box-shadow: 0px 5px 10px #333;
}
/* Fim Sobre Nós */


/* Serviços */
.section-services{
  display: flex;
}

.section-service{
  flex:1;
  text-align: center;
  border-right: 1px solid #333;
  padding: 15px;
}

.section-service img{
  width: 50px;
}

.section-service:first-child{
  border-left: 1px solid #333;
}

.section-service h4{
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 18px;
}

.section-service p{
  margin-top: 10px;
  font-size: 15px;
  color: #999;
}
/* Fim Serviços */


/*Produtos*/
.section-products{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-products--filters{
  border: 1px solid #CCC;
  background-color: #EEE;
  border-radius: 30px;
  display:inline-block;
  padding: 0px 20px;
}

.section-products--filters ul,
.section-products--filters li{
  list-style: none;
}

.section-products--filters li{
  display: inline-block;
  padding:10px;
  text-transform:uppercase;
  font-size: 13px;
  border-left: 1px solid #CCC;
  color:#555;
  border-bottom: 3px solid #EEE;
  cursor:pointer;
}

.section-products--filters li:hover,
.section-products--filters li.active{
  border-bottom: 3px solid #B28756;
}

.section-products--filters li:first-child{
  border-left: 0;
}

.section-projects--photos{
  width: 100vw;
  max-width: 1140px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
}

.section-projects--photo{
  width: 280px;
}

.section-projects--photoarea{
  margin:10px;
  width:260px;
  height:160px;
}

.section-projects--photoarea img{
  width:inherit;
  height:inherit;
}
/*Fim Produtos*/


/* Nosso time */
.section-time{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-time--filters{
  border: 1px solid #CCC;
  background-color: #EEE;
  border-radius: 30px;
  display:inline-block;
  padding: 0px 20px;
}

.section-time--filters ul,
.section-time--filters li{
  list-style: none;
}

.section-time--filters li{
  display: inline-block;
  padding:10px;
  text-transform:uppercase;
  font-size: 13px;
  border-left: 1px solid #CCC;
  color:#555;
  border-bottom: 3px solid #EEE;
  cursor:pointer;
}

.section-time--filters li:hover,
.section-time--filters li.active{
  border-bottom: 3px solid #B28756;
}

.section-time--filters li:first-child{
  border-left: 0;
}

.section-time--photos{
  width: 100vw;
  max-width: 1140px;
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
}

.section-time--photo{
  width: 350px;
}

.section-time--photoarea{
  margin:20px;
  width:300px;
  height:110px;
}

.section-time--photoarea p{
  text-align: center;
  font-size: 15px;
}

.section-time--photoarea h1{
  text-align: center;
  color: #00A550;
  padding-top: 20px;
  font-size: 22px;
}

.section-time--photoarea i{
  padding-right: 5px;
}

.section-time--photoarea img{
  width:inherit;
  height:inherit;
}
/* Fim Nosso time */

/* Mapa novo */
.section-map{
  display:flex;
}

.section-map--left{
  flex:1;
}

.section-map--left p{
  font-size: 14px;
  line-height: 25px;
}

.section-map--right{
  width: 500px;
  text-align:center ;
}
/* Fim Mapa Novo */

/* Mapa */

.section-map--info{
  width:50%;
  padding: 30px;
  background-color: #FFF;
  color:#000;
}

.section-map--info-item{
  display: flex;
  align-items: center;
  color:#999;
  margin-bottom:20px ;
  font-size: 15px;
}

.section-map--info-item-img{
  width: 42px;
  height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-color: #000;
  border-radius: 20px;
  margin-right: 20px;
}

.section-map--info-item-img i{
  font-size: 22px;
  color: #00A550;
}

/* Fim Mapa */

/* Footer */
.section-content{
  background-color: #000;
  color: #EEE;
  text-align: center;
  padding: 30px;
  text-transform: uppercase;
  text-decoration: none;
}

.section-content--itens{
  padding-bottom: 10px;
}

.section-content--itens a{
  color: #00A550;
  text-decoration: none;
}
/* Fim Footer */


/* Responsividade Tablet */
    /* Menu */
 @media(min-width: 800px) {
    nav ul.menu {
        display: flex!important;
        flex-direction: row;
        position: relative;
        top: 0;
        padding: 0;
        background: #FFF;
        width: auto;
        color:#FFF;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
        padding-left: 10px;
        padding-right: 10px;
        height: 100px;
        display: flex;
        border-bottom: 5px solid #FFF;
    }
    nav ul.menu li:not(:last-child) {
        margin-bottom: 0;
        margin-right: 15px;
    }
    nav ul.buttonn {
        display: none;
    }
    nav ul li a {
        color:#000;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
        padding-left: 10px;
        padding-right: 10px;
        height: 100px;
        display: flex;
        align-items: center;
        border-bottom: 5px solid #FFF;
        background-color: #FFF;
        
    }
}
    /* Fim - Menu */
/* Fim - Responsividade Tablet */

@media(min-width:450px) and (max-width:800px){

  /* Sobre nos */
  .logo{
      margin-left: 30px;
  }

  .section-aboutus{
      flex-direction: column;
  }

  .section-aboutus--left{
      margin-left:30px;
      margin-right:30px;
      margin-bottom:30px;
  }

  .section-aboutus--right{
      width:auto;
  }

  /* Serviços */

  .section-services{
      flex-wrap: wrap;
  }

  .section-service{
      min-width: 50%;
  }

  .section-service:first-child{
      border-left:0;
  }
}

/* Responsividade Mobile */
@media(max-width:450px){
  
  /* Menu */
  
  .logo{
      margin-left: 30px;
  }

  .banner h1{
      font-size: 30px;
  }

  .banner h2{
      font-size: 17px;
  }

  /* Sobre nos */

  .section-aboutus{
      flex-direction: column;
  }

  .section-aboutus--left{
      margin-left:30px;
      margin-right:30px;
      margin-bottom:30px;
  }

  .section-aboutus--right{
      width:auto;
      margin-left: 30px;
      margin-right: 30px;

  }

  .section-aboutus--right iframe{
      width: 100%;
  }

  /* Serviços */

  .section-services{
      flex-wrap: wrap;
  }

  .section-service{
      min-width: 100%;
  }

  .section-service:first-child{
      border-left:0;
  }

  /* Mapas */

  .section-map--info-item{
    font-size: 14px;
  }
  
  .section-map--info-item-img{
    padding: 10px;
    border-radius: 20px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .section-map{
      margin-left: 10px;
      padding: 0;
      padding-bottom: 0px;
      background-origin: content-box;
      flex-direction: column;
  }

  .section-Mapas--right{
    width: 360px;
    margin-top: 20px;
  }

  .section-map--area{
      width: auto;
  }

  .section-map--info{
      width: auto;
  }

  .section-map--info-item{
      margin-bottom: 20px;
      
  }

  .section-map--info-item:last-child{
      margin-bottom: 0;
  }
}