JSFiddle - React, Tailwind, and code Playground
HTML
<div id="bannerWrapper_Services">
<img src="img/services-banner.jpg" />
<div id="banner">
<div class="title">SERVICES</div>
<div class="txt">is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</div>
</div>
</div>
CSS
#bannerWrapper_Services {
width: 100%;
height: 150px;
background-image: url(../img/services-banner.jpg);
background-repeat: no-repeat;
position: relative;
border-bottom: 3px solid #FFF;
box-shadow: 0px 2px 7px 1px #999999;
position:relative;
overflow:hidden;
}
#bannerWrapper_Services img{
position:absolute;
top:0px;
}
.bannerRightImage {
position: absolute;
height: 150px;
width: 148px;
right: 0px;
top: 0px;
z-index: 111;
}
#banner {
width: 996px;
height: 150px;
position:absolute;
z-index:1000;
background-color:gray;
}
#banner .title {
width: 350px;
height: auto;
float: left;
margin-left: 20px;
font-size: 35px;
margin-top: 15px;
font-family: 'Hammersmith One', sans-serif;
color: black;
}
#banner .txt {
width: 800px;
height: auto;
float: left;
margin-left: 20px;
font-size: 13px;
font-family: 'Hammersmith One', sans-serif;
color: black;
margin-top: 15px;
font-style: italic;
}