.cunset {
    cursor:unset;
    pointer-events: none;

}
.newsAnnouncementHeading h3 {
    font-size: 1.35rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
    padding-top: 6px;
    letter-spacing: 1px;
}
.animated-text {
    opacity: 0; /* Start invisible */
    transform: translateY(20px); /* Start slightly below its final position */
    animation: fadeAndSlideIn 2s ease-out forwards; /* Apply the animation */
}

@keyframes fadeAndSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typing-o {
  from { width: 0 }
  to { width: 100% }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

.typed-out {
  overflow: hidden;
  border-right: .15em solid transparent;
  white-space: nowrap;
  animation-iteration-count: infinite;
  animation: typing 5s steps(30, end) infinite;
  /* animation: 
    typing 5s forwards;
    width: 0; */
}


@keyframes typing {
  0% { width: 0 }
  40% { width: 100% }   /* Typing */
  50% { width: 100% }   /* Hold full text before shake */
  100% { width: 0 }     /* Erase text */
}


.typed-out1 {
  overflow: hidden;
  white-space: nowrap;
  border-right: 0.15em solid transparent;
  display: inline-block;
  width: 0;
  /* font-size: 24px; */
  animation: typing 6s steps(30, end) infinite;
}

/* Apply shake only during typing pause */
@keyframes typeAndShake {
  0% { width: 0; transform: translateX(0); }
  40% { width: 100%; transform: translateX(0); }  /* Typing */
  45%, 55% { transform: translateX(-5px); }       /* Shake left */
  50% { transform: translateX(5px); }             /* Shake right */
  60% { width: 100%; transform: translateX(0); }  /* Hold */
  100% { width: 0; transform: translateX(0); }    /* Erase */
}

.typed-out {
  animation: typeAndShake 6s steps(30, end) infinite alternate;
}

.marquee {
  /* width: 300px; 
  overflow: hidden;
   white-space: nowrap;
   color: white;
   padding-top: 6px;*/

   color:#fff;
   padding-top:6px;
   font-size:16px;
   font-weight:500;
   overflow: hidden;
   white-space: nowrap;
  /*box-sizing: border-box;
  border: 1px solid #ccc; */
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 10s linear infinite;
}
.marquee span a {
    color: #fcbf09;
}

.marquee:hover span {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.p20 {
    padding-top: 20px;
}
.footerLogo a {
    margin-top: auto;
}
.footerArticale {
    padding: 40px 0 10px;
}
.footerBottom {
    padding: 45px 0 40px;
}
@media (max-width:339px) {
    .newsAnnouncementHeading h3 {
        font-size: 16px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 0;
        padding-top: 6px;
        letter-spacing: normal;
    }
}