
.uc_team_box_carousel *{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.uc_team_box_carousel .uc_team_box_holder{
	text-align: center;
}
.uc_team_box_carousel .uc_team_box_holder .uc_team_box{
	position: relative;
	overflow: hidden;
	margin: 40px 0;
	box-shadow: 0 0 35px rgba(10, 10, 10,0.08);
	-moz-box-shadow: 0 0 35px rgba(10, 10, 10,0.08);
	-webkit-box-shadow: 0 0 35px rgba(10, 10, 10,0.08);
}

.uc_team_box_carousel .uc_team_box_holder .uc_team_box .uc_image_box{
	position: relative;
}
.uc_team_box_carousel .uc_team_box_holder .uc_team_box .uc_image_box .uc_team_pic {
	position: relative;
	border-radius: 4px 4px 0 0;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  	filter: grayscale(100%);
	transition: ease 0.5s all;
	-webkit-transition: ease 0.5s all;
	overflow: hidden;
	background-size: cover;
    background-repeat: no-repeat;
	background-position: center center;
}
.uc_team_box_carousel .uc_team_box_holder .uc_team_box .uc_overlay{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	transition: ease 0.5s all;
	-webkit-transition: ease 0.5s all;
}
.uc_team_box_carousel .uc_team_box_holder .uc_team_box:hover .uc_image_box .uc_team_pic {
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  	filter: grayscale(0%);
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.uc_team_box_carousel .uc_team_box_holder .uc_team_box:hover .uc_overlay{
	opacity: 1;
}

.uc_team_box_carousel .uc_team_box_holder .uc_team_box .uc_box_content{
	position: relative;
	background: #fff;
	border-radius: 0 0 4px 4px;
	padding: 35px 32px 25px;
}

.uc_team_box_carousel .uc_team_box_holder .uc_team_box .uc_box_content .uc_title {
	line-height: 1.2;
	text-transform: uppercase;
	color: inherit;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	margin: 0 0 5px;
}
.uc_team_box_carousel .uc_team_box_holder .uc_team_box .uc_box_content .uc_title a{
	text-decoration: none;
}
.uc_team_box_carousel .uc_team_box_holder .uc_team_box .uc_box_content .uc_sub_title{
	margin: 0 0 8px;
	color: inherit;
	font-size: 13px;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 2px;
	text-transform: uppercase;
}



.uc_team_box_carousel .uc_team_box_holder .owl-prev {
    position: relative;
    width: 52px;
    line-height: 52px !important;
    background: #fff !important;
	margin: 0 4px;
	font-size: 0px !important;
	display: inline-block;
}
.uc_team_box_carousel .uc_team_box_holder .owl-prev:after{
	content: "\f104";
	font-size: 24px;
	color: #b1976b;
	font-family: FontAwesome;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
.uc_team_box_carousel .uc_team_box_holder .owl-next {
    position: relative;
    width: 52px;
    line-height: 52px !important;
    background: #fff !important;
	margin: 0 4px;
	font-size: 0px !important;
	display: inline-block;
}
.uc_team_box_carousel .uc_team_box_holder .owl-next:after{
	content: "\f105";
	font-size: 24px;
	color: #b1976b;
	font-family: FontAwesome;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}