/* MHF Slider */

.mhf-slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
}

/* Slides */
.mhf-mySlides {
  display: none;
}

.mhf-mySlides img {
  width: 100%;
  display: block;
}

/* Navigation buttons */
.mhf-prev,
.mhf-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 16px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
  user-select: none;
  background: rgba(0,0,0,0.4);
  border-radius: 4px;
}

.mhf-prev {
  left: 10px;
}

.mhf-next {
  right: 10px;
}

.mhf-prev:hover,
.mhf-next:hover {
  background: rgba(0,0,0,0.8);
}

/* Dots */
.mhf-dots-container {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.mhf-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.mhf-dot:hover,
.mhf-active {
  background-color: #fff;
}

/* Fade animation */
.mhf-fade {
  animation: mhfFade 1s ease-in-out;
}

@keyframes mhfFade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .mhf-prev,
  .mhf-next {
    font-size: 16px;
    padding: 10px;
  }
}