@charset "utf-8";
/* CSS Document */
.owl-drag {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
  float: left;
}
.owl-drag .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-drag .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-drag .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.owl-drag .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-drag .owl-item img {
  -webkit-transform-style: preserve-3d;
}
.owl-drag .owl-nav.disabled, .owl-drag .owl-dots.disabled {
  display: none;
}
.owl-drag .owl-nav .owl-prev, .owl-drag .owl-nav .owl-next, .owl-drag .owl-dot {
  cursor: pointer;
  cursor: hand;
}
.owl-drag.owl-loaded {
  display: block;
}
.owl-drag.owl-loading {
  opacity: 0;
  display: block;
}
.owl-drag.owl-hidden {
  opacity: 0;
}
.owl-drag.owl-refresh .owl-item {
  display: none;
}
.owl-drag.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-drag.owl-rtl {
  direction: rtl;
}
.owl-drag.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-drag {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-drag .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-drag .owl-animated-in {
  z-index: 0;
}
.owl-drag .owl-animated-out {
  z-index: 1;
}
.owl-drag .fadeOut {
  animation-name: fadeOut;
}
 @keyframes fadeOut {
 0% {
 opacity: 1;
}
 100% {
 opacity: 0;
}
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-drag .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-drag .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-drag .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-drag .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;
  transition: transform 100ms ease;
}
.owl-drag .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-drag .owl-video-playing .owl-video-tn, .owl-drag .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-drag .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-drag .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/*Custom CSS for Project*/
.owl-nav .owl-next, .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  padding: 15px;
  margin-top: -25px;
  background-color: #036ded;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 15% auto;
  border: 2px solid transparent;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.owl-nav .owl-next:hover, .owl-nav .owl-prev:hover {
  background-color: transparent;
  border-color: #c3c3c3;
}
.owl-nav .owl-prev {
  left: -60px;
  background-image: url(../images/icons/prev-arrow.png);
}
.owl-nav .owl-prev:hover {
  background-image: url(../images/icons/prev-arrow2.png);
}
.owl-nav .owl-next {
  right: -60px;
  background-image: url(../images/icons/next-arrow.png);
}
.owl-nav .owl-next:hover {
  background-image: url(../images/icons/next-arrow2.png);
}
.slider-no-current {
  display: none;
  position: absolute;
  right: 15px;
  bottom: -7px;
  z-index: 1;
  color: #fff;
}
.current-no:after {
  display: block;
  position: absolute;
  right: -3px;
  bottom: 2px;
  color: #ffffff;
  font-size: 12px;
  content: "/";
  z-index: 2;
}
.current-no, .total-no {
  padding: 0 5px;
  position: relative;
}
.owl-dots {
  display: block;
  padding-top: 33px;
  text-align: center;
}
.owl-dot {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  margin: 0 5px;
  background: #999999;
  border: 2px solid transparent;
  cursor: pointer;
  text-indent: -999px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.owl-dot.active {
  width: 10px;
  height: 10px;
  background: transparent;
  border-color: #222222;
}
/*testimonial-slider CSS*/
.testimonial-slider .owl-dots {
  position: static;
  float: left;
  width: 100%;
  padding-top: 37px;
}
.testimonial-slider .owl-dot {
  width: 7px;
  height: 7px;
  border: 1px solid #999999;
}
.testimonial-slider .owl-dot.active {
  background: #232323;
  border-color: #232323;
}
.wlsn-project-slider .owl-dots {
  padding: 0;
  position: absolute;
  bottom: 34px;
  left: 0;
  z-index: 9;
  width: 100%;
}
.wlsn-project-slider .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background: #222222;
}
.wlsn-project-slider .owl-dots .owl-dot.active {
  width: 10px;
  height: 10px;
  background: none;
  border-color: #222222;
}