.relative {
	position: relative;
}

.relative > *:not(.absolute-img):not(.overlay):not(.overlay--darker):not(.overlay--light):not(.acf-img), .relative > .brxe-container > *:not(.absolute-img):not(.overlay):not(.overlay--darker):not(.acf-img) {
    z-index: 5;
}
/* Image */
.absolute-img {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}
.overlay--light {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(229 229 229 / 80%);
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    pointer-events: none;
}
.overlay--dark {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    pointer-events: none;
}