/**
 * Screen sizes
 */
/**
  * Colors
  */
:root {
  --primary-color: #478cee;
  --secondary-color: #4fca92;
  --heading-font: system-ui;
  --body-font: system-ui;
}

.reviews {
  background: #f5f5f5;
  padding: 2.5rem 0;
  display: flex;
  --gap: 2.5rem;
  position: relative;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}
.reviews-content {
  flex: 1;
  display: flex;
  animation: scroll 200s linear infinite alternate;
  gap: var(--gap);
}
.reviews-item {
  background: white;
  padding: 1rem;
  font-size: 13px;
  border-radius: 8px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
  flex: 0 0 320px;
}
.reviews-item-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.5rem;
}
.reviews-item-stars span {
  background: #4fca92;
  color: white;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.reviews-item cite {
  font-weight: bold;
  font-style: normal;
  opacity: 0.8;
}
.reviews-item cite span {
  font-weight: normal;
}
.reviews-item p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 14px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
