.carousel-container {
    position: relative;
    width: 500px;
    height: 243px;
  }
  
  .carousel-container .arrow {
    z-index: 10;
      position: absolute;
      top: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 30px;
      background-color: rgba(0, 0, 0, .4);
      border-radius: 50%;
      color: #fff;
      cursor: pointer;
      transform: translateY(-50%);
  }
  
  .carousel-container .arrow::after {
      display: block;
      font-family: Courier, monospace;
  }
  
  .carousel-container .arrow.arrow-left {
      left: 10px;
  }
  .carousel-container .arrow.arrow-left::after {
      content: "<";
  }
  
  .carousel-container .arrow.arrow-right {
      right: 10px;
  }
  
  .carousel-container .arrow.arrow-right::after {
      content: ">";
  }
  
  .carousel-container .carousel-items {
      padding: 0;
      margin: 0 auto;
      list-style: none;
      width: 300px;
      height: 100%;
      transform: scale(.7);
  }
  
  .carousel-container .carousel-items li {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #efefef;
      transition: transform .5s;
    }
    
    .carousel-container .carousel-items li p {
        display: none;
    }
    
    .carousel-container .carousel-items li img {
        height: 100%;
        border: 10px solid transparent;
        border-image: url('/public/static/images/lawyer/b.jpg') 40 round;
        box-shadow: 0 2px 5px rgba(139, 69, 19, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
  }