.VideoPane {
    position: relative;
    overflow: hidden;
    background-color: #ececec;
    margin-bottom: 25px;
    height: 43vw;
}
.VideoPane video {
    position: absolute;
    z-index: 1;
    top: 0;
    width:100%;
    height:100%;
    /*  object-fit is not supported on IE  */
    object-fit: cover;
    opacity:1;
}
.VideoPane .container, .VideoPane .bottom-header-panel {
  z-index: 2;
  position: relative;
}

@media (min-width: 768px) {
  .VideoPane {height: 40vw;}

}

@media (min-width: 1200px) {
  .VideoPane {height: 40vw;}

}
