Вы можете обернуть содержимое, которое вы пытаетесь отцентрировать по вертикали в div, и установить его положение на абсолютное и верхнее заполнение на 50%.например,
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12" >
<div class="sidingCopy">
<h2>Siding Wash</h2><p>Some home maintenance tasks are just right for the do-it-yourselfer, power washing your siding is not one of those tasks. A simple miscalculation could cause significant damage to your siding requiring an expensive repair. Phantom Power Washing has the know how to gently remove grim from your home’s exterior and reveal it’s original beauty.</p>
</div>
</div>
CSS:
@media(min-width:768px) {
.sidingCopy { position: absolute; padding: 50% 0 0 0; }
}