.nfWrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
    padding: 0 2em 5em;
}

.news-feed-Title {
    margin-bottom: 3em;
    text-align: center;
}

.news-feed-Title > span {
    font-family: 'Oswald', sans-serif;
    color: #d5820d;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.news-feed-Title h1 {
    font-size: 42px;
    margin: 15px 0;
    color: #000;
    font-weight: 800;
}

.nfInner {
    position: relative;
    flex:3;
    grid-area: 1 / 1 / 2 / 3;
}

.facebookFeed {
    grid-area: 1 / 3 / 2/ 4;
}

.nfInnerBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    padding: 20px 20px;
    border: 1px solid #e1e1e5;
    background: #ffffff;
    margin-bottom: 50px;
    transition: all 500ms ease;
    margin-top: 0 !important;
    float: none !important;
}

.nfInnerBox:hover {
    border-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
}

.nfImage {
    display: flex;
    flex-direction: column;
    flex-basis: 40%;
    height: 400px;
    overflow: hidden;
    justify-content: center;
}

.nfImage img {
    width: 100%;
    position: relative;
    top: 0em;
}

.nfInfo {
    display: flex;
    flex-direction: column;
    flex-basis: 60%;
}

.nfInfo h4 {
    padding: 0px 0px 0px 25px;
    color: #0d5c91;
    font-size: 23px;
    line-height: normal;
}


.nfSummary, .nfFooter {
    padding: 20px 10px 20px 25px;
}

.nfDate {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
}

.nfDate h4 {
    position: relative;
    display: inline-block;
    width: 64px;
    font-size: 24px;
    font-weight: 700;
    background: #0d5c91;
    color: #fff;
    padding: 11px 0px 5px 0px;
    text-align: center;
    line-height: 24px;
    z-index: 2;
    margin: 0;
}

.nfDate h4 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.nfSummary {
    font-size: 18px;
    line-height: 1.5;
    border-top: 1px solid #e6e6ea;
}

.nfFooter {
    position:relative;
}

.nfFooter a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.nfBtn {
    display: inline-block;
    padding: 5px 20px;
    transition: all .3s ease-in-out;
    border: 1px solid #71b36c;
    font-size: 16px;
    text-align: center;
    color: #000;
}

.nrKeywords {
}

.nfFooter a:hover .nfBtn {
    background-color: #71b36c;
    color:#fff;
}

.hpNewsView {
    position:relative;
    text-align: center;
}

.hpNewsView a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.hpViewBtn {
    display: inline-block;
    padding: 5px 20px;
    transition: all .3s ease-in-out;
    border: 1px solid #71b36c;
    font-size: 16px;
    text-align: center;
    color: #000;
    border-radius: 5px;
}

.hpNewsView a:hover .hpViewBtn {
    background-color: #71b36c;
    color:#fff;
}

@media screen and (max-width: 1200px) {
    .nfWrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .facebookFeed {
        margin: auto;
    }
    .nfInner, .facebookFeed {
        grid-area: auto;
    }
}

@media screen and (max-width: 990px) {
    
    .nfWrap {
        grid-gap: 2em;
    }
    
    .nfImage {
        flex-basis:100%;
        height: auto;
    }
    .nfInfo {
        flex: 100% !important;
    }
    
}

@media screen and (max-width: 600px) {
    
    .nfFooter a:nth-child(2) {
        margin-top: 1em;
    }
    
}

