.horizontal-scrolling-items {
  display: flex;
  height: 288px; 
  gap: 100px;
}
.horizontal-scroll-item {
	height: 100%;
	width: 464px;
	background-size: cover;
	animation-duration: 30s;	
	animation-name: HorizontalScroll;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes infiniteScroll {
	from {transform: translateX(0) }
	to {transform: translateX(calc(0px - 50% - 50px));}
}

.item-1 {
  background-image: url("imges/Logos/isac-100pxlogo.webp");
}

.item-2 {
  background-image: url("imges/Logos/isac-100pxlogo.webp");
}

.item-3 {
  background-image: url("imges/Logos/isac-100pxlogo.webp");
}

.item-4 {
  background-image: url("imges/Logos/isac-100pxlogo.webp");
}

.item-5 {
  background-image: url("imges/Logos/isac-100pxlogo.webp");
}