body {
  margin: 0;
  padding: 0;
  border: 0;
  height: 100vh;
  background-color: #434343;
  position: relative;
}
section {
  display: block;
  width: 100%;
  height: 50%;
  float: left;
  transition: .5s ease-in-out;
  overflow: hidden;
}

section figure {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  transition: .4s ease-in-out;
}

#ink-your-ride:hover figure,
#eminent-graphics:hover figure {
  background-color: rgba(0,0,0, .5);
}

#ink-your-ride:after,
#ink-your-ride:before,
#eminent-graphics:after,
#eminent-graphics:before {
   filter: grayscale(100%);
   -webkit-transition: all ease-in-out .25s;
   -moz-transition: all ease-in-out .25s;
   -o-transition: all ease-in-out .25s;
   transition: all ease-in-out .25s;
}

#ink-your-ride img {
  transform: rotate(-20deg);
}

#ink-your-ride:hover:after,
#ink-your-ride:hover:before,
#eminent-graphics:hover:after,
#eminent-graphics:hover:before {
  filter: grayscale(0);
}

section img {
  width: 100vh;
  height: auto;
  max-width: 290px;
  display: block;
  margin: auto;
  padding: 15px;
}

#ink-your-ride:before,
#ink-your-ride:after,
#eminent-graphics:before,
#eminent-graphics:after {
  content: '';
  display: block;
  position: absolute;
  height: 50vh;
  width: 100%;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

#eminent-graphics img {
  max-width: 300px;
}

#ink-your-ride:before {
  top: 0;
  left: 0;
  background-image: url('../images/black-truck.jpg');
}

#ink-your-ride:after {
  content: none;
  background-image: url('../images/white-truck.jpg');
}

#eminent-graphics:before {
  background-image: url('../images/steamwhistle.jpg');
  right: 0;
  top: 50vh;
}

#eminent-graphics:after {
  content: none;
  background-image: url('../images/farm-sign.jpg');
  top: 50vh;
  right: 0;
}

.clear {
  clear: both;
}

.clear:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  width: 100%;
  height: 10px;
  background-color: #4d9a0b;
}

@media (min-width: 960px) {
  body section {
    width: 50%;
    height: 100%;
  }
  section#ink-your-ride:before,
  section#ink-your-ride:after,
  section#eminent-graphics:before,
  section#eminent-graphics:after {
    content: '';
    height: 50vh;
    width: 50%;
  }
  section#ink-your-ride:before {
    top: 0;
    left: 0;
    background-image: url('../images/black-truck.jpg');
  }

  section#ink-your-ride:after {
    top: 50vh;
    left: 0;
    background-image: url('../images/white-truck.jpg');
  }
  
  section#eminent-graphics:before {
    background-image: url('../images/steamwhistle.jpg');
    right: 0;
    top: 0;
  }
  
  section#eminent-graphics:after {
    background-image: url('../images/farm-sign.jpg');
    top: 50vh;
    right: 0;
  }
  div.clear:after {
    top: 0;
    left: calc(50% - 5px);
    height: 100%;
    width: 10px;
  }
  section#eminent-graphics img {
    max-width: 430px;
  }  
}