/** Shopify CDN: Minification failed

Line 177:0 Expected "}" to go with "{"

**/
.image-hero {
  position: relative;
  width: 100%;
  min-height: 60dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 0.15px solid rgba(255,255,255, 0.2);
}

.image-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;

}

.image-hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.image-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.image-hero__text-wrapper {
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.image-hero__title {
  font-size: 2.5rem;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  color: rgb(var(--color-foreground));
  margin: 0 0 0.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 750px) {
  .image-hero__title {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 990px) {
  .image-hero__title {
    font-size: 4.5rem;
  }
}

.image-hero__text {
  font-size: 1.4rem;
  line-height: 1.4;
  color: rgb(var(--color-foreground));
  margin: 0 0 2rem 0;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.image-hero__text p {
  margin: 0;
}

@media screen and (min-width: 750px) {
  .image-hero__text {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 990px) {
  .image-hero__text {
    font-size: 1.8rem;
  }
}

.image-hero__link-wrapper {
  margin-top: 2rem;
}

.image-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: rgb(var(--color-foreground));
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.image-hero__link:hover {
  opacity: 0.8;
}

.image-hero__link.button {
  text-shadow: none;
  padding: 1.2rem 2.4rem;
  min-width: 200px;
}

.image-hero__link .svg-wrapper {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.image-hero__link:hover .svg-wrapper {
  transform: translateX(0.3rem);
}
@media screen and (min-width: 750px) {
  .email-signup-banner__image-item {
    border-left: 0.15px solid rgba(255,255,255, 0.2);
  }
/* Mobile adjustments */

@media screen and (max-width: 749px) {
  .email-signup-banner__image-item {
    border-top: 0.15px solid rgba(255,255,255, 0.2);
  }
  .image-hero {
    min-height: 50vh;
  }

  .image-hero__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .image-hero__text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .image-hero__link {
    font-size: 1.2rem;
  }

  .image-hero__link.button {
    width: 100%;
    max-width: 300px;
  }
}

