/* div#primary {
	position: relative;
}

div#primary::before {
    content: '';
    background-image: url(/wp-content/uploads/2024/08/45-reg.png);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.05;
/*     background-repeat: space; */
    background-size: contain;
}
 */

body {
	position: relative !important;
	background-color: green
}

body::before {
    content: '';
    background-image: url(/wp-content/uploads/2024/08/45-reg.png);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.05;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media all and (max-width: 1100px) {
	body::before {
	    margin: 0 40px;
	}
}


@media all and (max-width: 1024px) {
	body::before {
/* 	    background-size: contain; */
		background-size: 85%;
		background-repeat: repeat-y;
	}
	
	
}

@media all and (max-width: 430px) {
	body::before {
		background-size: 95%;
	    margin: 0 12px;
	}
}