.bg-line-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: url(/assets/img/bg/bg-line.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    z-index: 1;
}

.bg-line-img:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    background: url(/assets/img/bg/bg-line.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    z-index: 1;
    transform: rotate(180deg);
}

/* Приховуємо на екранах менше 991px */
@media (max-width: 991px) {
    .bg-line-img:before,
    .bg-line-img:after {
        display: none;
    }
}