.wrap {
    max-width: 100%;
    margin: auto;
    padding: 96px 0px 53px 0px;
  }
  .items-wrap {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 20px;
    padding-bottom: 148px;
  }
  .items-wrap:before,
  .items-wrap:after {
    /* content: ""; */
    height: 100%;
    top: 0;
    width: 10%;
    position: absolute;
    z-index: 1;
    pointer-events: none;
  }
  .items-wrap:before {
    left: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .items-wrap:after {
    right: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 100%
    );
  }
  .items {
    flex-shrink: 0;
    display: flex;
    gap: 60px;
    counter-reset: item;
    justify-content: space-around;
    min-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
  .item {
    
    flex: 0 0 auto;
    max-width: 416px;
    max-height: 200px;
    width: auto;
    height: auto;
    counter-increment: item;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    margin: 10px 0;
    transition: all 0.1s ease-in-out;
  }
  
  
 
  
  .marquee {
    animation: scroll 20s linear infinite;
  }
  .reverce {
    animation-direction: reverse;
  }
 
 
  
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - 20px));
    }
  }
  @media (max-width: 576px) {
    .item{
      max-width: 144px;
    max-height: 69px;
    
    }
    .items{
      gap: 40px;
      margin-left: 20px;
    margin-right: 20px;
    }
    .items-wrap{
      padding-bottom: 50px;
    }
  }
  
  
  
  
  
 
  






 