.parallax_title{
	position: absolute !important;
    top: 192px !important;
	margin-left: -130px !important;
	z-index: 1;
    background-color: currentColor;
}
.parallax_title h1, h2, h3, h4, h5, h6{
	margin: 0;
	padding: 0 2em 1em 0;
    /*
    filter: invert(100%);
	*/
}
.parallax_background{
    position: fixed;
    left: 0;
    background-color: currentcolor;
    top: calc(var(--scroll_offset) * 1%);
    width: 100vw;
    z-index: 0;
	transition: top 3s;
    animation: scrolling 10s;
    /* animation-iteration-count: infinite; */
}
.parallax_background .wp-block-image{
	margin-left: 50vw;
	height: max-content;
    width: max-content;
}
.parallax_background img{
    filter: blur(1px) grayscale(0.3) sepia(0);
    background-size: cover;
    mix-blend-mode: screen;
	transform: translateX(-50%);
}

.parallax_space{
    position: relative;
    z-index: 1;
    margin: 0 -1em;
    padding: 0 1em;;
}
.parallax_space h4{
    background-color: white;
    margin: -0.4em;
    padding: 0.4em;
}

.parallax_space .row div ::before{
     mix-blend-mode: difference;
    background-color: #efefef00;
    transform: scale(1.1);
}

.parallax_content{
    position: relative;
    z-index: 1;
    background-color: white;
    margin: -1em -0.2em;
    padding: 1.2em 2.2em;
}
