.header {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: #FFF;
    box-shadow: 0 4px 6px 0 #E9F8FF;
    display: flex;
    padding: 0 24px;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    cursor: pointer;
}

.header-logo img {
    height: 43px;
    flex-shrink: 0;
    width: auto;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 100%;
}

.header-menu-item {
    position: relative;
    padding: 10px 0;
    height: 100%;
}

.menu-item-href {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    height: 100%;
    cursor: pointer;
    align-items: center;
}

.header-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-language {
    position: relative;
    margin-right: 4px;
}

.header-language-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.header-language-item img {
    width: 24px;
    height: 16px;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.header-language-item p {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.header-language-item svg {
    width: 16px;
    height: 16px;
}

.header-control-icon {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .header-control,
    .header-menu {
        display: none;
    }
}