.ts-wrapper-three {
	/*margin-top: 50px;*/
	min-height: 700px;
  width: 100vw;
	overflow-x: hidden;
	background-image: url('/wp-content/uploads/2023/02/EPD-testimonial-bg.png');
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
	position: relative;
	height: 700px;
}
.ts-carousel-three {
	width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ts-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0 20px 0;
}
.ts-title .ts-content-three {
  text-align: center;
  color: #9FA1A4;
  margin: 0;
  padding: 0;
}
.ts-slide-wrapper-three {
  display: flex;
  flex-direction: row;
	justify-content: center;
  overflow: hidden;
	width: 100%;
}
@media (min-width: 0px) and (max-width: 800px) {
  .ts-slide-wrapper-three {
    flex-direction: column;
  }
}
.testimonial-container-three {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}
.testimonial-container-three .ts-content-three {
  color: #fff;
  text-align: center;
}
.testimonial-three {
  padding: 15px 15px 0 15px;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}
.ts-content-three {
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: bold;
  color: #fff;
}
.testimonial-three .ts-content-three {
  padding: 10px 10px 0 10px;
  margin-bottom: 0;
}
.testimonial-three .ts-content-three p {
  padding: 0;
  text-align: center;
  margin-bottom: 1.25em;
  color: #fff;
  font-style: italic;
  font-weight: normal;
}

.ts-triangle {
  width: 0;
  height: 0;
  border-top: 25px solid #9FA1A4;
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  margin-bottom: 20px;
}

.ts-container-three {
	width: 50%;
	/* width: 960px;
	max-width: 90vw; */
	display: flex;
	justify-content: center;
	align-items: center;
	/* padding: 50px 0 50px 0; */
	height: 100%;
	background-color: #698469;
}

.ts-buttons {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.ts-buttons .ts-button {
  width: 15px;
  height: 15px;
  margin: 5px;
}
.ts-buttons .ts-button:hover {
  background-color: #c6c6c6;
  cursor: pointer;
}
.ts-white {
  background-color: #9FA1A4;
}
.ts-grey {
  background-color: #c6c6c6;
}

.slide-out-left {
  animation: slideOutLeft 750ms ease-out 0s 1 forwards;
}
.slide-in-left {
  animation: slideInLeft 750ms ease-out 0s 1 forwards;
}
.slide-out-right {
  animation: slideOutRight 750ms ease-out 0s 1 forwards;
}
.slide-in-right {
  animation: slideInRight 750ms ease-out 0s 1 forwards;
}
.slide-in-right-2 {
  animation: slideInRight 750ms ease-out 250ms 1 forwards;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0vw);
  }
  100% {
    transform: translateX(-100vw);
  }
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(0vw);
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(0vw);
  }
}
@keyframes clickShrink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.ts-arrow-container-three {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	transition: all 500ms ease;
}
.right-chevron i, .left-chevron i {
  font-size: 24px;
	color: white;
}
.ts-arrow-container-three:hover {
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
	.ts-arrow-container-three {
		border: none;
		transform: translateX(0);
		opacity: 1;
	}
	.ts-arrow-container-three:hover i {
		color: white;
	}
	.ts-arrow-container-three:hover {
		background-color: transparent;
	}
}

.ts-wrapper-three h3 {
  font-style: italic;
	font-weight: bold;
	text-align: center;
	color: white;
}

.ts-wrapper-three h2 {
  font-weight: bold;
	color: #fff;
	margin-bottom: 0;
	padding: 5px 10px;
	text-align: center;
	font-family: josefin-sans, sans-serif;
}

@media (min-width: 0px) and (max-width: 800px) {
  .testimonial-three {
    width: 80vw;
  }
}

@media screen and (max-width: 1024px) {
  .right-chevron, .left-chevron {
    font-size: 40px;
  }
}

.ts-buttons-three{
   display: flex;
}