.heading-with-line {
    display: block;
    position: relative;
    text-transform: uppercase;
    font-weight: initial;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto
}

.heading-with-line:after,
.heading-with-line:before {
    content: "";
    position: absolute;
    height: 1px;
    border-bottom: 1px solid #001f49;
    width: 153px;
    top: 50%
}

.heading-with-line:before {
    left: -20px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.heading-with-line:after {
    right: -20px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.heading-with-line.cont__line-light:after,
.heading-with-line.cont__line-light:before {
    border-bottom: 1px solid #fff
}


