.elementor-130 .elementor-element.elementor-element-febd2db{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-130 .elementor-element.elementor-element-291c368{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-130 .elementor-element.elementor-element-afe9ce2.elementor-element{--align-self:center;}.elementor-130 .elementor-element.elementor-element-efc768a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-130 .elementor-element.elementor-element-a3140a5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-130 .elementor-element.elementor-element-cde9047.elementor-element{--align-self:center;}.elementor-130 .elementor-element.elementor-element-574a4b0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-130 .elementor-element.elementor-element-891ddc9.elementor-element{--align-self:center;}.elementor-130 .elementor-element.elementor-element-5b71c30{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-130 .elementor-element.elementor-element-dfcb7e3.elementor-element{--align-self:center;}.elementor-130 .elementor-element.elementor-element-4996326{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-130 .elementor-element.elementor-element-41e6fb8.elementor-element{--align-self:center;}.elementor-130 .elementor-element.elementor-element-b3bf0dc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-afe9ce2 */#myDIV {
  border: 1px solid black;
  width: 100%;
  height: 30px;
  animation: mymove 5s infinite;
  color: red; /* Default text color */
  text-align: center; /* Center the text */
}

@keyframes mymove {
  50% {
    font-size: 10px;
    color: green; /* Change text color to green at 50% of the animation */
  }
}

@media only screen and (max-width: 600px) {
  #myDIV {
    font-size: 7px; /* Adjust font size for mobile devices */
    height: 20px; /* Reduce height for better mobile view */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fb87a47 */.title-word {
  animation: color-animation 4s linear infinite;
}

.title-word-1 {
  --color-1: orange;
  --color-2: grey;
  --color-3: green;
}

.title-word-2 {
  --color-1: orange;
  --color-2: grey;
  --color-3: green;
}

.title-word-3 {
   --color-1: orange;
  --color-2: grey;
  --color-3: green;
}
.title-word-4 {
   --color-1: orange;
  --color-2: grey;
  --color-3: green;
}

@keyframes color-animation {
  0%    {color: var(--color-1)}
  32%   {color: var(--color-1)}
  33%   {color: var(--color-2)}
  65%   {color: var(--color-2)}
  66%   {color: var(--color-3)}
  99%   {color: var(--color-3)}
  100%  {color: var(--color-1)}
}

/* Here are just some visual styles. 🖌 */

.container {
  display: grid;
  place-items: center;  
  text-align: center;
  height: 50vh
}

.title {
  font-family: "Montserrat", sans-serif;
  font-weight: 100px;
  font-size: 15px;
  text-transform: capitalize;
}/* End custom CSS */