.news-page-wrape{
    background: #f4f4f4;
}
.progress-title{
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin: 0 0 25px;
}
.fund-progress{
    height: 10px;
    background: #c0c0c0;
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: visible;
    position: relative;
}
.fund-progress .fund-progress-bar{
    box-shadow: none;
    border: none;
    border-radius: 15px;
    position: relative;
    -webkit-animation: animate-positive 1s;
    animation: animate-positive 1s;
}
.fund-progress .progress-value{
    width: 35px;
    height: 35px;
    line-height: 27px;
    border-radius: 50%;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    right: 0;
    z-index: 2;
}
.fund-progress.orange:before{ border: 7px solid #fe3b3b; }
.fund-progress.blue:before{ border: 7px solid #1a4966; }
.fund-progress.green:before{ border: 7px solid #53aa2c; }
.fund-progress.purple:before{ border: 7px solid #66406f; }
.fund-progress.orange .progress-value{
    color: #ffffff;
    background-color: #59bba4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fund-progress.blue .progress-value{
    border: 5px solid #1a4966;
    color: #1a4966;
}
.fund-progress.green .progress-value{
    border: 5px solid #53aa2c;
    color: #53aa2c;
}
.fund-progress.purple .progress-value{
    border: 5px solid #66406f;
    color: #66406f;
}
@-webkit-keyframes animate-positive{
    0%{ width: 0; }
}
@keyframes animate-positive{
    0%{ width: 0; }
}

#news_head{
    padding-top: 50px;
}
.right-head{
    /* background-color: linear-gradient(0deg, rgb(20 20 20 / 30%), rgb(20 20 20 / 30%)); */
    padding: 280px 20px 50px 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: azure;
    color: white;
    border-radius: 7px;
}
.cause-wrap{
    border-radius: 7px;
}
.side-bar{
    border-radius: 7px;
}

.news-card:hover{
    background-color: #f8f9fa;
}
/* ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease-in-out forwards  0.5s;
}

/* Define a keyframe animation called 'fadeUp' */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-left {
    opacity: 0;
    transform: translateX(-100%);
    animation: fadeInFromLeft 0.5s ease-in-out forwards  2s;
}

@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}