.fb-hero-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.fb-hero-slide .fb-hero-slide-media {
    position: relative;
    overflow: hidden;
    background: #e5e5e5;
}

.full-bleed-hero-carousel.size-p0 .fb-hero-slide .fb-hero-slide-media {
    min-height: 26rem;
}

.full-bleed-hero-carousel.size-p1 .fb-hero-slide .fb-hero-slide-media {
    min-height: 34rem;
}

.full-bleed-hero-carousel.size-p0 .fb-hero-slide[data-media-type="video"] .fb-hero-slide-media,
.full-bleed-hero-carousel.size-p1 .fb-hero-slide[data-media-type="video"] .fb-hero-slide-media {
    min-height: 0;
}

.fb-hero-slide[data-media-type="video"] .fb-hero-slide-media {
    background: #000;
}

.fb-hero-slide[data-media-type="video"] .fb-hero-slide-media.has-video-aspect-ratio {
    aspect-ratio: var(--fb-hero-media-aspect-ratio);
}

.fb-hero-slide .fb-hero-picture,
.fb-hero-slide .fb-hero-image,
.fb-hero-slide .fb-hero-video {
    width: 100%;
    height: 100%;
    display: block;
}

.fb-hero-slide .fb-hero-image,
.fb-hero-slide .fb-hero-video {
    object-fit: cover;
}

.fb-hero-slide[data-media-type="video"] .fb-hero-video {
    height: auto;
    object-fit: contain;
}

.fb-hero-slide[data-media-type="video"] .fb-hero-slide-media.has-video-aspect-ratio .fb-hero-video {
    height: 100%;
}

.fb-hero-slide .fb-hero-video.desktop {
    display: none;
}

.fb-hero-slide .fb-hero-video.mobile {
    display: block;
}

.fb-hero-slide .fb-hero-video.fallback {
    display: block;
}

.fb-hero-slide .fb-hero-media-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.fb-hero-slide .fb-hero-slide-content {
    --banner-color: #fff;
    --banner-inverted-color: #111;
    position: relative;
    z-index: 3;
    color: var(--banner-color);
    padding: 1.5rem 1.25rem 2rem;
}

.fb-hero-slide .fb-hero-slide-content.text-color-dark {
    --banner-color: #111;
    --banner-inverted-color: #fff;
}

.fb-hero-slide .fb-hero-slide-content.text-color-light {
    --banner-color: #fff;
    --banner-inverted-color: #111;
}

.fb-hero-slide .fb-hero-slide-content.text-alignment-left {
    text-align: left;
}

.fb-hero-slide .fb-hero-slide-content.text-alignment-center {
    text-align: center;
}

.fb-hero-slide .fb-hero-slide-content.text-alignment-right {
    text-align: right;
}

.full-bleed-hero-carousel.content-placement-inside-media .fb-hero-slide .fb-hero-slide-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.2rem 1.25rem 2.5rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 12%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
}

.full-bleed-hero-carousel.content-placement-inside-media .fb-hero-slide .fb-hero-slide-content > * {
    pointer-events: auto;
}

.full-bleed-hero-carousel.content-placement-inside-media .fb-hero-slide .fb-hero-slide-content.vertical-top {
    top: 0;
    bottom: auto;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.55) 100%);
}

.full-bleed-hero-carousel.content-placement-inside-media .fb-hero-slide .fb-hero-slide-content.vertical-center {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: none;
}

.full-bleed-hero-carousel.content-placement-outside-media .fb-hero-slide .fb-hero-slide-content {
    background: #fff;
    color: var(--banner-color);
    padding: 1.8rem 1.25rem 2rem;
}

.full-bleed-hero-carousel.content-placement-outside-media.controls-placement-outside-media .fb-hero-slide .fb-hero-slide-content {
    padding-bottom: 0;
}

.fb-hero-slide .fb-hero-upper-description p,
.fb-hero-slide .fb-hero-description p {
    margin: 0;
    font-size: var(--fb-hero-upper-description-size-desktop, inherit);
}

.fb-hero-slide .fb-hero-upper-description {
    margin-bottom: 0.7rem;
}

.fb-hero-slide .fb-hero-upper-description.grey {
    color: #d6d6d6;
}

.fb-hero-slide .fb-hero-title h1,
.fb-hero-slide .fb-hero-title h2,
.fb-hero-slide .fb-hero-title h3,
.fb-hero-slide .fb-hero-title h4,
.fb-hero-slide .fb-hero-title h5,
.fb-hero-slide .fb-hero-title h6 {
    color: inherit;
    line-height: 1;
    margin: 0;
    font-size: var(--fb-hero-title-size-desktop, 3rem);
    letter-spacing: -0.02em;
}

.fb-hero-slide .fb-hero-title .futura-font {
    font-family: "Nike Futura", HelveticaNeue, sans-serif;
}

.fb-hero-slide .fb-hero-description {
    margin-top: 1rem;
}

.fb-hero-slide .fb-hero-description p {
    font-size: var(--fb-hero-description-size-desktop, inherit);
}

.fb-hero-slide .fb-hero-buttons {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
}

.fb-hero-slide .fb-hero-slide-content.text-alignment-center .fb-hero-buttons {
    justify-content: center;
}

.fb-hero-slide .fb-hero-slide-content.text-alignment-right .fb-hero-buttons {
    justify-content: flex-end;
}

.fb-hero-slide .fb-hero-buttons .btn {
    border: 0;
    border-radius: 999px;
    background: var(--banner-color);
    color: var(--banner-inverted-color);
    padding: 0.55rem 1.2rem;
    position: relative;
    z-index: 4;
}

.fb-hero-slide .fb-hero-buttons .btn:hover {
    opacity: 0.85;
}

.fb-hero-slide .fb-hero-buttons .btn.fb-hero-watch-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.fb-hero-slide .fb-hero-watch-icon {
    display: block;
    width: 0.68rem;
    height: 0.76rem;
    flex: 0 0 auto;
    transform: translateY(0.01rem);
}

.fb-hero-slide .fb-hero-watch-icon path {
    fill: currentColor;
}

body.fb-hero-watch-open {
    overflow: hidden;
}

.full-bleed-hero-carousel.is-watch-open {
    z-index: 1055;
}

.full-bleed-hero-carousel.is-watch-open .fb-hero-navigation,
.full-bleed-hero-carousel.is-inline-watch-open .fb-hero-navigation {
    visibility: hidden;
}

.fb-hero-slide .fb-hero-watch-overlay {
    position: fixed;
    top: var(--fb-hero-watch-offset-top, 0);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1055;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(17, 17, 17, 0.96);
}

.fb-hero-slide .fb-hero-watch-overlay.is-open {
    display: flex;
}

.fb-hero-slide .fb-hero-watch-dialog {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #111;
}

.fb-hero-slide .fb-hero-watch-video {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: contain;
}

.fb-hero-slide .fb-hero-watch-close,
.fb-hero-slide .fb-hero-inline-watch-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(248, 251, 255, 0.88);
    color: #5b6470;
    cursor: pointer;
}

.fb-hero-slide .fb-hero-inline-watch-close {
    display: none;
    z-index: 7;
}

.fb-hero-slide.is-inline-watch .fb-hero-inline-watch-close {
    display: inline-flex;
}

.fb-hero-slide .fb-hero-watch-close::before,
.fb-hero-slide .fb-hero-watch-close::after,
.fb-hero-slide .fb-hero-inline-watch-close::before,
.fb-hero-slide .fb-hero-inline-watch-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 1.5px;
    background: currentColor;
}

.fb-hero-slide .fb-hero-watch-close::before,
.fb-hero-slide .fb-hero-inline-watch-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.fb-hero-slide .fb-hero-watch-close::after,
.fb-hero-slide .fb-hero-inline-watch-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.fb-hero-slide .fb-hero-watch-close:hover,
.fb-hero-slide .fb-hero-inline-watch-close:hover {
    background: rgba(244, 248, 253, 0.96);
}

.fb-hero-slide .fb-hero-watch-close:focus,
.fb-hero-slide .fb-hero-inline-watch-close:focus {
    outline: 2px solid #007dff;
    outline-offset: 2px;
}

.fb-hero-slide .fb-hero-watch-close span,
.fb-hero-slide .fb-hero-inline-watch-close span {
    display: none;
}

.fb-hero-slide .fb-hero-inline-watch-controls {
    position: absolute;
    right: 1.85rem;
    bottom: 1.35rem;
    left: 1.85rem;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fb-hero-slide.is-inline-watch .fb-hero-inline-watch-controls {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fb-hero-slide .fb-hero-inline-watch-control {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.fb-hero-slide .fb-hero-inline-watch-control:focus {
    outline: none;
}

.fb-hero-slide .fb-hero-inline-watch-toggle {
    border: 2px solid transparent;
}

.fb-hero-slide .fb-hero-inline-watch-toggle:focus {
    border-color: #1d9bf0;
}

.fb-hero-slide .fb-hero-inline-watch-icon {
    position: relative;
    display: block;
    color: currentColor;
}

.fb-hero-slide .fb-hero-inline-watch-icon-play {
    display: none;
    width: 1.35rem;
    height: 1.35rem;
    margin-left: 0.1rem;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 32'%3E%3Cpath d='M5.2 2.8C3.1 1.5.4 3 .4 5.4v21.2c0 2.4 2.7 3.9 4.8 2.6l18.2-10.6c2.1-1.2 2.1-4.2 0-5.4L5.2 2.8z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 32'%3E%3Cpath d='M5.2 2.8C3.1 1.5.4 3 .4 5.4v21.2c0 2.4 2.7 3.9 4.8 2.6l18.2-10.6c2.1-1.2 2.1-4.2 0-5.4L5.2 2.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fb-hero-slide .fb-hero-inline-watch-icon-pause {
    width: 1rem;
    height: 1.25rem;
}

.fb-hero-slide .fb-hero-inline-watch-icon-pause::before,
.fb-hero-slide .fb-hero-inline-watch-icon-pause::after {
    content: '';
    position: absolute;
    top: 0.05rem;
    width: 0.28rem;
    height: 1.1rem;
    border-radius: 999px;
    background: currentColor;
}

.fb-hero-slide .fb-hero-inline-watch-icon-pause::before {
    left: 0.16rem;
}

.fb-hero-slide .fb-hero-inline-watch-icon-pause::after {
    right: 0.16rem;
}

.fb-hero-slide.is-inline-watch-paused .fb-hero-inline-watch-icon-play {
    display: block;
}

.fb-hero-slide.is-inline-watch-paused .fb-hero-inline-watch-icon-pause {
    display: none;
}

.fb-hero-slide .fb-hero-inline-watch-icon-volume {
    width: 1.42rem;
    height: 1.35rem;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 66 64'%3E%3Cpath d='M1 18h18L40 2.5c2.6-2 6.2-.1 6.2 3.2v52.6c0 3.3-3.6 5.2-6.2 3.2L19 46H1z'/%3E%3Crect x='50' y='23' width='5.2' height='18'/%3E%3Crect x='60.4' y='18' width='5.2' height='28'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 66 64'%3E%3Cpath d='M1 18h18L40 2.5c2.6-2 6.2-.1 6.2 3.2v52.6c0 3.3-3.6 5.2-6.2 3.2L19 46H1z'/%3E%3Crect x='50' y='23' width='5.2' height='18'/%3E%3Crect x='60.4' y='18' width='5.2' height='28'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fb-hero-slide .fb-hero-inline-watch-icon-volume::before,
.fb-hero-slide .fb-hero-inline-watch-icon-volume::after {
    content: none;
}

.fb-hero-slide.is-inline-watch-muted .fb-hero-inline-watch-icon-volume {
    opacity: 0.8;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 66 64'%3E%3Cpath d='M1 18h18L40 2.5c2.6-2 6.2-.1 6.2 3.2v52.6c0 3.3-3.6 5.2-6.2 3.2L19 46H1z'/%3E%3Cpath d='M51 22l14 20M65 22L51 42' stroke='%23000' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 66 64'%3E%3Cpath d='M1 18h18L40 2.5c2.6-2 6.2-.1 6.2 3.2v52.6c0 3.3-3.6 5.2-6.2 3.2L19 46H1z'/%3E%3Cpath d='M51 22l14 20M65 22L51 42' stroke='%23000' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fb-hero-slide .fb-hero-inline-watch-progress {
    --fb-hero-inline-watch-progress: 0%;
    flex: 1 1 auto;
    min-width: 4rem;
    height: 1.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.fb-hero-slide .fb-hero-inline-watch-progress:focus {
    outline: none;
}

.fb-hero-slide .fb-hero-inline-watch-progress::-webkit-slider-runnable-track {
    height: 0.25rem;
    border-radius: 999px;
    background: linear-gradient(to right, #fff 0%, #fff var(--fb-hero-inline-watch-progress), rgba(255, 255, 255, 0.56) var(--fb-hero-inline-watch-progress), rgba(255, 255, 255, 0.56) 100%);
}

.fb-hero-slide .fb-hero-inline-watch-progress::-webkit-slider-thumb {
    width: 0.85rem;
    height: 0.85rem;
    margin-top: -0.3rem;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.fb-hero-slide .fb-hero-inline-watch-progress::-moz-range-track {
    height: 0.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
}

.fb-hero-slide .fb-hero-inline-watch-progress::-moz-range-progress {
    height: 0.25rem;
    border-radius: 999px;
    background: #fff;
}

.fb-hero-slide .fb-hero-inline-watch-progress::-moz-range-thumb {
    width: 0.85rem;
    height: 0.85rem;
    border: 0;
    border-radius: 50%;
    background: #fff;
}

.fb-hero-slide .fb-hero-inline-watch-time {
    flex: 0 0 auto;
    min-width: 2.8rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    text-align: right;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.fb-hero-slide .fb-hero-inline-watch-icon-fullscreen {
    width: 1.15rem;
    height: 1.15rem;
    background:
        linear-gradient(currentColor, currentColor) right top / 0.5rem 2px no-repeat,
        linear-gradient(currentColor, currentColor) right top / 2px 0.5rem no-repeat,
        linear-gradient(currentColor, currentColor) left bottom / 0.5rem 2px no-repeat,
        linear-gradient(currentColor, currentColor) left bottom / 2px 0.5rem no-repeat;
}

.fb-hero-slide.is-inline-watch .fb-hero-slide-content,
.fb-hero-slide.is-inline-watch .fb-hero-media-link {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fb-hero-slide.is-inline-watch .fb-hero-video {
    cursor: auto;
}

.brand-theme .fb-hero-slide {
    background: var(--brand-bg);
}

.brand-theme .fb-hero-slide .fb-hero-slide-media {
    background: var(--brand-bg);
}

.brand-theme .full-bleed-hero-carousel.content-placement-outside-media .fb-hero-slide .fb-hero-slide-content {
    --banner-color: var(--brand-text);
    --banner-inverted-color: var(--brand-bg);

    background: var(--brand-bg);
    color: var(--brand-text);
}

.brand-theme .full-bleed-hero-carousel.content-placement-outside-media .fb-hero-slide .fb-hero-upper-description.grey {
    color: rgba(255, 255, 255, 0.64);
}

.brand-theme .full-bleed-hero-carousel.content-placement-outside-media .fb-hero-slide .fb-hero-buttons .btn:hover {
    background: #cacacb;
    color: #111;
    opacity: 1;
}

@media (min-width: 821px) {
    .fb-hero-slide .fb-hero-video.desktop {
        display: block;
    }

    .fb-hero-slide .fb-hero-video.mobile {
        display: none;
    }

    .fb-hero-slide .fb-hero-video.fallback {
        display: block;
    }

    .full-bleed-hero-carousel.size-p0 .fb-hero-slide .fb-hero-slide-media {
        min-height: 34rem;
    }

    .full-bleed-hero-carousel.size-p1 .fb-hero-slide .fb-hero-slide-media {
        min-height: 48rem;
    }

    .fb-hero-slide .fb-hero-slide-content {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .full-bleed-hero-carousel.content-placement-inside-media .fb-hero-slide .fb-hero-slide-content {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 767.98px) {
    .full-bleed-hero-carousel.size-p0 .fb-hero-slide .fb-hero-slide-media {
        min-height: 24rem;
    }

    .full-bleed-hero-carousel.size-p1 .fb-hero-slide .fb-hero-slide-media {
        min-height: 30rem;
    }

    .fb-hero-slide .fb-hero-slide-content.mobile-text-color-dark {
        --banner-color: #111;
        --banner-inverted-color: #fff;
    }

    .fb-hero-slide .fb-hero-slide-content.mobile-text-color-light {
        --banner-color: #fff;
        --banner-inverted-color: #111;
    }

    .fb-hero-slide .fb-hero-title h1,
    .fb-hero-slide .fb-hero-title h2,
    .fb-hero-slide .fb-hero-title h3,
    .fb-hero-slide .fb-hero-title h4,
    .fb-hero-slide .fb-hero-title h5,
    .fb-hero-slide .fb-hero-title h6 {
        font-size: var(--fb-hero-title-size-mobile, 2.25rem);
    }

    .full-bleed-hero-carousel.content-placement-inside-media .fb-hero-slide .fb-hero-slide-content.vertical-center {
        transform: translateY(-50%);
    }

    .fb-hero-slide .fb-hero-upper-description p {
        font-size: var(--fb-hero-upper-description-size-mobile, inherit);
    }

    .fb-hero-slide .fb-hero-description p {
        font-size: var(--fb-hero-description-size-mobile, inherit);
    }

    .fb-hero-slide .fb-hero-watch-overlay {
        top: var(--fb-hero-watch-offset-top, 60px);
        align-items: flex-start;
        background: #111;
    }

    .fb-hero-slide .fb-hero-watch-dialog {
        align-items: flex-start;
    }

    .fb-hero-slide .fb-hero-watch-video {
        width: 100%;
        height: auto;
        max-height: 100%;
    }

    .fb-hero-slide .fb-hero-watch-close,
    .fb-hero-slide .fb-hero-inline-watch-close {
        top: 0.8rem;
        right: 0.8rem;
        width: 1.45rem;
        height: 1.45rem;
    }

    .fb-hero-slide .fb-hero-watch-close::before,
    .fb-hero-slide .fb-hero-watch-close::after,
    .fb-hero-slide .fb-hero-inline-watch-close::before,
    .fb-hero-slide .fb-hero-inline-watch-close::after {
        width: 0.58rem;
        height: 1px;
    }

    .fb-hero-slide .fb-hero-inline-watch-controls {
        right: 0.9rem;
        bottom: 0.85rem;
        left: 0.9rem;
        gap: 0.65rem;
    }

    .fb-hero-slide .fb-hero-inline-watch-control {
        width: 2rem;
        height: 2rem;
    }

    .fb-hero-slide .fb-hero-inline-watch-time {
        min-width: 2.45rem;
        font-size: 0.875rem;
    }
}
