.slideshow-container {
  width: 95%;
  /* max-width: 1000px; */
  height: 35vw;
  max-height: 330px;
  min-height: 200px;
  position: relative;
  margin: auto;
  transition: height 0.5s ease;
}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
  /* background-color: blue; */
}

.mySlides img {
  border-radius: 6px;
  width: 100% !important;
  height: 100%;
  /* object-fit: cover; */
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

#dots-bar {
  text-align: left;
  padding-left: 10px;
  position: absolute;
  bottom: 0px;
  height: 27px;
  /* background-color: red; */
}

.dot {
  height: clamp(0.65rem, 1.3vw, 1.2rem);
  width: clamp(0.65rem, 1.3vw, 1.2rem);
  margin: 0 2px;
  background-color: #eee;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #ff9021;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}
