.elementor .noise-overlay{.noise-overlay{
 position: relative;
 overflow: hidden;
}

.noise-overlay::before{
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;

 background-image: url("data:image/svg+xml,svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'filter id='noise'feTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='5' stitchTiles='stitch'//filterrect width='100' height='100' filter='url(noise)' opacity='0.45'//svg");

 background-repeat: repeat;
 background-size: 250px 250px;

 mix-blend-mode: overlay;
 opacity: .35;

 pointer-events: none;
 z-index: 2;
}

.noise-overlay > *{
 position: relative;
 z-index: 3;
}\n}