/*Navigations*/
#navigation
{
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    width: 100%;
    color: #D3DAD9;
    position: fixed;
    transition: 200ms;
    transform: translateY(10px);
}

#navigation .links
{
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

#navigation .links li
{
    font-size: 1.2rem;
    font-weight: lighter;
    color: #D3DAD9
}

#navigation .links li:hover
{
    text-decoration: underline;
}

#navigation .social-medias
{
    font-weight: bold;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

#navigation .social-medias li a svg
{
    fill: #D3DAD9;
    aspect-ratio: 1 / 1;
    transform: scale(1.5);
}

#navigation.noScroll
{
    background-color: rgb(0, 0, 0);
    backdrop-filter: blur(20px);
    transform: translateY(0);
}

#navigation.active
{
    background-color: transparent;
    backdrop-filter: none;
}

#burger-navigation
{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    z-index: 998;
    padding-top: 100px;
    position: fixed;
    width: 100%;
    height: 100%;
    right: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    transition: 200ms ease-in-out;
}

/*Logo (label)*/
.logo
{
    cursor: pointer;
    transition: 200ms;
    font-size: 1.2rem;
    font-weight: bold;
}

.logo.active
{
    color: black;
}

/*Burger button*/
#burger-button
{
    display: flex;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 25px;
    width: 25px;
    cursor: pointer;
}

#burger-button div
{
    width: 100%;
    height: 20%;
    background-color: #D3DAD9;
    transition: 200ms;
    transform-origin: center;
}

#burger-button.active div:nth-child(1) 
{
    transform: translateY(10px) rotateZ(45deg);
    background-color: black;
}

#burger-button.active div:nth-child(2) 
{
    opacity: 0;
    background-color: black;
}

#burger-button.active div:nth-child(3) 
{
    transform: translateY(-10px) rotateZ(-45deg);
    background-color: black;
}


/*Links in burger navigation*/
#burger-navigation .links
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#burger-navigation .links li
{
    color: black;
    font-size: 1.8rem;
    width: 100%;
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#burger-navigation .links li:hover
{
    text-decoration: underline;
}


#burger-navigation .links li a
{
    color: black;
    width: 100%;
    height: 100%;
}

#burger-navigation .social-medias
{
    display: flex;
    margin-top: 50px;
    justify-content: space-around;
    width: 100%;
    flex-direction: row;
    font-size: 1.8rem;
}

#burger-navigation .social-medias li a svg
{
    fill: black;
    transform: scale(2);
}


@media only screen and (min-width: 320px) 
{
     #navigation .links, #navigation .social-medias
     {
        display: none;
     }

    #burger-button
    {
        display: flex;
    }
}

@media only screen and (min-width: 768px) 
{
    #navigation .links, #navigation .social-medias
     {
        display: flex;
     }

    #burger-button
    {
        display: none;
    } 

    #burger-navigation
    {
        display: none;
    }

    .logo
    {
        color: #D3DAD9 !important;
    }
}

@media only screen and (min-width: 992px) 
{

}


@media only screen and (min-width: 1200px)
{
    
} 