.testimonial-main {
	position: relative;
}

.testimonial-pagination {
	text-align: center;
	margin-top: 20px;
}

.swiper-pagination-bullet {
	background-color: #aaa;
	opacity: 0.7;
}

.swiper-pagination-bullet-active {
	background-color: #333;
	opacity: 1;
}
.testimonial-content {
	margin-bottom: 50px;
	background-color: #fafafb;
	border-radius: 15px;
	padding: 0px 30px 20px 30px;
}
.custom-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	color: white;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
	overflow: hidden;
}

.custom-play-btn i {
	position: relative;
	z-index: 2;
}

.wave {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	animation: waveAnim 1.5s infinite ease-out;
	z-index: 1;
}

@keyframes waveAnim {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	100% {
		transform: scale(2.5);
		opacity: 0;
	}
}


/* Mobile Responsive  */

@media(max-width:576px){
	.testimonial-content {
		margin-bottom: 0px;
	}
}