/*////////// HEADING //////////*/

.heading-content-gallery {
  width: 100%;
  height: 50vh;
  background: linear-gradient(to bottom, #FFFFFF, #EFE9E4);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

/* GALLERY */

.gallery-container {
  margin-top: 100px !important;
  margin-right: 100px;
  margin-left: 100px;
  padding-top: 50px !important;
}

.gallery-container:first-of-type {
  margin-top: 150px !important;
  padding-top: 100px !important;
}

/* Force spacing for gallery containers */
div.gallery-container {
  margin-top: 100px !important;
  padding-top: 50px !important;
}

div.gallery-container:first-of-type {
  margin-top: 200px !important;
  padding-top: 100px !important;
}

.gallery-container-videos {
  margin-top: 40px !important;
  margin-left: 100px;
  margin-right: 100px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
}

.column img {
  vertical-align: middle;
  margin-bottom: 72px;
  width: 100%;
}

.column video {
  vertical-align: middle;
  margin-bottom: 72px;
  width: 100%;
}

/* ///////// Javascript Scroll Reveal ////////// */
.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 2s ease;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}
