.prodnet-animated {
  position: relative;
  display: inline-block;
  font-weight: 800;
  font-size: 1.5rem;
  color: #1d4ed8;
  overflow: hidden;
}

.prodnet-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
  animation: lightSweep 2s cubic-bezier(0.77, 0, 0.175, 1) 1.5s forwards;
}

@keyframes lightSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

.prodnet-animated span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: slideUp 0.7s ease forwards;
}

@keyframes slideUp {
  to { transform: translateY(0); opacity: 1; }
}


#subhead{
  color: #88e65c;
}