/*
Theme Name: Diamante Designs
Theme URI: https://designsfunnel.com/
Author: Designs Funnel Team
Author URI: https://designsfunnel.com/
Description: Delivering a bespoke theme development tailored to precisely align with the unique requirements of our
esteemed client.
Version: 1.0
Template: hello-elementor 


This is the child theme for Hello Elementor theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

.custom-header{
    position: absolute !important;
    z-index: 999 !important;
    width: 100% !important;
}


.animated-header {
  --text-color: #ffffff; 
  --stroke-color: #453b13; 
  --animation-duration: 10s; /* Slowed down */
  position: relative;
  color: var(--stroke-color);
  -webkit-text-stroke: 1px var(--stroke-color);
  background: linear-gradient(
      90deg,
      var(--text-color) 50%,
      var(--stroke-color) 0
    )
    0 0 / 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-fill var(--animation-duration) linear infinite;
}

@keyframes text-fill {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: 0 0;
  }
}


