haeader {
	overflow: hidden;
	display: block;
	position: relative;

}	
.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);
}

 .parallax-image .text {
      position: absolute;
      bottom: 280px;
      background: rgb(0, 0, 0); /* Fallback color */
      background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
      color: #ffffff;
      width: 100%;
      padding: 20px;
      }


@media (max-width: 991px) {
 .parallax-image .text {
 /*display: none;*/
 position: absolute;
      bottom: 110px;
      background: rgb(0, 0, 0); /* Fallback color */
      background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
      color: #ffffff;
      width: 100%;
      padding: 20px;
}
}

