.fas
{
    margin-right:4px !important; /*override*/
}

.pagination .fas
{
    margin-right:0px !important; /*override*/
}

.pagination a
{
    color:#fff;
}

.card ul
{
    padding:0px;
    margin:0px;
    list-style:none;
}

.news-item
{
    /* padding:10px 5px; */
    padding-top:1px;
    padding-bottom:15px;
    padding-right:10px;
    text-align: justify;
    margin:0px;
    font-size:14px;
    font-weight: bold;
    border-bottom:1px dotted #555;
}

/* Following are Marquee Using CSS  */
.marqueem {
    inline-size: 100%;
    line-height: 15px; 
    margin-block-start: 10px; 
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.marqueem span:hover{
    animation-play-state: paused;
}
.marqueem span{
    display: inline-block;
    padding-inline-start: 100%; 
    animation: marquee 20s linear infinite;
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}
/* End of Marquee Using CSS  */
