.container {
  margin-bottom: 50px;
}
.slider-wrapper {
  position: relative;
  max-width: 800px;
  max-height: 495px;
  margin: 0 auto;
}

.slider {
  display: flex;
  aspect-ratio: 800/495;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slider img {
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
}

.slider-nav {
  display: flex;
  column-gap: 1rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.slider-nav a {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: white;
  opacity: 0.5;
  transition: opacity ease 100ms;
}

.slider-nav a:hover {
  opacity: 1;
}
