You could attempt to do something like this:
iframe {
width: 825px; // you define your standar width and height
height: 464px;
@media screen and (max-width: 1000px){ // then for your responsive you do this or only this.
width: calc(84vw);
height: calc(47vw)
}
}