

/********************************************************
			Codezeel Custom Styles
********************************************************/
.cz-carousel {
  display: none;
  position: relative;
  float: left;
  width: 100%;
  margin: 0;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  float: left;
  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-carousel .owl-item .manu_image a {
  display: inline-block;
}
.owl-carousel .owl-item .manu_image a img {
  max-width: 100%;
}
.owl-carousel .owl-item:hover a img {
  border-color: blue;
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  /* fix */
  -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);
  text-align: center;
}

/* mouse grab icon */
.grabbing {
  cursor: url("../img/codezeel/grabbing.png") 8 8, move;
}
 
.customNavigation {
	position: absolute;
    z-index: 9;
    width: 63px;
    right: 12px;
    top: 0;
    direction: ltr !important;
}
.lastest_block .customNavigation {
    top: -50px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.lastest_block:hover .customNavigation {
    opacity: 1;
    filter: alpha(opacity=100);
}
.customNavigation a {
	font-size: 0px;
    position: absolute;
    font-weight: 300;
    height: 20px;
    width: 30px;
    line-height: 26px;
    padding: 0px;
    color: #000000;
    cursor: pointer;
    overflow: hidden;
    transition: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border: 0;
   /* background: url(../img/codezeel/arrow.png) no-repeat 0 0;*/
}
/*.customNavigation a:before {
    font-size: 14px;
    font-family: "FontAwesome";
    color: #000;
}
.customNavigation a.prev:before{
	 content: "\f177";
}
.customNavigation a.next:before{
	 content: "\f178";
}
.customNavigation a:hover{
	border-color: #d58780;
    background-color: #d58780;
}*/
.customNavigation a:hover:before{ color: #262626; }
.customNavigation a:hover:before {
    color: #ffffff;
}

.customNavigation a.prev {
  left: 0;
}

.customNavigation a.next {
  right:0;
}
.customNavigation a::before {
    font-size: 25px;
    font-family: "FontAwesome";
    color: #888888;
}
.customNavigation a:hover:before {
    color: #e16d00;
}
.customNavigation a.prev:before {
    content: "\f104";
}
.customNavigation a.next:before {
    content: "\f105";
}
@media (max-width: 1500px) {
	.customNavigation a.prev{
		left: 0px;
	}
	.customNavigation a.next {
		right: 0px;
	}
}

@media (max-width: 991px) {
	.customNavigation a.prev{
		left: 0px;
	}
	.customNavigation a.next {
		right: 0px;
	}
}

#czleftbanner img,
#czrightbanner img{
	max-width: 100%;
}	
#czleftbanner li, #czrightbanner li {
    display: inline-block;
}
#czleftbanner {
    margin-bottom: 25px;
}
#czleftbanner li a, #czrightbanner li a {
    display: inline-block;
    overflow: hidden;
    position: relative;
}
#czleftbanner li a:before, #czrightbanner li a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background:rgba(225, 109, 0, 0.14);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

#czleftbanner li:hover a:before, #czrightbanner li:hover a:before {
  -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
#czleftbanner li a:after, #czrightbanner li a:after{
	background: url(../img/codezeel/banner-cms.png) no-repeat scroll center center transparent;
    content: "";
    position: absolute;
    left: 20px;
    top: 10px;
    width: 100px;
    height: 102px;
}
#czleftbanner li:hover a:after, #czrightbanner li:hover a:after {
      -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(.9, .9, .9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(.97, .97, .97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.top_button {
	background: url(../img/codezeel/top-arrow.png) no-repeat scroll 0 0;
    bottom: 20px;
    cursor: pointer;
    height: 50px;
    padding: 6px 12px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    z-index: 99;

}

/* Flexslider */

#index .spinner {
    background: url(../img/codezeel/loading.gif) no-repeat center center #ffffff;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100000;
	background-size: 15%;
}

/*.flex-direction-nav .flex-prev {
	cursor: url(../img/codezeel/slide-prev.png),pointer;
    left: 5px;
    font-size: 0;
}
.flex-direction-nav .flex-next {
	cursor: url(../img/codezeel/slide-next.png),pointer;
    right: 5px;
    font-size: 0;
    text-align: right;
}*/
/* Preloader 

#czpreloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff;
    z-index:99;
}

#loading_status {
    width:200px;
    height:200px;
    position:absolute;
    left:50%; 
    top:50%; 
    background-image:url(../img/codezeel/preloader.gif); 
    background-repeat:no-repeat;
    background-position:center;
    margin:-100px 0 0 -100px;
}*/