.feed_promo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 20px 0;
}  
    .feed_promo > div {
        width: 100%;
        height: 100%;
        display: grid;
        align-items: center;
        margin: auto;
        border-radius: 10px;
        padding: 10px 30px;
        background: #0c637c;
        text-align: center;
    }
    .feed_promo img {
        width: 250px;
    }
    .feed_promo p, .feed_promo h2 {
        text-align: center;
    }
    .feed_promo h2 {
        color: #FFF;
        font-size: 18pt;
        letter-spacing: 2px;
        font-family: -apple-system,system-ui,BlinkMacSystemFont,"Helvetica Neue","Segoe UI",Roboto,Arial,sans-serif;
        text-shadow: 0px 1px 2px rgb(0 0 0);
    }
    @media only screen and (max-width:740px) {  
        .feed_promo { 
            grid-template-columns: 1fr;
        } 
        
    }