.imagecarousel-container {
    overflow: hidden;
    display: flex;
}

.imagecarousel {
    position: relative;
    height: 233px;
    margin-bottom: 30px;
    display: flex;
    width: fit-content;
    gap: 20px;
  }
  
  .imagecarousel img {
    margin: 0px 0px;
    box-shadow: 2px 2px 8px #8a8a8a;
  }

  .imagecarousel-20 {
    animation: bannermove 30s linear infinite;
  }

  .imagecarousel-40 {
    animation: bannermove 50s linear infinite;
  }

  .imagecarousel-80 {
    animation: bannermove 100s linear infinite;
  }
  
  @keyframes bannermove {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-25%);
    }
  }