.tertiary-hero {
    position: relative
}

.tertiary-hero--container {
    position: relative;
    display: flex;
    max-width: 1920px;
    margin-inline: auto
}

.tertiary-hero--container::before {
    content: '';
    background: linear-gradient(352deg, rgba(0, 35, 35, 0) 80.12%, rgba(0, 35, 35, 0.5) 94.26%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none
}

.tertiary-hero--content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 16px;
    background: var(--white);
    width: calc(100% - 16px);
    max-width: 1000px
}

@media screen and (min-width: 768px) {
    .tertiary-hero--content {
        width: calc(100% - 48px)
    }
}

@media screen and (min-width: 992px) {
    .tertiary-hero--content {
        padding: 32px 80px
    }
}

.tertiary-hero--breadcrumb {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
}

@media screen and (min-width: 992px) {
    .tertiary-hero--breadcrumb {
        left: 80px
    }
}

.tertiary-hero--breadcrumb ol.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    row-gap: 8px
}

.tertiary-hero--breadcrumb span,
.tertiary-hero--breadcrumb a {
    color: var(--white);
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 1.4px;
    text-transform: uppercase
}

.tertiary-hero--breadcrumb>* {
    position: relative
}

.tertiary-hero--breadcrumb ol.breadcrumb>*:not(:last-child)::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--light-green);
    -webkit-mask: url("../images/chevron-right.svg") no-repeat center;
    mask: url("../images/chevron-right.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
}

.tertiary-hero--breadcrumb a::before {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--white);
    position: absolute;
    bottom: 0px;
    left: 0;
    opacity: 0;
    transition: all .2s ease
}

.tertiary-hero--breadcrumb a:hover::before,
.tertiary-hero--breadcrumb a:first-child::before {
    opacity: 1
}

.tertiary-hero img {
    height: 500px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none
}