.reviewslideshow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    height: 400px;
    background-color: #b4b4b4;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .arrow-left {
    align-self: center;
    height:0;
    width: 2em;
    padding:0;
    margin: 0.5em;
    border-top: 3em solid transparent;
    border-right: 3em solid #3A003A;
    border-bottom: 3em solid transparent;
    cursor: pointer;
  }
  
  .arrow-right {
    align-self: center;
    height:0;
    width: 2em;
    padding:0;
    margin: 0.5em;
    border-top: 3em solid transparent;
    border-left: 3em solid #3A003A;
    border-bottom: 3em solid transparent;
    cursor: pointer;
  }
  
  .faded-left {
    border-right: 3em solid #FFCFFF;
  }
  
  .faded-right {
    border-left: 3em solid #FFCFFF;
  }
  
  @keyframes appear {
    0% {
      opacity: 0.01;
    }
    100% {
      opacity: 1;
    }
  }
  
  .image {
    width: 16em;
    height: 24em;
    /* object-fit: cover; */
    margin: auto 0.1em;
    border-radius: 5px;
    animation: appear 1.5s ease-in;
  }
  
  @media screen and (max-width: 1200px) {
    .reviewslideshow {
      padding-right: 0;
      padding-left: 0;
    }
    .arrow-left {
      border-top: 1.5em solid transparent;
      border-right: 1.5em solid #3A003A;
      border-bottom: 1.5em solid transparent;
    }
    .arrow-right {
      border-top: 1.5em solid transparent;
      border-left: 1.5em solid #3A003A;
      border-bottom: 1.5em solid transparent;
    }
    .image {
      width: 8em;
      height: 12em;
    }
  }
  
  @media screen and (max-width: 630px) {
    .image {
      width: 8em;
      height: 12em;
    }
  }