@media screen and (min-width: 1200px){
    .serviceParent{
        width: auto;
        height: auto;
        position: relative;
        display: flex;
    }

    .serviceTextLeft{
        position: relative;
        width: 50%;
        padding: 10px 20px 10px 40px;
        position: relative;
        display: inline-block;
        background-color: #cacaca;
        flex: 1;
        color: #595959;
    }

    .serviceTextLeft:after{
        content: " ";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background: #cacaca;
        transform-origin: bottom left;
        -ms-transform: skew(-30deg, 0deg);
        -webkit-transform: skew(-30deg, 0deg);
        transform: skew(-30deg, 0deg);
    }

    .serviceTextRight{
        position: relative;
        max-width: calc(50% - 70px);
        padding: 10px 20px 10px 20px;
        position: relative;
        display: inline-block;
        background-color: #cacaca;
        flex: 1;
        color: #595959;
    }

    .serviceTextRight:before{
        content: " ";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: -1;
        background: #cacaca;
        transform-origin: top left;
        -ms-transform: skew(-30deg, 0deg);
        -webkit-transform: skew(-30deg, 0deg);
        transform: skew(-30deg, 0deg);
    }

    .servicePicture{
        height: auto;
        width: 50%;
        position: relative;
        display: inline-block;
        background-position: center;
        background-size: cover;
        flex: 1;
        z-index: -2;
    }
}

@media screen and (max-width: 1200px){
    .serviceParent{
        width: auto;
        height: auto;
        position: relative;
        display: block;
    }

    .serviceTextLeft{
        position: relative;
        width: auto;
        padding: 10px 20px 10px 40px;
        position: relative;
        display: block;
        background-color: #cacaca;
        color: #595959;
        order: 1;
    }

    .serviceTextRight{
        position: relative;
        width: auto;
        padding: 10px 20px 10px 40px;
        position: relative;
        display: block;
        background-color: #cacaca;
        color: #595959;
        order: 1;
    }

    .servicePicture{
        min-height: 250px;
        width: auto;
        position: relative;
        display: block;
        background-position: center;
        background-size: cover;
        order: 2;
    }
}