/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  font-family: 'sway-font';
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  pointer-events: none;
}
  .owl-theme .owl-nav [class*='owl-'] {
    color: #dbc6ac;
    font-size: 0px !important;
    margin: 5px !important;
    width: 40px;
    height: 40px;
    background-color: rgba(158, 119, 170, 0.10) !important;
    display: inline-block !important;
    cursor: pointer !important;
    border-radius: 3px !important;
    transition: background-color 0.25s ease;
    pointer-events: auto;
  }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background-color: #dbc6ac !important;
      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; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #dbc6ac; }
.owl-nav .owl-prev::before {
  content: "\e90c";
}

.owl-nav .owl-next::before {
  content: "\e90d";
}

.owl-nav [class*='owl-']::before {
  color: #dbc6ac;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  transition: color 0.25s ease;
}

.owl-nav [class*='owl-']:hover::before {
  color: white;
  
}

@media only screen and (min-width: 1366px) {
  .owl-theme .owl-nav {
    width: calc(100% + 100px);
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50%);
    transform: translate(-50%,0);
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    justify-content: space-between;
  }
  .first-carousel.owl-theme .owl-nav {
    max-width: 1000px;
    width: 100%;
    top: calc(50% - 80px)
  }
  .first-carousel.owl-theme .owl-dots {
    position: relative;
    top: -22px;
    z-index: 10;
  }
}

@media only screen and (max-width: 1365px) {
  .first-carousel.owl-theme .owl-nav {
    position: relative;
    top: -25px;
    z-index: 10;
  }
}

.owl-theme .owl-stage-outer .owl-stage .owl-item {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.owl-theme .owl-stage-outer .owl-stage .owl-item.active {
  opacity: 1;
}