.reviews {
  width:100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin:0 auto 50px;
}
.reviews article.review {
   width:100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding:3em 2.5em;
background: #f5f5f5;
background: linear-gradient(140deg, rgba(245, 245, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
  margin: 0 0 20px 0;
  border-radius: 5px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}
.reviews article.review h2 {
   font-size: 12px;
  font-weight: 400;
  color:var(--color-1st);
  text-align: right;
  margin-bottom: 0em;
  order:2;
}
.reviews article.review p {
  font-size: 14px;
  font-weight: 400;
  flex-grow: 1;
  line-height: 2em;
  margin-bottom: 0.8em;
  order:1;
}
