I'm trying to make a grid for a gallery with an expanding preview, showing the details. I am using the code from this nice article: https://tympanus.net/codrops/2013/03/19/thumbnail-grid-with-expanding-preview/ Everything works fine but I want to use Bootstrap 4 to make it responsive. The problem I'm facing is that the expansion is now inside the column, making it the same width instead of the full page width. Is there a way to make it full width or place the expansion outside the column?
<section class="films">
<div class="container-fluid">
<div id="og-grid" class="og-grid row">
<div class="movie col-md-4">
<a class="portfolio-box" href="http://cargocollective.com/jaimemartinez/" data-largesrc="images/portfolio/fullsize/1.jpg" data-title="Azuki bean" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
<img class="img-fluid" src="images/portfolio/thumbnails/1.jpg" alt="img01"/>
</a>
</div>
<div class="movie col-md-4">
<a class="portfolio-box" href="http://cargocollective.com/jaimemartinez/" data-largesrc="images/portfolio/fullsize/1.jpg" data-title="Azuki bean" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
<img class="img-fluid" src="images/portfolio/thumbnails/1.jpg" alt="img01"/>
</a>
</div>
<div class="movie col-md-4">
<a class="portfolio-box" href="http://cargocollective.com/jaimemartinez/" data-largesrc="images/portfolio/fullsize/1.jpg" data-title="Azuki bean" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
<img class="img-fluid" src="images/portfolio/thumbnails/1.jpg" alt="img01"/>
</a>
</div>
</div>
</div>
</section>
The original CSS: https://github.com/codrops/ThumbnailGridExpandingPreview/blob/master/css/component.css
And JS: https://github.com/codrops/ThumbnailGridExpandingPreview/blob/master/js/grid.js