@media (max-width: 575.98px) {
  .grid-col {
    padding: 0 2%;
  }
}

.grid {
  position: relative;
  clear: both;
  margin: 0 auto;
  max-width: 1000px;
  list-style: none;
  text-align: center;
  float: left;
  overflow: hidden;
  height: auto;
  text-align: center;
  border: solid 1px #ff0000;
}

.grid img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 1;
}

.grid .caption {
  font-family: 'Roboto Condensed';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 17%;
  color: #fff;
}

.box img {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

.box h2 {
  width: 90%;
  color: #ffd700;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  bottom: 2%;
  left: 0;
  right: 0;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  padding: 3%;
  background-color: rgba(188,0,0,0.85);
  box-shadow: 2px 2px 10px #000;
  text-shadow: 1px 1px 1px #000;
  border: solid 1px #000;
}

@media (min-width: 576px) {
  .box h2 {
    font-size: 18px;
  }
}

.box:hover h2 {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  background-color: rgba(128,0,0,0.75);
}

.box p {
  font-size: 11px;
  line-height: 1.3;
  padding: 10px;
  margin-top: 0%;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  transform: scale(1.0);
  text-shadow: 1px 1px 3px #000;
}

@media (min-width: 1200px) {
  .box p {
    font-size: 14px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .box p {
    font-size: 13px;
  }
}

.box:hover p {
  opacity: 1;
  transition: opacity 0.35s, transform 0.35s;
  transform: scale(1.5);
}

.box:hover img {
  opacity: 0.3;
}

