Bootstrap 4 sticky-top margin-top
Try:
.sticky-top { top: 0.5em; }
You need to use top
instead of margin-top
<div class="row">
<div class="col-lg-4">
<div class="sticky-top" style="top: 30px">
....
</div>
</div>
</div>