.hero {
    --maxWidth: 45rem;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 4.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 6.5rem;
    }
}

.hero__decoration-one,
.hero__decoration-two {
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: block;
    width: 100%;
}

.hero__decoration-one {
    top: 0;
    left: 0;
}

.hero__decoration-two {
    top: 0;
    right: 0;
}

.hero__inner {
    margin-inline: auto;
    max-width: var(--maxWidth);
}

.hero__inner>:not(:first-child) {
    margin-top: 1rem;
}

.hero__title {
    color: #031732;
    text-align: center;
    font-style: normal;
    font-size: 4rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.25rem;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 5rem;
    }
}

.hero__body {
    color: var(--text-normal);
    text-align: center;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.0225rem;
}

.hero__cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
}