.hr-text {
    border: 0;
    line-height: 1em;
    position: relative;
    text-align: center;
    height: 1.5em;
    font-size: 14px;
    margin: 15px 15px;
}

.hr-text::before {
    content: "";
    background: linear-gradient(to right, transparent, rgb(37, 36, 36), transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}

.hr-text::after {
    content: attr(data-content);
    position: relative;
    padding: 0 7px;
    line-height: 1.5em;
    color: #8d8d8d;
    background-color: #ffffff;
}