/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 31 2025 | 20:22:02 */
.ticker-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.ticker-text {
  display: inline-block;
  padding-left: 0%;
  /* Por defecto no tiene animación */
}

#content {
	margin-top:188px
}

/* Solo se activa la animación en pantallas de 768px o menos */
@media screen and (max-width: 768px) {
  .ticker-text {
    animation: scroll-text 15s linear infinite;
	padding-left: 100%;
  }

  @keyframes scroll-text {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}


@media screen and (max-width: 467px) {
	#content {
		margin-top:95px
	}
	
	#seccion2 {
		top: 45px;
	}
}