@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff1d6;
    min-height: 100vh;
    overflow-x: hidden;
}

.return-top i {
    font-size: 12pt;
}

.return-top {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99;
    border: none;
    background-color: #ed3b2f;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin: 15px;
    color: #fff;
}


#menu {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    border: none;
    background-color: #ed3b2f;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin: 15px;
    color: #fff;
}


#menu i {
    cursor: pointer;
    color: #fff;
}

#menu button {
    border: none;
    background-color: transparent;
}

.don {
    position: absolute;
    right: 20px;
    top: 60px;
    background-color: #359381;
    border-radius: 30px;
    font-size: 13pt;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* Style Home Page */

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
}

.logo {
    width: 150px;
    font-size: 2em;
    color: #359381;
    pointer-events: none;
    margin-right: 100px;
}

.navigation a {
    text-decoration: none;
    color: #359381;
    padding: 6px 15px;
    border-radius: 20px;
    margin: 0 10px;
    font-weight: 600;
    font-size: 13pt;
}

.navigation a:hover,
.navigation a.active {
    background: #359381;
    color: #fff;
}

.parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    width: 100%;
}

/* Pour les écrans plus petits, ajustez la hauteur */
/* @media only screen and (max-width: 1500px) {
    .parallax {
        height: 96vh;
    }
}

@media only screen and (max-width: 1450px) {
    .parallax {
        height: 90vh;
    }
}

@media only screen and (max-width: 1350px) {
    .parallax {
        height: 85vh;
    }
}

@media only screen and (max-width: 1300px) {
    .parallax {
        height: 80vh;
    }
}

@media only screen and (max-width: 1250px) {
    .parallax {
        height: 80vh;
    }
}

@media only screen and (max-width: 1200px) {
    .parallax {
        height: 75vh;
    }
}

@media only screen and (max-width: 1125px) {
    .parallax {
        height: 70vh;
    }
}

@media only screen and (max-width: 1050px) {
    .parallax {
        height: 65vh;
    }
}

@media only screen and (max-width: 898px) {
    .parallax {
        height: 60vh;
    }
}

@media only screen and (max-width: 892px) {
    .parallax {
        height: 56vh;
    }
}

@media only screen and (max-width: 838px) {
    .parallax {
        height: 52vh;
    }
}

@media only screen and (max-width: 780px) {
    .parallax {
        height: 50vh;
    }
}

@media only screen and (max-width: 750px) {
    .parallax {
        height: 47vh;
    }
} */

#text {
    position: relative;
    font-size: 5em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
}

#text404 {
    position: relative;
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
    top: 20px;
    z-index: 999;
}


.parallax img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    height: 100%;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
}
#burger_menu {
    display: none;
}

#menu {
    animation: slideIn 1s forwards;
}

#burger_menu.active {
    position: fixed;
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    background-color: #FCA43C;
    min-height: 100vh;
    height: 100%;
    width: 300px;
    top: 0;
    z-index: 999;
    padding-top: 15px;
    animation: slideIn 0.7s forwards;
}

#burger_menu li:hover {
    color: #359381;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

#burger_menu a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
}

#burger_menu li {
    padding: 15px;
    list-style: none;
    display: flex;
    justify-content: center;
    font-size: 25px;
    color: #107256;
}

.logoburger {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

#logo_burger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
}

#burger_menu.active .closeNav {
    border: none;
    font-size: 26px;
    background-color: transparent;
    position: absolute;
    right: 0;
    width: 50px;
}

#burger_menu.close {
    position: fixed;
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    background-color: #FCA43C;
    min-height: 100vh;
    height: 100%;
    width: 300px;
    top: 0;
    z-index: 999;
    padding-top: 15px;
    animation: slideOut 0.7s forwards;
}

/* ------------------------------------ Actualité ------------------------------------ */
.actualite {
    position: relative;
    background-color: #c93c35;
}

.parallax_actu {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    margin-bottom: -108vh;
    padding: 60em;
    overflow: hidden;
    margin-top: -55em;
    z-index: 1;
}

@media (max-width: 412px) {
    .parallax_actu img {
        width: 100%;
    }
}

.parallax_actu img {
    width: 100%;
}

.parallax_actu .img_actu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 10;
}

.plant3 {
    position: absolute;
    margin-top: 16em;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 10;

}

.actualite h2 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
}

.actualite p {
    font-size: 1.5em;
    color: #fff;
    font-weight: 300;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1em;
    margin-bottom: 1em;
}

.body_slider {
    display: flex;
    padding: 0 35px;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    z-index: 15;
}

.wrapper {
    display: flex;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.wrapper i {
    top: 50%;
    height: 44px;
    width: 44px;
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

.wrapper i:active {
    transform: translateY(-50%) scale(0.9);
}

.wrapper i:hover {
    background: #f2f2f2;
}

.wrapper i:first-child {
    left: -22px;
    display: none;
}

.wrapper i:last-child {
    right: -22px;
}

.wrapper .carousel {
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.carousel.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

.carousel.dragging .img_caroussel {
    pointer-events: none;
}

.carousel .img_caroussel {
    height: 380px;
    object-fit: cover;
    user-select: none;
    margin-left: 14px;
    width: calc(100% / 3);
}

.carousel .img_caroussel:first-child {
    margin-left: 0px;
}

@media screen and (max-width: 1050px) {
    .carousel .img_caroussel {
        width: calc(100% / 2);

    }
}

@media screen and (max-width: 800px) {
    .carousel .img_caroussel {
        width: 100%;

    }
}


.contenus_img {
    z-index: 20;
}

.plant2 {
    margin-top: 5em;
}

/* ------------------------------------ Projet ------------------------------------ */

.feuilles {
    position: absolute;
    margin-top: -44em;
    left: 10%;
    width: 100%;
    pointer-events: none;

}

#feuille_2 {
    left: -10%;
}

.feuilles_2 {
    position: absolute;
    margin-top: -20em;
    margin-left: -10em;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.projet {
    position: relative;
    background: #fff1d6;
    padding: 100px;
    height: 100%;
}

.projet h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #1cbf91;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 1em;
}

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1em;
    margin-bottom: 1em;
    position: relative;
    transform: translateX(250px);
    opacity: 0;
    transition: 2s all ease;
    z-index: 10;
}

.section p {
    font-size: 1.5em;
    color: #000;
    font-weight: 300;
    margin: 1em;
    align-items: center;
    text-align: justify;
}

.section img {
    width: 30vw;
    height: 18aavw;
    align-items: center;
    text-align: center;
    padding: 1em;
    margin-bottom: 1em;
}

.section.active {
    transform: translateX(0);
    opacity: 1;
}

@media screen and (max-width: 800px) {
    .section {
        display: flex;
        flex-direction: column-reverse;
    }

    #project2 {
        display: flex;
        flex-direction: column;
    }

    .projet {
        padding: 5px;
    }

    .projet img {
        width: 50%;
    }
}

/* ------------------------------------ Objectifs ------------------------------------ */

.sec {
    position: relative;
    background: #c93c35;
    padding: 100px;
}

.sec h2 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
}

.sec p {
    font-size: 1.5em;
    color: #fff;
    font-weight: 300;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1em;
    margin-bottom: 1em;
}

.title_green {
    font-size: 3em;
    margin-bottom: 10px;
    color: #1cbf91;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 100px auto;
}

.container {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    animation: movedown 1s linear forwards;
    opacity: 1;
}

.container:nth-child(1) {
    animation-delay: 0s;
}

.container:nth-child(2) {
    animation-delay: 1s;
}

.container:nth-child(3) {
    animation-delay: 2s;
}

.text-box {
    padding: 20px 30px;
    background: #fff;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
    transform: translateY(-250px);
    opacity: 0;
    transition: 2s all ease;
}

.text-box.active {
    transform: translateY(0);
    opacity: 1;
}

.left-container {
    left: 0;
}

.right-container {
    left: 50%;
}

.container h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    z-index: 10;
    background-color: blue;
}

.right-container h4 {
    left: -20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: #FCA43C;
    left: 50%;
    top: 0;
    margin-left: -3px;
    z-index: 1;
    animation: moveline 3.5s linear forwards;
}

@keyframes moveline {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.text-box h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

.left-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
    right: -15px;
}

.right-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    left: -15px;
}

#card1 {
    background-color: #1cbf91;
    z-index: 1;
}

#card2 {
    background-color: #fca43c;
}

#card3 {
    background-color: #ed3b2f;
    z-index: 1;
}

#title1 {
    background-color: #1cbf91;
}

#title2 {
    background-color: #fca43c;
}

#title3 {
    background-color: #ed3b2f;
}

@media screen and (max-width: 600px) {
    .timeline {
        margin: 50px auto;
    }

    .timeline::after {
        left: 31px;
    }

    .container {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .text-box {
        font-size: 13px;
    }

    .right-container {
        left: 0;
    }

    .left-container h4,
    .right-container h4 {
        left: 10px;
    }

    .left-container-arrow,
    .right-container-arrow {
       display: none;
    }
}

.container.visible {
    animation: movedown 1s linear forwards;
    opacity: 1;
}

.objectifs {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #fff1d6;
    overflow-x: hidden;
}

.parallax_obj {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: -83vh;
    padding: 60em;
    overflow: hidden;
    margin-top: -30em;
}

.parallax_obj .img_obj {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.plant3_obj {
    position: absolute;
    margin-top: 16em;
    left: 0;
    width: 100%;
    pointer-events: none;
}

/* ------------------------------------ Besoins ------------------------------------ */
section {
    width: 100%;
}

table {
    width: 100%;
    display: flex;
    justify-content: center;
    border-collapse: collapse;
    margin-top: 30px;
    margin-bottom: 30px;
}

th, td {
    border: 1px solid #000;
    padding: 8px;
    text-align: center;
}

/* Styles spécifiques aux colonnes */
#Besoins {
    background-color: #86cf99;
}

#NombreTotal {
    background-color: #fbcd87;
}

#QuantiteActuelle {
    background-color: #ff6e6e;
}

/* Media Queries pour rendre le tableau responsive */
@media only screen and (max-width: 580px) {
    table {
        display: flex;
        justify-content: center;
    }
    
    th, td {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    th {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    tr {
        border: 2px solid #000;
        margin-bottom: 10px;
        display: block;
    }
    
    td {
        display: flex;
        justify-content: flex-end;
        border: none;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }
    
    td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
    
    /* Ajout de contenu pour chaque cellule avant */
    td:nth-of-type(1):before {
        content: "Besoins: ";
        color: #86cf99;
        font-weight: bold;
    }
    td:nth-of-type(2):before {
        content: "Nombre total: ";
        color: #fbcd87;
        font-weight: bold;
    }
    td:nth-of-type(3):before {
        content: "Quantité actuelle: ";
        color: #ff6e6e;
        font-weight: bold;
    }

    .case {
        border: none;
    }
}

/* ------------------------------------ Partenaires ------------------------------------ */

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos:before {
    left: 0;
}

.logos:after {
    right: 0;
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 20s slide infinite linear;
}

.logos-slide img {
    height: 150px;
    margin: 0 40px;
}

a {
text-decoration: none;
}

/* ------------------------------------ Equipe ------------------------------------ */
.equipe {
    z-index: 20;
    overflow-x: hidden;
}

.section_equipe {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1em;
    margin-bottom: 1em;
    position: relative;
    transform: translateX(250px);
    opacity: 0;
    transition: 2s all ease;
    z-index: 10;
}

.section_equipe p {
    font-size: 1.5em;
    color: #000;
    font-weight: 300;
    margin: 2em;
    align-items: center;
    text-align: center;
    margin-left: -3em;
}

.section_equipe img {
    width: 55vw;
    height: 18aavw;
    align-items: center;
    text-align: center;
    padding: 1em;
    margin-bottom: 1em;
}

.section_equipe.active {
    transform: translateX(0);
    opacity: 1;
}

@media screen and (max-width: 800px) {
    .section_equipe {
        display: flex;
        flex-direction: column;
    }

    .section_equipe p {
        margin: 0;
    }
}


/* ------------------------------------ Contact ------------------------------------ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

.contact .container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .form {
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form {
    background-color: #1abc9c;
    position: relative;
}

.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #1abc9c;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

.forms{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.contact .form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.contact .title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.contact .input-container {
    position: relative;
    margin: 1rem 0;
}

.contact .input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

.contact textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.contact .btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #1abc9c;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

.contact .btn:hover {
    background-color: transparent;
    color: #fff;
}

.contact .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.contact .input-container span:before,
.contact .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #1abc9c;
    top: 50%;
    transform: translateY(-50%);
}

.contact .input-container span:before {
    left: 50%;
}

.contact .input-container span:after {
    right: 50%;
}

.contact .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.contact .input-container.focus span:before,
.contact .input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info .title {
    color: #1abc9c;
}

.contact .text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.contact .information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.contact .icon {
    width: 28px;
    margin-right: 0.7rem;
}

.contact .social-media {
    padding: 2rem 0 0 0;
}

.contact .social-media p {
    color: #333;
}

.contact .social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.contact .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #1abc9c, #149279);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.contact .social-icons a:hover {
    transform: scale(1.05);
}

.contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #1abc9c;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

.contact .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

#second_part {
    margin-left: 5px;
}

@media (max-width: 850px) {
    .contact .form {
        grid-template-columns: 1fr;
    }

    .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .contact .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .contact .text {
        margin: 1rem 0 1.5rem 0;
    }

    .contact .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .contact .container {
        padding: 1.5rem;
    }

    .contact-info:before {
        display: none;
    }

    .contact .square {
        display: none;
    }

    .contact .form,
    .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .contact .text,
    .contact .information,
    .contact .social-media p {
        font-size: 0.8rem;
    }

    .contact .title {
        font-size: 1.15rem;
    }

    .contact .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .contact .icon {
        width: 23px;
    }

    .contact .input {
        padding: 0.45rem 1.2rem;
    }

    .contact .btn {
        padding: 0.45rem 1.2rem;
    }
}

/*Mise en page du footer*/

footer {
    background-color: #1abc9c;
    color: #fff;
    padding: 60px 0;
    font-size: 14px;
    line-height: 24px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-container .footer-col {
    flex: 1;
    margin-bottom: 30px;
}

.footer-container .footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-container .footer-col ul {
    padding: 0;
    list-style: none;
}

.footer-container .footer-col ul li {
    margin-bottom: 10px;
}

.footer-container .footer-col ul li a {
    color: #fff;
    text-decoration: none;
}

/* ......../ media query /.......... */


@media (max-width: 1525px) {
    #leaf {
        display: none;
    }
}

@media (min-width: 1342px) {
    .parallax_actu {
        margin-bottom: -133vh;
    }
}

@media (max-width: 1340px) {
    #header {
        display: none;
    }
    
     #menu {
        display: flex;
    }
    
     .projet {
        margin-top: 0em;
    }
}

@media (max-width: 855px) {
    #parallax_actu {
    display: none;
    }
}

@media (max-width: 760px) {
    .feuilles {
        display: none;
    }
}

@media (max-height: 845px) {
    #burger_menu.active {
        overflow-y: scroll;
    }
}