.elementor-13625 .elementor-element.elementor-element-bfa728b{--display:flex;}.elementor-13625 .elementor-element.elementor-element-94fbe16{text-align:center;}/* Start custom CSS for heading, class: .elementor-element-94fbe16 */.highlighted-text {
      /*position: relative; */
      /*display: inline-block;*/ 
      /*font-size: 3rem;*/
      /*font-weight: bold;*/
      /*color: black;*/
    }

    .highlighted-text::before {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      color: #fff;
      background-color: #005A52;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
      clip-path: inset(0 100% 0 0); /* Start with highlight hidden */
      animation: highlightMove 3s ease-in-out infinite alternate;
    }

    @keyframes highlightMove {
      0% {
        clip-path: inset(0 10% 0 0); /* Highlight starts on left */
      }
      50% {
        clip-path: inset(0 60% 0 36%); /* Highlight moves to middle */
      }
      100% {
        clip-path: inset(0 0 0 100%); /* Highlight on right */
      }
    }/* End custom CSS */