/*
 *  Owl Carousel - Core
 */
.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;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.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;
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .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 {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  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 - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img.owl-lazy {
  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("../images/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.1, 1.1);
}
.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;
  background-size: cover;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}


.item-video .owl-video-wrapper {
	overflow: hidden;
	padding-top: 67.66%;
}
.item-video .owl-video-wrapper .owl-video-frame,
.item-video .owl-video-wrapper .owl-video-frame iframe {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
}
.owl-video-tn {
	background-size: cover;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-position: center center;
}

.owl-prev,
.owl-next {
	height: 30px;
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 30px;
}

.owl-prev {
	background: url('../images/slider_prev.png') scroll no-repeat center center transparent;
	left: 52px;
}

.owl-next {
	background: url('../images/slider_next.png') scroll no-repeat center center transparent;
	right: 52px;
}

.owl-prev:hover {
	background: url('../images/slider_prev_hover.png') scroll no-repeat center center transparent;
}

.owl-next:hover {
	background: url('../images/slider_next_hover.png') scroll no-repeat center center transparent;
}


.slideTitle {
    background-color: rgba(0, 0, 0, 0.6);
    bottom: -100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #fff;
    font-size: 22px;
    font-weight: 300;
    left: 0;
    line-height: 1.6;
    padding: 4% 10%!important;
    position: absolute;
    text-align: center;
	-webkit-transition: all 0.8s ease 0s;
  	-moz-transition: all 0.8s ease 0s;
  	transition: all 0.8s ease 0s;
    width: 100%;
	z-index: 2;
}
.center .slideTitle {
	bottom: 0;
}
.center.owl-video-playing .slideTitle {
	bottom: -100%;
}
.center.owl-video-playing:hover .slideTitle {
	bottom: 39px;
}
.owl-carousel .owl-item:hover .owl-video-play-icon {
	z-index: 3;
}



.slideTitle > a {
    color: #fff;
	-webkit-transition: color 0.8s ease 0s;
  	-moz-transition: color 0.8s ease 0s;
  	-ms-transition: color 0.8s ease 0s;
  	-o-transition: color 0.8s ease 0s;
  	transition: color 0.8s ease 0s;
}

.slideTitle > a:hover {
    color: #00A9E0;
}
	
.owl-nav.gkPage {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    width: 100%;
}

@media (max-width: 1100px) {
	.slideTitle {
		font-size: 20px;
		line-height: 1.4;
		padding: 2% 6% 4% !important;
	}
}
@media (max-width: 680px) {
	.owl-prev {
		left: 10px;
	}
	.owl-next {
		right: 10px;
	}
}
@media (max-width: 440px) {
	.slideTitle {
		font-size: 16px;
	}
}