.the_split_content_cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: clamp(20px,4vw, 40px);
    align-items: center;
}

.cta-CallToAction_ImageContainer {
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}



.cta-CallToAction_Image {
    position: relative;
    z-index: 1;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 250px;
    width: 100%
}

@media (min-width: 768px) {
    .cta-CallToAction_Image {
        max-width:none;
        width: auto
    }
}

.cta-CallToAction_ImageBackground {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden
}

@media (min-width: 450px) {
    .cta-CallToAction_ImageBackground {
        top:-1rem
    }
}

.cta-CallToAction_ImageBackground svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 228px;
    height: 380px
}

@media (min-width: 450px) {
    .cta-CallToAction_ImageBackground svg {
        width:600px;
        height: 1000px
    }
}


@media (max-width: 640px) {
    .the_split_content_cta {
        display: block;
        text-align: center;
    }
}