The edges of the border are cut on the left side. This is the specific border design I am aiming for:
Here is my current code, what alterations should I implement?
<section class="started">
<div class="container">
<div class="row">
<div class="col-3">
<div class="box1 text-center">
<h3>All started in 1956</h3>
<h3>A fresh breeze of modern furniture in town!</h3>
</div>
</div>
</div>
</div>
</section>
.box1 {
height: 300px;
background: #fff;
position: relative;
}
.box1:before {
content: "";
position: absolute;
top: 0;
left: 0;
border-top: 12px solid #000000;
border-left: 12px solid #000000;
border-right: 12px solid #000000;
border-bottom: 12px solid #000000;
width: 0;
}