I've been trying to remove the right side padding in my container-fluid without success.
There seems to be extra space where the red lines are marked.
I have attempted various methods to fix this issue but I can't seem to identify where this excessive padding is coming from?
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Airtel Internet Services">
<title>Airtel | Internet Services</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="index.css">
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="5d3f3232292e292f3c2d1d68736d736f">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
</head>
<style>
</style>
<body>
<!-- Introducing Airtel black -->
<style>
.container-fluid{
width:100%!important;
}
</style>
<div class="container-fluid" style="background-color:#101010;">
<div class="row">
<div class="col-lg-6">
<div style="padding-top:100px;">
<center>
<img src="https://assets.airtel.in/static-assets/homes/img/black-logo.png" style="width:160px;"><br><br><br>
<span style="font-size:2rem;color:white;">
Introducing Airtel Black</span><br><br>
<span style="color:white; font-size:20px;">Mobile. DTH. Fiber. Combine any two or more services in one plan.</span><br><br>
<button style="background-color:#4D0D0A;width:220px;color:white;border:none;border-radius:50px;padding:17px;font-size:19px;">JOIN NOW</button>
</center>
</div>
</div>
<div class="col-lg-6">
<img src="https://assets.airtel.in/static-assets/homes/img/main-img_new.jpg" style="width:600px;float:right;">
</div>
</div>
</div>
<div class="container-fluid" style="background-color:#2A2A2A;color:white;">
<div class="row">
<div class="container" style="padding-top:40px;">
<span style="font-size:30px;">Airtel Black benefits</span>
</div>
</div>
</div>
</body>
</html>
https://i.sstatic.net/0OX94.png
What I'm aiming for: My goal is to eliminate those unnecessary spaces so that my image will align perfectly with the right corner of the screen.
Thank you.