/*==========================
     Latest Updates
===========================*/

.latest-updates{

    width:100%;
    height:55px;

    display:flex;
    align-items:center;

    background:#f05a22;

    overflow:hidden;

    margin-top:140px;

}

.update-title{

    width:220px;
    height:100%;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    color:#fff;

    font-weight:600;

    background:#e74c13;

}

.update-title .date{

    font-size:20px;

}

.badge{

    background:#2454ff;

    color:#fff;

    padding:5px 10px;

    border-radius:5px;

    font-size:12px;

}

.update-marquee{

    flex:1;

    overflow:hidden;

}

.update-track{

    display:flex;

    align-items:center;

    white-space:nowrap;

    animation:scrollNews 35s linear infinite;

}

.update-track:hover{

    animation-play-state:paused;

}

.update-track a{

    color:#fff;

    text-decoration:none;

    font-size:18px;

    margin:0 25px;

}

.update-track span{

    color:#ffd8c7;

    font-size:22px;

}

@keyframes scrollNews{

0%{

transform:translateX(100%);

}

100%{

transform:translateX(-100%);

}

}