.news-feed {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0a1e35;
    width: 100%;
}

.news-feed-container {
    display: block;
    width: 85%;
}

.news-feed-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
}

.news-feed-label h1 {
    font-size: 40px;
    color: #f1f1f1;
    letter-spacing: .015in;
    font-family: 'dragon-serialregular';
    text-transform: capitalize;

}

.our {
    border-bottom: solid 3px #b8967e;
}

.cta-btn-reverse {
    width: 180px;
    height: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: .5s;
    cursor: pointer;
}

.cta-bg-reverse {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 0;
    background: transparent;
    border: solid 1px #f1f1f1;
    transition: .5s;
    z-index: 0;
}

.cta-text {
    color: #f1f1f1;
    letter-spacing: .015in;
    font-family: 'dragon-serialregular';
    text-transform: capitalize;
    padding: 0 20px;
    z-index: 9;
    font-size: 18px;
}

.cta-icon {
    width: 20px;
    margin-right: 15px;
    z-index: 9;
}

.cta-btn-reverse:hover .cta-bg-reverse {
    width: 50px;
    margin-left: 130px;
    background-color: #f1f1f1;
    border: solid 1px #f1f1f1;
    width: 100%;
    height: 100%;
}

.cta-btn-reverse:hover .cta-text {
    color: #0a1e35;
}

.cta-btn-reverse:hover .cta-icon {
    content: url(../../icons/right-blue.png);
}

.news-items-list {
    display: block;
    width: 100%;
}

.news-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: solid 1px #f1f1f12b;
}

.news-item a {
    text-decoration: none;
}

.news-date {
    flex-basis: 16%;
}

.news-date p {
    color: #ffffff;
    letter-spacing: .015in;
    font-family: 'dragon-serialregular';
    text-transform: uppercase;
    font-size: 18px;
}

.news-heading {
    flex-basis: 84%;
}

.news-heading {
    display: block;
    padding: 30px;
}

.news-heading h1 {
    letter-spacing: .05in;
    font-family: 'dragon-serialregular';
    text-transform: uppercase;
    font-size: 55px;
    color: #f1f1f12b;
}

.news-heading h1:hover {
    color: #f1f1f18d;
}

.news-heading h6 {
    color: #f1f1f12b;
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .news-feed-label h1 {
        font-size: 25px;
    }

    .cta-btn-reverse {
        height: 30px;
        width: 150px;
        justify-content: space-between;
    }

    .cta-bg-reverse {
        width: 35px;
        height: 35px;
    }

    .cta-text {
        font-size: 14px;
    }

    .cta-icon {
        width: 20px;
        margin: auto;
    }

    .news-heading {
        padding: 30px 20px;
    }

    .news-date {
        flex-basis: 20%;
    }

    .news-heading {
        flex-basis: 80%;
    }


    .news-heading h1 {
        font-size: 30px;
    }

    .news-heading h6 {
        font-size: 15px;
    }
}

@media screen and (max-width: 425px) {
    .news-feed {
        padding-bottom: 50px;
    }

    .news-feed-label {
        padding: 0;
        margin: 30px 0;
    }

    .news-feed-label h1 {
        font-size: 20px;
    }

    .cta-bg-reverse {
        width: 25px;
        height: 25px;
    }

    .cta-icon {
        width: 15px;
        height: 15px;
    }

    .cta-btn-reverse {
        width: 100px;
        height: 30px;
    }

    .cta-text {
        font-size: 12px;
        padding: 0 5px;
    }

    .news-item {
        flex-wrap: wrap;
    }

    .news-heading,
    .news-date {
        flex-basis: 100%;
        padding: 8px 0;
    }

    .news-heading h1 {
        font-size: 18px;
    }

    .news-heading h6 {
        padding: 8px 0;
        font-size: 12px;
    }

    .news-date p {
        color: #ffffff7d;
        font-size: 12px;
    }
}