.news-container {
    position:sticky;
    left: 0;
    right: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
    background: var(--brand);
    opacity: 0.8;
    z-index: 1000;
    height: 35px;
}

.news-container .title {
    position: absolute;
    background: red;
    opacity: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: white;
    font-weight: bold;
    z-index: 200;
}

.news-container ul {
    display: flex;
    list-style: none;
    margin: 0;
    animation: scroll 40s infinite linear;
}

.news-container ul li {
    white-space: nowrap;
    padding: 0px 24px;
    color: #ea1010;
    font-size: 20px;
    position: relative;

}

.news-container ul li a{
    text-decoration: none;
    font-weight: 700;
    color: #f2f3f5;
    font-family: serif;
}
.news-container ul li::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #111111;
    position: absolute;
    top: 0;
    right: 0;
}



#notification{
    background:#f2f3f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.notification_div{
    width: 100vw;
    text-align: center;
    z-index: 4;
    position: relative;
    margin: 15px;
    max-width: 768px;
    margin: auto;

}

.notification_div h4 {
    margin-top: 26px;
    margin-bottom: 26px;
    color: #15022b;
    font-weight: 400;
    line-height: 1.7;
    width: 100%;
    border: none;
}

.notification_div .person{
    color: #df2020;
    font-size: 20px;
    font-weight: 700;
}

.notification_div .stars{
    color: #df2020;
}
.notification_div h4 pre{
    white-space: pre-wrap;
    word-wrap: break-word;
    word-wrap: none;
    font-size: 12px;
    overflow-x: hidden;
    text-align: justify;
    width: inherit;
    padding: 0px 70px;
}


.blog-conntent{
    float: left;  
    margin: 10px 10px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.15);

}

.blog-conntent img{
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}
.blog-conntent p{
    padding-left:15px;
    padding-right:15px;
    padding-bottom:10px;
    height: 85px;
    overflow: hidden;
}
.blog-conntent span{
    display: inline-block;
    color: blue;
    background-color: transparent;
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 8px;
    margin-top: 15px;
    position:absolute;
    right:10px;
    bottom:2px;

}

.blog-conntent span:hover{
    cursor: pointer;
   
    
}

.blog-conntent.showContent p{
    height: auto;
}

.blog-conntent.showContent span.readmore-btn{
    color: red;
}

.blog-conntent h5{
    text-align:center;
}





.project{
    height: 100%;
}

.image{
    border: 10px solid var(--brand);
    border-radius: 10;
    height: 400px;
    
}

.image img{
    height: 400px;
}
.project img{
    height: 500px;
    border-top: 4px solid var(--brand);
   
}

.blog-post img{
    height: 300px;
}


.news-container ul li:last-child ::after
{
    display: none;
}

@keyframes scroll {
    
    from{
        transform: translateX(100%);
    }
    to{
        transform: translateX(-1030px);
    }
}