#header {
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.header_user_container {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding-right: 24px;
    align-items: center;
}

.header_user_container img {
    cursor: pointer;
}

.HeaderSlogan {
    position: fixed;
    top: 20;
    left: 350px;
    color: black;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

#header_user_image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: #29ABE2;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border: solid 3px #2A3647;
    border-radius: 40px;
    cursor: pointer;
}

#header_modal_container{
    width: 100%;
    position: fixed;
    top: 103px;
    right: 16px;
    display: flex;
    z-index: 5;
}

#header_modal {
    margin: 0;
    position: fixed;
    top: 103px;
    right: 16px !important;
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px 0px 20px 20px;
    background: var(--Version-2-main-color, #2A3647);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.10);
}

#header_modal a {
    color: white;
    padding: 8px 16px;
}

@media(max-width:1000px) {
    .HeaderSlogan {
        display: none;
    }
}