JSFiddle - React, Tailwind, and code Playground
HTML
<div class="main_title">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Аренда длиномера <span>в минске и минской области</span></h1>
<div class="main_title-offer">
<p>Предлагаем в аренду длиномер 20-ти тонник в Минске и Минской области</p>
<p>Оплата: по безналу и наличными</p>
</div>
<h2>При заказе 5-ти смен, <span>постоянная скидка 5%</span><br />
10-ти смен, <span>постоянная скидка 10%</span> </h2>
</div>
</div>
</div>
</div>
CSS
.main_title {
background-color: #333333;
padding-top: 57px;
text-align: center;
text-transform: uppercase;
position: relative;
}
.main_title h1,
.main_title h2 {
color: #fff;
font-family: Impact, sans-serif;
text-transform: uppercase;
}
.main_title span{
color: #f7a404;
}
.main_title-offer {
font-size: 18px;
padding: 39px 0 30px;
color: #fff;
padding-bottom: 48px;
}
.main_title:after {
content: '';
display: block;
position: absolute;
border: 166px solid transparent;
border-top: 71px solid rgb(51, 51, 51);
display: block;
}