header {
    position: fixed;
    z-index: 398;
    height: 100px;
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px 0px 348px;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px 0px #0000001A;
}
.header-logo {
    height: 56px;
    position: absolute;
    top: 23px;
    left: 40px;
}
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.help-icon {
    cursor: pointer;
    transform-origin: 50% 50%;
}
.help-icon:hover {
    transform: scale(1.2);
}
.header-icons svg {
    fill:#2A3647;
}
#profile-initials-header {
    position: relative;
    font-weight: 700;
    background-color: white;
    color: #29ABE2;
    height: 56px;
    width: 56px;
    border-radius: 30px;
    border: solid 3px #2A3647;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#profile-initials-header:hover {
    background-color: #0c2e621f;
}
#dropdown {
    position: absolute;
    top: 100px;
    z-index: 1;
    width: auto;
    height: auto;
    right: 20px;
    border-radius: 20px 0 20px 20px;
    padding: 10px;
    background-color: var(--darkGray);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 8px;
    box-shadow: 0px 0px 4px 0px #0000001A;
}

#dropdown a {
    text-decoration: none;
    color: #CDCDCD;
    font-size: 16px;
    font-weight: 300;
    line-height: 19.2px;
    padding: 8px 16px 8px 16px;
}
#dropdown a:hover {
    background-color: #2A3D59;
}

nav {
    position: fixed;
    z-index: 399;
    width: 234px;
    height: 100%;
    background: #2A3647;
    box-shadow: 0px 0px 4px 0px #0000001A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.sidebar-main {
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
menu {
    width: auto;
    height: 229px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    margin: 72px 0 72px 0;
    padding-left: 0;
}
menu a {
    text-decoration: none;
    color: #CDCDCD;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 8px 59px 8px 70px;
}
menu a:hover {
    background-color: #2A3D59;
}

.footer-sidebar {
    color: #CDCDCD;
    padding-bottom: 5vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-sidebar a {
    text-decoration: none;
    color: #CDCDCD;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}
.footer-sidebar a:hover {
    color: #29ABE2;
}

.sidebar-mobile {
    height: 90px;
    position: fixed;
    z-index: 399;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--darkGray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
}
.sidebar-mobile a {
    width: 90px;
    height: 86px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}
.sidebar-mobile a img {
    height: 32px;
}