.carousel {
    height: 50%;
}

.item,
.active,
.carousel-inner {
    height: 100%;
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

/*team section*/
.team h2 {
	font-family:Verdana, Geneva, sans-serif;
	color: #6FC191;
	margin-top: 10px;
	margin-bottom: 0;
}
.team h4 {
	font-family:Verdana, Geneva, sans-serif;
	margin-top: 0;
	margin-bottom: 45px;
}
.single-member {
	margin: 0;
	padding: 0;
}
.person img {
	width: 100%;
}
.person-detail {
	height:250px;
	padding: 10px;
	background: #7BBA3F;/* #00CC66;*/
	position: relative;
	transition: all .7s ease 0s;
	-webkit-transition: all .7s ease 0s;
	-moz-transition: all .7s ease 0s;
	-o-transition: all .7s ease 0s;
	-ms-transition: all .7s ease 0s;
}
.arrow-top {
	position: absolute;
	width: 20px;
	height: 20px;
	background: #7BBA3F  ;/*6FC191*/
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	bottom: -10px;
	left: 46%;
	transition: all .7s ease 0s;
	-webkit-transition: all .7s ease 0s;
	-moz-transition: all .7s ease 0s;
	-o-transition: all .7s ease 0s;
	-ms-transition: all .7s ease 0s;
}
.arrow-bottom {
	position: absolute;
	width: 20px;
	height: 20px;
	background: #7BBA3F;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	top: -9px;
	left: 46%;
	transition: all .7s ease 0s;
	-webkit-transition: all .7s ease 0s;
	-moz-transition: all .7s ease 0s;
	-o-transition: all .7s ease 0s;
	-ms-transition: all .7s ease 0s;
}
.person-detail h3 {
	font-size: 22px;
	color: #fff;
}
.person-detail p {
	font-size: 14px;
	color: #fff;
	font-family: Georgia, "Times New Roman", Times, serif;
}
.single-member:hover .person-detail {
	background: #05C8E6;
}
.single-member:hover .arrow-top {
	background: #05C8E6;
}
.single-member:hover .arrow-bottom {
	background: #05C8E6;
}
