/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Custom CSS
 **/

/* OWL Navigation */
.owl-prev {
    width: 25px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 15px;
    display: block!IMPORTANT;
    border: 0 solid black;
}

.owl-next {
    width: 25px;
    height: 100px;
    position: absolute;
    top: 0;
    right: 35px;
    display: block!IMPORTANT;
    border: 0 solid black;
}
.owl-prev , .owl-next {
  background: transparent!important;;
}
.owl-prev i, .owl-next i {
    font-size: 5em;
    margin-top: 3em;

    transition: color 0.3s ease-in-out;
}
.owl-prev i:hover, .owl-next i:hover {
}

.owl-dots {
  padding: 10px 0;
  width: 100%;
  text-align: center;
}
.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 10px;
  background: #ccc;
  height: 6px;
  border-width: 1px 0;
  border-style: solid;
  border-color: #004B92;
  width: 20px;
  transition: all 0.3s ease-in-out;
}
.owl-dots .owl-dot.active,
.owl-dots .owl-dot:hover {
  background: #004B92;
}


/* Slide Introtext */
.owl-item .item {
  height: 450px;
}
.owl-item .item > .bg-image {
  height: 450px;
}
.owl-stage .owl-item .item > span {
  display: block;
  position: absolute;
  bottom: -50px;
  width: 100%;
  padding: 15px;
  color: #004B92;
  background: rgba(255,255,255,0.75);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.owl-stage .owl-item .item:hover > span {
  bottom: 0;
  opacity: 1;
}
.owl-stage .owl-item .item > span a:hover{
  display: inline-block;
}
.owl-stage .owl-item .item > span a:hover{
  text-decoration: none;
}

.owl-stage .slidetext {
  position: absolute;
  background: rgba(255,255,255,0.85);
  top: 65%;
  left: 16.6666%;
  min-width: calc(20% - 20px);
  min-height: 100px;
  padding: 0 15px 15px 15px;
}
.owl-stage .slidetext .h3 {
  color: #9DBE17;
  font-size: 1.8em;
  font-weight: bold;
  text-transform: uppercase;
}
.owl-stage .slidetext .intro {
  color: #9DBE17;
  font-size: 1.4em;
  font-weight: normal;
  text-transform: uppercase;
}

