.hero-section-container {
    padding: 7.5rem var(--container-space);
}

.hero-horizontal .hero-section-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-vertical .hero-section-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.5rem;
}

.hero-section-container>h1 {
    font-size: 4.5rem;
    letter-spacing: -0.09rem;
}

.hero-section-container-description {
    font-size: 1.125rem;
    line-height: 140%;
}

.hero-vertical .hero-section-container-description {
    max-width: 34rem;
}



@media (max-width: 1200px) {
    .hero-section-container>h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-vertical .hero-section-container {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-section-container {
        padding: 5rem var(--container-space);
    }

    /* .hero-section-container>h1 {
        font-size: 3rem;
    } */

    .hero-section-container-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-horizontal .hero-section-container {
        gap: 2rem;
    }

    .hero-section-container>h1 {
        font-size: 3.5rem;
    }

    .home .hero-section-container>h1 {
        font-size: 2.5rem;
    }

    .hero-section-container>h1 br {
        display: none;
    }

    .hero-section-container-description {
        font-size: 0.875rem;
    }
    .hero-section-container-description br {
        display: none;
    }
}