.header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 80px;
    height: auto;
    object-fit: cover;
}

.language {
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-text {
    display: inline-flex;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #757575;
    transition: all 0.3s linear;
}

.language-text:hover {
    color: var(--primary-500);
    transition: all 0.3s linear;
}

.language-text:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    margin-right: 8px;
    padding-right: 8px;
}

.language-text.active {
    color: var(--primary-500);
}


@media screen and (max-width: 576px) {

    .header {
        height: 62.4px;
    }

    .header-logo {
        width: 56px;
        height: auto;
        object-fit: cover;
    }

    .language-text {
        font-size: 14px;
        line-height: 20px;
        font-weight: 450;
    }
}