boostrap row center code example
Example 1: centralize div bootstrap
<div class="row align-items-center justify-content-center">
<div class="col">This will be centered vertically and horizontally</div>
</div>
Example 2: .col-12 bootstrap
.col-12{
flex: 0 0 100%;
max-width: 100%;
}