/* News Section  */
.news-ticker-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: 10vh;
    font-family: "Poppins", sans-serif;
    background-color: #eef1f7;
  }
  .news-ticker{
    width: 90%;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    padding-right: 4px;
  }
  .news-ticker-header{
    /* background: #efefef; */
    /* background: linear-gradient(to right, #f50505, #cac830); */
    background-color: #a71a10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    width: 240px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
  }
  .news-ticker-header a{
    color: #e3eaf5;
    font-size: 20px;
    text-decoration: none;
  }
  .news-ticker-content{
    overflow: hidden;
  }
  .news-ticker-content ul{
    display: flex;
    white-space: nowrap;
    list-style: none;
    animation: ticker 40s linear infinite;
  }
  
  .news-ticker-content ul li::after{
    content: ' | ';
    margin: 0 10px;
  
  }
  .news-ticker-content ul li:first-child::after{
    content: '';
  }
  .news-ticker-content ul li:last-child::after{
    content: '';
  }
  .news-ticker-content ul li a{
    text-decoration: none;
    color: #000;
  }
  
  /* Ticker animation */
  
/* Keyframe animation for the ticker */
@keyframes ticker {
  from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-300%); /* Move to the left enough to show all items */
  }
}