.cta-banner__container {
    text-align: center;
    padding-top: 70px;
    height: 263px;
    border-radius: 16px;
    background-color: var(--bg-color);
    border-color: var(--bg-color);
}

.cta-banner__content {
    height: 123px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-banner__txt {
    font-size: 30px;
    font-weight: 700;
    line-height: 33px;
    color: var(--txt-color);
}

.cta-banner__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin: 0 auto;
    padding-right: 40px;
    padding-left: 40px;
    font-size: 18px;

    background-color: var(--btn-color);
    border: 2px solid var(--btn-color);
    border-radius: 100px;

    cursor: pointer;
    transition: all 0.4s ease;
} 

.cta-banner__btn a {
    font-weight: 700;
    color: var(--bg-color);
    text-decoration: none;
    transition: color 0.4s ease;
}

.cta-banner__btn:hover {
    background-color: var(--bg-color);
    border: 2px solid var(--btn-color);
}

.cta-banner__btn:hover a {
    color: var(--btn-color);
    text-decoration: none;
}

@media only screen and (max-width: 576px) {
    .cta-banner__container {
        width: auto;
        margin-left: 10px;
        margin-right: 10px;
    }

    .cta-banner__content {
        height: auto;
    }

    .cta-banner__txt {
        margin-bottom: 20px;
    }
}