/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/

.owl-carousel-wrapper {
    position: relative;
}
.owl-theme .owl-item .project-item {
    margin: 0 15px;
}
/* Styling Next and Prev buttons */

.owl-theme .owl-nav button {
    color: #FFF;
    display: none;
    /* hide for mobile */
    font-size: 14px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    line-height: 52px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    z-index: 1;
    opacity: 0;
    outline: none;
    filter: alpha(opacity=0);
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.owl-theme .owl-nav button:before {
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    z-index: 2;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    content: "";
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.owl-theme .owl-nav button:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: block;
    border-radius: 50%;
    background: red;
    background: #2f2f2f;
    content: "";
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.owl-theme .owl-nav button i {
    position: relative;
    display: inline-block;
    z-index: 3;
}
.owl-theme .owl-nav .owl-prev {
    left: 25px;
}
.owl-theme .owl-nav .owl-next {
    right: 25px;
}
@media (min-width: 768px) {
    .owl-theme .owl-nav button {
        display: block;
    }
}
/* Clickable class fix problem with hover on touch devices */

/* Use it for non-touch hover action */
.owl-theme .owl-nav button:hover{
	color: #2f2f2f;
}
.owl-theme:hover .owl-nav button{
	opacity: 1;
  	filter: alpha(opacity=100);
}
.owl-theme .owl-nav button:hover:before {
	background: rgba(0,0,0,.1);
}
.owl-theme .owl-nav button:hover:after {
	background: #fff;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}
.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 8px;
    width: 12px;
    height: 12px;
    cursor: pointer;
}
.owl-theme .owl-dots .owl-dot span {
    top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: none;
	border-radius: 50%;
	background-color: #ddd;
	background-color: rgba(0,0,0,0.3);
	text-indent: -999em; /* make the text accessible to screen readers */
	cursor: pointer;
	position: absolute;
	-webkit-transition: -webkit-transform 0.3s ease, background-color 0.3s ease;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #dc2a0b;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}
.prev-btn, .next-btn {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: #373737;
    border: 1px solid #444;
    text-align: center;
    font-size: 18px;
    color: #aeaeae;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.prev-btn:hover, .next-btn:hover {
    text-decoration: none;
    background: #fff;
    border-color: #d9d9d9;
    cursor: pointer;
    color: #aeaeae;
}

/* Styling Pagination*/
.owl-theme .owl-dots {
	position: absolute;
	right: 16px;
	bottom: 20px;
	text-align: right;

	margin: 0;
	padding: 0;
	list-style: none;
	cursor: default;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-theme .owl-dots .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 8px;
	width: 12px;
	height: 12px;
	cursor: pointer;
}

.owl-theme .owl-dots .owl-dot span {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: none;
	border-radius: 50%;
	background-color: #ddd;
	background-color: rgba(0,0,0,0.3);
	text-indent: -999em; /* make the text accessible to screen readers */
	cursor: pointer;
	position: absolute;
}

.owl-theme .owl-dots .owl-dot span:focus {
	outline: none;
}

/* Pagination Effects */

.owl-theme .owl-dots .owl-dot span {
	-webkit-transition: -webkit-transform 0.3s ease, background-color 0.3s ease;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.owl-theme .owl-dots .owl-dot span:hover,
.owl-theme .owl-dots .owl-dot span:focus {
	background-color: rgba(0,0,0,0.7);
}

.owl-theme .owl-dots .owl-dot.active span {
	background-color: #dc2a0b;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

/* Testimonials Slider */

.owl-testi blockquote {
    font-size: 16px;
    line-height: 22px;
    background: none;
    border: none;
    text-align: center;
    padding: 60px 0 0 0;
}
.owl-testi blockquote:before {
    position: absolute;
    left: 50%;
    margin-left: -19px;
    top: 0;
    font-size: 42px;
}
.owl-testi cite {
	display: block;
    text-align: center;
    font-size: 16px;
    line-height: 1.5em;
    color: #bbb;
}
.owl-testi .owl-dots {
    position: static;
    padding-top: 40px;
    text-align: center;
}
@media (min-width: 992px) {
    .owl-theme blockquote {
        padding: 70px 100px 0 100px;
        font-size: 20px;
        line-height: 36px;
    }
}