.testimonials{
}
.carousel {
	margin: 50px auto;
	padding: 0 70px; margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 12px;
  border-radius: 12px;
  background-color: rgba(var(--white), 0.1);
  border: 1px solid rgba(var(--black), 0.1);
  align-items: center;
  transition-duration: 300ms;
}
.carousel .item {
	font-size: 1.45rem;
	text-align: center;
	overflow: hidden;
	min-height: 290px;
}
.carousel .item .img-box {
	width: 75px;
	height: 75px;
	margin: 0 auto;
	padding: 5px;
}
.carousel .img-box img {
	width: 100%;
	height: 100%;
	display: block;
}
.carousel .testimonial {
	padding: 30px 60px;
  font-weight: 400;
  font-size: 17px;
}
.carousel .overview {
	font-style: italic;
	font-size: 12px;
	font-weight: 600;
}
.carousel .overview b {
	text-transform: uppercase;
	color: #555;
}
.carousel .carousel-control {
	width: 40px;
	height: 40px;
	top: 50%;
	background: none;
}
.carousel-control i {
	font-size: 36px;
	line-height: 42px;
	position: absolute;
	display: inline-block;
	color: rgba(0, 0, 0, 0.8);
	text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}
.carousel .carousel-indicators {
	bottom: -40px;
}
.carousel-indicators li, .carousel-indicators li.active {
	width: 10px;
	height: 10px;
	margin: 1px 3px;
	border-radius: 50%;
}
.carousel-indicators li {
	background: #999;
	border-color: transparent;
	box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}
.carousel-indicators li.active {
	background: #555;
	box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}
