.line-text {
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.line-text::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: black;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.line-text p {
  background-color: var(--bs-white);
  padding-left: 10px;
  padding-right: 10px;
  z-index: 1;
}