#parallax_header {
	overflow: hidden;
	display: block;
	position: relative;
    margin-top: -80px;
}	
.parallax-image {
    background-position: 0px -100px;
    background-size: cover;
    width: 100%;
}
.parallax-image::after {
    content: '';
    position: absolute;
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%;
    /*background: radial-gradient(circle, rgba(0,0,0,0.045) 0%, rgba(0,0,0,0.82) 100%);*/
    background: radial-gradient(circle, rgba(var(--bs-rm-body-bg),0.045) 0%, rgba(var(--bs-rm-body-bg),0.82) 100%);
}
.parallax-after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.parallax-after svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
}
.parallax-after .shape-fill {
    fill: rgba(var(--bs-rm-body-bg),1);
}