/* Section background */
.ts-slider {
  overflow: hidden;
}

/* Track */
.ts-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Each card */
.ts-card {
  flex: 0 0 50%;
  padding: 15px;
  box-sizing: border-box;
}

.ts-card-inner {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}

/* Text */
.ts-card p {
  font-size: 16px;
  color: #083836;
  line-height: 1.3;
}

/* User */
.ts-user {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.ts-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.ts-user h4 {
  font-family: "Inter", Sans-serif;
  margin: 0;
  color: #17a7a8;
  font-size: 24px;
  font-weight: 700;

}

.ts-position {
  font-size: 15px;
  color: #083836;
}

/* Dots */
.ts-dots {
  text-align: center;
  margin-top: 50px;
}

.ts-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #dfdfdf;
  margin: 0 10px;
  border-radius: 50%;
  cursor: pointer;
}

.ts-dots .active {
  background: #2fafb1;
}





























  @media (max-width: 768px) {
  .ts-card {
    flex: 0 0 100%;
  }
}