.language-wrapper {
    padding: 0;
    margin: 30px 0 0 0;
    text-align: center;
}

.language-wrapper li {
    list-style: none;
    display: inline-flex;
}

.language-wrapper li:after {
    content: "|";
    width: 1px;
    height: 100%;
    display: inline-block;
    margin: 0 10px;
}

.language-wrapper li:last-child:after {
    content: "";
    width: 0px;
}

.language-wrapper li a {
    text-decoration: none;
    color: #480862;
}

.language-wrapper li.is-active a {
    font-weight: 600;
    text-transform: uppercase;
}


@media screen and (max-width: 996px) {
    .language-wrapper {
        text-align: left;
    }

    .language-wrapper li {
        list-style: none;
        display: block;
    }

    .language-wrapper li:after {
        content: "";
        width: 0px;
        margin: 0;
    }
}