.testimonial {
	position: relative;
	max-width: 700px;
	width: 100%;
	padding:  0;
	overflow: hidden;

}

.testimonial .slide {
	display: flex;
	align-items: start;
	justify-content: center;
	flex-direction: column;
	row-gap: 5px;
	height: 100%;
	width: 100%;
	padding: 0 60px;
}

.testimonial .swiper-wrapper{
align-items: center;
}

.slide .quote-icon {
  font-size: 30px;
  color: #4070f4;
}
.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details .name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.details .job {
  font-size: 12px;
  font-weight: 400;
  color: #333;
}
/* swiper button css */
.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
	left: 0;
	right: auto;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
	right: 0;
	left: auto;
}
.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav-btn::after,
.nav-btn::before {
  font-size: 20px;
  color: #fff;
}
.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}
.swiper-pagination-bullet-active {
  background-color: #4070f4;
}
@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 20px;
  }
  .nav-btn {
    display: none;
  }
}
