.post-block-wrapper .head .post-block-tab-list {
    float: left;
}

.page-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    padding: 30px 30px;
    overflow: hidden;
}

.footer-widget .content p {
    font-size: 13px;
    color: white;
}

.footer-widget .content .footer-contact li {
    margin-bottom: 10px;
    color: white;
}

.footer-widget .footer-widget-post .post-wrap .content .title a {
    color: white;
    font-weight: 600;
}

.footer-widget .footer-widget-post .post-wrap .content .meta .meta-item {
    color: white;
    margin-top: 5px;
    font-size: 13px;
    font-family: "Open Sans", sans-serif;
    line-height: 16px;
    display: block;
    float: left;
    margin-right: 15px;
}




.breaking-news-ticker-wrapper {
    position: relative;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
}

.breaking-news-ticker {
    white-space: nowrap;
    animation: ticker 20s linear infinite;
    display: inline-block;
}

.breaking-news-ticker li {
    display: inline;
    margin-right: 50px;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}