* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {

}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.text-overlay {
  position: absolute;
  top: 30%;
  left: 15%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: white;
    font-size: 130px;
	line-height: 140px;
  font-weight: 600;
  width: 100%;
  max-width: 2300px;

  display: flex;
  justify-content: center;
  align-items: center;
}


@media only screen and (min-width: 1200px) and (max-width: 1399px) {
.text-overlay {
    font-size: 80px;
	line-height: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.text-overlay {
    font-size: 70px;
	line-height: 80px;
		  left: 20%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.text-overlay {
    font-size: 60px;
	line-height: 70px;
	  left: 30%;
  }
}
@media only screen and (max-width: 767px) {
.text-overlay {
    font-size: 36px;
	line-height: 46px;
	  top: 20%;
  left: 42%;
  font-weight: 700;	


  }
}




.fade-text {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
  visibility: hidden;
}

.fade-text.active {
  opacity: 1;
  visibility: visible;
}

/* Estilo para el indicador de desplazamiento */
.scroll-indicator {
  position: absolute;
  bottom: 20px; /* Distancia desde la parte inferior */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator img {
  width: 40px;  /* Ajusta el tamaño de la flecha según tu preferencia */
  height: auto;
}