.cardService {
    max-width: 95%;
    margin: auto;
    overflow: auto;
    padding: 2rem 0;
}

.textService {
    font-family: 'Open Sans', sans-serif;
    color: whitesmoke;
    font-size: 20px;
    max-width: 50%;
    padding: 0 20px;
    box-sizing: border-box;
    float: left;
}

.cardService img {
    max-width: 50%;
    border-radius: 5px;
}

.rightService {
    float: right;
}


@media screen and (max-width: 736px){
    .rightService{
        float: none;
    }

    .textService{
        max-width: 100%;
        float: none;    
    }

    .cardService img{
        max-width: 100%;
        float: none;
        margin-top: 15px;
    }

}