/* Default styles for larger screens */
.page-heading {
    background-position-x: initial; /* or any other value you want for larger screens */
}

/* Media query for mobile view */
@media screen and (max-width: 385px) {
    .page-heading {
        background-position-x: -900px !important;
    }
}
/* Media query for mobile view */
@media screen and (max-width: 550px) and (min-width: 385px) {
    .page-heading {
        background-position-x: -490px !important;
    }
}
