/* 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);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

.customNavigation{
  text-align: right;
  border-bottom: 1px solid #ccc;
  padding:10px 0px;
  margin-bottom:40px;
}
.customNavigation span{
  font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.customNavigation a{
	border:1px solid #ccc;
	border-radius:50%;
  -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);
  cursor:pointer;
}

/* 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-demo .item{
	background: #d5d5d5;
	padding: 0px 0px;
	margin: 10px; 
	color: #000;
	text-align: center;
	border: 1px solid #ccc;
	-webkit-transition: all 0.8s ease-in-out 0s;
  -moz-transition: all 0.8s ease-in-out 0s;
  -o-transition: all 0.8s ease-in-out 0s;
  transition: all 0.8s ease-in-out 0s;
}
.item-image{
	position:relative;
	padding:0px;
}
.item-image img{
	min-height: 220px;
	max-height: 220px;
	width: 100%;
	margin:0 auto;
}
.item-image-title{
	position:relative;
	padding:0px 0px 10px 0px;
}

.item-image-title h3{
	font-size:16px;
	font-weight:normal;
        color: #323232;
	
}


.item:hover .item-overlay {
    display: block;
    -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.item-overlay {
    position: absolute;
    top: 8%;
    left: 8%;
    padding: 80px 0px;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    width: 84%;
    height: 84%;
    -webkit-transition: all 0.8s ease-in-out 0s;
  -moz-transition: all 0.8s ease-in-out 0s;
  -o-transition: all 0.8s ease-in-out 0s;
  transition: all 0.8s ease-in-out 0s;
}
.item-overlay .overlay-content {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 9999;
   -webkit-transition: all 0.8s ease-in-out 0s;
  -moz-transition: all 0.8s ease-in-out 0s;
  -o-transition: all 0.8s ease-in-out 0s;
  transition: all 0.8s ease-in-out 0s;
}
.overlay-content ul {
    list-style-type: none;
    text-align: center;
    z-index: 99999;
}
.overlay-content ul li {
    display: block;
    font-size: 18px;
    color: #fff;
    padding: 8px 0px;
}
.overlay-content ul li a {
    color: #fff;
    padding: 5px 20px;
    display: inline-table;
}
.overlay-content ul li a:hover {
    color: #fff;
    padding: 5px 20px;
    text-decoration: none;
}
