.elementor-kit-13{--e-global-color-primary:#9C1D26;--e-global-color-secondary:#4C4C4C;--e-global-color-text:#000000;--e-global-color-accent:#FFFFFF;--e-global-typography-primary-font-family:"Anton";--e-global-typography-primary-font-size:30px;--e-global-typography-primary-font-weight:500;--e-global-typography-primary-text-transform:uppercase;--e-global-typography-primary-letter-spacing:2px;--e-global-typography-secondary-font-family:"Montserrat";--e-global-typography-secondary-font-size:20px;--e-global-typography-secondary-font-weight:700;--e-global-typography-secondary-text-transform:uppercase;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:2rem;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-size:14px;--e-global-typography-accent-font-weight:500;color:var( --e-global-color-text );font-family:"Roboto", Sans-serif;font-size:18px;font-weight:400;}.elementor-kit-13 button,.elementor-kit-13 input[type="button"],.elementor-kit-13 input[type="submit"],.elementor-kit-13 .elementor-button{background-color:transparent;font-family:"Oswald", Sans-serif;font-size:18px;font-weight:500;text-transform:uppercase;color:var( --e-global-color-accent );background-image:linear-gradient(180deg, var( --e-global-color-primary ) 0%, var( --e-global-color-primary ) 100%);}.elementor-kit-13 button:hover,.elementor-kit-13 button:focus,.elementor-kit-13 input[type="button"]:hover,.elementor-kit-13 input[type="button"]:focus,.elementor-kit-13 input[type="submit"]:hover,.elementor-kit-13 input[type="submit"]:focus,.elementor-kit-13 .elementor-button:hover,.elementor-kit-13 .elementor-button:focus{background-color:transparent;color:var( --e-global-color-accent );background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-secondary ) 100%);}.elementor-kit-13 e-page-transition{background-color:#FFBC7D;}.elementor-kit-13 a{color:var( --e-global-color-primary );}.elementor-kit-13 a:hover{color:#9F3F3F;text-decoration:underline;}.elementor-kit-13 h1{color:var( --e-global-color-primary );font-size:40px;letter-spacing:-0.5px;}.elementor-kit-13 h2{color:var( --e-global-color-accent );font-size:50px;letter-spacing:5px;}.elementor-kit-13 h3{color:var( --e-global-color-text );font-size:24px;letter-spacing:5px;}.elementor-kit-13 h4{color:var( --e-global-color-text );font-size:21px;}.elementor-kit-13 h5{color:var( --e-global-color-text );font-size:20px;}.elementor-kit-13 h6{color:var( --e-global-color-secondary );font-size:18px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* Main heading */
.rotating-headline {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* IGNITE stays white */
.ignite-word {
  color: #ffffff;
}

/* FIXED-WIDTH rotating container (no auto width) */
.rotate-words {
  display: inline-block;
  position: relative;
  width: 700px;      /* ← fixed width restored */
  height: 1.2em;
  overflow: hidden;
  white-space: nowrap;
}

/* Rotating words */
.rotate-words span {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;

  color: #9C1D26;
  -webkit-text-fill-color: #9C1D26;

  text-shadow:
    2px 0 #ffffff,
    -2px 0 #ffffff,
    0 2px #ffffff,
    0 -2px #ffffff,
    2px 2px #ffffff,
    -2px 2px #ffffff,
    2px -2px #ffffff,
    -2px -2px #ffffff;

  animation: rotateWords 15s linear infinite;
  white-space: nowrap;
}

/* Animation delays */
.rotate-words span:nth-child(1) { animation-delay: 0s; }
.rotate-words span:nth-child(2) { animation-delay: 3s; }
.rotate-words span:nth-child(3) { animation-delay: 6s; }
.rotate-words span:nth-child(4) { animation-delay: 9s; }
.rotate-words span:nth-child(5) { animation-delay: 12s; }

/* Smooth simultaneous slide animation */
@keyframes rotateWords {
  0%   { opacity: 0; transform: translateY(100%); }
  5%   { opacity: 1; transform: translateY(0); }

  20%  { opacity: 1; transform: translateY(0); }

  25%  { opacity: 0; transform: translateY(-100%); }

  100% { opacity: 0; transform: translateY(-100%); }
}/* End custom CSS */