Layout using Bootstrap not aligning correctly

The issue is due to box-sizing

Bootstrap expects box-sizing to be border-box to work properly, however in your second link it isn’t so.

A quick fix is to add this custom css to your project:

.row * {
    box-sizing: border-box;
}