/* Hero animated words container */
.hero-words-container {
    height: 70px;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hero-words-container {
        height: 90px;
    }
}

/* Hero animated text */
.hero-word {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
    font-weight: 700;
    color: #ffffff;
    opacity: 0;
    transform: translateY(150px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .hero-word {
        font-size: 4.5rem;
    }
}

.hero-word.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-word.above {
    opacity: 0;
    transform: translateY(-150px);
}

.hero-word.below {
    opacity: 0;
    transform: translateY(150px);
}