* Global */
h2 {
  margin: 0;
  padding: 0;
  font-weight: 300;
}
/* Carousel */
#carousel-example {
  font-family: 'Lato', sans-serif;
  margin-top: -20px;
}
#carousel-example .carousel-wrapper {
  background:#F5F5F5;
  color: #EF7D3C;
  font-weight: 300;
  padding: 40px 0;
  text-transform: uppercase;
}
#carousel-example .carousel-wrapper h2 {
  padding: 0 0 35px;
  text-align: center;
  color:#EF7D3C;
}
#carousel-example .carousel-wrapper ol {
  margin: 0 auto;
  position: static;
  width: 100%;
}
#carousel-example .carousel-wrapper ol span {
  border: 1px solid transparent;
  cursor: pointer;
  height: auto;
  padding: 10px 15px;
  text-align: center;
  transition: border 0.3s, color 0.3s;
  width: auto;
}
#carousel-example .carousel-wrapper ol .active {
  background: none;
  border: 1px solid #DCC57B;
  color: #DCC57B;
  height: auto;
  padding: 10px 15px;
  width: auto;
}
#carousel-example .carousel-inner .item {
  transition: opacity 1s;
}
#carousel-example .carousel-inner .item .img-wrapper {
  height: 500px;
  margin: 0 -15px 0 0;
  overflow: hidden;
  position: relative;

}
#carousel-example .carousel-inner .item .img-wrapper img {
  
  
  width: 100%;
  height: auto;

/*
  
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1000px;
*/
}
#carousel-example .carousel-inner .item .carousel-caption {
  background: #fbba14;
  color: #111;
  font-size: 1.1em;
  height: 500px;
  margin: 0 0 0 -15px;
  padding: 30px;
  position: static;
  text-align: left;
  text-shadow: none;
}
#carousel-example .carousel-inner .item .carousel-caption h2 {
  padding: 0 0 20px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  #carousel-example .carousel-inner .item .img-wrapper {
    height: auto;
  }
  #carousel-example .carousel-inner .item .img-wrapper img {
    -webkit-transform: none;
            transform: none;
    position: static;
    width: 100%;
  }
  #carousel-example .carousel-inner .item .carousel-caption {
    height: auto;
  }
}