.slideshow-section{
    background-color: #F5F5F5;
    padding-top: 90px;
    padding-bottom: 90px;
    text-align: center;
}
.slideshow-section h2{
    color: var(--dark-blue);
    font-size: var(--main-title-size);
    max-width: var(--page-width);
    margin: 0 auto;
    font-weight: bold;
}
.card {
      height: 200px;
      margin: 10px;
      display: flex;
      flex-direction: column;
      text-align: center;
      justify-content: center;
      align-items: flex-start;
      flex: 200px 0 0;
  }
  .card img {
      margin: 0 auto;
      height: 50px;
  }
  .cards-wrapper {
    display: flex; 
    transition: ease 0.5s;
  }
  .display-area {
    width: 880px;
    overflow-x: hidden;
    margin: auto;
  }
  
  .dots-wrapper {
    display: flex;
    justify-content: center;
    margin: auto;
  }
  
  .dot {
    border: none;
    background: #999999;
    width: 13px;
    height: 13px;
    margin: 5px;
    border-radius: 50%;
    outline: none;
    animation: transform .2s;
  }
  .dot:hover {
    background: #3E4CACAA;
    transform: scale(1.2);
  }
  .dot.active {
    background: #3E4CAC;
  }