/* page title */
.page-title {
  display: flex;
  justify-content: center;
  margin-top: -70px;
}

.page-title > h1 {
  font-family: "Quicksand", sans-serif;
  font-size: 4.2em;
  font-weight: 700;
}

.title-underline {
  display: flex;
  justify-content: center;
  margin-top: -42px;
}

.title-underline > .page-title-bottom-border {
  content: "";
  width: 250px;
  display: block;
  border-bottom: 5px solid black;
  border-radius: 25px;
}

/* gallery grid */
.gallery-grid-wrapper {
  display: grid;
  grid-template-rows: 33% 33% 33%;
  justify-content: center;
  margin-top: 35px;
}

.gallery-grid-wrapper > .gallery-grid-row {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 50% 50%;
  padding-bottom: 25px;
}

.gallery-grid-wrapper > .gallery-grid-row > .gallery-media-square {
  display: grid;
  padding: 0px 15px;
  grid-template-rows: 90% 10%;
}

.gallery-grid-wrapper > .gallery-grid-row > .gallery-media-square img {
  max-width: 100%;
  max-height: 600px;
  height: auto;
  border-radius: 10px;
}

.gallery-grid-wrapper > .gallery-grid-row > .gallery-media-square p {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 19px;
}