I have a code snippet with one row and two columns. I would like to embed a video from Vimeo in the first column so that it fills the entire column without any padding. Additionally, I want the two columns to be right next to each other with no space between them.
.video iframe {
width: 100%;
}
.lesson-pager {
background-color: #00000081;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container">
<div class="row video-row no-gutters">
<div class="col-lg-8">
<div class="video">
<iframe src="https://player.vimeo.com/video/42582007" width="640" height="360" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
</div>
</div>
<div class="col-lg-4 lesson-pager">
<div class="lesson-title">
<h4>Lesson title</h4>
</div>
</div>
</div>
</div>