.brxe-icon-box h4 {
    margin-block-end: 1rem;
}

.link-underline {
  position: relative;
}

.link-underline::before {
  content: '';
  width: 0;
  height: 1px;
  border-radius: 2px;
background-color: var(--underline, #121212);
  position: absolute;
  bottom: -0.25rem;
  right: 0;
  transition: right 0.4s, width 0.4s, left 0.4s;
}

.link-underline:hover::before {
  width: 100%;
  left: 0;
}