.full-width-image-cta {
    position: relative;
    z-index: 1;
}

.full-width-image-cta::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50px;
    width: calc(100% - 40px);
    height: calc(100% - 100px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
}

.bg-blue.full-width-image-cta::before {
    background: linear-gradient(180deg, rgba(21, 74, 146, 0.80) 0%, rgba(15, 28, 107, 0.80) 100%);
}

.full-width-image-cta__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.full-width-image-cta__wrap {
    position: relative;
    z-index: 2;
}

.full-width-image-cta__content {
    padding: 30px 22px;
}

.full-width-image-cta.img-position-top .full-width-image-cta__bg {
    object-position: top center;
}

.full-width-image-cta.img-position-bottom .full-width-image-cta__bg {
    object-position: bottom center;
}

.full-width-image-cta.img-position-left .full-width-image-cta__bg {
    object-position: center left;
}

.full-width-image-cta.img-position-right .full-width-image-cta__bg {
    object-position: center right;
}

.full-width-image-cta.img-position-center .full-width-image-cta__bg {
    object-position: center center;
}

.full-width-image-cta :where(h2, h3, h4, h5, h6) {
    margin-bottom: 16px;
    font-weight: 700;
    text-align: unset;
}

@media(min-width:768px){
    .full-width-image-cta::before {
        left: 0;
        top: 50px;
        width: calc(100% - 52px);
        height: calc(100% - 100px);
        border-radius: 0 200px 200px 0;
    }

    .full-width-image-cta__content {
        padding: 50px 100px 50px 0;
    }

    .full-width-image-cta--reverse .full-width-image-cta__content {
        padding: 50px 0 50px 100px;
    }

    .full-width-image-cta--reverse::before {
        left: auto;
        right: 0;
        top: 50px;
        width: calc(100% - 52px);
        height: calc(100% - 100px);
        border-radius: 200px 0 0 200px;
    }


}

@media(min-width:1200px){
    .full-width-image-cta::before {
        top: 90px;
        width: 60%;
        height: calc(100% - 180px);
        border-radius: 0 400px 400px 0;
    }

    .full-width-image-cta__content {
        padding: 90px 0 124px;
        max-width: 617px;
    }

    .full-width-image-cta--reverse .full-width-image-cta__content {
        padding: 90px 0 124px;
        max-width: 617px;
        margin-left: auto;
    }

    .full-width-image-cta--reverse::before {
        top: 90px;
        width: 60%;
        height: calc(100% - 180px);
        border-radius: 400px 0 0 400px;
    }

    .full-width-image-cta .full-width-image-cta__content h3 {
        font-size: 28px;
        line-height: 1.15em;
        margin-bottom: 30px;
    }

    .full-width-image-cta__content .example-block {
        padding-top: 10px;
    }

    .full-width-image-cta__wrap {
        --section-margins: 50px;
    }
}

@media(min-width:1600px){
    .full-width-image-cta::before {
        width: 56%;
    }

}