*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "poppins",sans-serif, Arial, Helvetica, sans-serif;
}

:root {
  /* Couleurs principales */
  --color-green: #009B4D;       /* Vert foncé – utilisé dans le logo */
  --color-light-green: #3BC371; /* Vert clair – complémentaire, doux et frais */
  --color-blue:#0077C8;        /* Bleu – utilisé dans le logo */
  --color-dark-blue: #106fad;   /* Bleu plus profond – pour les contrastes */
  
  /* Texte et fond */
  --color-text: #595959;  
  --color-title:#262626;      /* Gris – pour les textes principaux */
  --color-background-light: #F7F7F7; /* Fond clair doux */
  --color-white: #FFFFFF;       /* Blanc – pour les cartes, sections */

  /* Couleurs secondaires / hover */
  --color-green-hover: #007C3F;
  --color-blue-hover: #0048cd;
}


html, body{
    height: 100%;
    width: 100%;
}


/* La navigation de la page  */

header{
    height: auto;
    width: 100%;
    overflow-x: hidden;
}

nav{
    width: 100%;
    height: 85px;
    display: grid;
    grid-template-columns: 30% 50% 20% ;
    background: var(--color-white);
    box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.144);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.nvgt{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 6px;
}

.logo h2{
    font-size: 30px;
    cursor: pointer;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(45deg,var(--color-green), var(--color-blue)) text;
}
#menu, #menu1{
    display: none;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.items-liste a{
    color: black;
    font-size: 20px;
    position: relative;
    transition: 0.3s ease-in-out;

}

.items-liste a::before{
    position: absolute;
    top: 25px;
    left: 0;
    content: "";
    width: 0%;
    height: 2px;
    z-index: 50;
    background: linear-gradient(45deg,var(--color-green), var(--color-blue)) ;
    transition: 0.3s ease-in-out;
}

.items-liste a:hover{
    -webkit-text-fill-color: transparent;
    background: linear-gradient(45deg,var(--color-green), var(--color-blue)) text;
}
.items-liste a:hover::before{
    width: 100%;
}

.items-liste-active{
    -webkit-text-fill-color: transparent;
    background: linear-gradient(45deg,var(--color-green), var(--color-blue)) text;
}
.items-liste  .items-liste-active::before{
    width: 100%;
}

.bouton{
    gap: 15px;
}
.bouton button{
    background: var(--color-white);
    color: var(--color-blue);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    transition: .3s ease-in-out;
    border: 1.5px solid var(--color-blue);
    cursor: pointer;
}
.bouton .btn-active{
    background: var(--color-blue);
    color: var(--color-white);
}

.bouton button:hover{
    background: var(--color-blue-hover);
    color: var(--color-white);
    transform: scale(1.05);
}


/* Le format tablete de la navigation  */

@media (max-width: 1024px){
     nav{
        height: 90px;
     }
     .logo h2{
        font-size: 1.5rem;
     }
     .items-liste a{
        font-size: 16px;
     }
}

/* Le format telephone de la navigation  */

@media (max-width: 768px){
    nav{
        grid-template-columns: 40% 45% 15%;
        height: 80px;
    }
    .logo h2{
        font-size: 18px;
    }
    .bouton button{
        height: 28px;
        width: 28px;
        font-size: 15px;
    }
    .nvgt{
      /*   border: 2px solid blueviolet; */
        text-align: center;
    }
    .items-liste{
        position: absolute;
        left: 0;
        top: 85px;
        background: var(--color-white);
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 30px;
        width: 100%;
        box-shadow: 1px 4px 2px 2px rgba(0, 0, 0, 0.103);
        opacity: 0;
        visibility: hidden;
        transition: 0.5s ease-in-out;
    }
    #menu, #menu1{
        display: block;
        position: absolute;
        right: 30px;
        font-size: 25px;
        cursor: pointer;
    }
    #menu1{
        display: none;
        position: absolute;
        right: 35px;
        font-size: 25px;
        cursor: pointer;
    }
    .menu-phone{
        opacity: 1;
        visibility: visible; 
        top: 73px;
    }
    .rotation{
        transform: rotate(360deg) !important;
        display: none !important;
    }
    .rotation1{
        display: block !important;
        transform: rotate(360deg) !important;
    }
}


/* le corps de la page */

main{
    overflow-x: hidden;
    padding-top: 80px;
}

/* la section banner  */

.banner{
    height: 70vh;
    width: 100%;
    display: flex;
   /*  border: 1px solid rgb(89, 0, 255); */
   background: url('../Images/back.png');
   background-size: cover;
}
.banner1{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid rgb(89, 0, 255); */

}

/* le banner du haut avec les deux boite , text et image */
.banner0{
    /* border: 1px solid red; */
    width: 100%;
    height: 100%;
    display: flex;
}

/* le banner du haut avec les deux boite , text et image : celui de gauche*/
.banner1-top{
    width: 50%;
 /*     border: 1px solid rgb(89, 0, 255); */
     padding: 35px 35px 35px 65px;
     display: flex;
     flex-direction: column;
     gap: 25px;
     background: #ffffff9d;     
}
.banner1-top h2{
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.cercle1{
    height: 16px;
    width: 70px;
    background: var(--color-blue);
    border-radius: 50px;
    margin-left: 10px;
}
.cercle2{
    height: 16px;
    width: 18px;
    background: var(--color-green);
    border-radius: 50px;
}

.banner1-top h1{
    font-size: 2.2rem;
    color: var(--color-blue);
    line-height: 40px;
    font-weight: 600;
    text-transform: uppercase;

}
.banner1-top h1 span{
    color:  var(--color-green);
}

.banner1-top p{
    color: var(--color-text);
    line-height: 24px;
}

.banner1-top button a{
    color: #ffffff;
}
.banner1-top button{
      background: var(--color-blue);
      border: none;
      color:  var(--color-white);
      padding: 10px 25px ;
      font-size: 16px;
      border-radius: 45px;  
      cursor: pointer; 
      transition: 0.3s ease-in-out;
}
.banner1-top button:hover{
    transform: scale(1.05);
    background: var(--color-blue-hover);
}
.banner1-top .btn-vert{
     background: var(--color-green);
     margin-left: 15px;
}
.banner1-top .btn-vert:hover{
    background: var(--color-green-hover);
}

/* le banner du haut avec les deux boite , text et image : celui de droite*/

.banner1-top2{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff9d;
}

.image-cercle1{
    height: 350px;
    width: 350px;
    border-top: 15px solid var(--color-green);
    border-right: 15px solid var(--color-green);
    border-bottom: 15px solid var(--color-blue);
    border-left: 15px solid var(--color-blue);
    border-radius: 50%;
    box-shadow: 1px 2px 5px 5px rgba(0, 0, 0, 0.192);
    position: relative;
}
.image-cercle2{
    height: 170px;
    width: 170px; 
    border: 12px solid var(--color-green);
    border-radius: 50%;
    position: absolute;
    left: -35%;
    bottom: 30%;
    box-shadow: 1px 2px 5px 5px rgba(2, 19, 255, 0.479);
}
.image-cercle3{
    height: 170px;
    width: 170px; 
    border: 12px solid var(--color-green);
    border-radius: 50%;
    position: absolute;
    right: -25%;
    bottom: -10%;
    box-shadow: 1px 2px 5px 5px rgba(2, 19, 255, 0.479);
}
.image-cercle4{
    height: 170px;
    width: 170px; 
    border: 12px solid var(--color-green);
    border-radius: 50%;
    position: absolute;
    right: -25%;
    top: -10%;
    box-shadow: 1px 2px 5px 5px rgba(2, 19, 255, 0.479);
}

.image-cercle img{
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

/* le banner du bas avec les textes et icons */

.banner1-bottom{
    width: 100%;
    height: 30%;
    box-shadow: 1px -1px 4px 4px rgba(17, 17, 17, 0.274);
    background: var(--color-white);
    padding: 10px;
    display: flex;
    gap: 35px;
    justify-content: center;
}

.botton-banner{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border:  1px solid red; */
    padding: 15px;
    gap: 15px;
}

.bner-btm-icon{
    width: 36%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid var(--color-green);
    box-shadow: 1px 2px 5px 5px rgba(2, 19, 255, 0.411);
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.bner-btm-icon img{
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.bner-btm-text{
    width: 55%;
    height: 100%;
    /* border:  4px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding-left: 5px;
}
.bner-btm-text h3{
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--color-blue);
}
.bner-btm-text p{
    color: var(--color-text);
    font-size: 16px;
}

/* Le deuxieme banner en vert  */

.banner02{
   flex-direction: row-reverse; 
}
.cercle02{
     background: var(--color-green);
}
.cercle22{
    background: var(--color-blue);
}
.banner1-top22 h1{
    color: var(--color-green);
}
.banner1-top22 h1 span{
    color: var(--color-blue);
}
.banner1-top22 .image-cercle1 {
    border-top: 15px solid var(--color-blue);
    border-right: 15px solid var(--color-blue);
    border-bottom: 15px solid var(--color-green);
    border-left: 15px solid var(--color-green);
}
.banner1-top22 .image-cercle2, 
.banner1-top22 .image-cercle3, 
.banner1-top22 .image-cercle4{
    border: 12px solid var(--color-blue);
    box-shadow: 1px 2px 5px 5px rgba(12, 141, 51, 0.712);
}

/* le deuxieme banner en vert et le banner du bas avec les textes et icons */

.banner1-bottom2 .botton-banner .bner-btm-icon{
    border: 12px solid var(--color-blue);
    box-shadow: 1px 2px 5px 5px rgba(12, 141, 51, 0.712);
}

.banner1-bottom2 .botton-banner .bner-btm-text h3{
    color: var(--color-green);
}


/* Le format tablete de la banniere  */

@media (max-width: 1024px){
     .banner{
        /*  border: 2px solid blue;  */
         height: 75vh;
    }
     .banner0{
        flex-direction: column;
        height: 100%;
        /* border: 4px solid rgb(255, 251, 0); */
       
    }
    .banner1-top{
        width: 100%;
        padding: 20px ;
        gap: 6px;
       /*  border: 2px solid blue; */
        height: 50%;
    } 
    .banner1-top h2{
        font-size: 1.7rem;
    }
    .banner1-top h1{
        font-size: 2.5rem;
    }
    .banner1-top2{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
       /*  border: 2px solid red;  */
        height: 50%;
    }
    .banner1-top2 .image-cercle1{
        height: 300px;
        width: 300px;
    } 
    .image-cercle2{
        height: 160px;
        width: 160px;
        left: -45%;
    }
    .image-cercle3{
        height: 160px;
        width: 160px;
        right: -25%;
        bottom: -25%;
    }
    .image-cercle4{
        height: 160px;
        width: 160px;
        right: -25%;
        top: -25%;
    }

    .banner1-bottom{
        height: 25%;
        gap: 3px;
    }
    .botton-banner{
        padding: 1px;
        /* border: 1px solid red;  */
        width: 33%;
        flex-direction: column;
        padding: 10px;
    }

    .bner-btm-icon{
        height: 80px;
        width: 80px;
        border: 5px solid var(--color-green);
        box-shadow: 0px 1px 2px 2px rgba(2, 19, 255, 0.425);
    }
     .bner-btm-icon i {
        font-size: 35px;
     }
    .bner-btm-text{
        height: 50%;
        padding: 5px;
        /* border: 1px solid red; */
        width: 100%;
        gap: 5px;
    }
    .bner-btm-text h3{
        font-size: 1rem;
    }
    .bner-btm-text p{
        font-size: 14px;
    }

    .banner1-bottom2 .botton-banner .bner-btm-icon{
        border: 5px solid var(--color-blue);
        box-shadow: 0px 1px 2px 2px rgba(12, 141, 51, 0.712);
    }
}

/* Le format telephone de la banniere  */

@media (max-width: 760px){
    .banner{
       /*   border: 2px solid blue;  */
         height: 80vh;
    }
    .banner0{
        flex-direction: column;
        height: 100%;
        padding: 10px 0;
        overflow-x: hidden;
        gap: 10px;
        /* border: 4px solid rgb(255, 251, 0); */
    }
    .banner1-top{
        width: 100%;
        padding: 10px;
        gap: 10px;
      /*    overflow: hidden; */
    } 
    .banner1-top h2{
        font-size: 15px;
    }
    .banner1-top h1{
        font-size: 24px;
        line-height: 25px;
    }
    .banner1-top  p{
         line-height: 16px;
         font-size: 10px;
    }
    .btn-banner button{
        font-size: 10px;
        padding: 7px 10px;
    }


    .banner1-top2{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* border: 2px solid red; */
        height: 70vh;
        overflow: hidden;
    }
    .bner-btm-icon i {
        font-size: 30px;
    }
    .banner1-top2 .image-cercle1{
        height: 200px;
        width: 200px;
    } 

    .image-cercle1{
        border-top: 10px solid var(--color-green);
        border-right: 10px solid var(--color-green);
        border-bottom: 10px solid var(--color-blue);
        border-left: 10px solid var(--color-blue);
    }
    .image-cercle2{
        height: 100px;
        width: 100px;
        left: -35%;
        border: 8px solid var(--color-green);
    }
    .image-cercle3{
        height: 100px;
        width: 100px;
        right: -25%;
        bottom: -25%;
        border: 8px solid var(--color-green);
    }
    .image-cercle4{
        height: 100px;
        width: 100px;
        right: -25%;
        top: -25%;
        border: 8px solid var(--color-green);
    }

    .banner1-bottom{
        height: 25%;
        gap: 3px;
    }
    .botton-banner{
        padding: 1px;
        /* border: 1px solid red; */
        width: 33%;
        flex-direction: column;
    }

    .bner-btm-icon{
        height: 60px;
        width: 60px;
        border: 5px solid var(--color-green);
        box-shadow: 0px 1px 2px 2px rgba(2, 19, 255, 0.425);
    }
    .bner-btm-text{
        height: 50%;
        padding: 0;
        /* border: 1px solid red; */
        width: 100%;
        gap: 5px;
    }
    .bner-btm-text h3{
        font-size: 11px;
    }
    .bner-btm-text p{
        font-size: 9px;
    }

    .banner1-bottom2 .botton-banner .bner-btm-icon{
        border: 5px solid var(--color-blue);
        box-shadow: 0px 1px 2px 2px rgba(12, 141, 51, 0.712);
    }

    .banner1-top22 .image-cercle{
        border-top: 10px solid var(--color-blue);
    border-right: 10px solid var(--color-blue);
    border-bottom: 10px solid var(--color-green);
    border-left: 10px solid var(--color-green);
    }

    .banner1-top22 .image-cercle2, .banner1-top22 .image-cercle3, .banner1-top22 .image-cercle4{
        border: 8px solid var(--color-blue);
    }
    .cercle1{
        width: 47px;
    }
}

@media (max-height: 600px){
    .banner{
       /*   border: 2px solid blue;  */
         height: auto;
    }
}




/* La section pour la partie question et pourquoi choisir  */

.question{
    width: 100%;
    height: auto;
 /*    border: 1px solid red; */
    display: flex;
    align-items: center;
    padding: 40px;
    flex-direction: column;
}

.question h2{
    margin: 20px 0;
    color: var(--color-title);
    font-size: 3rem;
    text-align: center;
}

.box-question{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.box-question-box{
    width: 290px;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0px 1px 9px 8px  rgba(17, 17, 17, 0.233);
    padding: 10px;
    background: var(--color-white);
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.box-question-box:hover{
    background: #f5f2f2c5;
    transform: translateY(-10px);
}
.box-question1{
  /*   border: 2px solid; */
    height: 30%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-question1 span {
    background: linear-gradient(45deg,var(--color-green), var(--color-blue));
    height: 90px;
    width: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box-question1 span i{
    font-size: 2.3rem;
    color: var(--color-white);
}


.box-question2{
  /*   border: 2px solid; */
    height: 70%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.box-question2 h3{
    color: var(--color-title);
    font-size: 1.3rem;
    place-self: center;
}

.box-question2 p{
    color: var(--color-text);
    line-height: 20px;
}
.box-question2 button{
    width: 110px;
    padding: 10px 0;
    background: var(--color-blue);
    border: none; 
    border-radius: 20px ; 
    font-size: 18px;
    color:  var(--color-white);
    place-self: center;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
.box-question2 button:hover{
    background: var(--color-blue-hover);
}

/* Le format tablete de la  partie question et pourquoi choisir  */

@media (max-width: 1024px){
    .question h2{
        font-size: 2.5rem;
    }
}

/* Le format telephone de la  partie question et pourquoi choisir  */

@media (max-width: 760px){
     .question h2{
        font-size: 1.7rem;
        margin: 10px 0;
    }
}



/*  la section pour le comment ça marche */

.comment-ca-marche{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 60px;
    padding:50px 40px;
    background: #f5f2f29c;
}
.comment-ca-marche h2{
    margin: 20px 0;
    color: var(--color-title);
    font-size: 3rem;
}

.comment-ca-marche .p{
    color: var(--color-text);
    line-height: 22px;
    text-align: center;
}

.box-comment-ca-marche{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.box-comment-ca-marche-box{
    width: 270px;
    height: 360px;
    border-radius: 10px;
    box-shadow: 0px 1px 9px 8px  rgba(17, 17, 17, 0.233);
    padding: 10px;
    background: var(--color-white);
    overflow: hidden;
    cursor: pointer;
}

.box-comment-ca-marche1{
    height: 40%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-comment-ca-marche1 .box-hover{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
   
}
.box-comment-ca-marche1 .box-hover span{
    position: absolute;
    z-index: 20;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--color-white);
    font-weight: bold;
    transition: 0.5s ease-in-out;
}

.box-comment-ca-marche1 .box-hover::before{
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(var(--color-green), var(--color-blue));
    z-index: 10;
    transition: 0.5s ease-in-out;
     
}

.box-comment-ca-marche-box:hover .box-hover span{
    background-color: var(--color-white);
    color: var(--color-green);
}
.box-comment-ca-marche-box:hover .box-hover::before{
    width:2000px;
    height: 660px;
    border-radius: 0;
}


.box-comment-ca-marche2{
    /* border: 1px solid red; */
    height: 60%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
}
.box-comment-ca-marche2 h3{
    position: relative;
    color: var(--color-title);
    font-size: 1.2rem;
    transition: 0.5s ease-in-out;
    text-align: center;

}

.box-comment-ca-marche2 p{
    position: relative;
    color: var(--color-text);
    line-height: 20px;
     transition: 0.5s ease-in-out;
}

.box-comment-ca-marche-box:hover .box-comment-ca-marche2 h3{
    z-index: 20;
    color: var(--color-white);
}
.box-comment-ca-marche-box:hover .box-comment-ca-marche2 p{
    z-index: 20;
    color: var(--color-white);
}


/* Le format tablete pour le comment ça marche  */

@media (max-width: 1024px){
    .comment-ca-marche h2{
        font-size: 2.5rem;
    }
}

/* Le format telephone pour le comment ça marche  */

@media (max-width: 760px){
      .comment-ca-marche h2{
        font-size: 2rem;
        text-align: center;
    }
    .comment-ca-marche p{
        font-size: 16px;
        text-align: center;
    }
}





/* La section pour la partie nos engagement */

.engagement{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    text-align: center;

}
.engagement h2{
    color: var(--color-title);
    font-size: 3rem;
    margin: 40px 0 ;
}
.engagement .textp{
    margin-bottom: 30px 0;
    color: var(--color-text);
    line-height: 27px;
    font-size: 20px;
}
.box-engagement{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    gap: 100px;
}

.box-engagement .box-engagement1{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 100px;
}

.box-engagement .box-engagement1 .box-engagement12{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    gap: 16px;
    width: 350px;
    height: 230px;
    border-radius: 10px;
    background: #FFF1C3;
    box-shadow: 0px 1px 4px 5px  rgba(17, 17, 17, 0.233);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
.box-engagement .box-engagement1 .box-engagement12:hover{
    transform: scale(1.04);
}
.box-engagement .box-engagement1 .box-engagement13{
    background: #CDE9D1;
}

.box-engagement12 .engt-icone{
    height: 60px;
    width: 60px;
    background: var(--color-blue);
    color:  var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.engt-icone  i{
    font-size: 2rem;
    color: var(--color-white);
}


/* le format tablete pour  La section pour la partie nos engagement */

@media (max-width: 1024px){
    .engagement h2{
        font-size: 2.5rem;
        color: var(--color-text);
    }
    .box-engagement .box-engagement1{
        gap: 30px;
    }   

    .box-engagement .box-engagement1 .box-engagement12{
        width: 330px;
        height: 210px;
        gap: 5px;
    }
    .box-engagement{
        gap: 50px;
    }
    .engagement{
        padding: 50px 15px;
    }

}


/* le format telephone pour  La section pour la partie nos engagement */

@media (max-width: 760px){
      .engagement h2{
        font-size: 1.5rem;
        text-align: center;
    }
      .engagement{
        padding: 40px 25px;
    }

     .box-engagement{
        gap: 30px;
    }
}




/* La section pour les boutiques populaires  */

.boutiques-populaires{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}
.boutiques-populaires h2{
    color: var(--color-title);
    font-size: 3rem;
    margin: 40px 0 ;
}
.box-boutique{
    margin: 30px 0;
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.boxboutique-pop{
   /*  border: 2px solid red; */
    height: 480px;
    width: 290px;
    box-shadow: -1px 1px 4px 4px  rgba(17, 17, 17, 0.233);
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    overflow: hidden;
  /*   border: 2px solid ; */

}

.boutiquepop{
    height: 42%;
 /*    border: 1px solid blue; */
}

.boutiquepop img{
    height: 100%;
    width: 100%;
}

.boutiquepop2{
    height: 58%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    /* border: 2px solid red; */
}
.boutiquepop2 h2{
    font-size: 1.2rem;
    color: var(--color-title);
}
.boutiquepop2 p{
    color: var(--color-text);
    line-height: 20px;
}

.rating-text{
    color: var(--color-text);
    font-weight: 550;
}

.boutiquepop2  a{
    color:  var(--color-white);
    background: linear-gradient(45deg, var(--color-green), var(--color-blue));
    padding: 15px 6px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    font-size: 1rem;
    transition: 0.5s ease-in-out;
}

.contact-btn:hover{
    transform: scale(1.03);
    box-shadow: 0px 2px 5px 5px #0048cd36;
}
.contact-btn i{
    margin-right: 10px;
    font-size: 22px;
    font-weight: 500;
}

.boxboutique-pop:hover{
    transform: translateY(-8px);
}


@media (max-width: 760px){
    .boutiques-populaires h2{
        font-size: 1.5rem;
    }
    .boxboutique-pop:hover{
    transform: translateX(10px);
}

}




/* La section pour la partie recherche local */

.recherche-locale{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 30px 20px;
    background: var(--color-blue);
}
.recherche-locale h2{
    color: var(--color-white);
    font-size: 3rem;
    margin: 40px 0 ;
    text-align: center;
}

.box-recherchelocal{
    width: 100%;
    display: flex ;
    justify-content: center;
}
.search-form {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.116);
    border: 1px solid #f0f2f58e;
    overflow: hidden;
    border-radius: 15px;
    padding-right: 6px;
    align-items: center;
    width: 70%;
    margin-bottom: 50px;
}

.search-select {
    flex: 1;
    padding: 20px 25px;
    border: none;
    border-right: 1px solid  #f0f2f58e;
    font-size: 1rem;
    color: #ffffff;
    background: transparent;
    appearance: none;
    cursor: pointer;
    width: 40%;
}

.search-select option{
    color: var(--color-title);
}

.search-select:last-of-type {
    border-right: none;
}

.search-select:focus {
    outline: none;
}

.search-button {
    padding: 15px 30px;
    background: var(--color-light-green);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 10px;
}

.search-button:hover {
    background: var(--color-green-hover);    
} 


/* le format tablete pour la partie recherche-locale */



/* le format telephone pour la partie recherche-locale */

@media (max-width: 760px){

    .recherche-locale{
        padding: 30px 15px;
    }
    .recherche-locale h2{
        color: var(--color-white);
        font-size: 1.5rem;
        margin: 30px 0 ;
        text-align: center;
    }
    .box-recherchelocal{
        width: 100%;
        display: flex ;
        justify-content: center;
       /*   border: 2px solid red; */
    }
    .search-form{
        width: 100%;
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 15px;
    }
    .search-select {
        background: rgba(255, 255, 255, 0.116);
        border: 1px solid #f0f2f58e;
        width: 100%;
        border-radius: 15px;
    }
    .search-button{
        background: rgba(255, 255, 255, 0.116);
        border: 1px solid #f0f2f58e;
        transition: 0.5s ease-in-out;
    }
    .search-button:hover {
        background: none;    
        transform: scale(1.05);
    } 
    
}



/*  La section pour les temoignages */

.temoignages{
    display: flex;
    justify-content: center;
    align-items: center;  
    flex-direction: column;  
    width: 100%;
    background: var(--color-title);
    padding: 50px 20px;
}

.temoignages h2{
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 30px;
}

.temoignages .temoignagesp{
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 40px;
}
.box-temoignage-box{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.box-temoignage{
    height: 180px;
    width: 300px;
     background: rgba(255, 255, 255, 0.137);
    border: 1px solid #f0f2f554;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px;
    gap: 10px;
    color: var(--color-white);
    cursor: pointer;
    transition: 0.4s ease-in-out;
}
.box-temoignage:hover{
    transform: translateY(-10px);
}

.box-temoignage img{
    width:60px; 
    height:60px; 
    border-radius:50%; 
    object-fit:cover;
}

/*  le format telephone pour le partie temoignage*/

@media (max-width: 760px){
    .temoignages h2{
        font-size: 1.5rem;
        text-align: center;
    }

    
    .box-temoignage-box{
        flex-direction: column;
    }
    .box-temoignage{
        width: 100%;
    }
    .box-temoignage:hover{
        transform: translateX(10px);
    }
}



/*  La section pour les chiffres */

.chiffres{
    width: 100%;
    height: auto;
    background: #f5f2f29c;
    padding: 60px 25px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.chiffres .box-chiffre{
    width: 290px;
    height: 180px;
    box-shadow: 0px 1px 4px 5px  rgba(17, 17, 17, 0.233);
    background: var(--color-white);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.chiffres .box-chiffre:hover{
   background: #f5f2f29c;
    transform: translateY(-14px);

}
.chiffres .box-chiffre h2{
    color: var(--color-green);
    font-size: 2.5rem;
}
.chiffres .box-chiffre p{
    line-height: 22px;
    color: var(--color-text);
    font-size: 22px;
}

@media (max-width: 760px) {
     
    .chiffres .box-chiffre:hover{
        transform: translateX(-10px);
    }
}


/* la partie pour le pied de la page */

.footer{
    height: auto;
    width: 100%;
    padding: 60px 20px;
    background: var(--color-green);
}

.box-footer{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-right: 50px;
}

.content-box-footer{
    /* border: 2px solid red; */
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.content-box-footer h3{
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
}
.content-box-footer p{
    font-size: 14px;
    color: var(--color-white);
    line-height: 25px;
    margin-left: 15px;
}
.content-box-footer .footer-icone{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 17px;
}
.content-box-footer .footer-icone a{
    height: 60px;
    width: 55px;
    background: #ffffff23;
    box-shadow: 0px 1px 4px 5px  rgba(17, 17, 17, 0.13);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-size: 2rem;
}

.footer-icone i{
    transition: .3s ease-in-out;
}

.footer-icone i:hover{
    transform: scale(1.5);
}
.content-box-footer ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 10px;
}
.content-box-footer ul li{
    font-size: 16px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.content-box-footer ul li:hover{
    transform: translateX(10px);
}
.content-box-footer ul li a{
    color: var(--color-white);
}

.texte-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
.texte-footer p{
    color: var(--color-white);
    font-size: 20px;

}
.ligne{
    width: 95%;
    height: 1px;
    background: #fdfdfda8;
}

/* le format telephone pour  la partie pour le pied de la page*/

@media (max-width: 760px){
    .texte-footer p{
        font-size: 16px;
        text-align: center;
        line-height: 25px;

    }
    .content-box-footer{
        height: 260px;
    }
    .mail{
        font-size: 13px;
    }
    .box-footer{
        padding: 0 10px;
    }
   
}





/* Le code de la pages Recherche */

.resetFilters1{
    display: flex;
    color: var(--color-white);
    align-items: center;
    gap: 10px;
}


/* Le corps de la pages a propos  */

.box-title-apropos{
    height: auto;
    width: 100%;
    padding: 50px 70px;
    display:  flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #F9F7F7;
}

.box-title-apropos h2{
    font-size: 3rem;
    margin: 20px 0;
     background: linear-gradient(45deg,var(--color-green), var(--color-blue)) ;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.box-title-apropos p{
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-text);
}



.box-ttle-images{
    background: var(--color-title);
}

.box-apropos {
    width: 100%;
    height: auto;
    display: flex;
    overflow: hidden;
}

.box-apropos .apropos1{
    width: 50%;
  /*   border: 2px solid red; */
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    gap: 10px;
}
.apropos1 h3{
    font-size: 2.5em;
    background: linear-gradient(45deg,var(--color-green), var(--color-blue)) ;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.apropos1 p{
    color: var(--color-white);
    font-size: 1.1em;
    margin-left: 15px;
    line-height: 30px;
}

.apropos1 img{
    width: 80%;
    border-radius: 15px;
   /*  border: 3px solid blue; */
}

.apropos2{
    align-items: center;
}



@media (max-width: 1024px){
    .box-apropos{
        flex-direction: column;

    }
    .box-apropos .apropos1{
        width: 100%;
       /*  border: 2px solid blue; */
    }
    .box-apropos1{
        flex-direction: column-reverse;
    }

    .apropos1 img{
        width: 60%;
    }

}

@media (max-width: 760px){

    .box-title-apropos{
        padding: 20px 15px;
        
       
    }
    .box-title-apropos h2{
        font-size: 2rem;
        text-align: center;
    }

    .box-title-apropos p{
        font-size: 1rem;
        text-align: left;
    } 

    .box-apropos .apropos1{
        padding: 10px;
    }
    .apropos1 h3{
        font-size: 1.4rem;
    }
    .apropos1 p{
        margin: 8px;
        font-size: 15px;
    }
    .apropos1 img{
        width: 100%;
    }
   /*  .apropos1{
        border: 2px solid red;
    } */
    .box-apropos .apropos2{
        height: 300px;
    }
}





/* la page contacte  */

.box-contact{
    width: 100%;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background-color: #F9F7F7;
}

.box-contact h2{
    font-size: 3rem;
    background: linear-gradient(45deg,var(--color-green), var(--color-blue)) ;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}


.box-contact-box{
    display:  flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    margin-top: 50px;
}
.box-content-contact{
    background: var(--color-title);
    box-shadow: 0px 1px 9px 8px  rgba(17, 17, 17, 0.233);
    height: 440px;
    width: 340px;
    border-radius: 20px;
    padding: 15px;
}


.content-contact1{
    height: 30%;
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-contact1 i{
    height: 80px;
    width: 80px;
    background: #ffffff1a;
    box-shadow: 0px 1px 9px 8px  rgba(75, 73, 73, 0.233);
    border: 1px solid #ffffff4f;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
}

.content-contact{
    height: 70%;
    width: 100%;
   /*  border: 1px solid red; */
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.content-contact h3{
    font-size: 2rem;
    color: var(--color-white);
}

.content-contact p{
    font-size: 1.1rem;
    color: var(--color-white);
    line-height: 20px;
}

.content-contact ul li{
    list-style: block;
    list-style-type: circle;
    margin:5px 0 5px 30px;
    color: var(--color-white);

}

.content-contact form input{
    height: 40px;
    border-radius: 10px;
    border: 1px solid  #ffffff4f;
    background: #ffffff17;
    font-size: 20px;
    color: var(--color-white);
    padding: 15px;
}

.content-contact2 {
    gap: 10px;
}
.content-contact2 form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.content-contact form input:focus{
    outline: none;
}

.content-contact form .message-Contt{
    height: 70px;
}

.content-contact form .submit_cont{
    width: 100px;
    padding: 10px;
    place-self: center;
}


.contact-icon {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-icon .contact-icon-box{
     display: flex;
     align-items: center;
     gap: 10px;
}

.contact-icon .contact-icon-box i{
    height: 50px;
    width: 50px;
    background: #ffffff1a;
    box-shadow: 0px 1px 9px 8px  rgba(75, 73, 73, 0.233);
    border: 1px solid #ffffff4f;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
}

.contact-icon .contact-icon-box span{
    color: var(--color-white);
}

@media (max-width: 760px){
    .box-contact h2{
        font-size: 2rem;
    }
    .box-contact-box{
   
        gap: 50px;
        margin-top: 0;
    }
    .box-content-contact{
        width: 290px;
        height: 440px;
    }
    .contact-icon .contact-icon-box span{
        font-size: 12px;
    }
    .content-contact ul li{
        font-size: 13px;
    }
}




/* Les animations des boite  */

.anim1 {
  opacity: 0;
  transform: translateX(-70px);
  transition:  0.8s ease-in-out;
}
.anim2 {
  opacity: 0;
  transform: translateY(70px);
  transition:  0.8s ease-in-out;
}
.anim3 {
  opacity: 0;
  transform: translateY(-70px);
  transition: 0.8s ease-in-out;
}
.anim4 {
  opacity: 0;
  transform: translateX(70px);
  transition:  0.8s ease-in-out;
}


/* Animation visible */
.visible-anim1 {
  opacity: 1;
  transform: translateX(0);
}

.visible-anim2 {
  opacity: 1;
  transform: translateY(0);
}

.visible-anim3 {
  opacity: 1;
  transform: translateY(0);
}

.visible-anim4 {
  opacity: 1;
  transform: translateX(0);
}
