@media screen and (max-width: 750px) {
  .responsive-video{ 
    max-width: 100%;
    height: auto;
  }
  
}
@media screen and (min-width: 750px) {
  .responsive-video{
    width: 100%;
    height: 100%;
  }
}