.home-page .header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 800px;
  padding-bottom: 7%;
}

.home-page .header .header-text {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: calc(18px + 4vw);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .home-page .header { height: 500px; padding-bottom: 10%; }
}

/* Increase horizontal space between columns in Our Story section */
.home-page #our-story .row {
  --bs-gutter-x: 3rem;
}
@media (min-width: 992px) {
  .home-page #our-story .row {
    --bs-gutter-x: 5rem;
  }
}


