/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 92:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.three-column-banner {
  width: 100vw;
  overflow: hidden;
}

.three-column-banner .columns {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.three-column-banner .column {
  flex: 1 1 33.3333%;
  height: 75vh;
  position: relative;
  overflow: hidden;
}

.three-column-banner .column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.three-column-banner .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px;
  text-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}

.three-column-banner.light .overlay h2,
.three-column-banner.light .overlay a {
  color: black;
}

.three-column-banner.dark .overlay h2,
.three-column-banner.dark .overlay a {
  color: white;
}

.three-column-banner.light .overlay {
  background: linear-gradient(to top, rgba(255,255,255,0.6), rgba(255,255,255,0));
}

.three-column-banner .overlay h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
}

.three-column-banner .overlay a.heading-link {
  text-decoration: none;
  color: inherit;
  font-weight: 300;
}

.three-column-banner .overlay a.heading-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .three-column-banner .columns {
    flex-direction: column;
  }
  .three-column-banner .column {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .three-column-banner .overlay {
    padding: 24px;
  }
}
</style>