.slideshowContainer {
  position: relative;
  overflow: hidden;
  margin: 50px 0 75px;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
}

.imageSlides {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}

/* add 'visible' class via Javascript */
.visible {
  opacity: 1;
}

.circle {
	position: absolute;
  top: 50%;
  width: clamp(48px, 6vw, 90px);
  height: clamp(48px, 6vw, 90px);
  background: black;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-50%);
}

#leftCircle {
  left: 4%;
  transform: translate(-50%, -50%);
}

#rightCircle {
	right: 4%;
  transform: translate(50%, -50%);
}

.slideshowArrow {
  font-size: clamp(32px, 4vw, 72px);
  color: darkgray;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.circle:hover,
.slideshowArrow:hover {
	opacity: 0.50;
}

.slideshowCircles {
  display: flex;
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 0.6vw;
  text-align: center;
}

.page-circle {
  display: inline-block;
  width: 2.2vw;
  height: 2.2vw;
  min-width: 10px;
  min-height: 10px;
  max-width: 28px;
  max-height: 28px;
  border-radius: 50%;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: 1s ease-in-out;
}

.dot {
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px rgba(255, 255, 255, 0.5);
}