I have a line with three images and text overlaying them. I do not seem to see the left and right parts of the text being balanced in separate sections. It should look like this:

I can correctly get the text on the left, but I can not balance the text on the right and set the vertical channel between sections with a right or left border.
.practice-areas { h1 { font-weight: 600; font-size: 60px; font-family: 'Open Sans Condensed'; text-transform: uppercase; color: #ffffff; position: absolute; bottom: 10%; left: 50%; -moz-transform: translateX(-50%) translateY(-50%); -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); -webkit-font-smoothing: antialiased; } h5 { text-transform: uppercase; color: #ffffff; position: absolute; bottom: 10%; left: 65%; -moz-transform: translateX(-50%) translateY(-50%); -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); -webkit-font-smoothing: antialiased; } p { font-family: 'Open Sans Condensed'; font-size: 20px; text-transform: uppercase; color: #ffffff; position: absolute; bottom: 10%; left: 55.4%; -moz-transform: translateX(-50%) translateY(-50%); -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); -webkit-font-smoothing: antialiased; } .result { color: $grey; bottom: 7%; font-size: 16px; right: 38%; } .square-1 { background-image: url('https://placeholdit.imgix.net/~text?txtsize=33&w=350&h=150'); background-size: cover; height: 413px; @include breakpoint(xsmin) { height: 213px; } } .square-2 { background-image: url('https://placeholdit.imgix.net/~text?txtsize=33&w=350&h=150'); background-size: cover; height: 413px; @include breakpoint(xsmin) { height: 213px; } } .square-3 { background-image: url('https://placeholdit.imgix.net/~text?txtsize=33&w=350&h=150'); background-size: cover; height: 413px; @include breakpoint(xsmin) { height: 213px; } } }
<div class="row practice-areas"> <div class="row practice-areas"> <div class="col-lg-12"> <div class="col-lg-4 square-1"> <div class="left"> <h1 class="amount">$90.2</h1> <p class="million">million</p> <p class="result">text</p> </div> <div class="right"> <h5 class="case">COMPANY NAME</h5> </div> </div> <div class="col-lg-4 square-2"> <h1>$90.2</h1> <p>million</p> <p class="result">company</p> </div> <div class="col-lg-4 square-3"> <h1>$90.2</h1> <p>million</p> <p class="result">COMPANY</p> </div> </div> </div> </div>
source share