
.div-box-outer {
    display: table;
    width: 100%;
    height: 100%;
}

.div-box {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.overlay-content {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;

  padding: 15px;
  height: 100%;
  width: 100%;

  text-align: center;
  background-color: rgba(255,255,255,0.9);

  z-index: 2;
}

.img-box:hover .overlay-content {
  opacity: 1;
}

.img-box:hover .focus-image {
  opacity: 0;
}

.img-box {
    background-position: top center;
    background-repeat: no-repeat;
    /*
    background-size: contain;
    min-height: 277px;
    */
    background-size: cover;
    min-height: 326px;
    position: relative;
}

.focus-image {
    padding: 15px;
}

.focus-image h3 {
    bottom: 15px;
    position: absolute;
    color: #FFF;
}


/** RESPONSIVE LAYOUT **/
@media (min-width: 992px) and (max-width: 1200px) {


}

@media (min-width: 768px) and (max-width: 991px) {
}

@media (max-width: 767px) {
}
