Hi @halima00,
I guess you mean the Header Image, which you can show on the homepage or your featured image display is set to fullwidth header, which means it inherits the header image options.
There is a theme option to remove the background-attachment property that is responsible for the parallax effect but is also showing only the top part of the image before page scroll.
To do that, go to appearance => customize => header image and remove the check on Header Image Parallax option. You can also play around with the Header Background Position theme option for more control.
Finally, if you want to keep the parallax effect on desktop but get rid of it on mobile, you can use the following css code (add it in appearance => customize => additional css):
@media(max-width:40rem){
.header-image-wrapper {
background-attachment: initial !important;
}
}