.zrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;
    margin:auto;
  }
  .zrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
  }
  .zrapper i:active{
    transform: translateY(-50%) scale(0.85);
  }
  .zrapper i:first-child{
    left: -22px;
  }
  .zrapper i:last-child{
    right: -22px;
  }
  .zrapper .zarousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .zarousel::-webkit-scrollbar {
    display: none;
  }
  .zarousel.no-transition {
    scroll-behavior: auto;
  }
  .zarousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .zarousel.dragging .zard {
    cursor: grab;
    user-select: none;
  }
  .zarousel :where(.zard, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .zarousel .zard {
    scroll-snap-align: start;
    /* height: 342px; */
    list-style: none;
    /* background: #fff; */
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
  }
  .zarousel .zard .img {
     }
  .zard .img img {
    width: 140px;
    
    border: 4px solid #fff;
  }
  .zarousel .zard h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
  }
  .zarousel .zard span {
    color: #6A6D78;
    font-size: 1.31rem;
  }
  
  @media screen and (max-width: 900px) {
    .zrapper .zarousel {
      grid-auto-columns: calc((100% / 2) - 9px);
    }
  }
  
  @media screen and (max-width: 600px) {
    .zrapper .zarousel {
      grid-auto-columns: 100%;
    }
  }
  
  
  