
/* =========Structure générale======== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body{
    width: 100vw;
    min-height: 100vh;
     
    /* background-color: rgba(226, 224, 224, 0.454); */
    background-color: rgba(244, 239, 239, 0.621);
}

header{
    width: 100vw;
    display: flex;
    align-items: center;
   
    background-color:firebrick; 
}
.header-conteneur{
    width: 100%;
    /* background-color: rgb(69, 97, 122); */
   /*  background-color:  #ff0202; */
    display: flex;
    align-items: center;
    margin:12px;
    color: white;
}


.zone-hamburger{
    background-color: rgba(11, 123, 12, 0.1);
    display: flex;
    
}

.texte-futur{
    margin-left: 1px;
   
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-hamburger{
    background-color: white;
    color: red;
    border-radius: 3px;
    border: 1px solid red;
    width: 44px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px 0px 3px 1px; /* top right bottom left */
    
}

.menu-hamburger:hover{
    cursor: pointer;
    opacity: 0.8;
}

.zone-logo{
    display: flex;
    width: 100%;
    align-items: center;
  /*   justify-content: center; */
    margin-left: 2px;
    margin-right: 20px;
    /* background-color: aqua; */
     
}

.zone-logo>div{
    margin-left: 2px;
   /*  background-color: blue; */
     
}
.logo{
    width: 40px;
    height: 40px;
    /* background-color: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.logo>img{
    width: 60px;
    height: 60px;
    
}
.nom{
    padding-left: 1px;
}

.nom>h2>a{
    text-decoration: none;
     color: white;
}

.zone-cnx,.zone-cnx-2{
    position: fixed;
    bottom: 20px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff0202;
    display: flex;
    justify-content: center;
    align-items: center;
     animation:animerBtn .6s ease-in-out;
}

@keyframes animerBtn {
    from{
        
        transform: translateX(200%);
    }to{
        transform: translateX(0%);
    }
}


#message{
    animation: animerMessage 2s ease-in-out;
}

@keyframes animerMessage {
    from{
        opacity: 0;
    }to{
        opacity: 1;
    }
}



.zone-cnx:hover{
    cursor: pointer;
    opacity: .8;
    background-color: yellow;
    color:black;
}

section{
    width: 100%;
    min-height: 40%;
    /* background-color: tomato; */
}
.section-conteneur{
    width: 100%;
    min-height: 80vh;
    /* background-color: tomato; */
}

footer{
    width: 100%;
    min-height: 15vh;
   /*  background-color: rgba(5, 3, 3, 0.9); */
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: white;
}
.footer-conteneur{
    width: 100%;
    display: flex;
    flex-direction: column;
    /* background-color: rgba(5, 3, 3, 0.9); */
}

.footer-haut{
    display: flex;
    justify-content: space-evenly;
    padding-top: 12px;
    background-color: rgba(5, 3, 3, 0.862);
}
.footer-bas{
     margin-top: 0px;
     margin-bottom: 0px;
     text-align: center;
    /*  background-color: rgb(85, 98, 110);
     background-color: rgba(31, 28, 28, 0.3);
     background-color: rgba(17, 14, 14, 0.9); */
     background-color: rgba(5, 3, 3, 0.9);
     padding-top: 20px;
     padding-bottom: 20px;
     display: flex;
     flex-direction: column;
     align-items: center;
     
}

 

.footer-bas>p{
   margin: 8px;
   line-height: 10px;
   /* color: white; */
   
}
.footer-bas>hr{
     display: none;
    
 }
 

.reseaux-sociaux>a{
    color: white;
    margin: 8px;
    font-size: 24px;
    text-decoration: none;
}

 

.adresse, .partenaire,.suivre{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.adresse, .partenaire{
    display: none;
}

.imagefond{
    width: 100%;
   height: 100%;
    position: absolute;
    z-index: -100;
    opacity: .3;
}


.reverse-eml{
    unicode-bidi: bidi-override;
    direction: rtl;
     
}


/* ==============================Pour la page index========================================= */
.section-haut{
    width: 100%;
    min-height: 30vh;
    /* background-color: orange; */

}

.recrutement{
    position: relative;
   /*  background-color: aqua; */
    width: 100vw;
    min-height: 300px;
    margin-bottom: 40px;  
    border-radius: 8px;
    
}



.recrutement>div{
     /* background-color: red; */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.recrutement>div>img{
    /* height:100%;
    width:100%; */
    height: 100%;
    width: 50%;
   /*  border-radius: 8px; */
    /* padding: 2px; */
}




.menu-contenu{

    height: 100vh;
    width: 40vw;
    
    background-color: firebrick;
    color: white;
    display: none;
    flex-direction: column;
    position: fixed;
    z-index: 100;
    top: 0;
    animation: animer-menu .5s ease-in;
    /* border-right: 5px solid #333; */
}

@keyframes animer-menu {
    from{
        transform: translateX(-100%);
    }to{
        transform: translateX(0);
    }
}



.menu-haut{  
    background-color: #333;
}

.btnClose{
    font-size: 16pt;
    background-color: #333;
    text-align: right;
}

.btnClose>i{
    margin-top:8px;
    margin-right: 8px;
    cursor: pointer;
}
.btnClose>i:hover{
   color: firebrick;
}
.image-menu{
   text-align: center;
}
.image-menu>img{
    width: 50%;
    height: 200px;
}


.menu-bas>p{
    font-size: 13pt;
    margin: 10px;
}

.menu-bas>p>a{
    color:white;
    text-decoration:none;
    padding: 10px;
}
.menu-bas>p>a:hover{
    color:yellow; 
}

.menu-bas>hr{
    width: 90%;
    margin-left: 20px;
}

.section-slogan{
    background-color: rgba(11, 123, 12, 0.1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
}
.section-slogan>div{
   margin: 6px; 
   width: 100%;
   /* background-color: aqua; */
   display: flex;
   align-items: center;
    justify-content: center;
}


.section-slogan>div>h4{
    /*  animation: animerSlogan 7s ease infinite; */
    text-align: center; 
     
}



@keyframes animerSlogan {
     0%{
        color: red;
     }
     20%{
        color: forestgreen;
     }
     40%{
        color:darkorange;
    }
    60%{
        color: black;
    }
    80%{
        color: dodgerblue;
    }
    100%{
        color: purple;
    }
}


.section-fondateur{
   /*  background-image: url(../images/images-2.jpeg) ;
    background-repeat: no-repeat;
    background-size: cover; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   /*  background-color: palegreen; */
    margin: 15px;
    /* box-shadow: -2px 0px 2px 3px grey; */
    border-bottom: 1px solid gray; 
}

.section-fondateur>div>h2{
    text-align: center;
}
.section-fondateur>div>p{
     
    text-align: center;
    margin: 8px;
    font-size: 18px;
}


.info-fondateur{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.info-fondateur>div{
    margin: 4px;
}

.fondateur-image{
   /*  background-color: peru; */
     display: flex;
     justify-content: center;
     align-items: center;
}
.fondateur-image>img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #ff0202;
}

 

.fondateur-texte>p{
    margin-top: 20px;
}

 

.section-bas{
    /* background-color: aqua; */
    width: 98%;
    min-height: 20vh;
    margin: auto;
    /* background-color: peru; */
}
.services{
    width:98%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-color: cadetblue; */
    margin: auto;
}

.carte{
    padding-left: 1px;
    padding-right: 1px;
    text-align: center;
    /* background-color: whitesmoke; */
    
}

.rdc{
    text-align: center;
}

/* Pour Google Maps */
iframe{
    width: 100%;
    height: 400px;
    margin-top: 10px;
    border: none;
}

.rdc>div, .rdc>h3{
    text-align: center;
    /* color: firebrick; ou en hexadecimal: #b22222; */
}

.gestion{
    /* background-color: red; */
    margin-top: 25px;
}

.gestion>div{
    /* background-color: #ff0202; */
    display: flex;
    flex-direction: column;
     justify-content: center;
}



.carte-gestion{
    background-color: rgba(232, 228, 228, 0.086);
    display: flex;
    min-height: 40vh;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    
}

.carte-gestion>div{
    
    /*  background-color: blue; */
     width: 100%;
     height: 50vh;
}
.carte-gestion>div>img{
    
    /*  height: 60vh; */
     /* background-color: blue; */
     width: 100%;
     height: 50vh;
}
 

.services>div:nth-child(1){
      
    /*  background-color: brown; */
     text-align: justify;
       
}

 
.services>div>p{
  margin-top: 10px;
     
}

 

.galerie-image-conteneur{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* background-color: orange; */
    margin-top: 5px;
    width: 100%;
    min-height: 40vh;
    /* background-color: olive; */
}

.annonce{  
   
    background-color: #333;
    width: 90%;
    margin: auto;
    margin-top: 30px;
    color:white;
    border-radius: 20px;
    padding: 8px;
    
      
     
}

.galerie-haut, .annonces-items-conteneur{
    /* background-color: palegreen; */
   /*  width: 98.7%; */
    width: 90%;
    min-height: 20vh;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
   /*  gap: 3%; */
   /* background-color: palegreen; */
}


.videosAnnonces{
    width: 100%;
   
}


.videosAnnonces>div{
    width: 100%;
    
}
.videosAnnonces>div>video{
    width: 100%;
    height: 260px;
}




.projet-joint-venture{
    margin-top: 10px;
    margin-bottom: 30px;
    /* background-color: red; */
    width: 98%;
}

.slider-projet-conteneur{
    width: 83%;
    height: 480px;
   /*  background-color: #123; */
   /*  border: 1px solid rgba(0, 0, 0, 0.384); */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    margin: auto;
    position: relative;
    
}
.sliders-projet{
    width: calc(100% * 4);
    height: 480px;
    background-color: cadetblue;
   
    display: flex; 
    animation: animerSliderProjet 60s ease infinite;
}

@keyframes animerSliderProjet {
     0%,20%{
        margin-left: 0%;
     }

     30%,50%{
        margin-left: -100%;
     }

     60%,80%{
        margin-left: -200%;
     }

     90%,100%{
        margin-left: -300%;
     }
      

     
}

.sliders-projet>div{
    width: 100%;
    height: 100%;
   /*  background-color: #123; */
   background-color: pink;
    
}


.sliders-projet>div>img{
    width: 100%;
    height: 100%;
   
}

.texte-projet{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 243, 37, 0.566);
    /* background-color: rgba(212, 25, 25, 0.566); */
    background-color: rgba(175, 250, 176, 0.566);
    background-color: rgba(150, 246, 152, 0.566);
    background-color: rgba(30, 143, 255, 0.696);
    display: flex;
   /*  justify-content: flex-end; */
   justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 24pt;
}

.texte2{
    background-color: rgba(150, 246, 152, 0.566);
    background-color: rgba(162, 44, 44, 0.807);
    color: rgba(255, 255, 255, 0.845);
    font-size: 14pt;
    padding: 8px;
}
.texte-projet>p{
    margin: 10px;
    
   /*  color: white; */
    font-size: 14pt;
    color: rgba(39, 13, 13, 0.959);
    color: rgba(34, 10, 10, 0.959);
    color: rgba(255, 255, 255, 0.845);
}








.galerie-haut>div, .annonces-items-conteneur>div{
     width: 100%;
    /*  background-color:firebrick; */
     display: flex;
     flex-direction: column;
      margin: 5px auto;
      padding: 15px;
     /* border:.3px solid rgba(34, 34, 34,0.4); */
 
     
}

.galerie-haut>div>a, .galerie-bas>div>a, .annonces-items-conteneur>div>a{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
   
    
}

.galerie-haut>div>a>img, .galerie-bas>div>a>img, .annonces-items-conteneur>div>a>img{
    width: 100%;
    height: 260px;
    
}

.galerie-haut>div>a>img:hover, .galerie-bas>div>a>img:hover, .annonces-items-conteneur>div>a:hover{
    opacity: .8;
    cursor: pointer;
}

.galerie-haut>div>div>p, .galerie-bas>div>div>p{
      margin: 10px;
      
       
      /* font-size: 12pt; */
}

 
.description-img-galerie{
    
   /*  background-color: firebrick; */
    background-color:white;
    color: rgba(51, 51, 51, 0.934);

    padding: 8px;
   
}
.description-img-galerie:hover{
   color: #333;
}

.description-img-galerie>p:nth-child(1){
    color: firebrick;
    font-size: 14pt;
 }

.btn-plus-annonce>a>button{
   /*  padding-left: 30px;
    padding-right: 30px; */
    padding: 10px 30px 10px 30px;
    border-radius: 20px;
    border: 1px solid firebrick;
    background-color: white;
    color: firebrick;
   /* font-size: 12pt; */
}

.btn-plus-annonce>a>button:hover{
    cursor: pointer;
    background-color: firebrick;
    color: white;
 }
 

.zonRecherche{
   /*  background-color: deepskyblue;
    /* background-color: gold; */ 
    background-color: rgba(212, 207, 207, 0.959);
    display: flex;
    flex-direction: column;
    width: 98%;
    margin: auto;
    box-sizing: border-box;
    border-radius: 4px;
    margin-top: 10px;
}

.zrBoutons{
    display: flex;
    justify-content: space-evenly;
    /* background-color:lightslategray; */
    margin-top: 15px;
}
.zrBoutons>button{
   /*  background-color:#ff0202;
    background-color: #333; */
    background-color: rgb(34, 32, 32);
    text-align: center;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    border:none;
    font-size: medium;
    
}
.zrBoutons>button:hover{
   background-color: firebrick;
    cursor: pointer;
}
 
.zrBoutons>button>div{
     margin-top: 12px;
     margin-bottom: 12px;
     margin-left: 15px;
     margin-right: 15px;
}

.form-recherche{
   /*  background-color: blueviolet; */
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.frmAchat{
    background-color: lime;
    background-color: rgba(212, 207, 207, 0.959);
   /*  background-color: #222; */
    display: none;
    justify-content: center;
    animation: animerForm 1s ease;
}

.frmLocation{
    /* background-color: dodgerblue; */
    background-color: rgba(155, 151, 151, 0.959);
    display: none;
    justify-content: center;
    animation: animerForm 1s ease;
}

@keyframes animerForm {
    from{
        opacity: .3;
        transform: translateX(-100%);
    }to{
        opacity: 1;
        transform: translateX(0%);
    }
}

.frmAchat-conteneur, .frmLocation-conteneur{
    display: flex;
    flex-direction: column;
    width: 68%;
    margin-top: 4px;
  /*   background-color: yellow; */
    padding: 8px;
}

.frmAchat-conteneur>div, .frmLocation-conteneur>div{
    display: flex;
     flex-direction: column;
     margin-top: 10px;
}

.frmAchat-conteneur>div>select, .frmLocation-conteneur>div>select{
     padding: 5px;
     border: 1px solid #333;
      
}

 

.frmAchat-conteneur>div>button, .frmLocation-conteneur>div>button{
    padding: 8px;
    border-radius: 4px;
    border:none;
    margin-bottom: 18px;
    background-color: firebrick;
    color: white;
    cursor: pointer;
}

.frmAchat-conteneur>div>button:hover, .frmLocation-conteneur>div>button:hover{
     opacity: .9;
}





/* ===========================Pour la page connexion ======================================*/
.frm-connexion{
   /*  background-color: rgba(34, 34, 34, 0.062); */
    
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
     
}



.frm-connexion>form{
    width: 30%;
    background-color: rgba(34, 34, 34, 0.062);
    background-color: firebrick;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 8px;
     box-shadow: yellow;
     position: relative;
}

.frm-connexion>form>div{
    
    display: flex;
    flex-direction: column;
    margin: 16px auto;
    width: 80%;
    color: white;
}

.frm-connexion>form>div>input{
   padding: 8px;
   font-size: medium;
}

.frm-connexion>form>div>label{
    margin: 2px;
 }

.frm-connexion>form>div>input[type="submit"]{
    border-radius: 15px;
    border:none;
    
 }
 .frm-connexion>form>div>input[type="submit"]:hover{
    cursor: pointer;
    background-color: yellow;
 }

 .frm-connexion>div{
     
     margin: 6px;
    font-size: medium;  
     animation: texteMessage 2s ease;
}

@keyframes texteMessage {
    from{
        opacity: .1;
    }to{
        opacity: 1;
         
    }
}


/* ===========================Pour la page description =========================== */
.libelle-detail-annonce{
    width: 88%;
    margin: auto;
   /*  background-color: yellow; */
    margin: 10px auto;
    text-align: center;
}

.image-slider{
    width: 88%;
    /* min-height: 50vh; */
   /*  background-color: aqua; */
    display: flex;
    justify-content: center;
    margin: auto;
    /* margin-top: 10px; */
     
}

.boutonsSlider{ 
    display: flex;
    align-items: center;
}

.btnSliderPrecedent, .btnSliderSuivant{
    position: absolute;
    padding: 5px;
    background-color: #ff0202;
    font-size: 2.5em;
}


.btnSliderSuivant{
     margin-left: -23px;
}

.btnSliderPrecedent:hover, .btnSliderSuivant:hover{
    cursor: pointer;
    color: white;
}


.slider-conteneur{
    width: 70%;
    height: 400px;
   /*  background-color: #123; */
   /*  border: 1px solid rgba(0, 0, 0, 0.384); */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
}

.sliders{
    width: calc(100%*8);
    height: 400px;
    background-color: cadetblue;
    display: flex;
    
}

.sliders>div{
    width: 100%;
    height: 100%;
    background-color: #123;
    
}

/* .sliders>div>div{
    
   
} */


  
 .dots{
     display: flex; 
     /* background-color: dodgerblue; */
     justify-content: center;
     margin-top: -30px;
 }
 .dots>div{
     border: 1px solid #ff0202;
     border-radius: 50%;
     padding:7px;
     margin: 6px;
}

.dots>div:hover{
    cursor: pointer;
}



.tableau-description{
    width: 90%;
    margin: 40px auto;
     /* display: none; */
   /*  background-color: dodgerblue; */
     
}
.tableau-description>div{
   /*  background-color: aqua; */
  /*  display: flex;
   flex-direction: column; */
    margin: 6px;
    
}
.tableau-description>div>table{
   /*  background-color: black; */
     width: 70%;
     text-align: center;
     margin:auto;
}

.tableau-description>div>table tr{
     
    background-color: firebrick; 
    color: white;
    line-height: 25px;
}

.tableau-description>div>table tr td{
   padding: 6px;
}
 
.commentaires{
    width: 70%;
    /* background-color: firebrick;
    background-color:burlywood; */
    margin: 25px auto;
}

.commentaires>p{
    display: flex;
    flex-direction: column;
    text-align: justify;
    line-height: 25px;
    /* color: rgba(51, 51, 51, 0.979);
    color: #333; */
}

.contact-annonce{
    width: 90%;
    margin: auto;
    /* background-color: firebrick; */
    margin-top: 40px;
}


.contact-annonce>div{  
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    margin: 40px auto;
}
.contact-annonce>div>p{  
    text-align: center;
    width: 69%;
    background-color: rgb(160, 153, 153);
    box-shadow: 0px 4px 4px 0px grey;
    margin: auto;
    padding: 4px;
}
.contact-annonce>div>p:nth-child(1){  
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}


.contact-annonce>div>form{
   /*  background-color: rgb(218, 213, 213);
    background-color: #123; */
    display: flex;
    flex-direction: column;
    width: 69%;
    margin: 1px auto; 
    box-shadow: 0px 4px 4px 0px grey;
}

.contact-annonce>div>form>div{ 
    display: flex;
    flex-direction: column;
    margin: 10px auto;
    width: 80%; 
}

.contact-annonce>div>form>div>input{
     padding: 6px;
    /*  border: 1px solid #ff0202; */
     
}

.contact-annonce>div>form>div>button{
    padding: 6px;
    border: none;
    background-color: firebrick;
    border-radius: 15px;
    color:white;
}

.contact-annonce>div>form>div>button:hover{
     cursor: pointer;
     opacity: .9;
}





/*==============================Pour la page recherche====================*/

.lien-accueil{
    display: flex;
    
    background-color: rgba(11, 123, 12, 0.195);
    padding: 5px;
    font-size:14pt;
    color: firebrick;
}

.lien-accueil>a{
     
    color: black;
    margin-left: 8px;
    color: firebrick;
}

.texteResultat{
   margin: 8px auto;
   text-align: center;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}
.texteResultat>p{
     color: blueviolet;
     width: 80%;
     margin: auto;
     font-size: 13pt;
     /* background-color: cornflowerblue; */
}

#image-aucun-resultat{
    text-align: center;
    width: 20%;
    height: 20%;
    margin-top: 4%;
    
}


.images-recherche>div{
    /* background-color: orangered; */
    width: 80%;
    min-height: 20vh;
    margin: auto;
     
}

.images-recherche>div>table{
    /* background-color: white; */
    width: 100%;
}
.images-recherche>div>table td{
    /* background-color: rgb(132, 152, 158); */
    display: flex;
    min-height: 20vh;
    margin-top: 5px;
    /* justify-content: center; */
    /* flex-direction: column; */
}
 

.image-rech{
    width: 40%;
    height: 25vh;
    margin: 3px ;
}

.descript-rech{
     
    background-color: white;
    width: 100%;
    margin: 1px ;
    padding: 8px;
    
}

.descript-rech>h4, .descript-rech>p, .descript-rech>button{
     
     padding: 2px;
    
}
.descript-rech>button{
    background-color: firebrick;
    border: none;
   padding: 10px;
   margin-top: 8px;
    
}
.descript-rech>button>a{
    color: white;
    padding: 10px;
    font-size: 10pt;
}


.images-recherche>div>table tr td{

    margin-top: 20px;
    
    box-shadow: -1px 2px 5px 2px grey;
    /* border-radius: 8px; */
}

.zoneRechercheNav>div{
    display: flex;
    justify-content: center;
    margin: 10px;
}

.zoneRechercheNav>div>p{
    margin: 10px;
}


.zoneRechercheAssocie{
    background-color: grey;
    min-height: 30vh;
    display: none;
    
}

.zoneRechercheAssocie>div{
    background-color: red;
    width: 80%;
    margin: auto;
}






/* ========================Pour la page Bien==================================== */
.lien-bien{
    display: flex;
    justify-content: space-between;
   
}
 .lien-bien>div{
     display: flex;
     margin-left: 10px;
     margin-right: 10px;
 }

 .texte-deconnexion>p>a{
     color: red;
 }
.frm-bien{
    /* background-color: red; */
    min-height: 70vh;
    display: flex;
     flex-direction: column;
    justify-content: center;
    align-items: center;
}

.frm-bien>form{
    margin: 10px auto;
    width: 98%;
    background-color: rgb(240, 233, 233);
    border-radius: 6px;
}

.bien-form-l1{
    /* display: flex;
    justify-content: space-evenly; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
   
     
    background-color: rgba(42, 43, 42, 0.224);
    color: rgb(45, 44, 44);
    width: 100%;
    margin: auto;
   /*  background-color: red; */
    
}

.last{
   background-color: rgb(182, 174, 174);
   margin: 5px auto;
   width: 100%;
   display: flex;
}

.last>div>input{
    width: 30%;
    background-color: firebrick;
    margin: 5px auto;
      
    
 }
 
.bien-form-l1>div{
   
     display: flex;
     flex-direction: column;
     
     /*  background-color: lightcoral; */
      width: 90%;
      margin:10px auto;
}

/* .zSaisie-bien>div>label{
   
    font-size: 12pt;
} */

.frm-bien .bien-form-l1>div>input{
     padding: 8px;
     border-radius: 3px;
     border:none;
     border: 1px solid #333;
     font-size: 11pt;
}
.frm-bien .bien-form-l1>div>select{
    padding: 8px;
    border-radius: 3px;
    border:none;
    border: 1px solid #333;
    font-size: 11pt;
}

.bien-form-l1>div>input[type="submit"]{
     border: none;
     cursor: pointer;
     color: white;
     font-size: medium;
     border-radius: 5px;

}

.bien-form-l1>div>input[type="submit"]:hover{
     opacity: .7;
     background-color: #123;
    
}


.tableau-bien{
   /*  background-color:red; */
    width: 98%;
}
.tableau-donnees-bien{
     
    width: 100%;
    
    
}

.tableau-donnees-bien>table{
     
    width: 100%;
    /* background-color: rgb(33, 241, 241); */
    margin: auto;
}

.tableau-donnees-bien>table th{
     background-color: #333;
     background-color: #ff0202;
     color: white;
}





/* ======================Pour la page vendre ================================*/
.vendre-contenu{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
   /*  background-color: aqua; */
    
}

.vendre-contenu>div{
   
    /* margin: 10px; */
    display: flex;
   
}

.vendre-haut{
   /*  background-color: coral; */
    display: flex;
    min-height: 40vh;
   padding-left: 10px;
   padding-right: 10px;
}


.vendre-texte-haut{
   background-color: firebrick;
   color: white;
   width: 100%;
   
   min-height: 40vh;
   display: flex;
   justify-content: center;
    
}

.vendre-texte-haut>div{
   /*  background-color: gold; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    text-align: justify;
    /* min-height: 40vh; */
}

.vendre-image-haut{
    /* background-color: lightseagreen; */
    width: 100%;
    min-height: 40vh;
}
.vendre-image-haut>div{
    /* background-color: pink; */
    height: 40vh;
}

.vendre-image-haut>div>img{ 
   width: 100%;
    height: 100%;
}

.vendre-texte-bas{
   /*  background-color: cornflowerblue; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.vendre-texte-bas>div{
   /*  background-color: yellow; */
    display: flex;
    margin-top: 15px;
    flex-direction: column;
    justify-content: center;
     padding-left: 10px;
     padding-right: 10px;
     
}
.vendre-texte-bas>div>div{
     display: flex;
      
}
.texte-zone{
    width: 50%;
    text-align: justify;
    /*  background-color: #123; */
     padding-right: 20px;
}

.zone-exp-mission{
    display: flex;
    justify-content: space-between;
    font-size: 14pt;
}

.mission{
    font-size: 14pt;
    /* background-color: lightgreen; */
    padding-left: 25px;
}

.mission>p:first-child{
    
    font-size: 14pt;
    font-weight: bold;
   
}

.mission>div{
    
    margin-top: 4px;
     margin-left: 22px;
     margin-right: 22px;
    padding-left: 10px;
}

 

.texte-etapes{
    margin-top: 20px;

}

.texte-etapes>div{
    /*  background-color: aqua; */
    padding-left: 10px;
     
 }

.texte-etapes>div>p{
   font-size: 13pt;
    
}

.form-vente-contact{
   
    background-color: rgba(128, 128, 128, 0.254);
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.form-vente-contact>div{
    background-color: white;
     display: flex;
     flex-direction: column;
     width: 70%;
     margin: 10px auto;
     border-radius: 10px;
}

.form-vente-contact>div>form{
     margin-top: 10px;
     display: flex;
     flex-direction: column;
     font-size: 14pt;
    color: black;
    margin: 10px;
}

.form-vente-contact>div>form>div{
     margin: 10px;
     display: flex;
     flex-direction: column;
}

.form-vente-contact>div>form>div>input,.form-vente-contact>div>form>div>select,.form-vente-contact>div>form>div>button{
     padding: 10px;
}

.form-vente-contact>div>form>div>button{
    border: none;
    background-color: firebrick;
    font-size: 12pt;
    color: white;
}

.form-vente-contact>div>form>div>button:hover{
   opacity: .9;
   cursor: pointer;
}

textarea{
    min-height: 80px;
     resize: none;
     padding: 10px;
     font-size: 12pt;
}

.form-vente-contact input{
   font-size: 12pt;
}

.zone-vendre-message{
    background-color: #123;
}

#vendreMessage{
    display: none;
    animation: animer-message 2s ease;
      
}

@keyframes animer-message {
    from{
        opacity: 0;
    }to{
        opacity: 1;
    }
}



/*======================================== Pour la page acheter================== */
.image-fond{
    width: 100%;
}

/*======================================== Pour la page louer================== */
 

/*======================================== Pour la page nous-contacter================== */
 


/*=================Pour la page annonce ============================*/
.annonce-contenu{
   /*  background-color: rgba(230, 227, 227, 0.962);
    background-color: #333; */
    display: flex;
    flex-direction: column;
}

.slider-annonce{
    background-color: firebrick;
    display: none;
}

.annonces-items-conteneur{
   /*  display: grid;
    grid-template-columns: repeat(3, 1fr); */
     
}

.texte-annonces{
    width: 100%;
    text-align: center;
    margin: 30px auto;
    /* background-color: #123; */
}
.texte-annonces>h3{
   margin: 2px auto;
   color: #333;
    
}

 
/* =================================Responsive================================================================== */

/* On part des grands écrans vers les petits */

@media screen and (min-width:988px) {
    .texte-animation>h2{
        /*  background-color: #333; */
         animation: animer-texte2 1s ease-in-out;
     }
     
     @keyframes animer-texte2 {
         from{
             margin-left: -100%;
         }to{
             margin-left: 0%;
         }
     }
     
     
     .texte-animation>h3{
         /*  background-color: #333; */
          animation: animer-texte3 3s ease-in-out;
      }
      
      @keyframes animer-texte3 {
          from{
              opacity: 0;
          }to{
              opacity: 1;
          }
      }
     
      .texte-animation>h4{
         /*  background-color: #333; */
          animation: animer-texte4 5s ease-in-out;
      }
      
      @keyframes animer-texte4 {
          from{
              margin-left: -100%;
          }to{
              margin-left: 0%;
          }
      }
     
      .texte-animation>p{
         /*  background-color: #333; */
          animation: animer-texte5 8s ease-in-out;
      }
      
      @keyframes animer-texte5 {
         from{
             opacity: -1;
         }to{
             opacity: 1;
         }
      }
}


/* @media screen and (max-width:992px) {


} */

@media screen and (max-width:914px) {
    .zone-exp-mission{
        /* background-color: red; */
        display: flex;
        flex-direction: column;
    }

    .texte-zone{
        width: 100%;
        padding: 0;
    }

    .mission{
        margin-top: 10px;
        padding: 0px;
        text-align: justify;

    }

    .texte-etapes{
       /*  background-color: aqua; */
        width: 100%;

    }

    .galerie-haut, .annonces-items-conteneur{
       
        grid-template-columns: repeat(2, 1fr);
       /*  gap: 3%; */
         
    }
    
}


@media screen and (max-width:910px){
    
}

@media screen and (max-width:840px){

    .image-rech{
        width: 90%;
    }

    .frm-connexion>form{
        width: 70%;
        
    }

}


@media screen and (max-width:800px){
    .recrutement>div{
        /* background-color: red; */
        
        
       flex-direction: column;
        
   }
   
   .recrutement>div>img{
    /* background-color: red; */
        width: 100%;
        
    }
    
    .projet-joint-venture>div{
       width: 100%;
    }
}


@media screen and (max-width:732px) {
    .vendre-haut{
        display: flex;
        flex-direction: column;
    }
}



@media screen and (max-width:713px) {
    /*  On cible les mobiles (écran dont la taille maximale est 713px) */
      
    .image-slider{
       /*  background-color: yellow; */
        width: 96%;
    }

    .slider-conteneur{
        width: 100%;
    }

    .tableau-description{
         
        width: 96%;
        margin: 40px auto;
    }
    .tableau-description>div{
         
        width: 100%;
        margin: auto;
    }

    .tableau-description>div>table{
        width: 100%;
    }

    .commentaires{ 
        width: 96%;
    }

    .contact-annonce{ 
        width: 96%;
        margin: auto;
        /* background-color: blueviolet; */
    }

    .contact-annonce>div{ 
        width: 100%;
    }

 }


@media screen and (max-width:650px){
    .galerie-haut, .annonces-items-conteneur{
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        margin: auto;
       /*  background-color: #ff0202; */
    }
    .galerie-haut>div, .annonces-items-conteneur>div{
        margin: auto;
    }
    
}



 @media screen and (max-width:642px){
    /* On cible ici les inputs du upload des fichiers, on les aligne les uns en dessous autres */

     .fichier-upload{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
     }

 }


@media screen and (max-width:636px) {
    /*  On cible les mobiles (écran dont la taille maximale est 616px) */

    .services{
        
        display: flex;
        flex-direction: column;
        text-align: justify;
    }
    .services>div:nth-child(1){
        width: 100%;
      /*  background-color: brown; */    
    }

    .services>div>ul>li{
        margin-left: 20px;
    }


    .contact-annonce>div>p{  
        
        width: 100%;
        
    }

    
    .contact-annonce>div>form{
        width: 100%;
    }
    

    .tableau-donnees-bien{
        overflow: scroll;
    }

    .frm-connexion>form{
        width: 80%;
        
    }

    .form-vente-contact>div{
       /*  background-color: red; */
        width: 100%;
    }

 }

 @media screen and (max-width:623px){
    .zSaisie-bien{
        /*  background-color: chartreuse; */
        display: flex;
        flex-direction: column;
    }
    
     .projet-joint-venture{
        width: 99vw;
    }
 }


@media screen and (max-width:546px) {
   /*  On cible les mobiles (écran dont la taille maximale est 546px) */
     
   /* .galerie-haut, .galerie-bas{
       display: grid;
        grid-template-columns: 1fr 1fr; 
   }

   .galerie-haut>div, .galerie-bas>div{
     width: 100%;
     margin: 6px auto;
     padding: 4px;
      
} */

   .zrBoutons{
        display: flex;
        flex-direction: column; 
    }
    .zrBoutons>button{
        
         margin: 6px;
    }

    .images-recherche>div>table td{
       /*  background-color: dodgerblue; */
        display: flex;
        flex-direction: column;
    }

    .image-rech{
         width: 100%;
         margin: auto;
    }

    .descript-rech{
        margin: auto;
        /* background-color: gainsboro; */
    }


    .zSaisie-bien{
       /*  background-color: chartreuse; */
       display: flex;
       flex-direction: column;
   }
    

    .zSaisie-bien>div{
        /*  background-color: chartreuse; */
        display: flex;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
    }

    .menu-contenu{
       /*  background-color: greenyellow; */
        width: 88vw;
    }
}

@media screen and (max-width:478px) {
    /*  On cible les mobiles (écran dont la taille maximale est 478px)  */
      
    .info-fondateur{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .info-fondateur>div{
         display: flex;
         flex-direction: column;
         justify-content: center;
         text-align: center;
    }


    .fondateur-texte>p{
        margin-top: 4px;
    }

    /* .galerie-haut, .galerie-bas{
        
        display: flex;
        flex-direction: column;
        min-height: 32vh;
    }

    .galerie-haut>div, .galerie-bas>div{
       
        width: 98%;
        min-height: 32vh;
        margin: 5px auto;   
    }


    .galerie-haut>div>a, .galerie-bas>div>a{  
        height: 32vh; 
    } */

    .footer-haut{
        display: flex;
        flex-direction: column;
    }

    .adresse{
        border-bottom: 1px solid rgb(59, 58, 58);  
    }

    .partenaire{
        border-bottom: 1px solid rgb(59, 58, 58);
         padding: 8px;
    }
    .suivre{
         margin: 4px;
    }

    .frmAchat-conteneur,.frmLocation-conteneur{
        /* background-color: yellow; */
        width: 96%;
    }
     

    .bien-form-l1{
        display: flex;
        flex-direction: column;
        margin: auto;
    }
    
    .bien-form-l1>div{  
        margin: 5px auto;
    }
    .bien-form-l1>div>input[type="submit"]{  
     /*   background-color: dodgerblue; */
       width: 90%;
    }

    .descript-rech>button{
        width: 100%;
        
    }

 }
 
 
 @media screen and (max-width:438px) and (min-height:500px) {
    
    
    .slider-projet-conteneur{
        height: 300px;
    }

    .texte-projet>p{
        font-size: 12pt;
    }
     
    .texte2{
        font-size: 12pt;
     }
 }

 
 
 

 @media screen and (max-width:327px) {
    .lien-bien{
        display: flex;
        flex-direction: column;
         justify-content: center;
    }
    .lien-bien>div{
        display: flex;
         justify-content: center;
    }
 }

 @media screen and (max-width:301px) {
    .lien-accueil{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
 }




 @media screen and (max-width:278px){
    .zone-hamburger{
         background-color: rgba(11, 123, 12, 0.1);
         display: flex;
         flex-direction: column;
         
     }

     .texte-futur{
        margin-top: 2px;
     }
 }


 @media screen and (max-width:257px) {
    /*  On cible les mobiles (écran dont la taille maximale est 257px) */
      
    .fondateur-image>img{
        width: 140px;
        height: 140px;
    }
    .frm-connexion>form{
        width: 90%;
    }

    
 }

 @media screen and (max-width:192px) {
    /*  On cible les mobiles (écran dont la taille maximale est 192px) */
   
    header{
        display: flex;
        justify-content: center;
    }
     

    .header-conteneur{
       /*  background-color: #123; */
        display: flex;
        flex-direction: column;
       
    }

    .zone-logo{
        /* background-color: #123; */
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    .zone-logo>div{
        margin-left: 0px;
         
    }

    .logo{
        
        margin-right: 0px;
    }

    .fondateur-image>img{
       width: 120px;
       height: 120px;
    }
    .nom{
        text-align: center;
        margin-top: 10px;
    }

    
    .tableau-description table tr{
        display: flex;
        flex-direction: column;
    }

    .valeur-desc{
        color: rgba(245, 245, 245, 0.591);
    }

    
 }


  




  