.reviews {
    margin: 84px auto;
}
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4px;
width: 75%;
  margin: auto;
}
.review-card{
    width: 100%;
    border: 1px solid #ccc;
    padding: 33px;
    margin-top: 8px;
}

.review-card h5{
   color: #1e1e1e;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.625em;
}
.review-card h6{
    font-size: 16px;
    font-weight: 800;
}
.review-card p{
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin-top: 12px;
    font-weight: 300;
}
.review-text{
    height: 150px;
    overflow: auto;
    padding: 10px;
}
.stars{
    color: #FFD700;
    font-size: 27px;
}
 