.testimonial-container {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  margin-top: 40px;
}
@media (max-width:768px) {
	.testimonial-container {
		margin-top:25px;
		padding:0 16px;
	}
}
.testimonial {
  flex: 0 0 calc(100% / 3.5); /* show 3.5 items */
  max-width: calc(100% / 3.5);
  margin: 0 10px;
  background: #fff;
  border: 1px solid #0073ff;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width:768px) {
	.testimonial {
	 flex: 0 0 calc(100% / 1.2); /* show 3.5 items */
  max-width: calc(100% / 1.2);
		margin:0 6px;
		}
}
.testimonial .flex-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.testimonial .flex-wrapper p {
  font-size: 15px;
  color: #333;
  margin: 0 !important;
}

.testimonial .flex-wrapper .feedback-given-content {
  margin-top: 15px;
}
.testimonial strong {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}
@media (max-width:768px) {
	.testimonial-header {
		flex-direction:column;
		align-items:end;
		gap:20px;
	}
}
.testimonial-header .content-wrapper h2,
.testimonial-header .content-wrapper p {
  margin: 0;
}
.testimonial-nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.testimonial-nav > div {
  width: 48px;
  height: 48px;
  border: 1px solid #3355ff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #3355ff;
  cursor: pointer;
  transition: background all 0.3s;
}
@media (max-width:768px) {
	.testimonial-nav {
		padding:0 16px;
	}
	.testimonial-nav > div {
		  width: 32px;
  		  height: 32px;
	}
}
.testimonial-nav > div:hover {
  background: #3355ff;
  color: #fff;
}
