.gallery {
  margin: 20px;
  overflow: hidden;
}

.gallery-cell {
  width: auto;
  height: 250px;
  margin-right: 25px;
  margin-top: 5px;
  /* background: #8C8; */
}

@media screen and (max-width: 768px) {
  .gallery {
      margin: 0px !important;
      margin-top: 20px !important;
  }

  /* Reviews mooi tonen op gsm schermen (portret modus, staat nu overal gelijk.) */
  .single-testimonial-box{
    width: 95vw !important;
    margin: 20px !important;
  }
}

/* cell number */
.gallery-cell:before {
  display: block;
  text-align: center;
  /* content: counter(gallery-cell); --> aangezien ik de reviews in de gallery-cell wil plaatsen, is dit overbodig */ 
  line-height: 200px;
  font-size: 80px;
  color: white;
}

.single-testimonial-box {
  height: 200px !important; /* Alle review cards dezelfde hoogte geven */
  overflow-y: hidden !important; /* Scrollbar aan rechterkant van box in mobile view doen verdwijnen */
}