.article-explanation {
    margin: 50px 0;
    background: #e8f0f9;
    padding: 25px 40px 25px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.article-explanation:before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50vw;
    left: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #e8f0f9;
    z-index: 1
}

.article-explanation--title {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #112e48;
    margin-bottom: 20px;
    position: relative;
    z-index: 5
}

.article-explanation--text {
    color: #112e48;
    position: relative;
    z-index: 5
}

.article-explanation img {
    min-width: 75px;
    margin-left: 45px;
    display: block;
    position: relative;
    z-index: 5
}



@media only screen and (max-width: 768px) {
    .article-explanation {
        padding: 20px;
        margin: 20px 0;
    }

    .article-explanation--title {
        margin-bottom: 15px
    }

    .article-explanation img {
        display:none
    }
    .article-explanation:before{
        display:none
    }

}