/*--------------------------------------------------------------
# Parallax Header
--------------------------------------------------------------*/
#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: 10px;
    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, var(--bs-body-color) 0%, var(--bs-body-color) 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: var(--bs-body-bg);
}