.testimonals-card-wrapper {
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  scrollbar-width: none;
  height: 100%;
  scroll-behavior: smooth;
}
.testimonals-card {
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  background-color: #1b1c1e;
}
.testimonals-card .head {
  display: flex;
  grid-gap: 12px;
  margin-bottom: 16px;
}
.testimonals-card .profile h3 {
  font-weight: 600;
  font-size: 20px;
}
.testimonals-card .profile p {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}
.testimonals-card .review {
  flex-grow: 1;
  margin-bottom: 16px;
}
.testimonals-card .head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonals-card .ratings i {
  color: var(--yellow);
}
.indicator {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  right: 28px;
  justify-content: center;
}
.indicator a {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7a00;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.indicator a:hover {
  opacity: 1;
}
.indicator a.active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px royalblue;
  opacity: 1;
}

@media (max-width: 480px) {
  .testimonals-card-wrapper {
    margin-top: 25px;
  }
}
