.ce-gallery {
  margin-right: 10px;
}

.ce-image-background {
    background-image: var(--ce-image-background);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem;
}


.ce-image-background--behaviour-pattern {
	background-size: unset;
  background-repeat: repeat;
}

.ce-image-background--fade {
    position: relative;
}

.ce-image-background--fade::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.ce-image-background--fade > * {
    position: relative;
    z-index: 1;
}

.ce-image-background--parallax {
    background-attachment: fixed;
}