/* HEADER */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background-color: var(--background-color);
    
    position: sticky;
    top: 0;
    z-index: 1000;
}

.full-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    height: auto;
    color: #1D1D1F;
}

.full-logo:hover {
    cursor: pointer;
}

.full-logo:hover {
    cursor: pointer;
}

.header-logo__image {
    height: 37px;
}

.header-logo__text {
    font-size: 26px;
    font-weight: 900;
    line-height: 42px;
    letter-spacing: 2%;
}

.header-logo__accent {
    color: var(--color-brand-primary);
}

.active {
    background-color: rgba(255, 255, 255, 0.9);
}

.header-menu {
    display: flex;
    flex-direction: row;
}

.lang-menu {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-left: 24px;
}

.lang-item-divider {
    height: 12px;
    margin: 0 12px;
    border-left: 1px solid #D9D9D9;
}

.lang-item {
    font-size: 14px;
    border: none;
    background-color: transparent;
    text-decoration: none;
    color: #737B80;
}

.lang-item:hover,
.active-link {
    cursor: pointer;
    color: var(--color-brand-primary);
}

/* MEDIA */
@media (min-width: 768px) {
    .header {
        padding: 20px 32px;
    }
}

@media (min-width: 1024px) {
    .header {
        padding: 20px 32px;
    }
}
