#banners .carousel-indicators li {
  width: 10px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 10px;
  border-top: 0px;
  border-bottom: 0px;    
}

#banners .carousel-indicators .active {
  width: 30px;
}

#banners .carousel-inner{
  width: 100%;
}

#banners .carousel-inner img{
  width: 100%;
}

.banner-desktop{
  width: 100%;
}

.banner-mobile{
  width: 100%;
  display: none;
}

@media(max-width: 767px){
  .banner-desktop{
    display: none;
  }
  .banner-mobile{
    display: block;
  }
}

/*******************************************************************/
#negocios{
  background-image: url('../../images/negocios.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 700px;
}

#negocios .title{
  font-size: 42px;
  color: #fff;
  font-family: 'Kaushan Script', cursive;
}

#negocios .lista{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

#negocios .lista li{
  float: left;
  width: 25%;
}

#negocios .lista .item{
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 100%;
  height: 550px;
}

@media(max-width: 1200px){
  #negocios{
    height: 1000px;
  }
  #negocios .lista li{
    width: 50%;
  }

  #negocios .lista .item{
    height: 400px;
  }
}

@media(max-width: 600px){
  #negocios{
    height: 1600px;
  }
  #negocios .lista li{
    width: 100%;
  }

  #negocios .lista .item{
    height: 350px;
  }
}

/*******************************************************************/

#producao{
  background-image: url('../../images/producao.jpg');
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 100%;
  height: 950px;
}

#producao .title{
  font-size: 42px;
  color: #fff;
  font-family: 'Kaushan Script', cursive;
}

#producao .lista{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

#producao .lista li{
  float: left;
  width: 25%;
}

#producao .lista li a{
  text-decoration: none;
  cursor: auto;
}

#producao .lista .item{
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 100%;
  height: 390px;
  display: flex;
  justify-content: center;
  align-items: end;
}

#producao .lista .item .local{
  color: #fff;
  font-size: 21px;
  padding-bottom: 10px;
}

@media(max-width: 1200px){
  #producao{
    height: 1600px;
  }
  #producao .lista li{
    width: 50%;
  }

  #producao .lista .item{
    height: 350px;
    margin-bottom: 10px;
  }
}

@media(max-width: 600px){
  #producao{
    height: 1600px;
  }
  #producao .lista li{
    width: 100%;
  }

  #producao .lista .item{
    height: 200px;
    background-position: center center;
  }

  #producao .lista .item .local{
    display: none;
  }
}