.hero {
    height: calc(100svh - var(--header-height) - var(--spacing-small));
    background: var(--white);
}

.hero .section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero .heading {
    font-size: clamp(90px, 28.13vi + 0px, 360px);
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: 0;
}

.hero .sub-heading {
    display: flex;
    column-gap: var(--spacing-default);
    row-gap: 0;
    flex-wrap: wrap;
    text-transform: uppercase;
    letter-spacing: .5ch;
    text-align: center;
}

.hero .sub-heading span {
    opacity: 0;
    transform: translateY(.25rem);
    animation: fadeIn 1s forwards;
    font-size: var(--font-size-medium);
}

.hero .sub-heading span:nth-child(1) {
    animation-delay: .5s;
}

.hero .sub-heading span:nth-child(2) {
    animation-delay: 1.25s;
}

.hero .sub-heading span:nth-child(3) {
    animation-delay: 2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .hero .sub-heading {
        margin-top: var(--spacing-large);
    }

    .hero .sub-heading span {
        width: 100%;
    }
}