/** Shopify CDN: Minification failed

Line 191:1 Expected "}" to go with "{"

**/
.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-banner__background-desktop {
  display: block;
}

.hero-banner__background-mobile {
  display: none;
}

@media screen and (max-width: 749px) {
  .hero-banner__background-desktop {
    display: none;
  }
  
  .hero-banner__background-mobile {
    display: block;
  }
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 20rem; */
}

.hero-banner__text-wrapper {
  max-width: 80rem;
  padding: 4rem 2rem;
  background-color: rgba(var(--color-background), 0.6);
  border-radius: 1.5rem;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(var(--color-foreground), 0.1);
}

.hero-banner__text-wrapper--left {
  text-align: left;
  align-self: flex-start;
  margin-left: 0;
  margin-right: auto;
  position: absolute;
  left: 4rem;
}

.hero-banner__text-wrapper--center {
  text-align: center;
  align-self: center;
  margin: 0 auto;
}

.hero-banner__text-wrapper--right {
  text-align: right;
  align-self: flex-end;
  margin-left: auto;
  margin-right: 0;
}

.hero-banner__heading {
  margin: 0 0 1.5rem 0;
  color: rgb(var(--color-foreground));
}

.hero-banner__subheading {
  margin: 0 0 2rem 0;
  font-size: 1.8rem;
  line-height: 1.4;
  color: rgb(var(--color-foreground));
}

.hero-banner__subheading p {
  margin: 0;
}

.hero-banner__buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-banner__text-wrapper--center .hero-banner__buttons {
  justify-content: center;
}

.hero-banner__text-wrapper--right .hero-banner__buttons {
  justify-content: flex-end;
}

.hero-banner__custom-heading {
  margin: 2rem 0 1rem 0;
  color: rgb(var(--color-foreground));
}

.hero-banner__custom-text {
  margin: 1.5rem 0;
  color: rgb(var(--color-foreground));
}

.hero-banner__custom-button {
  margin: 1.5rem 0;
}

.hero-banner__custom-image {
  margin: 2rem 0;
}

.hero-banner__custom-image img {
  max-width: 100%;
  height: auto;
}

.hero-banner__custom-html {
  margin: 1.5rem 0;
}

@media screen and (max-width: 749px) {
  .hero-banner__text-wrapper {
    padding: 3rem 1.5rem;
  }
  
  .hero-banner__subheading {
    font-size: 1.6rem;
  }
  
  .hero-banner__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-banner__text-wrapper--center .hero-banner__buttons {
    align-items: center;
  }
  
  .hero-banner__text-wrapper--right .hero-banner__buttons {
    align-items: flex-end;
  }
  
  .hero-banner__buttons .button {
    width: 100%;
    max-width: 30rem;
  }
  .hero-banner__text-wrapper--left {
  text-align: left;
  align-self: flex-start;
  margin-left: 0;
  margin-right: auto;
  position: absolute;
  left: auto;
  /* bottom: 1%; */
  }
  .hero-banner__content {
    width: 90%;
}

@media screen and (min-width: 750px) {
  .hero-banner__text-wrapper {
    padding: 5rem 3rem;
  }
  
  .hero-banner__subheading {
    font-size: 2rem;
  }
}