/* Útils */
.bg-cover {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-cover ~ *{
  position: relative;
  z-index: 2;
}

.section{
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Banner */
.banner__slide, .banner {
  position: relative;
}

.banner .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.banner .owl-carousel .owl-controls .owl-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
  position: relative;
  margin: 0 4px;
}

.banner .owl-carousel .owl-controls .owl-dot.active{
  background: #ffffff;
}

.banner .owl-carousel .owl-controls .owl-dot.active:before {
  left: 4px;
  top: 4px;
  width: 8px;
  height: 8px;
  background: #4e566e;
}

.banner__item{
  min-height: 320px;
}

.banner__item__content{
  padding: 3rem;
}

.banner__item__caption {
  max-width: 560px;
  text-align: left;
}

.banner__title {
  font-size: 34px;
  color: #007bb6;
  font-weight: bold;
  line-height: 1.4;
}

.banner__title p{
  margin: 0;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.banner__title a, .banner__title a:hover, .banner__title a:focus{
  text-decoration: none;
  color: inherit;
}

.banner__title b, .banner__title span, .banner__title strong{
  font-weight: bold;
  color: #ff9900;
}

.banner__item__caption > p {
  max-width: 90%;
  font-size: 18px;
}

.banner__button {
  text-decoration: none;
  padding: 10px 18px;
  font-size: 18px;
  color: #FFF;
  background: #ff9900;
  border-radius: 3px;
  line-height: 1;
  margin-top: 10px;
  display: inline-block;
  transition: all .3s;
}

.banner__button:hover{
  text-decoration: none;
  outline: none;
  color: #fff;
  background: #007bb6;
}