.slide-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slide-image {
  width: 1176px; /* Increased width by 70% */
  height: 91px; /* Increased height by 70% */
  transition: transform 0.3s ease-in-out;
}

.slide-image:hover {
  transform: scale(1.1);
}

.repeat-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.repeat-image {
  width: 1080px;
  height: 70px;
  transition: transform 0.3s ease-in-out;
}

.repeat-image:hover {
  transform: scale(1.1);
}

.slide-image,
.repeat-image {
  max-width: 100%;
  height: auto;
}
