
/*
 * Owl Navigation
 */
.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: 400 46px/50px 'FontAwesome';
  opacity: .5;
}

.owl-prev:hover, .owl-next:hover {
  opacity: 1;
}

.owl-prev {
  left: 0;
}

.owl-prev:before {
  content: '\f104';
}

.owl-next {
  right: 0;
}

.owl-next:before {
  content: '\f105';
}

/*
 * Owl Pagination
 */
.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dot {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  position: relative;
  margin-left: 10px;
  width: 16px;
  height: 16px;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  box-shadow: inset 0 0 0 2px #000;
  transition: box-shadow 0.3s ease;
}

.owl-dot:hover, .owl-dot:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.6);
}

.owl-dot.active {
  box-shadow: inset 0 0 0 8px #000;
}

.item {
  height: 470px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

@media (min-width: 1200px) {
  .item {
    height: 588px;
    padding: 0 10px;
  }
}

.item h3 {
  font-size: 30px;
}

@media (min-width: 1600px) {
  .item h3 {
    font-size: 35px;
  }
}

.item h3 + h4 {
  margin-top: 0;
}

@media (min-width: 1200px) {
  .item h3 + h4 {
    margin-top: 12px;
  }
}

.item .divider {
  margin-top: 12px;
  margin-bottom: 20px;
  height: 3px;
}

@media (min-width: 1200px) {
  .item .divider {
    margin-top: 36px;
    margin-bottom: 50px;
    height: 5px;
  }
}

.item * {
  color: #fff;
}

.items-mobile-bottom .item {
  padding-bottom: 30px;
  justify-content: flex-end;
}

@media (min-width: 1200px) {
  .items-mobile-bottom .item {
    padding-bottom: 0;
    justify-content: center;
  }
}
