/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
	
}
.owl-carousel .owl-wrapper-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;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-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);
}
#slider1 .owl-dots 
{
	display:none!important
}
/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}
.bannerimges .owl-dot{display:none!important}






/* fix */
.owl-carousel  .owl-wrapper,
.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 - 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;

}
.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
 {
display:block!important;
 cursor: hand;
cursor:pointer;
}
.projectowl .owlproject .owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
}
.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;
}

.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 {
text-align:center;
  opacity: 0;
background-image:url(../images/loading.gif);background-repeat:no-repeat;
  -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;
}

.owl-carousel .owl-item active{width:100%!important}
/*==============Owl themes=================*/

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/



/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	
	zoom: 1;
	
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	/*display: inline-block;display: inline;-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;*/
	
}




/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-dots {
    position: absolute;
    left: 2%;
   margin-top: -120px;
   cursor:pointer;
}



 .owlbanner .owl-controls .owl-nav .owl-next {
   background-image: url(../images/bannerarrowright.png) !important;
	background-repeat: no-repeat;
	height: 37px;
	width: 28px;
	position: absolute;
	right: 3%;
	top: 46%;
}


.owlbanner .owl-controls .owl-nav .owl-prev {
  background-image: url(../images/bannerarrowleft.png) !important;
background-repeat: no-repeat;
height: 37px;
width: 28px;
position: absolute;
left: 3%;
top: 46%;
}


.owlclients .owl-controls .owl-nav .owl-next {
   background-image: url(../images/clientsodearrowright.png) !important;
	background-repeat: no-repeat;
	height: 85px;
	width: 45px;
	position: relative;
	margin: -7% 0px 0px 0px;
	float: right;
}


.owlclients .owl-controls .owl-nav .owl-prev {
  background-image: url(../images/clientsodearrowleft.png) !important;
background-repeat: no-repeat;
height: 85px;
width: 45px;
margin: -7% 0px 0px 0px;
float: left;
position: relative;
font-size: 0px;
left: 25px;
}



/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-dot span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(../Images/AjaxLoader.gif) no-repeat center center
}
/*============== ends=============*/


.mobstrategy  .owl-theme .owl-controls{ position:absolute; right:2%; margin-top:-30px}


.owl-item.active .bannerimg{
  animation: 1s .2s fadeInUp both;
}

.owl-item.active .bannerdesc{
  animation: 1s .3s fadeInRight both;
}
.owl-item .staffdesc{
animation: .5s .5s fadeInLeft ;

}

.owl-item.active .bannerlist {
  list-style-type: none;
  overflow: hidden;
  padding: 0;
}

 .owl-item.active .bannerlist li {
  transform: translateX(-100%);
  transition: transform 0.5s, opacity 2s;
  opacity: 0;
}

 .owl-item.active .show {
  opacity: 1!important;
  transform: translateX(0%)!important;
}
   
.owl-item.active .slidebanner{animation-duration: .80s; animation: .80s .80s slideInRight;}
/*.owl-item.active .staffingcnt{animation-duration: .80s; animation: .80s .80s slideInUp;}
 .discuss{animation-duration: .80s; animation: .80s .80s slideInLeft;}
 .plan{animation-duration: .4s; animation: .4s .4s slideInLeft;}
 .process{animation-duration: .4s; animation: 1s .4s fadeInLeft;}
 .organize{animation-duration: .2s; animation: 1s .2s fadeInLeft ;}*/
@media(max-width:1200px)
{
/*.owlbanner .owl-controls .owl-nav .owl-next {right: -60px;bottom: 0px;height: 50px;
width: 50px;}*/
.owlbanner .owl-controls .owl-nav .owl-next,.owlbanner .owl-controls .owl-nav .owl-prev{/*margin: -22% 0px 0px 0px;*/}
.owlclients .owl-controls .owl-nav .owl-next,.owlclients .owl-controls .owl-nav .owl-prev{margin: -9% 0px 0px 0px;}
}


@media(max-width:999px)
{
	.owlbanner .owl-controls .owl-nav .owl-next, .owlbanner .owl-controls .owl-nav .owl-prev {
    /*margin: -24% 0px 0px 0px;*/
}
.owlbanner .owl-controls .owl-nav .owl-next{/*width: 50px;*/}
.owlclients .owl-controls .owl-nav .owl-next,.owlclients .owl-controls .owl-nav .owl-prev{margin: -11% 0px 0px 0px;}
}
@media(max-width:900px)
{

}
	@media(max-width:800px)
{
.owlbanner .owl-controls .owl-nav .owl-next,.owlbanner .owl-controls .owl-nav .owl-prev {display:none!important}
	.owlclients .owl-controls .owl-nav .owl-next,.owlclients .owl-controls .owl-nav .owl-prev{margin: -16% 0px 0px 0px;}
.banner .owl-theme .owl-controls .owl-dot {
    display: block!important;
    width: 2px;
    height: 0px;
   margin: 20px 4px 8px;
    padding: 4px 3px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 20px;
    border: 1px solid #fff;
    background: #fff;
    cursor: pointer;
   
}
.banner .owl-theme .owl-controls .owl-dot.active span, .bannerdiv .owl-theme .owl-controls.clickable .owl-dot:hover span {
    background: #dcc97c;
}

.owl-theme .owl-controls .owl-dot {
    display: inline-block;}

.banner .owl-theme .owl-dots {

    right: 2%;
    cursor: pointer;
   margin-top: -10px;

}

.banner .owl-theme .owl-controls .owl-dot {
	display: inline-block!important;}
	.banner .owl-theme .owl-controls .owl-dot.active ,
.banner .owl-theme .owl-controls.clickable .owl-dot:hover {
		display: inline-block!important;
}
.banner .owl-theme .owl-controls .owl-dot.active, .banner .owl-theme .owl-controls.clickable .owl-dot:hover {
    display: inline-block!important;
}

}


@media(max-width:400px)
{
.owlclients .owl-controls .owl-nav .owl-next,.owlclients .owl-controls .owl-nav .owl-prev{margin: -22% 0px 0px 0px;}
}

@media(max-width:350px)
{
.owlclients .owl-controls .owl-nav .owl-next,.owlclients .owl-controls .owl-nav .owl-prev{margin: -28% 0px 0px 0px;}
}