I'm currently working on creating a two-column layout, one for text and the other for an image. Everything appears correctly on desktop view, but on mobile devices, the image column is not showing up. How can I adjust it so that on mobile devices, the image column appears first in full width after the navbar, before the text column?
<div class="container-fluid">
<div class="row">
<!--Text Column-->
<div class="col-sm-6 sec-1">
<h1>Frank Kreutzer</h1>
<h2>Frontend Web Developer</h2>
<p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.</p>
</div>
<!--Image Column-->
<div class="col-sm-6 sec-2"></div>
</div>
</div>
For reference, here's a codepen link to the page: https://codepen.io/Frankk97/pen/QBBNym/