.section-cta {
    background-color: #052E44;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding-block: 5rem;
    background-position: center;
    position: relative;
    z-index: 1;
    clip-path: ellipse(95% 100% at 50% 100%);
}

.section-cta::after {
    content: '';
    background-image: url(../../img/pattern5.png);
    inset: 0;
    position: absolute;
    z-index: -1;
}

.cta__content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.cta__title {
    font-size: 2.75rem;
    text-align: center;
    text-wrap-style: balance;
    line-height: 1.25;
}

.cta__text {
    font-size: 1rem;
    line-height: 1.25;
    text-align: center;
    text-wrap-style: balance;
}

.cta__button:hover {
    color: #fff;
    background-color: #BE202F;
}

.cta__button {
    background-color: #fff;
    color: #052E44;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 1.25rem;
    padding: 0.75rem 1.25rem;
    display: inline-block;
    transition: 0.5s;
}

@media (max-width:991.98px) {
    .cta__title {
        font-size: 1.75rem;
    }

    .section-cta {
        padding-block: 3rem;
    }
}