.single-box {
	border: 2px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	width: 80%;
}
.info-area a {
	display: inline-block;
	margin: 20px 0px;
	background-color: #ffa834;
	color: #fff;
	padding: 5px 15px;
	text-decoration: none;
	font-weight: 300;
}

.team-slider .owl-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -60px;
	text-align: center;
	width: 100%;
}
.team-slider button.owl-dot {
	width: 16px;
	height: 16px;
	display: inline-block;
	margin: 0 6px;
	text-align: center;
	border-radius: 50%;
	background-color: #262626;
}
.team-slider .owl-dot.active {
	background-color: coral;
}
.move-animation {
	position: relative;
	-webkit-animation: move-animation 2s ease-in-out infinite;
	animation: move-animation 2s ease-in-out infinite;
}
@-webkit-keyframes move-animation {
	0% {
		top: 3px;
	}
	50% {
		top: -3px;
	}
	100% {
		top: 3px;
	}
}
