/** Shopify CDN: Minification failed

Line 116:0 Unexpected "<"

**/
.full-bleed-hero {
  position: relative;
  z-index: 1;
}


.hero__media,
.hero__content {
    height: 100svh;
}

main .shopify-section:first-child :is(.hero__media, .hero__content) {
    height: calc(100svh - 2.4rem);
}

.hero__media > video {
    object-fit: cover;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 8.2rem 1.6rem 1.6rem;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 1;
}


.hero__content-inner {
    background-color: var(--bone);
    padding: 1.6rem;
    max-width: 27rem;
    border-radius: var(--rounded);
    border: 0.5px solid var(--darkBlue25);
}

.hero__content-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 1.2rem;
    padding-top: 1.2rem;
    border-top: 0.5px solid var(--darkBlue25);
}

.hero__content-heading h2 {
    margin: 0;
}

.hero__content-inner .body {
    margin: 1.2rem 0;
}

.hero__content-inner .button-wrapper {
    margin-top: 2.4rem;
}

@media screen and (max-width: 989px) {
    .hero__content-heading h2 {
        font-size: 2rem;
    }
}

/* Desktop Layouts */
@media screen and (min-width: 990px) {
    .hero__content-inner {
        max-width: 34rem;
        position: sticky;
        bottom: 1.6rem;
        margin-bottom: 1.6rem;
    }
    main .shopify-section:first-child :is(.hero__media) {
        padding-bottom: 56.25%; /* 16:9 aspect ratio */;
    }
    main .shopify-section:first-child :is(.hero__content) {
        padding-bottom: 0;
        height: 100%;
    }
    .hero__content.layout-top-left {
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .hero__content.layout-top-right {
        justify-content: flex-start;
        align-items: flex-end;
    }
    
    .hero__content.layout-bottom-left {
        align-items: flex-start;
        justify-content: flex-end;
    }
    
    .hero__content.layout-bottom-right {
        justify-content: flex-end;
        align-items: flex-end;
    }
        .hero__content.layout-center-left {
        align-items: flex-start;
        justify-content: center;
    }
       .hero__content.layout-center-right {
        align-items: flex-end;
        justify-content: center;
    }
}
<div
  class="hero__content layout-{{ section.settings.layout }} sc-mob-layout-{{ section.settings.layout_mob }} scroll-trigger animate--fade-in"
  style="--mobile-padding-top: {{ section.settings.mobile_padding_top }}px;"
>


