How can I prevent the hero image from being cropped on full screen in Chrome on Windows?

Hi,

I recently changed the site (littleblackdiamond.com) to the Debut theme.

I’m aware it’s a default on the Debut theme for the hero image to be cropped when full screen. For some reason, it doesn’t get cropped on Chrome and Safari on Mac and I wasn’t aware of this until today when my client viewed the site on Chrome on Windows/PC.

Is there a way to not have the hero image cropped when full screen or increase height of that section?

Here is how it looks - the top of the hero:

and bottom of the hero:

But when you shrink the browser, it resizes to fit everything okay:

Thanks in advance for any assistance.

Please place this code at the end of theme.scss

.slideshow__image {
background-size: contain;
}
@media only screen and (min-width: 750px) {
.slideshow {
    position: relative;
    max-height: 195vh;
}
}

Awesome, thank you so much @Hardik29418 !