.thumbnail-sizer {
  padding: 4px 4px;
  float: left;
  width: 24.99999%;
}
@media only screen and (max-width: 700.8px) {
  .thumbnail-sizer {
    width: 49.99999%;
  }
}
@media only screen and (max-width: 499.2px) {
  .thumbnail-sizer {
    width: 100%;
  }
}

/* Container needed to position the overlay. Adjust the width as needed */
.thumbnail-container, .thumbnail-textual-container {
  position: relative;
  transition: transform 0.5s;
  /* When you mouse over the container, fade in the overlay title */
}
.thumbnail-container:hover, .thumbnail-textual-container:hover {
  transform: scale(1.15);
  z-index: 2;
  transition: transform 0.5s;
}
.thumbnail-container:hover .hover-title-overlay, .thumbnail-textual-container:hover .hover-title-overlay {
  opacity: 1;
}

/* The overlay effect - lays on top of the container and over the image */
.hover-title-overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  color: #f1f1f1;
  width: 100%;
  transition: 0.5s ease;
  opacity: 0;
  color: white;
  font-size: 20px;
  padding: 10px;
  text-align: center;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.thumbnail-textual-unit {
  width: 100%;
  margin: 0 0;
}
.thumbnail-textual-unit::after {
  content: "";
  display: table;
  clear: both;
  margin-bottom: 10px;
}

.thumbnail-textual-container:hover {
  transform: scale(1.07);
}

.thumbnail-textual-thumbnailsizer {
  padding: 4px 4px;
  margin-right: 15px;
  float: left;
  width: 39.99999%;
}

.thumbnail-textual-text h3 {
  margin-top: 0;
  margin-bottom: 5px;
}
.thumbnail-textual-text p {
  margin-top: 0;
}

@media only screen and (max-width: 700.8px) {
  .thumbnail-textual-thumbnailsizer {
    width: 49.99999%;
  }
}
@media only screen and (max-width: 499.2px) {
  .thumbnail-textual-thumbnailsizer {
    width: 100%;
  }
}

/*# sourceMappingURL=thumbnails.css.map */