@charset "utf-8";
/* CSS Document */


.row {
  display: flex;
  flex-wrap: wrap;
  padding:  7px;
 
}

.column {
  flex: 100%;
  max-width: 100%;
}

.column img {
  vertical-align: middle;
	width: 100%;
}

.container {
  position: relative;
  width: 100%;
	padding-bottom: 10px;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0%;
  transition: .5s ease;
  background-color: #008CBA;
}
.container:hover .overlay {
  opacity: 60%;
}

.text {
  color: white;
  white-space: nowrap;
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

/* Tablet Styles */
@media only screen and (min-width: 481px) {
    .column {
      flex: 1000%;
      max-width: 1000%;
    }
}

/* Desktop Styles */
@media only screen and (min-width: 1024px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
}

/* Desktop Styles */
@media only screen and (min-width: 1200px) {
    .column {
      flex: 33.3%;
      max-width: 33.3%;
    }
}