.before {
    position: relative;
    padding-left: 0.5em;
}

.before::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
    z-index: 1;
    width: 2px;
    background-color: var(--primary-color);
}

li.before.nobefore::before {
	display:none!important;
}

footer ul .before {
    position: relative;
    padding-left: 1em;
}

footer ul .before::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
    z-index: 1;
    width: 2px;
    background-color: var(--primary-color);
}

footer ul.cat-flex {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em;
}

footer .page-wrapper article.full {
	width:100%!important;
}

@media only screen and (max-width: 991px) {
	footer ul.cat-flex {
    display: block;
}
	
	footer ul .before::before {
    display:none!important;
}
}