
.testimonial {
	border-right: 4px solid #aeaeae;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
	padding: 30px 30px 30px 130px;
	margin: 0 15px 30px 15px;
	overflow: hidden;
	position: relative;
  }
  .testimonial:before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: -17px;
	border-top: 25px solid var(--webz-primary-color);
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	transform: rotate(45deg);
  }
  .testimonial:after {
	content: "";
	position: absolute;
	top: -4px;
	left: -17px;
	border-top: 25px solid var(--webz-primary-color);
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	transform: rotate(135deg);
  }
  .testimonial .pic {
	display: inline-block; 
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: 60px;
	left: 20px;
  }
  
  .testimonial .pic img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	object-position: center center;
  }
  .testimonial .description {
	font-size: 15px;
	color: #6f6f6f;
	line-height: 25px;
	margin-bottom: 15px;
  }
  .testimonial .title {
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 0px;
	color: var(--webz-primary-color);
	margin: 0;
  }
  .testimonial .post {
	display: inline-block;
	font-size: 17px;
	color: var(--webz-primary-color);
	font-style: italic;
  }
  .owl-theme .owl-controls .owl-page span {
	border: 2px solid #556270;
	background: #fff !important;
	border-radius: 0 !important;
	opacity: 1;
  }
  .owl-theme .owl-controls .owl-page.active span,
  .owl-theme .owl-controls .owl-page:hover span {
	background: var(--webz-secondary-color) !important;
	border-color: var(--webz-secondary-color);
  }
  @media only screen and (max-width: 767px) {
	.testimonial {
	  padding: 20px;
	  text-align: center;
	}
	.testimonial .pic {
	display: none; 
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: 60px;
	left: 20px;
  }
  }