.fc_call_to_actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--gap-l);
}

.the_cta {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.the_cta .image-switch {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    z-index: 0;
    background-position: center right;
}
.the_cta:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(270deg, #303E47 46.96%, rgba(48, 62, 71, 0.00) 100%);
}

.the_cta .icon {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    z-index: 2;
    background: no-repeat center right / auto;
}

.the_cta .wp_content {
    flex-basis: 50%;
    padding: var(--padding-m);
    position: relative;

    z-index: 3;
}

@media (max-width: 1024px) {
    .fc_call_to_actions {
        grid-template-columns: 1fr;
    }
}