.wrapper{
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.wrapper::-webkit-scrollbar{
  display: none;
}

.imageContainer{
  display: flex;
  flex-direction: row;
  gap: 25px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

.imageContainer .image {
  height: 275px;
  width: 200%;
  background-image: url('../images/IMG_1623.jpg');
  background-size: cover;
  background-position: center center;
  animation-duration: 15s;
  animation-name: Marquee;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes HorizontalScroll {
  from {transform: translateX(0)}
  to {transform: translateX(calc(0px - 100% - 100px));}
}

@keyframes Marquee {
  0% {transform: translateX(0);}
  100% {transform: translateX(-100%);}
}

.image:nth-child(2){
  background-image: url('../images/IMG_1620.jpg');
}

.image:nth-child(3){
  background-image: url('../images/IMG_1623.jpg');
}

.image:nth-child(4){
  background-image: url('../images/IMG_1620.jpg');
}

.image:nth-child(5){
  background-image: url('../images/IMG_1623.jpg');
}

.image:nth-child(6){
  background-image: url('../images/IMG_1620.jpg');
}
