.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px 0 348px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 96px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    z-index: 2;
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
}

.header-left {
    font-size: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.header-menu {
    width: 150px;
    position: absolute;
    top: 96px;
    right: 0;
    margin-right: 24px;
    border-radius: 20px 0 20px 20px;
    padding: 10px;
    background-color: #2a3647;
    z-index: 3;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.header-subMenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-subMenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 46px;
    border-radius: 8px;
    text-decoration: none;
    color: #cdcdcd;
    font-size: 16px;
    padding: 4px 12px;
}

.header-subMenu a:hover {
    background-color: #2a3d59;
    transition: 0.1s ease-in-out;
}

.help {
    cursor: pointer;
}
.help:hover {
    transform: scale(1.1);
}

#myAccount {
    width: 56px;
    height: 56px;
    border: 3px solid #2a3647;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #29abe2;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

#myAccount:hover {
    background-color: #e2e6ec;
}

#overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
