
.review-wrapper {
  font-size: 8px;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.review-wrapper + .review-wrapper {
    margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .review-wrapper {
      font-size: 12.5px;
  }
}

.review-wrapper-overlay-left {
  background: linear-gradient(172.83deg, #FFFFFF 21.66%, rgba(255, 255, 255, 0.95) 35.66%, rgba(255, 255, 255, 0.9) 53.35%, rgba(255, 255, 255, 0) 70.79%);
  transform: matrix(0, 1, 1, 0, 0, 0);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15%;
  z-index: 2;
}


.review-wrapper-overlay-right {
  background: linear-gradient(90deg, rgba(249,249,249,1) 3%, rgba(249,249,249,0) 15%, rgba(249,249,249,0) 85%, rgba(249,249,249,1) 97%);
  position: absolute;
  top: 0;
  right: 15%;
  bottom: 0;
  z-index: 2;
}

@-webkit-keyframes testimonialScroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(8px  * 37 * -1 * 13));
  }
}

@keyframes testimonialScroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(8px  * 37 * -1 * 13));
  }
}


@-webkit-keyframes testimonialScrollReverse {
  0% {
      transform: translateX(calc(8px * 37 * -1 * 13));
  }
  100% {
      transform: translateX(0);
  }
}

@keyframes testimonialScrollReverse {
  0% {
      transform: translateX(calc(8px * 37 * -1 * 13));
  }
  100% {
      transform: translateX(0);
  }
}

.review-wrapper .review-wrapper-track {
  -webkit-animation: testimonialScroll 150s linear infinite;
  animation: testimonialScroll 150s linear infinite;
  display: flex;
  width: calc(5px * 37 * 13 * 2);
}
.review-wrapper .review-wrapper-track-reverse {
  -webkit-animation: testimonialScrollReverse 150s linear infinite;
  animation: testimonialScrollReverse 150s linear infinite;
  display: flex;
  width: calc(5px * 37 * 13 * 2);
}

/* Testimonial card styling */

.review-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 12px;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 24px;
    z-index: 9;
    max-width: 374px;
    width: 100%;
    min-width: 374px;
    overflow: hidden;
    margin-bottom: 2px;
    max-height: 200px;
}

.review-block:hover{
  cursor: pointer;
  background: #3953A4;
  border-color: #3953A4;
}


.review-block-content {
    position: relative;
    gap: 0;
    height: 100%;
}
.review-block-quoteinfo {
  margin: 0 0 30px;
  padding: 0;
}
.review-block-quoteinfo p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #666666;
  letter-spacing: .1px;
  margin: 0;
    min-height: 70px;
}

.review-block-quote-author h4 {
  font-size: 16px;
  font-weight: 600;
  color: #3A3A3A;
  align-self: flex-end;
  margin: 0 0 5px;
  padding: 0;
}
.review-block-quote-author p{
  color: #666666;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.review-block:hover .review-block-quoteinfo p,
.review-block:hover .review-block-quote-author p,
.review-block:hover .review-block-quote-author h4{
 color: #fff;
}