/* styles.css */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.rev-slider {
  position: relative;
  height:auto;
  max-height: 700px;
  overflow: hidden;
}

.slider-container {
  display: flex;
  padding-top: 40px;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 700px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.lazy.loaded {
  opacity: 1;
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2em;
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.controls button {
  background-color: rgba(0, 0, 0, 0.0);
  border: none;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1.5em;
  border-radius: 50%;
}

.controls button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
