.header {
    background-color: var(--color-white);
    color: black;
    box-shadow: 0rem 0.375rem 0.75rem rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.header span {
    font-size: 1.25rem;
    font-weight: 400;
}

.header__content {
    height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.help-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.help-img:hover {
    transform: scale(1.2);
}

.header__user-info {
    position: relative;
    display: inline-block;
    width: 3.125rem;
    height: 3.125rem;
}

.header__user-info img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    cursor: pointer;
}

.header__user-info span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-lightblue);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
}

.header__user-info:hover img,
.header__user-info:hover span {
    background-color: var(--color-headerhover);
}

.user-drop-down-menu {
    flex-direction: column;
    background-color: var(--color-maincolor);
    height: fit-content;
    width: 10.5rem;
    display: flex;
    justify-content: space-evenly;
    border-top-left-radius: 1.25rem;
    border-bottom-left-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    list-style: none;
    padding: 0.9375rem;
    margin-right: 2rem;
    position: absolute;
    right: 0;
    z-index: 100;
}

.user-drop-down-menu a {
    color: var(--color-white);
    transition: background-color 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: block;
}

.user-drop-down-menu a:hover {
    background-color: var(--color-navhover);
}

.header-wrapper {
    position: relative;
    max-width: 1920px;
}

@media screen and (max-width: 1024px) {
    .user-drop-down-menu {
        margin-right: 1rem;
    }
}