.ts-wrapper {
  width: 100vw;
  overflow-x: hidden;
  background-color: #5997d7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ts-carousel {
  width: 900px;
  max-width: 80vw;
  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 {
  text-align: center;
  color: #9fa1a4;
  margin: 0;
  padding: 0;
}

.ts-slide-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.testimonial-container .ts-content {
  color: #fff;
  text-align: center;
}

.testimonial {
  padding: 15px 15px 0 15px;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.ts-content {
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 22px;
}

.testimonial .ts-content {
  padding: 10px 10px 0 10px;
  margin-bottom: 0;
}

.testimonial .ts-content p {
  padding: 0;
  text-align: center;
  margin-bottom: 1.25em;
  color: #fff;
  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-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: #fff;
  cursor: pointer;
}

.ts-white {
  background-color: #fff;
}

.ts-grey {
  background-color: #fff;
}

.ts-arrow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 2px solid white;
  width: 40px;
  height: 40px;
  opacity: 0;
  transition: all 500ms ease;
}

.ts-wrapper .right-chevron {
  /* transform: translateX(100vw); */
  transform: translateX(0);
  opacity: 1;
  min-width: 40px;
}

.ts-wrapper .left-chevron {
  /* transform: translateX(-100vw); */
  transform: translateX(0);
  opacity: 1;
  min-width: 40px;
}

.ts-wrapper .right-chevron i,
.ts-wrapper .left-chevron i {
  font-size: 24px;
  color: white;
}

.ts-wrapper:hover .right-chevron,
.ts-wrapper:hover .left-chevron {
  /* transform: translateX(0);
  opacity: 1; */
}

.ts-arrow-container:hover {
  cursor: pointer;
  background-color: white;
}

.ts-arrow-container:hover i {
  color: #5997d7;
}

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

.ts-wrapper h2 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
  padding: 5px 10px;
  text-align: center;
}

.ts-container {
  width: 960px;
  max-width: 90vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0 50px 0;
}

.ts-wrapper > .dashed-divider {
  background-image: linear-gradient(
    135deg,
    #fff 10%,
    transparent 10%,
    transparent 50%,
    #fff 50%,
    #fff 60%,
    transparent 60%,
    transparent 100%
  );
  background-size: 7.07px 7.07px;
}

.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;
}

@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);
  }
}

@media screen and (max-width: 900px) {
  .testimonial {
    padding: 10px 0;
    .ts-content {
      padding: 10px 0;
    }
    .ts-content p {
      font-size: 18px;
    }
  }
  .ts-arrow-container {
    width: 20px;
    height: 20px;
    border: 0;
  }
  .ts-arrow-container:hover {
    background-color: transparent;

    & i {
      color: #fff !important;
    }
  }
}
