.s-image-desc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}
.s-image-desc__img {
    width: 45%;
    background-position: 50% 50%;
    background-size: cover;
}
.s-image-desc__desc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 55%;
    min-height: 200px;
    padding: 20px 20px 20px 10px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.s-image-desc__content {
    width: 50%;
    padding: 10px 15px;
    text-align: center;
}
.s-image-desc__desc h2 {
    width: 100%;
    text-align: center;
    text-transform: capitalize;
}

.s-image-desc__desc .s-image-desc__wysiwyg-container{
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .s-image-desc__content {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .s-image-desc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .s-image-desc__img {
        width: 100%;
        padding-bottom: 50%;
    }
    .s-image-desc__desc {
        width: 100%;
    }
}

@media screen and (max-width: 479px){
    .s-image-desc__desc{
        padding: 20px 0 20px 0;
    }
}