.lawyer-carousel-container {
    position: relative;
    width: 1024px;
    height: 400px;
    overflow: hidden;
  }
  
  .lawyer-carousel-container .arrow {
      z-index: 99;
      position: absolute;
      top: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 100px;
      background-color: rgba(0, 0, 0, .2);
      border-radius: 10px;
      color: #fff;
      cursor: pointer;
      transform: translateY(-50%);
  }
  
  .lawyer-carousel-container .arrow::after {
      display: block;
      font-family: Courier, monospace;
  }
  
  .lawyer-carousel-container .arrow.arrow-left {
      left: 10px;
  }
  .lawyer-carousel-container .arrow.arrow-left::after {
      content: "<";
  }
  
  .lawyer-carousel-container .arrow.arrow-right {
      right: 10px;
  }
  
  .lawyer-carousel-container .arrow.arrow-right::after {
      content: ">";
  }
  
  .lawyer-carousel-container .carousel-items {
      padding: 0;
      margin: 0 auto;
      list-style: none;
      width: 300px;
      height: 100%;
      transform: scale(.7);
  }
  
  .lawyer-carousel-container .carousel-items li {
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      width: 100%;
      height: 100%;
      font-size: 10rem;
      background-color: #efefef;
      transition: transform .3s;
  }
  
  .lawyer-carousel-container .carousel-items li img {
    display: block;
      height: 100%;
  }

  .lawyer-carousel-container .carousel-items .lawyer-photo {
    width: 100%;
    height: 100%;
  }