.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100.1%; /* <--- TRY THIS */
  height: auto;
  /*flex-shrink: 0; */
  object-fit: contain;
}

.navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.navigation button {
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
}

@media (max-width: 768px) {
  .navigation button {
    font-size: 18px;
    padding: 8px;
  }
}
