/* 
 * 	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 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 {
   
   cursor:pointer;
}
.clientslogo .owl-theme .owl-dots {
    position: absolute;
    margin-right: 45%;
 margin-top: -40px;
   cursor:pointer;
   
}
.clientslogo .owl-theme .owl-controls .owl-dot{
	
	display:inline-block;
}
 .bannercontent .owl-theme .owl-controls .owl-dot span{
	 display: inline-block;
	width: 12px;
height: 12px;
margin: 5px 5px;
filter: Alpha(Opacity=50);
opacity: 0.7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: #015d1c;
border: 1px solid #fff;
}

.bannercontent .owl-theme .owl-controls .owl-dot.active span, .bannercontent .owl-theme .owl-controls.clickable .owl-dot:hover span {
    background:#fff;
}
.owl-theme .owl-controls .owl-dot{display:inline-block;}
.clientslogo  .owl-theme .owl-controls .owl-dot.active span,
 .clientslogo  .owl-theme .owl-controls.clickable .owl-dot:hover span,
 .clientslogo  .owl-theme .owl-controls .owl-dot.active span,
 .clientslogo  .owl-theme .owl-controls.clickable .owl-dot:hover span{
		background: #7d7d7d;
}






/* 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}

.owlvehicle  .owl-controls .owl-nav .owl-next
{
	background-image:url(../images/arrowl.png)!important;background-repeat:no-repeat;
	   height:85px;width:45px;margin: -15% 0px 0px 0px;float:right;position:relative; font-size:0px; right:0px;z-index: 100;
}

.owlvehicle .owl-controls .owl-nav .owl-prev
{
	background-image:url(../images/arrowr.png)!important;background-repeat:no-repeat;
		  height:85px;width:55px;margin: -15% 0px 0px 0px;float:left;position:relative;font-size:0px; left: 30px;z-index: 100;
}


@media(max-width:999px)
{
	.clientslogo .owl-theme .owl-dots {
    position: absolute;
    margin-right: 45%;
 margin-top: -40px;
   cursor:pointer;
   
}


	}
	
	@media(max-width:700px)
{
	.clientslogo .owl-theme .owl-dots {
 
    margin-right: 35%;
 
   
}
.mobstrategy  .owl-theme .owl-controls{right:-2%; margin-top:-30px}

}

	@media(max-width:600px)
{
	.clientslogo .owl-theme .owl-dots {
 
    margin-right: 30%;
 
   
}
.mobstrategy .owl-theme .owl-controls .owl-dot{ display:inline-block!important; }
.mobstrategy .owl-theme .owl-dots{position:relative;  margin-top:30px; right:auto }
.mobstrategy  .owl-theme .owl-controls{ right:auto;position:relative; }
}
	@media(max-width:500px)
{
	.clientslogo .owl-theme .owl-dots {
 
    margin-right: 20%;
 
   
}

.mobstrategy  .owl-theme .owl-controls{ right:1%}
}
}

	@media(max-width:400px)
{
	.clientslogo .owl-theme .owl-dots {
 
    margin-right: 10%;
    
 
   
}
.mobstrategy  .owl-theme .owl-controls { margin-top:-50px}
}




/* owl-themes.css */


/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.bannercontent .owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
	 position: absolute;
margin-top: -137px;

}

.owl-theme .owl-controls{
	
	text-align:center;
	
}

/* 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;*/
	
}

.bannercontent .owl-theme .owl-controls{margin-left: 13%;}




/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.bannercontent .owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.banner .owl-theme .owl-controls .owl-dot{
	display: none;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.banner .owl-theme .owl-controls .owl-dot span{
	display: none;
	width: 10px;
height: 7px;
	margin: 5px 4px 8px;
	
	padding:2px 1px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #abce36 ;
}

.banner .owl-theme .owl-controls .owl-dot.active span,
.banner .owl-theme .owl-controls.clickable .owl-dot:hover span{
		display:none;
}



/* Gallery*/



/* Styling Pagination*/







/* 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
}

.firststrategy .owl-theme .owl-controls .owl-buttons .owl-prev{
	color: #ffffff;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
margin: -320px 0px 0px -600px;	filter: Alpha(Opacity=50);/*IE7 fix*/
	
	position:absolute;
	background-image:url(../Images/nextarrowleft.png); background-repeat:no-repeat;
	  height:68px;
	 font-size:0px;
	 
	 
	
}

.firststrategy .owl-theme .owl-controls .owl-buttons .owl-next{
	color: #ffffff;
	display: inline-block;
	zoom: 1;
	display: inline;/*IE7 life-saver */
margin: -320px 0px 0px 520px;	filter: Alpha(Opacity=50);/*IE7 fix*/
background-image:url(../Images/nextarrowright.png); background-repeat:no-repeat;
	position:absolute;
	 height:68px;
	 font-size:0px;
	width: 78px;
}
.strategies .owl-theme .owl-controls .owl-next,.strategies .owl-theme .owl-controls .owl-prev{ display:none!important; font-size:0}


.strategies .owl-theme .owl-controls .owl-dot span {
display: block;
width: 10px;
height: 8px;
margin: 10px 4px 8px;
padding: 4px 3px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 20px;
background: #7e7e7e;
cursor:pointer
}	

.strategies .owl-theme .owl-controls .owl-dot.active span, .prodscroll .owl-theme .owl-controls.clickable .owl-dot:hover span {
    background: #c2c2c2;
}
.strategies .owl-controls{ position:absolute; z-index:1; right:2%; top:300px}
	}

@media(max-width:800px)
{

.projectdetails .owl-theme .owl-controls .owl-dot span {
display: block;
width: 10px;
height: 8px;
margin: 5px 4px 8px;
padding: 4px 3px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 20px;
background: #7e7e7e;
cursor:pointer
}	

.projectdetails .owl-theme .owl-controls .owl-dot.active span, .prodscroll .owl-theme .owl-controls.clickable .owl-dot:hover span {
    background: #fa7307;
}
}
@media(max-width:900px)
{
	
	
	.projects .owl-theme .owl-controls .owl-dot span {
display: block;
width: 10px;
height: 8px;
margin: -130px 4px 8px;
padding: 4px 3px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 20px;
background: #7e7e7e;
cursor:pointer
}	

.projects .owl-theme .owl-controls .owl-dot.active span, .prodscroll .owl-theme .owl-controls.clickable .owl-dot:hover span {
    background: #fa7307;
}
.projects .owl-controls{ position:absolute; z-index:10000000000; margin-left:45%}
	}
	@media(max-width:700px)
{
	
	.projects .owl-controls{ margin-top:-50px}
}

@media(max-width:600px)
{
	
	.projects .owl-controls{ margin-top:-200px}
}

@media(max-width:450px)
{
	
	.projects .owl-controls{ margin-top:-235px}
}

@media(max-width:350px)
{
	
	.projects .owl-controls{ margin-top:-260px}
}



