.fc_contact_cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.fc_contact_cta .background_container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.fc_contact_cta.text_right .background_container {
    left: 0;
}

.fc_contact_cta.text_left .background_container {
    right: 0;
}

.fc_contact_cta:after {
    content: '';
    position: absolute;
    bottom: -10vw;
    right: 5%;
    background: center / cover no-repeat var(--logomark);
    width: clamp(200px, 25vw, 480px);
    aspect-ratio: 1;
    z-index: 1;
}

.fc_contact_cta.text_right:after {
    right: initial;
    left: 5%
}

.fc_contact_cta.text_right:before {
    content: '';
    background: linear-gradient(270deg, #001137 44.27%, rgba(21, 44, 106, 0.50) 57.92%, rgba(2, 15, 65, 0.00) 100%);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.fc_contact_cta.text_left:before {
    content: '';
    background: linear-gradient(90deg, #001137 44.27%, rgba(21, 44, 106, 0.50) 57.92%, rgba(2, 15, 65, 0.00) 100%);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.fc_contact_cta .wp_content {
    position: relative;
    z-index: 2;
}

.fc_contact_cta.text_right .wp_content {
    float: right;
}

.fc_contact_cta.text_right .wp_content > * {
    text-align: right;
}


@media (min-width: 800px) {
    .fc_contact_cta .wp_content {
        max-width: 65%;
    }
}

@media (max-width: 600px) {
    .fc_contact_cta:after {
        content: none;
    }
}

