.testimonials.slider {
  margin-top: 20px;
  .slides {
    background-color: transparent;

    li {
      // The slider is designed to work with full screen images. To work around this restriction,
      // We scale down the background image
      $testimonial_image_size: 160px;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: center;

      .FR {
        color: $zim_yellow;
      }

      .FP {
        color: $zim_green;
      }

      .IN {
        color: $zim_lime;
      }

      .CO {
        color: $zim_orange;
      }

      p {
        font-size: 35px;
        text-align: center;
        width: 100%;

        @media only screen and (max-width: $breakpoint_notebook) {
          font-size: 1rem;
        }

        @media only screen and (max-width: $breakpoint_medium) {
          font-size: 0.9rem;
          line-height: 1.36;
        }
      }

      .image-container {
        display: flex;
        flex-direction: column;
        align-items: center;

        img {
          width: $testimonial_image_size;
          height: $testimonial_image_size;
          -webkit-background-size: $testimonial_image_size;
          background-size: $testimonial_image_size;
          background-repeat: no-repeat;
          border-radius: 50%;
          margin-bottom: 20px;
        }

        strong {
          color: $text_primary;
          font-size: 29px;
          margin-bottom: 60px;

          @media only screen and (max-width: $breakpoint_notebook) {
            font-size: 1.4rem;
          }

          @media only screen and (max-width: $breakpoint_medium) {
            font-size: 1.1rem;
          }
        }
      }

      .testimonial-quote {
        // margin-top: 16px;
        // color: $zim_yellow;
      }
    }
  }

  // Make the indicators slightly smaller and change their color
  .indicators {
    padding-left: 0px !important;
    // margin: 8px;

    .indicator-item {
      background-color: rgba(0, 0, 0, 0.5);
      height: 12px;
      width: 12px;
      margin: 0 8px;

      &.active {
        background-color: $ensa_darkgrey;
      }
    }
  }
}
