.bw_post
{
    width: 100%;
    border: 1px solid #cccccc;
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: row;
}

.bw_post > .image
{
    width: 45%;
    min-height: 100%;
    position: relative;
    border-right: 1px solid #cccccc;
}

.bw_post > .image > img
{
    display: block;
    position: absolute;
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin: auto;
}

.bw_post > .content
{
    width: 55%;
}

.bw_post > .content > h1
{
    font-size: 25px;
    font-weight: 700;
    margin: 25px 25px 10px 25px;
    color: #252525;
    text-transform: uppercase;
}

.bw_post > .content > p
{
    font-size: 17px;
    margin: 10px 25px 50px 25px;
    color: #252525;
}

.bw_post > .content >.readMore
{
    display: inline-block;
    width: auto;
    background-color: #e06027;
    border-radius: 30px;
    color: #FFFFFF;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 700;
    transition: all .5s;
    margin: 10px 25px 10px 25px;
	text-transform: uppercase;
	text-align: center;
}

.bw_post > .content >.readMore:hover
{
    background-color: #000000;
    color: #FFFFFF;
}

@media screen and (max-width: 1200px)
{
    .bw_post
    {
        flex-direction: column;
    }

    .bw_post > .image
    {
        width: 100%;
        min-height: unset;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid #cccccc;
    }
    
    .bw_post > .image > img
    {
        display: block;
        position: static;
        top: unset;
        right: unset;
        bottom: unset;
        left: unset;
        height: auto;
        width: auto;
        min-height: 100%;
        min-width: 100%;
    }
}