I am trying to embed multiple Vimeo videos responsively aside and below each other. When I make use of embed-responsive the videos tend to differ a little in position when I use a couple of different of videos. however when I use the same video in all the divs they align perfectly.
![here a screenshot of the videos not aligning ]1
here is my code
<section id="gallery">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12 gallery">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://player.vimeo.com/video/209390725" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 gallery">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://player.vimeo.com/video/152162621" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 gallery">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://player.vimeo.com/video/150922044" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 gallery">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://player.vimeo.com/video/209398590" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</section>