header {
    width: 100%;
    height: 5vh;
}

@media screen and (min-width: 0px) and (max-width: 1024px) {
    .symbole2 {
        position: fixed;
        display: flex;
        text-align: center;
        width: 100px;
        margin: 3px 10px;
    }

    .symbole {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    header {
        width: 100%;
        height: 5vh;
    }

    /* Sidenav menu */
    .menu {
        height: 100%;
        width: 250px;
        position: fixed;
        z-index: 1;
        top: 0;
        right: -250px;
        background-color: rgb(40, 159, 0);
        padding-top: 60px;
        transition: right 0.5s ease;
    }

    /* Sidenav menu links */
    .menu a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 20px;
        color: #e6e6e6;
        display: block;
        transition: 0.3s;
    }

    .menu a:hover {
        color: rgb(255, 255, 255);
    }

    .menu ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    /* Active class */
    .menu.active {
        right: 0;
    }

    /* Close btn */
    .menu .close {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
    }

    /* Icône burger */
    .burger-icon {
        float: right;
        margin-right: 20px;
        margin-top: 32px;
    }

    .burger-icon span {
        display: block;
        width: 35px;
        height: 5px;
        background-color: rgb(40, 159, 0);
        margin: 6px 0;
    }

}

@media screen and (min-width: 1024px) {
    header {
        width: 100%;
        height: 15vh;
    }

    .symbole2 {
        display: none;
    }

    .close {
        display: none;
    }
}

nav {
    position: fixed;
    width: 100%;
    height: 95px;
    background-color: #fff;
    transition: 0.5s ease;
}

nav ul {
    padding: 0;
    text-align: center;
    margin: 0;
    float: right;
    margin-top: 20px;
    transition: 1s;
}

nav ul li {
    display: inline-block;
    padding: 20px;

}

nav ul li a:not(hover) {
    text-decoration: none;
    color: rgb(83, 83, 83);
    font-size: 16px;
    transition: 0.5s ease;
}

nav ul li a:hover {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 16px;
    transition: 0.5s ease;
}

.symbole {
    position: fixed;
    float: left;
    margin: 16px 36px;
    width: 300px;
}

nav.scroll ul {
    background-color: #3c9500;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgb(0, 0, 0);
}

nav .title {
    position: inherit;
    padding-top: 150px;
    padding-right: 110px;
    font-size: 40px;
    float: right;
    background-image: linear-gradient(#ffffff, #f8f8f8);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}



/*footer*/

footer {
    display: flex;
    justify-content: center;
    background-color: #0acc00;
}