.hero-homepage-wrapper {
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
    --aspect-ratio: 1440/670;
}

.hero-homepage {
    background-color: var(--blue100);
    color: #FFF;
    /* position: relative; */
    width: 100%;
}

.hero-homepage__body {
    max-width: 660px;
    padding-top: 65px;
    position: relative;
    z-index: 2;
}

.hero-homepage__title {
    display: block;
    font-weight: 700;
    font-size: 68px;
    line-height: .921875;
    margin: 0;
}

.hero-homepage__text {
    font-size: 22px;
    line-height: 1.5454545455;
    letter-spacing: .005em;
    margin: 0.9090909091em 0 0;
    font-weight: 500;
}

.hero-homepage__badge {
    width: 99px;
    margin-top: 40px;
    z-index: 2;
}

.hero-homepage__badge svg {
    width: 100%;
}

.hero-homepage video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.relative {
    position: relative;
}

/* ANIM */
.hero-homepage__swirl {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #FFF;

    animation-name: scaleInHero;
    animation-duration: 5000ms;
    animation-direction: alternate;
    animation-timing-function: var(--easingPrinciple);
    animation-iteration-count: infinite;
    /* transform-origin: center top; */
}

.hero-homepage__swirl svg {
    opacity: .36;
}

@keyframes scaleInHero {
    from { transform: scale(2) translate(18%, 30%); }
    to { transform: scale(1.8) translate(18%, 30%); }
}


@media(min-width: 992px) {
    .hero-homepage {
        min-height: 680px;
        display: flex;
    }
    .hero-homepage__body {
        padding-top: 80px;
    }
    .hero-homepage__title {
        display: block;
        font-weight: 700;
        font-size: 128px;
        line-height: .921875;
    }
    .hero-homepage__badge {
        position: absolute;
        top: 80px;
        right: 0;
        width: 125px;
        margin-top: 0;
    }
}