.slide-wrapper {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  height: 460px;
  position: relative;
  overflow: hidden;
}

.slide {
  position: relative;
  width: 100%;
  height: 460px;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide-item.active {
  opacity: 1;
  z-index: 1;
}

.slide-item picture,
.slide-item img {
  width: 100%;
  height: 100%;
  display: block;
}

.slide-item img {
  object-fit: cover;
}

.slide-text {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  z-index: 2;
  max-width: 90%;
}

.prev,
.next {
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
}

.next {
  right: 10px;
  transform: rotate(45deg) translateY(50%);
}

.prev {
  left: 25px;
  transform: rotate(-135deg) translateY(-50%);
}

.indicator {
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: flex;
  column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.indicator li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px #000 solid;
  cursor: pointer;
}

.indicator li.active {
  background-color: #000;
}