*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    /* height: 100vh; */
    position: relative;
    --vert:#09721b;
    --orange: #fe7624;
    --gris:#ddd;
    --bleu-ciel:#0082f3;
    --bleu-fonce:#142973;
    --turquoise-clair: #d3f0f0;
    --rose-violet: #a877dd;
    --violet-susu-vital-2: #6529da;
    --rose-susu-care: #de2f7e48;
    --rose: #de2f7f;
    --turquoise: #1ac9d7;
    --vert-mère-enfant: #90c78b;
    --blanc-fonce:#f0f5ff;
    --blanc-invisible:#ffffffd9;
}
/*pour le nav et autres*/
header{
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 100;
    transition: 0.3s linear;
    position: fixed;
    background: linear-gradient(to right, #e0f7fa, #ffffff);
    /* backdrop-filter: blur(10px); */
    /* background: rgba(135, 206, 235, 0.95); 
    background: linear-gradient(135deg, rgb(135, 206, 235) 0%, rgb(176, 196, 222) 100%); backdrop-filter: none; */
    
}
header .logo{/*le logo de susu*/
    width: 15%;
    height: 50px;
}
header .logo img{/*le logo de susu*/
    width: 100%;
    height: 100%;  
    
}
    /*la partie du nav*/
nav{/* la div qui contient les element du menu */
    width:70%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content:center;
    gap: 40px;
}   
nav a , .deroule{/*chaque element du menu*/
    
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    /* color: var(--orange); */
    color: black;
    flex-direction: column;
}

nav a:hover,.deroule:hover{
    color: var(--orange);
}
nav a::after,.deroule::after{
    content: "";
    margin-top: 10px;
    top: 0;
    left: 0;
    width: 0%;
}
nav a:hover::after,.deroule:hover::after{
    width: 100%;
    border: 1px solid var(--orange);
    transition: all 0.5s ease;
}
.color1{
    color: var(--vert) !important;
}
.color1:hover{
    color: white !important;
}
.deroule{
    position: relative;
}
.deroule .liens{
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    width: 150px;
    height: auto;
    background-color: #ddd;
}
.liens a{
    font-size: 14px;
    width: 100%;
    padding: 10px 0;
    height: auto;
    color: var(--bleu-fonce);
}
.liens a:hover{
    color: white;
    background-color: var(--orange);
}
.liens a::after{
    display: none;
}
.deroule:hover .liens{
    display: block;
}
header .contacte{
    width:auto;
    height: auto; 
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 20px;
}
header .contacte .numero1{
    background-color: var(--orange);
    border: 2px solid var(--orange);
    padding: 10px 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    /* font-weight: bolder; */
    font-size: 14px;
}
.menu{/*pour faire disparaitre le menu burgeur lorque on n'est sur un ecran grand */
    display: none;
    cursor: pointer;
    color: var(--orange);
}
.couleur{/*c'est celle qui va change celon la page */
    color: var(--vert) !important;
}
.couleur:hover{
    color: var(--orange) !important;
}
/***********la partie ou ya un nouveau menue mais qui sort sur un petut ecran */
#partie2{
    background-color: var(--vert-mère-enfant);
    width: 100%;
    min-height: 250px;
    height: auto;
    display: flex;
    z-index: 100;
    flex-direction: column;
    gap: 5px;
    justify-content: space-between;
    /* top: -310px; */
    display: none;
    position: fixed;
    top: 90px;
}
#partie2 a{
    width: 100%;
    height: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 20px;
    margin: 0px 0;
    font-size: 14px;
}
.active_partie2{
    display: block !important; /* Afficher la partie 2 */
    /* animation: partie2 0.5s linear; */
}
.active_header{
    background-color: var(--vert-mère-enfant);
    animation: header 0.5s linear;
}
.deroule2{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 20px;
    font-size: 15px;
    cursor: pointer;
    justify-content: space-between;
}
.deroule2 p{
    display: flex;
    align-items: center;
    width: 80%;
    height: 100%;
    font-size: 14px;
}
.deroule2 span{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 20px;
}
.deroule2:hover p{
    color: white; 
}
.liens2{
    background-color:#b0daac;
    display: none;
}
.liens2 a{
    font-size: 12px !important;
    color: var(--bleu-fonce) !important;
    padding: 0 40px !important;
}
.liens2 a:hover{
    background-color: #09721b !important;
    color: white !important;
}
.active_lien2{
    display: block;
}
/*animation pour le menu burgeur*/
@keyframes header {
    from{
        opacity: 0.5;
        background-color: var(--vert-mère-enfant);
    }
    to{
        opacity: 1;
        background-color: var(--vert-mère-enfant);
    }
}
/*animation du header*/
header .contacte .numero1:hover{
    background-color: transparent;
    color: var(--orange);
    transition: all 0.5s ease;
}
/*l'animation de la partie nos offres*/
nav .nos_offres .offres a:hover{
    background-color: var(--orange);
    color: white;
}
/************l'animation de la partie nos offres cote menu burgeur*/
#partie2 a:hover,.deroule2:hover{
    background-color: var(--orange);
    color: var(--vert);

}
/*la responsive du header*/
@media screen and (max-width:1000px){
    header{
        height: 90px;
        justify-content: space-between;
        padding: 0 20px;/*aucune espace en haut et en bas 20 px d'espace a gauche et droite*/
    }
    header .contacte,nav{
        display: none;
    }
    header .logo{
        width: 30%;
        height: 40%;
        display: flex;
    }
    header .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .menu{
        display: block;
    }
}
.deroule{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
}
/*je vais commence la parti de fond */
#fond{
    width: 100%;
    height: 600px;
    /* background:linear-gradient(#0a2633ad, #0a2633ad),url(https://www.synergieintegrale.ci/images/bannar_15.jpg) fixed; */
    background: linear-gradient(#0a2633ad, #0a2633ad) ,url(../images/fond\ ecran.jpg) fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:white ;
    gap: 50px;
    animation: change 50s ease-in-out infinite ;
    position: relative;
}
#fond h1,#fond1 h1{
    position: absolute;
    z-index: 10;
    font-size: 42px;
    text-align: center;
    color: white;
    font-weight: 400;
    width: 80%;
}
#fond p,#fond1 p {
    font-size: large;
    width: 60%;
    text-align:center ;
    position: absolute;
    z-index: 10;
    top: 390px;
    
}
#fond1{
    display: none;
}
/*la responsive de fond*/
@media screen and (max-width:1000px) {
    #fond1{
        display: block;
        width: 100%;
    height: 600px;
    background:linear-gradient(to right,#0a332cad, #976211ad),url(../images/les\ petite\ 2.jpg);
    /* background:linear-gradient(to right,#0a332cad, #976211ad),url(../images/les\ petite\ 6.jpg) fixed center; */
    /* background:linear-gradient(to right,#0a332cad, #976211ad),url(../images/les\ petite\ 8.jpg) fixed center; */

    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:white ;
    gap: 50px;
    animation: change 50s ease-in-out infinite ;
    position: relative;
    
    }
    #fond{
        display: none;
    }
    #fond1 h1{
        font-size: 23px;
        position: absolute;
        z-index: 10;
        text-align: center;
        color: white;
        font-weight: 400;
        width: 80%;
    }
    #fond1 p{
        text-align:center ;
        position: absolute;
        z-index: 10;
        font-size: 17px;
        width: 80%;
        top: 270px;
    }
    #fond1 {
        height: 400px;
    }
}
@media screen and (max-width:600px) {
    #fond h1,#fond1 h1{
        font-size: 16px;
    }
    #fond p,#fond1 p{
        font-size: 12px;
        
    }
}

/*pour les image defillant*/
.les_fond,.les_fond2{
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 4s ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
}
/* .les_fond::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;
    opacity: 1;
    background-image: linear-gradient(#0a2633ad, #0a2633ad);
    background-attachment: fixed;
} */
/* .les_fond img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
} */
.active_les_fond{
    opacity: 1;
}
