Give this a shot - adjust the text to fit snugly inside your progress bar, creating a sleek look. Utilize position: absolute;
span:hover,
span:active {
font-size: 150%;
color: black;
text-align: justify;
line-height: 1.8;
overflow: visible;
margin: 0 0 0 -15px;
}
span {
overflow: visible;
position: absolute;
}
.progress-bar {
height: 20px;
border-radius: 0px;
}
.centered{
text-align: center;
width: 100%;
margin: 8px 0 0 -20px;
}
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
</head>
<body>
<div class="row">
<div class="col col-12 col-md-2 col-lg-2 col-xl-2 col-offset-2 text-center">
<h5>MS-Access</h5>
</div>
<div class="col-8 col-offset-2">
<span class="text-center centered">0.6 to 1.5 LPA</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 3.63%; height: 40px;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
</body>