.slider {
  position: relative;
  width: 100%;
  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 {
    height: 5px;
    background: #000000;
    width: 20px;
    display: inline-block;
    margin: 5px;
    transition: .2s;
    border-radius: 2px;
    cursor: pointer;
}

.dot.active {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .slider {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .slider {
    max-height: 200px;
  }
}
