.elementor .section-shine{/* Creates the gold gradient and clips it to the text */
selector .text-shine {
  background: linear-gradient(to right, #C89A3D 20%, #E8C175 40%, #E8C175 60%, #C89A3D 80%);
  background-size: 200% auto;
  color: transparent;
  animation: shine 5s linear infinite;
}

/* Defines the sliding animation */
@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}\n}