/* === Custom Block Styling === */
.imageContentBlock{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin: var(--CB-margin-top) var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
}

.imageContentBlock{
    position: relative;
    z-index: 12;
}
.imageContentBlock::before{
    content: '';
    width: 325px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 5%;
    top: -64px;
    z-index: 15;
}
.imageContentBlock::after{
    content: '';
    width: 250px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 5%;
    bottom: -100px;
    z-index: 15;
}

@media screen and (max-width: 1450px){
    .imageContentBlock::before{
        width: 300px;
    }
    .imageContentBlock::after{
        width: 225px;
    }
}
@media screen and (max-width: 1250px){
    .imageContentBlock::before{
        width: 275px;
    }
    .imageContentBlock::after{
        width: 200px;
    }
}
@media screen and (max-width: 1099.98px){
    .imageContentBlock::before{
        width: 225px;
    }
}
@media screen and (max-width: 991.98px){
    .imageContentBlock::before{
        display: none;
    }
    .imageContentBlock{
        padding-top: 64px !important;
    }
}
@media screen and (max-width: 767px){
    .imageContentBlock::after{
        display: none;
    }
    .imageContentBlock{
        padding-bottom: 64px !important;
    }
}



/* Home Page Variation */
/* .home .imageContentBlock{
    padding-bottom: 0px !important;
}
@media screen and (max-width: 991.98px){
    .home .imageContentBlock::after,
    .home .imageContentBlock::before{
        display: none;
    }
} */