It should be simple enough, but I can't seem to find my mistake.
Goal: The entire markup should be centered with a width of col-10. Within the same 10-column width, there should be two divs each taking up 50% of the space.
Using Bootstrap 5, for some reason the right and left elements are stacking instead of being side by side.
Current Code:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="0c6e6363787f787e6d7c4c39223f223e">[email protected]</a>/dist/css/bootstrap.min.css" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<section class="slider-block slider-block-inv mb-0 pb-0 pb-md-5">
<div class="container">
<div class="row justify-content-center">
<div class="text-center col-10">
<h2 class="text-white">Title <span class="fw-bold">more</span></h2>
<strong style="color:#4EF4CB;">Session Title Goes Here:</strong>
<p class="pt-3">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit.</p>
</div>
<div class="row-cols-2">
<div class="col">left</div>
<div class="col">Right</div>
</div>
</div>
</div>
</section>