.page-banner {
  margin-top: 80px;
  width: 100%;
  height: 150px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.page-banner .bg-black-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-banner .text-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #FFFF;
}

.page-banner .text-overlay h1 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 800;
}

.page-banner .text-overlay p {
  margin-top: 0;
  font-size: 18px;
  font-style: italic;
}

.gallery-section {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.gallery-section .container {
  width: 100%;
  max-width: 1266px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.gallery-section .container .info-title {
  width: 100%;
  border-bottom: 1.5px solid grey;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}

.gallery-section .container .info-title h1 {
  font-size: 24px;
  font-weight: 700;
}

/* .gallery-section .container .gallery-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
} */

.gallery-section .container .gallery-grid {
  column-count: 3;          /* 3 masonry columns */
  column-gap: 20px;         /* spacing between columns */
  width: 100%;
}

/* .gallery-section .container .gallery-grid .image-holder {
  width: 400px;
  overflow: hidden;
  border: 5px solid white;
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
} */

.gallery-section .container .gallery-grid .image-holder {
  display: inline-block;     /* ensures images stack correctly in columns */
  margin-bottom: 20px;       /* spacing between items vertically */
  width: 100%;               /* take full column width */
  border: 5px solid white;
  overflow: hidden;
  position: relative;
}

.gallery-section .container .gallery-grid .image-holder img {
  width: 100%;
  height: auto;              /* keeps aspect ratio */
  display: block;
  border-radius: 20px;
}
.gallery-section .container .gallery-grid .image-holder video {
  width: 100%;
  height: auto;              /* keeps aspect ratio */
  display: block;
  border-radius: 20px;
}

.gallery-section .container .gallery-grid .image-holder .image-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: white;
}

.gallery-section .container .gallery-grid .image-holder .image-overlay p {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .gallery-section .container {
    padding: 10px;
  }
  /* .gallery-section .container .gallery-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  } */
  .gallery-section .container .gallery-grid {
    column-count: 1;
  }
  .gallery-section .container .gallery-grid .grid-col-1 {
    width: 97%;
  }
  .gallery-section .container .gallery-grid .grid-col-1 .image-holder {
    width: 100%;
    height: 100% !important;
  }
  .gallery-section .container .gallery-grid .grid-col-2 {
    width: 97%;
  }
  .gallery-section .container .gallery-grid .grid-col-2 .image-holder {
    width: 100%;
    height: 100% !important;
    background-color: white;
  }
}
/*# sourceMappingURL=gallery_page_style.css.map */