@media (max-width: 768px) {
    #navButtons{
        display: none;
    }
}

@media (min-width: 769px) {
    #mobileMenu{
        display: none;
    }
}

nav {
    top: 0;
    position: fixed;
    font-weight: 700;
    background-color: #103755;
    box-sizing:border-box;
    display: flex;
    width: 100%;
    height: 60px;
    justify-content: space-between;
    padding: 0px 50px;
    z-index: 999;
}

nav:after{
    position: fixed;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
}

nav div{
    display: flex;
    align-items: center;
    justify-items: center;
    width: fit-content;
}

nav div svg{
    height: 4vh;
    min-height: 30px;
    margin: 0px 2px;
}

nav div svg path{
    fill: white;
}

#compJuniorLogoTextoNav path{
    transform: translateX(-100%);
}

.navD path{
    animation: navDisabled 1s ease forwards;
    transform: translateX(-100%);
}

.navE path{
    animation: navEnabled 1s ease forwards;
    transform: translateX(0%);
}

@keyframes navDisabled {
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(-100%);
    }
}
@keyframes navEnabled {
    from{
        transform: translateX(-100%);
    }
    to{
        transform: translateX(0%);
    }
}

#menuModal{
    overflow: hidden;
    padding: 0px 30px;
    align-items: end;
    justify-content: space-evenly;
    height: 0px;
    background-color: #103755EE;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    top: 60px;
    right: 0px;
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: all 1s;
}

#menuModal a{
    display: none;
}

.menuActive{
    height: 250px !important;
}

.menuActive a{
    display: flex !important;
}


#menuIcon{
    font-size: 30px;
    color: white;
}