.b2c-hero-video {
    width: 100%;
    min-height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.b2c-hero-video[data-aspect-ratio="16:9"] {
    aspect-ratio: 16 / 9;
}

.b2c-hero-video[data-aspect-ratio="2.75:1"] {
    aspect-ratio: 2.75 / 1;
}

.b2c-hero-video video {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
    object-fit: cover;
}

.b2c-hero-video h1 {
    z-index: 1;
    font-size: 48px;
    line-height: 60px;
    color: var(--pure-white);
    text-align: center;
    margin-top: 24px;
    margin-bottom: 16px;
}

.b2c-hero-video h5 {
    z-index: 1;
    font-size: 24px;
    color: var(--pure-white);
    text-align: center;
    margin-bottom: 3.5rem;
}

.b2c-hero-video .find-cruises-bar {
    position: absolute;
    top: calc(100% - (64px * 1.5));
}

/* -sm breakpoint */
@media (min-width: 576px) {
    .b2c-hero-video {
        min-height: 400px;
    }

    .b2c-hero-video h1 {
        font-size: 72px;
        line-height: 90px;
        margin-bottom: 32px;
    }

    .b2c-hero-video h5 {
        font-size: 30px;
    }
}

/* -md breakpoint */
@media (min-width: 768px) {
    .b2c-hero-video .find-cruises-bar {
        top: calc(100% - 64px);
    }

    .b2c-hero-video {
        justify-content: center;
    }
}

/* -lg breakpoint*/
@media (min-width: 992px) {

}

/* -xl breakpoint */
@media (min-width: 1200px) {
    .b2c-hero-video h1 {
        font-size: 96px;
        line-height: 120px;
    }
    

    .b2c-hero-video .find-cruises-bar {
        position: absolute;
        top: calc(100% - (72px / 2));
    }
}