.as-testimonial-slide {
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Background color pattern */
.as-testimonial-slide:nth-child(4n+1) {
  background-color: #224432;
}

.as-testimonial-slide:nth-child(4n+2) {
  background-color: white;
}

.as-testimonial-slide:nth-child(4n+3) {
  background-color: #a38443;
}

.as-testimonial-slide:nth-child(4n+4) {
  background-color: white;
}

/* Text and star colors for colored backgrounds */
.as-testimonial-slide:nth-child(4n+1) .as-testimonial-stars,
.as-testimonial-slide:nth-child(4n+3) .as-testimonial-stars {
  color: white;
}

.as-testimonial-slide:nth-child(4n+1) .as-testimonial-text,
.as-testimonial-slide:nth-child(4n+1) .as-testimonial-name,
.as-testimonial-slide:nth-child(4n+3) .as-testimonial-text,
.as-testimonial-slide:nth-child(4n+3) .as-testimonial-name {
  color: white;
}

/* Star colors for white backgrounds */
.as-testimonial-slide:nth-child(4n+2) .as-testimonial-stars,
.as-testimonial-slide:nth-child(4n+4) .as-testimonial-stars {
  color: #224432;
}

.as-testimonial-text {
  font-style: italic;
  line-height: 1.6;
}

.as-testimonial-name {
  text-align: right;
}

.as-testimonial-stars i {
  margin: 0 2px;
}

/* Add bottom padding on larger screens where multiple slides are shown */
@media (min-width: 768px) {

  .as-testimonials-slider-container .slick-track {
    padding-bottom: 20px;
  }

  .as-testimonial-slide:nth-child(4n+1) {
    position: relative;
    top: 20px;
  }

  .as-testimonial-slide:nth-child(4n+3) {
    position: relative;
    top: 20px;
  }

}

/* Slider arrow styles */
.slider-arrow {
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.slider-arrow i {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.slider-arrow:hover {
  color: white;
}