Hi,
that image is not cropped, but rather "resized" with CSS settings.
Here is default CSS style used for images in Page Title Section:
.sp-page-title {
padding: 140px 0 110px 0;
position: relative;
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: cover;
background-attachment: fixed;
background-color: #666;
text-align: center;
z-index: 10;
}
Override background-size value from "cover" to "contain" and should be as you want probably.
Custom CSS Example:
.sp-page-title {background-size: contain;}