.slider {
  position: relative;
  width: 100%;
  /*max-height: 650px;*/
  margin-top: -27px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  transition: opacity 0.5s ease;
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  margin-top: 25px;
  height: auto;
  display: block;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .slider {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .slider {
    max-height: 200px;
  }
}
