.cta {
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.cta__container {
    padding: 50px;
}

.cta__text {
    line-height: 140%;
    display: block;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 650px;
}

.cta__button {
    color: var(--primary-color);
    background: #fff;
    border: 1px solid #fff;
}

.cta__button:hover {
    background:var(--primary-color);
    color: #fff;
}

@media (max-width:990px) {
    .cta {
        background-position: center;
    }

    .cta__container {
        padding: 20px;
        background-position: left;
    }

    .cta__button {
        width: 100%;
    }
}