@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@800&family=Poppins&family=Roboto&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');

@font-face {
    font-family: MostraNuova;
    src: url('../Mostra Nuova/Mostra Nuova.otf');
    font-weight: normal;
    font-style: normal;
}

html{
    font-family: poppins;
    scroll-behavior: smooth;
}

header
{
    position: fixed;
    top: -4px;
    left: 0px;
    width: 100%;
    height: 90px;
    /* UI Properties */
    background: transparent ;
    z-index: 100;
}

header.scrolled
{
   background: linear-gradient(246deg, #643AB9 0%, #0AB47A 100%);
}

#headerContent
{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: 100%;
    width: 1600px;
    margin: auto;

}

#logo-titre
{
    display: flex;
    flex-direction: row;
    text-decoration: none;
    height: 70px;

    margin-top: 10px;
}

#logo-titre img
{
    width: 63px;
    height: 55px;
    margin-top: auto;
    margin-bottom: auto;
}

#logo-titre h1
{
    font-family: MostraNuova, fallback, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 34px;
    color: rgba(255,255,255,1);
    margin-top: auto;
    margin-bottom: auto;
}

nav
{
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
}
nav #flag
{
    width: 45px;
    height: 30px;
}
nav img
{

    width: 45px;
    height:30px;
    border-radius: 5px;
    background: #FFFFFF;
}

nav ul
{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: max-content;
    list-style-type: none;
    margin: 0;
    padding: 0;

}

nav ul li
{
    margin-left: 30px;
}

nav ul a
{
    font: normal normal 400 18px/0px Poppins;
    color: #FFFFFF;
    text-decoration: none;
}

nav ul a:hover
{
    text-decoration: underline;
}
.burger-menu {
    display: none;
    margin-top: auto;
    margin-bottom: auto;
    flex-direction: column;
    justify-content: space-around;
    width: max-content;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
      font: normal normal 300 34px/30px Poppins;
      color : #FFFFFF;
}

.burger-menu div {
    width: 40px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}


/*responsive*/
@media (max-width: 1600px)
{



    .full
    {
        height: 100%;
    }

    header{
        width: 100%;
        transition: height 0.5s;
    }

    #headerContent
    {
        width: 80%;
    }
    .burger-menu {
        display: flex;
        margin-top: 30px;
        right : 100px;
    }

    nav
    {
        height: 90px;

        margin-top: 0px;

        width: 20%;
    }

    nav #flag
    {
        margin-top:30px;
    }
    nav #language
    {
        margin:auto;
    }

    nav ul
    {
        height:60%;
        top:20%;
        transition-delay: 0.5s;
        position: fixed;
        left:50%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: center;

        transform: translate(-50%, 0);

    }
    nav ul li a{
        font :normal normal 600 36px/60px Poppins;
    }


    .show
    {
        display: flex;
    }
    .hide
    {
        display: none;
    }
}