.slideshowContainer {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.imageSlides {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}
.className {
  max-width: 100%;
  max-height: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  overflow: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.imageSlides > video {
  width: 100%;
  height: 100%;
}
.visible {
  opacity: 1;
}
.slideshowArrow {
  font-size: 7em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
.slideshowArrow:hover {
  opacity: 0.75;
}
#leftArrow {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#rightArrow {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translate(50%, -50%);
}
.slideshowCircles {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.circle {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: 20s ease-in-out;
}
.dot {
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px rgba(255, 255, 255, 0.5);
}
@media (max-width: 289px) and (min-width: 100px){
  .slideshowContainer {
    height: 120px;
  }
}
@media (max-width: 339px) and (min-width: 290px){
  .slideshowContainer {
    height: 120px;
  }
}
@media (max-width: 379px) and (min-width: 340px){
  .slideshowContainer {
    height: 130px;
  }
}
@media (max-width: 439px) and (min-width: 380px){
  .slideshowContainer {
    height: 150px;
  }
}
@media (max-width: 519px) and (min-width: 440px){
  .slideshowContainer {
    height: 180px;
  }
}
@media (max-width: 599px) and (min-width:520px){
  .slideshowContainer {
    height: 210px;
  }
}
@media (max-width: 669px) and (min-width:600px){
  .slideshowContainer {
    height: 230px;
  }
}
@media (max-width: 767px) and (min-width: 670px){
  .slideshowContainer {
    height: 260px;
  }
}
@media (max-width: 869px) and (min-width: 768px){
  .slideshowContainer {
    height: 300px;
  }
}
@media (max-width: 991px) and (min-width: 870px){
  .slideshowContainer {
    height: 360px;
  }
}
@media (max-width: 1199px) and (min-width: 992px){
  .slideshowContainer {
    height: 410px;
  }
}
@media (max-width: 1499px) and (min-width: 1200px){
  .slideshowContainer {
    height: 500px;
  }
}
@media (max-width: 1699px) and (min-width: 1500px){
  .slideshowContainer {
    height: 550px;
  }
}
@media (max-width: 1919px) and (min-width: 1700px){
  .slideshowContainer {
    height: 650px;
  }
}
@media (min-width: 1920px){
  .slideshowContainer {
    height: 720px;
  }
}