exclude???

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div class="to-color">
  <div class="to-overlay">

    <div class="respo">
      <div class="row">
        <div class="col-xs-4 col-xs-offset-4 text-center">
          <img src="http://ansonalex.com/wp-content/uploads/2011/06/google-logo-768x260.png" alt="..." class="img-responsive">
        </div>
      </div>
    </div>

  </div>
</div>

CSS

.to-color {
  background-color: #000;
  position: relative;
}
.to-overlay:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.respo {
  background-image: url("https://source.unsplash.com/category/objects/1600x900");
  background-position: center center;
  background-size: cover;
  padding-top: 10%;
  padding-bottom: 20%;
}