header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.header_shadow {
    position: absolute;
    top: 20px;
    left: 20px;
    box-shadow: -1px -5px 140px 75px rgba(0, 209, 193, 0.5);
}

.logo {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 24px;
    transition: all 0.4s ease;
}

.logo:hover {
    color: #00D1C1;
}

header nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

header nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 15px;
    color: #FFFFFF;
}

header nav ul li {
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

header nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.4s ease;
}

header nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.4s ease;
}

header nav ul li:hover > div a {
    color: #00D1C1;
}

header nav ul li:hover > div:first-child {
    transform: translateY(-120%);
}

header nav ul li:hover > div:last-child {
    transform: translateY(0%);
}

header nav ul li div:first-child {
    padding: 5px 10px;
    text-align: center;

    transition: transform 0.3s;
}

header nav ul li div:last-child {
    position: absolute;
    top: 0;
    padding: 5px 10px;
    transform: translateY(120%);
    transition: transform 0.3s;
}

/* .navbar {
    position: relative;
    display: flex;
    justify-content: center;
}

.navbar::after {
    position: absolute;
    content: '';
    background: rgba(255,194,0,1);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 71% 0, 100% 0, 93% 9%, 58% 11%, 35% 14%, 2% 0, 0 100%, 0 0, 13% 0);
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 86px;
    gap: 170px;
}

.navbarNav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.navbarNav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    font-weight: bold;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.navbarNav ul li {
    position: relative;

    cursor: pointer;

    transition: all 0.4s ease;

    overflow: hidden;
}

.navbarNav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.navbarNav ul li:hover > div a {
    color: #ffc200;
}

.navbarNav ul li:hover > div:first-child {
    transform: translateY(-120%);
}

.navbarNav ul li:hover > div:last-child {
    transform: translateY(0%);
}

.navbarNav ul li div:first-child {
    padding: 5px 10px;
    text-align: center;

    transition: transform 0.3s;
}

.navbarNav ul li div:last-child {
    position: absolute;
    top: 0;
    padding: 5px 10px;

    transform: translateY(120%);

    transition: transform 0.3s;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    height: 70px;
    cursor: pointer;

    line-height: inherit;
    white-space: nowrap;
    font-weight: bold;

    transition: all 0.4s ease;
}

.logo:hover {
    color: #ffc200;
}

.logo div {
    margin-top: 15px;
}

.logo i {
    font-size: 2.25rem;
}

.user {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    font-size: 1rem;
    line-height: inherit;
    white-space: nowrap;
    font-weight: bold;
    cursor: pointer;

    transition: all 0.4s ease;
}

.user:hover, .logoutI:hover {
    color: #ffc200;
}

.user i {
    font-size: 2.25rem;
}

.user div {
    margin-top: 15px;
}

.profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.logoutI {
    display: flex;
    align-items: center;
    font-size: 25px;
    transition: all 0.4s ease;
    cursor: pointer;
}

#disabled {
    color: grey;
}

#disabled:hover {
    color: grey;
}

.profile a {
    color: white;
    text-decoration: none;
}

.header a {
    color: white;
    text-decoration: none;
}

.navbar_a {
    display: none;
    font-size: 35px;
    transition: all 0.4s ease;
}

.navbar_a:hover {
    color: #ffc200;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    #navbar {
        display: none;
    }
    .navbar_a {
        display: block;
    }
    .logoutIC {
        display: none;
    }
    .user {
        width: auto;
    }
    .navbarNav {
        justify-content: flex-end;
        gap: 50px;
    }
}

@media screen and (max-width: 700px) {
    .header {
        gap: 0;
    }
}

@media screen and (max-width: 450px) {
    .navbarNav {
        gap: 25px;
    }
    .logo div {
        display: none;
    }
    .header {
        justify-content: space-between;
        padding: 20px;
    }
} */