.hashtag {
    font-size: 18px;
    font-weight: 600;
    color: #73bf44;
}

.anualReports h6 {
    font-size: 18px;
    line-height: 40px;
    padding: 25px;
    min-height: 130px;
}

@media only screen and (max-width: 1366px) {
    .blog-owner .news-card-post {
        gap: 26px;
    }
}


.marquee {
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    height: auto;
    /*background: #73bf4485;*/
    background: #73bf44;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;

    position: absolute;
    top: 0px;
    z-index: 999;
}

.marquee a {
    color: #fff;
    font-weight: 800;
}

.marquee .text {
    display: inline-block;
    padding: 4px;
    text-indent: 0;
    /*animation: marquee 20s linear infinite;*/
    /*font-weight: 500;*/
    /*font-size: normal normal normal 16px/20px var(--font_book);*/
    font: normal normal 16px/25px var(--font_book);
    letter-spacing: -0.04;
    /*text-transform: uppercase;*/
    color: #fff;
}

.marquee .text:hover {
    animation-play-state: paused;
}

.presskit-desk a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
    flex-direction: column;
}




@keyframes marquee {
    0% {
        transform: translate(100%, 0);
    }

    /*0% {*/
    /*  transform: translate(0, 0);*/
    /*}*/

    100% {
        transform: translate(-100%, 0);
    }
}

@media(max-width: 991px) {
    .marquee {
        top: 50px;
    }

}