.card {
	background-color: #23366F;
    border-radius: 0;
}
.text-with-lines {
  position: relative; /* For positioning pseudo-elements */
  display: inline-block; /* Important for pseudo-element sizing */
  padding-top: 0.1em; /* Add some vertical spacing, adjust as needed */
  padding-bottom: 0.1em;
}
.text-with-lines::before,
.text-with-lines::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px; /* Line thickness */
  background-color: #5C81AA; /* Line color */
<!--   z-index: 1; /* Place behind the text */ -->
}
.text-with-lines::before {
  top: 0;
  left: 0;
}
.text-with-lines::after {
  bottom: 0;
  left: 0;
}