Hi Sabine,
Thanks for the clarification.
Could you please confirm whether you want to use the same design pattern, with the tiles pulled up over the hero section, on all pages or only on specific pages?
If you want the same effect on all or other pages, we can apply the same CSS class to the relevant sections/addons and then use custom CSS such as:
position: relative;
top: -120px;
The -120px value can be adjusted based on the exact visual requirement.
At the moment, you are trying to pull up a section that contains another div/element inside it. Because of this structure, changing the margin-top value may not produce the expected result. Using position: relative with an appropriate top value should give us better control over the positioning.
Thanks!