.cards-wrapper {
    display: flex;
    justify-content: center;
  }
  .cards-wrapper .card img {
    max-width: 100%;
    max-height: 100%;
  }
  .cards-wrapper .card {
    margin: 0 2em;
    border: none;
    border-radius: 0;
    width: 345px;
    background: #f8f8f8;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
      rgba(17, 17, 26, 0.1) 0px 0px 8px;
  }
  .cards-wrapper .carousel-inner {
    padding: 1em;
  }
  
  .cards-wrapper .card .card-body {
    min-height: 210px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 52px;
    height: 52px;
    opacity: 1;
    border: 2px solid rgba(17, 219, 163, 0.3);
    border-radius: 100px;
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    border-color: #696e77;
    transition: all 0.2s;
  }
  
  .carousel-control-prev,
  .carousel-control-next i {
    color: #222;
    font-size: 25px;
    font-weight: bold;
  }
  
  .carousel-control-prev:hover i,
  .carousel-control-next:hover i {
    color: #00a7b5;
  }
  
  .carousel-control-next:focus,
  .carousel-control-next:hover,
  .carousel-control-prev:focus,
  .carousel-control-prev:hover {
    color: #222;
  }
  
  .carousel {
    display: flex;
  }
  
  .carousel-inner {
    padding: 0 0 20px 0;
  }
  
  .carousel-arrows {
    position: relative;
    display: flex;
    width: 20%;
  }
  
  .carousel-control-next {
    left: 195px;
  }
  
  .carousel-control-prev {
    left: 114px;
  }
  
  /* @media (min-width: 768px) {
    .card img {
      height: 11em;
    }
  } */
  
  @media (max-width: 768px) {
    .carousel-arrows {
      width: auto;
      top: -56px;
    }
  }