/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
/* display none until init */
.owl-carousel {
    direction: ltr !important;

    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.owl-carousel .owl-stage {
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}
/* fix */
.owl-carousel .owl-stage,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.owl-carousel .owl-stage-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
    float: left;
    width: auto;
}
.owl-carousel .owl-dot, .owl-nav button {
    cursor: pointer;
}
.owl-carousel .owl-nav button {
    position: absolute;
    opacity: 0;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    transition: all .3s ease;
    font-size: 40px !important;
    margin: -20px 0 0;
}
.owl-carousel .owl-nav button:hover {
  color: #0097B2;
}
.owl-carousel:hover .owl-nav button {
  opacity: 1;
}
.owl-carousel .owl-nav .owl-prev {
    left: 20px;
    top: 50%;
}
.owl-carousel .owl-nav .owl-next {
    right: 20px;
    top: 50%;
}
.owl-carousel:hover .owl-nav .owl-prev {
  left: 20px;
}
.owl-carousel:hover .owl-nav .owl-next {
  right: 20px;
}

@media (max-width: 767px) {
  .owl-carousel .owl-nav button {
    opacity: .7;
  }
  .owl-carousel .owl-nav .owl-prev {
    left: 20px;
  }
  .owl-carousel .owl-nav .owl-next {
    right: 20px;
  }
}
  
.owl-dots {
  text-align: center;
  top: 40px;
  position: relative;
}

.owl-dots .owl-dot {
  display: inline-block;
  margin: 0px 6px;
}
.owl-dots .owl-dot span {
  display: block;
  width: 11px;
  height: 11px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}
.owl-dots .owl-dot.active span {
  background: rgba(0, 0, 0, 0.9);
}

/* ////////////////////////////////////////////////////// */

.owl-nav :is(.owl-prev, .owl-next) span {
  display: none;
}

.owl-nav .owl-prev {
  display: block !important;
  /* background-color: #000 !important; */
  background-image: url(../img/arrow-left.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  width: 60px;
  height: 60px;
  
  padding: 30px !important;
  border-radius: 50% !important;
  transition: 0.5s !important;
}
.owl-nav .owl-prev:hover {
  background-image: url(../img/arrow-left-hover.png) !important;
}
.owl-nav .owl-next {
  display: block !important;
  /* background-color: #000 !important; */
  background-image: url(../img/arrow-right.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  width: 60px;
  height: 60px;

  padding: 30px !important;
  border-radius: 50% !important;
  transition: 0.5s !important;
}
.owl-nav .owl-next:hover {
  background-image: url(../img/arrow-right-hover.png) !important;
}