.primary-hero {
    position: relative
}

.primary-hero--container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-inline: auto
}

.primary-hero--container::before {
    content: '';
    background: linear-gradient(0deg, rgba(0, 35, 36, 0) 78.41%, rgba(0, 35, 36, 0.5) 100%), linear-gradient(180deg, rgba(0, 35, 36, 0) 53.53%, #002324 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none
}

.primary-hero--content {
    position: absolute;
    color: var(--white);
    z-index: 1;
    bottom: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1440px;
    margin-inline: auto
}

@media screen and (min-width: 768px) {
    .primary-hero--content {
        padding: 80px
    }
}

@media screen and (min-width: 992px) {
    .primary-hero--content {
        flex-direction: row;
        align-items: flex-end;
        gap: 140px
    }
}

.primary-hero--content h1 {
    color: var(--white)
}

@media screen and (min-width: 992px) {
    .primary-hero--content p {
        max-width: 330px
    }
}

.primary-hero video {
    height: 700px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none
}

@media screen and (min-width: 992px) {
    .primary-hero video {
        height: 850px
    }
}