#hero-cta {
    background-color: #000;
    color: #fff;
    padding: 110px 0 80px 0;
}
#hero-cta .container {
    max-width: 768px;
    flex-direction: column;
    align-items: center;
}
#hero-cta-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 67.2px;
    text-align: center;
    margin: 0 0 24px 0;
}
#hero-cta-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
    margin: 0 0 40px 0;
}
#hero-cta-btn-wrapper {
    gap: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1080px) {
    #hero-cta {
        padding: 60px 0 30px 0;
    }
    #hero-cta-title {
        font-size: 30px;
        font-weight: 700;
        line-height: 36px;
        max-width: 360px;
        margin: 0 auto 24px auto;
    }
    #hero-cta-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: center;
        margin: 0 auto 40px auto;
    }
    #hero-cta-btn-wrapper {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}