/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

/* Styling Next and Prev buttons */
.owl-nav {
  float: left;
  margin-top: 12px;
}

.owl-nav div {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  vertical-align: baseline;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  margin-top: 0;
  transition: color .4s linear;
  color: var(--body-color);
  font-size: 3.6rem;
  text-align: center;
  width: 84px;
  height: 80px;
}

.owl-nav div.owl-next {
  position: absolute;
  right: -92px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .5s ease-out;
  background-image: url("../images/next-nav.png");
}

.owl-nav div.owl-prev {
  position: absolute;
  left: -92px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .5s ease-out;
  background-image: url("../images/prev-nav.png");
}

.owl-nav div.owl-prev:hover {
    color: var(--secondary-color);
}

.owl-nav div.owl-next:hover {
    color: var(--secondary-color);
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
.owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
       }

/* Styling Pagination*/

.owl-dots {
  width: 100%;
  text-align: center;
}

.features .owl-dots {
  text-align: left;
  margin-top: -32px;
  z-index: 99999;
  position: relative;
}

.testimonial .owl-dots {
  margin-bottom: -112px;
}

.owl-dots .owl-dot {
  display: inline-block;
}

.owl-dots .owl-dot span{
  margin: 5px 6px;
  display: inline-block;
  width: 40px;
  height: 10px;
  text-indent: -9999px;
  overflow: hidden;
  background: var(--light-grey);
  }

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  cursor: pointer;
  background: var(--green);
}

@media only screen and (max-width: 1279px) {
  .features .owl-dots {
    margin-top: 0;
  }
}

@media only screen and (max-width: 599px) {

  .owl-nav div {
    width: 54px;
    height: 50px;
    background-size: 54px;
  }

  .owl-nav div.owl-next {
    right: -62px;
  }

  .owl-nav div.owl-prev {
    left: -62px;
  }

  .testimonial .owl-dots {
    margin-bottom: -102px;
  }

}
