/* Gallery */
.gallery {
}

.page-section-content .gallery {
  margin: 0 -10px;
}

.gallery-item-container {
  display: block;
  float: left;
  width: 25%;
  box-sizing: border-box;
  padding: 0 10px 20px 10px;
}

.gallery-item-container:after {
  display: table;
  clear: both;
  content: "";
}

.gallery-item {
  position: relative;
  display: block;
  height: 180px;
  background: #fff;
  box-shadow: 0px 0px 4px #aaa;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}

.gallery-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  padding: 10px;
  font-size: 10px;
  background: -webkit-linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  background: -o-linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  background: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  color: #fff;
  text-decoration: none;
  text-shadow: #000 0 0 4px;
}

@media (max-width: 900px) {

  .gallery-item-container {
    width: 50%;
  }

}






