/** Shopify CDN: Minification failed

Line 150:12 Unexpected "{"
Line 150:21 Expected ":"
Line 151:16 Expected identifier but found whitespace
Line 151:18 Unexpected "{"
Line 151:27 Expected ":"
Line 151:53 Expected ":"
Line 152:19 Expected identifier but found whitespace
Line 152:21 Unexpected "{"
Line 152:30 Expected ":"
Line 152:59 Expected ":"
... and 10 more hidden warnings

**/
.custom-banner {
  width: 100%;
}

.custom-banner-section + .custom-features-section,
.custom-banner-section + .custom-image-grid-section,
.custom-banner-section + .custom-steps-section,
.custom-banner-section + .custom-banner-section,
.custom-banner-section + .custom-header-section,
.custom-banner-section + .custom-notice-bar-section,
.custom-features-section + .custom-banner-section,
.custom-image-grid-section + .custom-banner-section,
.custom-steps-section + .custom-banner-section,
.custom-header-section + .custom-banner-section,
.custom-notice-bar-section + .custom-banner-section {
  margin-top: 0;
}

.custom-banner__wrapper {
  padding-top: var(--spacing-sections-desktop);
  padding-bottom: var(--spacing-sections-desktop);
}

.custom-banner__container {
  position: relative;
  width: 100%;
  min-height: 50rem;
  overflow: hidden;
  border-radius: var(--media-radius);
}

.custom-banner__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(var(--color-foreground), 0.05);
}

.custom-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.custom-banner__content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50rem;
  padding: 6rem 2rem;
}

.custom-banner__content {
  background-color: rgb(var(--color-background));
  padding: 4rem;
  max-width: 60rem;
  text-align: center;
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset) var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
}

.custom-banner__heading {
  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)));
  margin: 0 0 2rem 0;
}

.custom-banner__text {
  margin: 0 0 2rem 0;
  font-size: 1.5rem;
  line-height: 1.6;
}

.custom-banner__text p {
  margin: 0;
}

.custom-banner__text p:not(:last-child) {
  margin-bottom: 1rem;
}

.custom-banner__button-wrapper {
  margin: 0;
}

/* Responsive styles */
@media screen and (max-width: 749px) {
  .custom-banner__wrapper {
    padding-top: var(--spacing-sections-desktop);
    padding-bottom: var(--spacing-sections-desktop);
  }

  .custom-banner__container {
    min-height: 40rem;
  }

  .custom-banner__content-wrapper {
    min-height: 40rem;
    padding: 4rem 1.5rem;
  }

  .custom-banner__content {
    padding: 3rem 2rem;
    max-width: 100%;
  }

  .custom-banner__heading {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .custom-banner__text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .custom-banner__content {
    padding: 3.5rem;
    max-width: 55rem;
  }
}

/* Section padding utility */
@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

@media screen and (max-width: 749px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }
}
