If you would like to control the video height for certain screen resolution, then you will have to play around with css. When you apply this, for screen above 1280pixel, this video will resize it’s height to 60% viewer screen height. But as screen ratio, it will have black bar on both side Example:
/* under section > Advanced > Custom CSS */
@media only screen and (min-width: 1280px) {
selector, selector embed, selector video, selector iframe, selector .elementor-container {
height: 60vh;
}
selector .elementor-fit-aspect-ratio {
padding-bottom: 38%;
}
}