.newspage-section-box{
    margin-bottom: 40px;
}
.width-sidebar .newspage-section-box{
    width: 100vw;
    margin-left:-20vw;
}
.newspage-section-box .news-page-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}
.newspage-section-box .news-box{

    width: 31%;
    margin: 11px 1%;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.15));
}




.news-page-list .image-box-news::after {
    content: "";
    display: block;
    width: 100%;
    height: 0%;
    position: absolute;
    z-index: 1;
    background: var(--primary);
    opacity: 0.8;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.news-page-list .image-box-news:hover:after{
    height: 100%;
}
.news-page-list .image-box-news{
    position: relative;
    width: 100%;
    height: 220px;
    display: block;
    margin-block-end: 0px
}
.news-page-list .image-box-news img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}
.news-page-list .image-box-news .article-hover{
    position: absolute;
    z-index: 2;
    top:0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 2;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    opacity: 0;
    justify-content: center;
    align-items: center;
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
}
.news-page-list .image-box-news:hover .article-hover{
    opacity: 1;
}
.news-page-list .sticky-icon{
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    position: absolute;
    top: 16px;
    left: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 3;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.news-page-list .sticky-icon svg{
    color: #CAB36B;
    font-size: 14px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.news-page-list .image-box-news:hover .sticky-icon svg{
    color: #1F382E;
}
.news-page-list .text-container{
    min-height: 140px;
    width: 100%;
    padding:25px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}
.news-page-list .text-container .category-date{
    display: flex;
    justify-content: center;
}
.news-page-list .text-container .category-date .category-link{
    font-weight: 600;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}
.news-page-list .text-container .post-date{
    font-weight: 600;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}
.news-page-list .text-container .article-title{
    line-height: 24px;
    margin-block-end:0;
}
.news-page-list .text-container .article-title a{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #000;
    display: block;
    margin-block-end:0;
}
.news-page-list .text-container .article-link{
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #CAB36B;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.news-page-list .text-container .article-link:hover{
    opacity: 0.7;
}





.page-load-status {
    display: none; /* hidden by default */
    padding-top: 20px;
    border-top: 1px solid #DDD;
    text-align: center;
    color: #777;
}
.loader-ellips {
    font-size: 20px; /* change size here */
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}
.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #555; /* change color here */
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}
.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}
.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}
.loader-ellips__dot:nth-child(4) {
    left: 3em;
}
@keyframes reveal {
    from {
        transform: scale(0.001);
    }
    to {
        transform: scale(1);
    }
}
@keyframes slide {
    to {
        transform: translateX(1.5em)
    }
}
.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}
.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}
.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

.infinite-scroll-nav{
    display: none;
}
.load-more-box{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.load-more{
    cursor: pointer;
}
@media only screen and (max-width: 1024px) {
    .width-sidebar .newspage-section-box {

        margin-left: -5vw;
    }
    .width-sidebar .newspage-section-box .news-page-list{
        margin-left: -5vw;
    }
    .width-sidebar .main-wrapper .newspage-section-box .wrapper {
        width: 90%;
    }
}
@media only screen and (max-width: 800px) {
    .newspage-section-box .wrapper{
        padding: 0;
    }
    .twitter-acticle,
    .newspage-section-box .news-box{
        width: 100%;
    }
    .news-page-list .image-box-news{
        width: 100%;
        height: auto;
    }
    .news-page-list .image-box-news img{
        width: 100%;
        height: auto;
    }
}