.topic-image-text__heroBanner {
    position: relative;
    width: 100%;
    height: 0;
    padding: 0 0 clamp(45rem, 45%, 45%);
}

.topic-image-text__heroBanner video {
    position: absolute;
    width: auto;
    height: 100%;
    max-width: initial;
    left: 50%;
    transform: translateX(-50%);
}

.topic-image-text--title-container__heroBanner {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    height: 100%;
    transform: translateY(-1.125rem);
}

.topic-image-text--title__heroBanner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    font-size: clamp(3.5rem, 5vw, 5rem);
    text-transform: initial;
}

.topic-image-text--caption__heroBanner {
    max-width: 60vw;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 300;
    text-wrap: auto;
    text-align: center;
}

.topic-image-text--caption__heroBanner p {
    text-align: center;
}

.topic-image-text--scrollTo__heroBanner {
    cursor: pointer;
}

.topic-image-text--scrollTo-dot__heroBanner {
    animation-name: scroll;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.topic-image-text--scrollTo-dot__heroBanner.dot1 {
    animation-delay: 0.333333s;
}

.topic-image-text--scrollTo-dot__heroBanner.dot2 {
    animation-delay: 0.166667s;
}

@keyframes scroll {
    to  {
        opacity: 0;
    }  
}

@media screen and (min-width: 64rem) /* 1024px */ {

    .topic-image-text--caption__heroBanner {
        max-width: 30vw;
    }

}