/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -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;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
  overflow: hidden;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/*light bullets*/
/*.owl-theme .owl-controls{margin-top:18px;text-align:center;-webkit-tap-highlight-color:transparent;position: absolute; left: 50%; bottom: 10px;transform:translateX(-50%);}
.owl-theme .owl-controls .owl-nav [class*=owl-]{color:#fff;font-size:14px;margin:5px;padding:4px 7px;background:#d6d6d6;display:inline-block;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{background:#869791;color:#fff;text-decoration:none}
.owl-theme .owl-controls .owl-nav .disabled{opacity:.5;cursor:default}
.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}
.owl-theme .owl-dots .owl-dot span{width:8px;height:8px;margin:5px 4px;background:#d6d6d6;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px; transition: all 0.3s ease;}
.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}*/

/*dark bullets*/
/*.owl-carousel.dark .owl-controls{margin-top:18px;text-align:center;-webkit-tap-highlight-color:transparent}
.owl-carousel.dark .owl-controls .owl-nav [class*=owl-]{color:#fff;font-size:14px;margin:5px;padding:4px 7px;background:#1d2025;display:inline-block;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.owl-carousel.dark .owl-controls .owl-nav [class*=owl-]:hover{background:#aaa;color:#fff;text-decoration:none}
.owl-carousel.dark .owl-controls .owl-nav .disabled{opacity:.5;cursor:default}
.owl-carousel.dark .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}
.owl-carousel.dark .owl-dots .owl-dot span{width:8px;height:8px;margin:5px 4px;background:#aaa;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px; transition: all 0.3s ease;}
.owl-carousel.dark .owl-dots .owl-dot.active span,.owl-carousel.dark .owl-dots .owl-dot:hover span{background:#1d2025}*/

/*transparent bullets*/
/*.owl-carousel.transp .owl-controls{margin-top:18px;text-align:center;-webkit-tap-highlight-color:transparent}
.owl-carousel.transp .owl-controls .owl-nav [class*=owl-]{color:#fff;font-size:14px;margin:5px;padding:4px 7px;background:#1d2025;display:inline-block;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.owl-carousel.transp .owl-controls .owl-nav [class*=owl-]:hover{background:#fff;color:#fff;text-decoration:none}
.owl-carousel.transp .owl-controls .owl-nav .disabled{opacity:.5;cursor:default}
.owl-carousel.transp .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}
.owl-carousel.transp .owl-dots .owl-dot span{width:8px;height:8px;margin:5px 4px;background:#fff;opacity: 0.5;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px; transition: all 0.2s ease;}
.owl-carousel.transp .owl-dots .owl-dot.active span,.owl-carousel.transp .owl-dots .owl-dot:hover span{background:#fff; opacity: 1;width:10px;height:10px;}*/


.owl-carousel.two .owl-controls{margin-top:30px;}

.owl-carousel.three .owl-controls{margin-top:5px; text-align: left;}

.owl-carousel.four .owl-controls{margin-top:50px;}

.owl-carousel.five .owl-controls{margin-top:7px;}

.owl-carousel.six .owl-controls{margin-top:60px;}

.owl-carousel.seven .owl-controls{margin-top:70px;}



/* Custom */
/* Set height for background elements */
.owl-image {
  height: 75vh;
  min-height: 200px;
  overflow: hidden;
  background-position: center top;
  background-size: cover;
}
.owl-item {
  position: relative;
  width: 100%;
  height: 100%;
}
.owl-caption {
  position: absolute;
  width: auto;
}
img.owl-caption {
  width: auto !important;
}
.owl-caption.centered-top {
  top: 50%;
}
.owl-caption.text {
  left: 10%;
  padding: 0;
}
.owl-caption.right {
  right: 20%;
  padding: 0;
}
.owl-controls {
  position: absolute;
  width: 100%;
  height: 0; /* Prevent btn hover issues */
  top: calc(50% - 20px);
  opacity: 0.5;
  z-index: 100;
}
.owl-prev,
.owl-next {
  width: 32px;
  height:62px;
  
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.owl-prev {
  background: url("../images/slider-arrow-left.png?5123693060009150906") no-repeat scroll 0 0 !important;
    margin: 0 0 0 -40px !important;
    left: -55px !important;
  width: 32px;
    float: left;
  opacity: 1;
}
.owl-next {
   background: url("../images/slider-arrow-right.png?5123693060009150906") no-repeat scroll 0 0 !important;
  margin: 0 -40px 0 0 !important;
  right: -55px !important;
    float: right;
    opacity: 1;
}
.owl-carousel:hover .owl-prev {
    margin-left: 1px !important;

}
.owl-carousel:hover .owl-next {
    margin-right: 3px !important;
}
.owl-carousel:hover .owl-prev:hover, .owl-carousel:hover .owl-prev:hover {
	opacity: .6
}
@media (max-width: 768px) {
  .owl-next,
  .owl-prev {
    width: 32px;
    height: 62px;
    background-size: 20px !important;
  }
 
  .owl-carousel:hover .owl-prev {
    margin-left: 10px !important;
  }
  .owl-carousel:hover .owl-next {
    margin-right: 10px !important;
  }
}

.owl-carousel .btn-slide {
    background-color: #fff;
    color: #000;

    border: 0;
    font-weight: bolder;
    font-size: 42px;
    padding: 40px 0 43px!important;
    width: 75%;
    float: right;
    border-radius: 0;
    margin-top: 20px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    line-height: 0;
  cursor: pointer;
  text-transform: uppercase;
 box-shadow: 0 7px 12px #999;
}

.owl-carousel .btn-slide:hover,
.owl-carousel .btn-slide:focus,
.owl-carousel .btn-slide:active {
  color: #fff;
  background-color: #ddd;

}

.owl-carousel .btn-slide.blue {
	background: #45547e ;
  color: #fff;
}

.owl-carousel .btn-slide.blue:hover,
.owl-carousel .btn-slide.blue:focus,
.owl-carousel .btn-slide.blue:active {
  color: #5e73b0 ;
  background-color: #fff;
  border-color: #fff;
}

/* Specific by items */

/* item - 1*/
.owl-item.item-1 .owl-caption {
    width: 50%;
  	max-width: 295px;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
  	
}
.owl-item.item-1 .owl-caption .btn-slide {
  	border: 1px solid #fff;
    background-color: transparent;
    box-shadow: none;
    color: #fff;
    font-size: 30px;
    width: 100%;
}
.owl-item.item-1 .owl-caption .btn-slide:hover {
  	color: #000;
  	background: #fff;
  	border-color: #000;
}

@media (max-width: 768px) {
  .owl-item.item-1 .owl-image {
    filter: brightness(0.7);
    background-position: 70%;
    background-position: left center;
    transform: scale(1.3);
  }
  .owl-item.item-1 .owl-caption {
    width: 70%;
    max-width: 295px;
    left: 15%;
    /*bottom: 6%;*/
    transform: translateX(0%);
  }
  .owl-item.item-1 .owl-caption .btn-slide {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
    margin-top: 8px;
    padding: 25px !important;
  }
}

/* item - 2*/
.owl-item.item-2 .owl-caption {
    width: 23%;
    max-width: 470px;
    right: 5%;
    top: calc(50% - 170px);
}
.owl-item.item-2 .owl-caption img {
   
}
.owl-item.item-2 .owl-caption .btn-slide {

	padding: 0;
    width: 100%;

}
@media (max-width: 768px) {
  .owl-item.item-2 .owl-image {
    filter: brightness(0.7);
    background-position: 70%;
  }
  .owl-controls {
  
  display: none;
  }
  .owl-carousel .btn-slide.blue {
	background: #fff ;
  color: #666;
    box-shadow: none;
}

.owl-carousel .btn-slide.blue:hover,
.owl-carousel .btn-slide.blue:focus,
.owl-carousel .btn-slide.blue:active {
  color: #fff ;
  background-color: #ccc;
  border-color: #ccc;
}
  
   .owl-item.item-2 .owl-caption img {
   filter: brightness(50);
}
  .owl-item.item-2 .owl-caption {
    width: 80%;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
  }
  .owl-item.item-2 .owl-caption .btn-slide {    
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 40px;
    margin-top: 10px;
    padding: 5px;
  }
}