.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.gallery-image.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

h1 {
  font-size: 3em;
  margin: 0;
}

h2 {
  font-size: 1.5em;
  margin: 0;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.padres_class {
  z-index: 2;
}

#playButton {
  /*margin-bottom: 20px;*/
  padding: 0px;
  font-size: 16px;
  cursor: pointer;
}

#progressContainer {
  width: 80%;
  height: 10px;
  background-color: #ccc;
  border-radius: 5px;
  overflow: hidden;
  /*margin-top: 20px;*/
}

#progressBar {
  height: 100%;
  width: 0;
  background-color: #007bff;
}

