funding circle header - my version

Without using a pseudo element for underline

by Richard Hunter

HTML

<div class="container">
  <h2 class="not-funding-circle-header">Borrow more for your business with a CBILS loan</h2>
</div>

CSS

body {
  margin: 0;
}

.container {
  padding: 10px;
  border: dotted 2px dimgrey;
  margin: 10px;
}



.funding-circle-header:after {
  display: block;
  width: 3rem;
  height: .1875rem;
  margin-top: .5rem;
  background-color: #ff6b00;
  content: '';
}

.not-funding-circle-header {
  font-weight: 700;
  color: #75227d;
  font-family: Amasis, Georgia, serif;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
  border-bottom: solid 0.1em transparent;
  padding-bottom: 0.5em;
  border-image: linear-gradient(90deg, #ff6b00 20%, transparent 0) 5;
  transition: border-image 1.7s linear;
}
.not-funding-circle-header:hover {
  color: red;
  border-image: linear-gradient(90deg, #ff6b00 40%, green 0) 5;
}