/* Site Language */
.site_lang {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 17px;
    position: relative;
    clear: both;
    margin-bottom: 20px;
}

.site_lang li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #becee3;
    cursor: pointer;
}

.site_lang li.active {
    color: #000;
}

.site_lang li:not(:first-child)::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #becee3;
    position: absolute;
    top: 5px;
    left: -10px;
}