#pk_flex_content .flex_layout.product_single + .flex_layout.cta > div{
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.flex_layout.cta .cta_container{
    grid-column: 2 / 12;
    width: 100%;
    display: flex;
    gap: 2rem;
}


.flex_layout.cta .background_image,
.flex_layout.cta .content_wrapper{
    background: var(--mahogany);
    border-radius: 1.5rem;
    color: white;
}

.flex_layout.cta .content_wrapper{
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.flex_layout.cta .style_backdrop{
    z-index: -1;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: inline-block;
}



.flex_layout.cta .content_wrapper .circle_1,
.flex_layout.cta .content_wrapper .circle_2{
    position: absolute;
}

.flex_layout.cta .content_wrapper .circle_1{
    left: 0px;
    top: 0px;
    height: 350%;
    transform: translate(-40%, -40%);
    aspect-ratio: 1;
}

.flex_layout.cta .content_wrapper .circle_2{
    right: 0px;
    bottom: 0px;
    height: 400%;
    transform: translate(40%, 50%);
    aspect-ratio: 1;
}





.flex_layout.cta .content_wrapper > div{
    max-width: 700px;
}

.flex_layout.cta .content_wrapper h1,
.flex_layout.cta .content_wrapper h2,
.flex_layout.cta .content_wrapper h3,
.flex_layout.cta .content_wrapper h4,
.flex_layout.cta .content_wrapper h5,
.flex_layout.cta .content_wrapper h6{
    color: white;
}


.flex_layout.cta .background_image{
    max-width: 336px;
    flex-shrink: 0;
    overflow: hidden;
}

.flex_layout.cta .background_image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.flex_layout.cta .content_wrapper{
    padding-block: 3rem;
    padding-inline: 3rem;
}

.flex_layout.cta .button_wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}


@media only screen and (max-width: 1100px){
    .flex_layout.cta .cta_container{
        grid-column: 1 / -1;
    }
    
    .flex_layout.cta .content_wrapper{
        padding-block: 2rem;
        padding-inline: 2rem;
    }
}

@media only screen and (max-width: 767px){
    .flex_layout.cta .content_wrapper{
        padding-block: 1.5rem;
        padding-inline: 1.5rem;
    }
    
    .flex_layout.cta .background_image{
        display: none;
    }
}