.ticker-wrap {
    width: 100%;
    height: 80px;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    /* position: fixed; */
    top: 0px;
    height: 35px;
    background-color: var(--brand-green); 
    z-index:100;
  }
  .ticker {
    display: inline-block;
    margin-top: 5px;
    animation: marquee 90s linear infinite;
  }
  .item-collection-1 {
    position: relative;
    left: 0%;
    animation: swap 90s linear infinite;
  }
  
  .item {
    display: inline-block;
    padding: 0;
    font-size: 1rem;
    color: black;   
    font-family: var(--brand-font-second);
  }
  
  /* Transition */
  @keyframes marquee {
    0% {
      transform: translateX(0)
    }
    100% {
      transform: translateX(-100%)
    }
  }
  
  @keyframes swap {
    0%, 50% {
      left: 0%;
    }
    50.01%,
    100% {
      left: 100%;
    }
  }