.reviews {
  height: 200px;
  background-color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.review-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 10px;
  align-self: flex-start;
}

.review-box {
  width: 290px;
  height: 120px;
  background-color: gray;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 10px;
  text-align: center;
  border-top:#fff solid 1px;
}

#quote-text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-style: italic;
  color: white;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Active quote appears */
.quote-text.active {
  transform: translateX(0);
  opacity: 1;
}

/* Exiting quote moves right */
.quote-text.exit {
  transform: translateX(100%);
  opacity: 0;
}