Hello, you can center the image and set it not cover the element, adding this css:
(css/custom.css)
@media (min-width: 992px) {
.page-header.page-header-modern.page-header-background {
padding: 150px 0 !important;
background-size: auto !important;
background-repeat: no-repeat !important;
background-position: center !important;
}
}
Same thing for the video, limit the width and center it, increading the height:
@media (min-width: 992px) {
[data-plugin-video-background] {
padding: 250px 0 !important;
}
[data-plugin-video-background] video {
max-width: 1280px !important;
}
}