.cta__content {
    background: var(--main-colors-blue);
    border-radius: 20px;
    display: grid;
    grid-gap: var(--spacing-v2);
    padding-left: var(--spacing-half-of-v1);
    padding-right: var(--spacing-half-of-v1);
    justify-content: center;
}

.cta__content-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta__title {
    color: #fff;
}

.cta__subtitle {
    color: #fff;
    text-align: center;
}

.cta .se-buttons-group__text {
    color: #fff;
    text-align: center;
    opacity: .64;
}

@media screen and (min-width: 1536px) {
    .cta__content {
        background-image: url('/blog/wp-content/themes/se_theme/components/cta-block-new/assets/images/cta-exclude.svg'),
        url('/blog/wp-content/themes/se_theme/components/cta-block-new/assets/images/cta-exclude-2.svg');
        background-repeat: no-repeat;
        background-position: left -1px bottom, top right 160px;
    }
}

@media screen and (max-width: 767px) {
    .cta__title,
    .cta__subtitle {
        text-align: start;
    }

    .cta__content-text {
        gap: 20px;
    }
}