/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td{
    vertical-align: top;
}
.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-carousel .owl-item > div{
    vertical-align: middle;
} 
.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;
}

/* 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-pagination{
	position: fixed;
        width: 100%;
        bottom: 0px;
	left:0px;
	background-color: #5CC3A6;
	z-index:1;
}

/*.owl-prev:after {
    content: '';
    display: inline-block;
    margin-top: 16px;
    margin-left: 20px;
    width: 1em;
    height: 1em;
    border-top: 0.2em solid #ffffff;
    border-right: 0.2em solid #ffffff;
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    text-align: center;
}*/
.owl-prev {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: rgba(185, 184, 178, 0.62);
    border-radius: 50%;
    top: 45%;
    left: 4%;
    position: absolute;
}
.owl-next {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: rgba(185, 184, 178, 0.62);
    border-radius: 50%;
    /*margin-left: 115.5em;*/
    top: 44%;
    position: absolute;
    right: 4%;
  }
  /*.owl-next:after {
   content: '';
    display: inline-block;
    border-top: 0.2em solid #ffffff;
    border-right: 0.2em solid #ffffff;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 16px;
    margin-left: 14px;
    width: 1em;
    height: 1em;
}*/
  
  .owl-next:hover, .owl-prev:hover{
      opacity: 0.8;
  }



