.scrolling-items-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow-x: scroll;
}

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

.scrolling-items-wrapper img {
  width: 100px;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .scrolling-items-wrapper img {
    width: 71px;
  }
}