.hero-header {
    width: 100%;
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}
.hero-header::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
.hero-header--large {
    padding: 11rem 0;
}
.hero-header h1 {
    color: #fff;
}
.hero-header--large h1.scrolled span {
    display: block;
    text-align: center;
    animation: fade-in-bottom .8s ease-in-out both;
}
.hero-header--large h1.scrolled span:nth-of-type(1) {
    animation-delay: .5s;
}
.hero-header--large h1.scrolled span:nth-of-type(2) {
    animation-delay: 1s;
}
.hero-header--large h1.scrolled span:nth-of-type(3) {
    animation-delay: 1.5s;
}
.hero-header--large h1 {
    font-size: clamp(50px, 5vw, 95px);
}
.hero-header__img img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    object-fit: cover;
}
.hero-header__content {
    position: relative;
    z-index: 3;
}
.hero-header__video {
    display: block;
    position: absolute;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 16/9;
}
.hero-header__breadcrumbs {
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 13;
    font-size: 14px;
    padding-top: 1rem;
}
.hero-header__breadcrumbs a {
    color: #fff;
}
.hero-header__breadcrumbs a:hover,
.hero-header__breadcrumbs a:focus {
    color: var(--c-third);
}
.hero-header__breadcrumbs .breadcrumb_last {
    font-weight: 700;
    font-style: italic;
}