#testimonial-slider {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-container {
  width: 1600px;
  margin: auto;
  max-width: 1260px;
}
.previous,
.next-arrow {
  padding: 6px;
  width: 35px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.7s ease-in-out;
  border: none;
  background-color: transparent;
}
.slide-img {
  width: 100%;
  margin: auto;
  cursor: pointer;
  transition: 0.5s;
  /* padding: 20px; */
  text-align: center;
}
@media (max-width: 1600px) {
  .testimonial-container {
    width: 100%;
  }
}
.testimonial-container .testimonial-slide {
  background-color: #f7feff;
  /* padding: 0px 20px; */
  width: 100%;
  /* margin: auto; */
}
.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

.testimonial-img {
  width: 100%;
  /* border-radius: 50%; */
}

/* New testimonial CSS starts */
.quote-img-wrapper {
  width: 10%;
  float: left;
}
.quote-img-wrapper img {
  margin-top: -35px;
}
.testimonial-text-wrapper {
  /* width: 90%; */
  float: left;
  /* margin-bottom: 55px; */
  color: #4c4d55;
}
.testimonial-name-wrapper {
  color: #4c4d55;
  font-weight: bold;
}

.before-content {
  position: relative;
}
.before-content::before {
  height: 2px;
  background-color: #4c4d55;
  width: 41px;
  position: absolute;
  content: "";
  right: 10px;
  top: 11px;
}
.slider-wrapper {
  position: relative;
}
.controller .previous {
  position: absolute;
  top: 45%;
  left: -60px;
}
.controller .next-arrow {
  position: absolute;
  top: 45%;
  right: -60px;
}
.previous img,
.next-arrow img {
  width: 100%;
}

/* CSS for equal cols*/
.my-slider.equal-cols {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.my-slider.equal-cols > [class*="tns-item"] {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.my-slider.equal-cols > [class*="tns-item"] > * {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.my-slider.equal-cols > [class*="tns-item"] {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  min-height: 30px;
}
.testimonial-slide {
  position: relative;
}
.testimonial-slide .testimonial-person-name {
  position: absolute;
  bottom: 18px;
  right: 24px;
}
.testimonial-text-container .person-role {
  font-weight: 500;
}

.testimonial-text-container .person-name {
  color: #ff5600;
  font-weight: 600;
}

.my-slider {
  padding-bottom: 0.25rem;
}

.testimonial-slide {
  display: flex;
  flex-direction: column;
}

.testimonial-text-container {
  flex: 1;
}

.testimonial-grid-1-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 25%);
  gap: 25px;
  justify-content: center;
}

.testimonial-grid-2-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 25%);
  gap: 25px;
  justify-content: center;
}

.testimonial-grid-3-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 25%);
  gap: 25px;
  justify-content: center;
}
