/* Basic styling for the swiper slide to act as a container */

.swiper-slide {
  position: relative;
  overflow: hidden;
}

/* Styling for the description text */

.swiper-description {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  /*background-color: rgba(0, 0, 0, 0.6);*/
  padding: 10px;
  box-sizing: border-box;
}

/* Style for descriptions appearing at the bottom */

.swiper-description.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Style for descriptions that overlay the image */

.swiper-description.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  border-radius: 8px;
}

