

.review-carousel {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  overflow: hidden;
}

.review-carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.review-carousel-item {
  min-width: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 100%;
}

.review-carousel-item img {
  background: #fff;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  height: 300px;
  border-radius: 100%;
  margin: 20px;
}

.review-item-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 40px;
  text-align: center;
  font-size: 1.6rem;
  background: #fff;
  color: #000;
  border-radius: 20px;
  position: relative;
}

.review-item-text:before {
  content: '';
  width: 0; 
  height: 0; 
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent; 
  border-right: 20px solid #fff; 
  left: -20px;
  top: calc(50% - 20px);
  position: absolute;
}

#review-carousel-prev,
#review-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 1.6rem;
  background: #af9d8750;
  color: #fff;
  transition: 0.5s;
  aspect-ratio: 1 / 1
}

#review-carousel-prev:hover,
#review-carousel-next:hover {
  background: #af9d87;
  color: #fff
}

#review-carousel-prev {
  left: 0px;
}

#review-carousel-next {
  right: 0px;
}

@media (max-width: 767px) {
  .review-carousel-item {
    flex-direction: column;
  }
  .review-item-text:before {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent; 
    border-right: 20px solid #fff; 
    left: 50%;
    top: -30px;
    transform: rotate(90deg);
  }
}