header{
    background: rgba(0, 0, 0, 0.85);
    /*padding-left: 10svw;*/
    width: 100vw;
    height: 10dvh;
    display: inline-flex;
    color: white;
    position: sticky;
    top: 0px;
    padding-bottom: 0em;
    padding-top: 0em;
    border-radius: 0px !important;
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
    z-index: 2050;
    align-items: center;
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
}

#espaceProAccessImg{
  height:24px
}

    .sloganMenu{
        cursor: pointer;
        z-index: 50;
        padding: 0.25rem 20px;
        font-weight: 500;
        font-size: 1rem;
        color: white;
        display: flex;
        align-items: center;
        /*box-shadow: 0px 0px 5px black, 0px 0px 6px inset black,0px 0px 4px 2px white inset,
        0px 0px 45px inset black,inset 0px 0px 25px 2px rgb(180,20,180);
        border: 1px black solid;*/
        /*box-shadow: 0px 19px 22px -9px black;*/
        /* border-bottom: 2px black solid; */
        margin: 0.25rem 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        max-width: 90svw;
    }

      .slogansMenu{
    display:flex;
    flex-wrap:wrap;
    flex-direction:row;
    align-items: normal;
    width: 100vw;
    justify-content: center;
  }

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

    .annonceLeaflet img {width: 9rem !important;}
  

   #propertySimilars::-webkit-scrollbar {
        display: none;
    }
    #propertySimilars {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    #dvsMsrLg {
      padding-bottom:2dvh;
     }
    #langSelect, #changeDevise, #changeMesure {
        font-size: 1.5rem !important;  
        padding: 8px;
    }


    #sloganMenuAnnonce {
     }

     }



html{
height: 100dvh;
width: 100vw;
overflow:hidden;
background-image: url(img/house-8704814_1920.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}

body{
    position: relative;
    height: 100dvh;
    width: 100vw;
    overflow: scroll;
    margin: 0px;
backdrop-filter: none !important; 
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    backdrop-filter: blur(4px);
    z-index: -1;
    pointer-events: none;
}

body::-webkit-scrollbar{
  display:none;
}

.brand_logo{
    /* width: 150px;
    height: 3rem; */
    position: absolute;
    display: inline-grid;
    top: 9px;
    left: 8px;
    z-index: 2060;
}

.brand_logo img{
width:2.5rem;
height:3rem;
}



#dvsMsrLg{
    width:0vw;
    position: fixed;
    bottom: 0;
    z-index: 3000;
    right: 50%;
    left: 50%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
/*ChgLgDvsMsr*/

#langSelect, #changeDevise, #changeMesure{
    background: rgba(0, 0, 0, 0.84);
    padding: 10px;
    color: white;
    border: none;
    text-align: center;
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-size:16px;
}

#langSelect:hover, #changeDevise:hover, #changeMesure:hover{
    /* background: rgba(0, 0, 0, 0.4); */
    padding: 13px;
    font-size:20px;
    font-weight: 600;
}


#langSelect option{
    background: white;
    /* color: rgba(16, 180, 86, 0.8); */
    color: black
}


/*Menu*/

#menuMain{
    position: fixed;
    z-index: 100;
    display: none;
    top: 0px;
    /* padding-top: 10svh; */
    width: 100%;
    height: 100%;
    /* background: rgba(20, 20, 110, 0.9); */
    background: rgba(20, 20, 20, 0.95);
}

#menuHeader{
    width: 100vw;
    animation: fadeInFromBottom 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

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


  #menuPartElementAll {
    /*position: absolute;
    top: 0;
    right: 0;*/
  }

#menuHeader{
  display:none;
}

#containerMain{
    margin-top: -0.6vh;
}
 }

 #chgLg{
    position: absolute;
    top: 27px;
    right: 7rem;
 }

.menuCategorie{
  cursor:pointer;
    
}

.menuCategorie:hover{
  color:rgba(16, 180, 86, 1);
}

.menuPartELementUnderTitle{
  cursor:pointer;
}
.menuPartELementUnderTitle:hover{
  color:rgba(16, 180, 86, 1);
}

.menuPartElement{
    display:inline-grid;
    animation: fadeInFromBottom 1.5s ease-out forwards;
}

.menuAskData{
  padding: 8px 20px;
}


#menuPartElementAll{
    z-index: 20;
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20,0.8);
    color: white;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    animation: slideInFromLeft 1s ease-out forwards;
}

#menuMobile{
    padding-top: 18vh;
    position: relative;
    width: auto;
    min-width: 180px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    color: white;
    height: auto;
    animation: slideInFromLeft 1s ease-out forwards;
    
}

#menuMobile .menuPart{    
  padding: 8px 20px;
}



@keyframes slideInFromLeft {
    0% {
        transform: translateX(200%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInFromBottom {
    0% {
        transform: translateY(30px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/*SVG*/

    #menuMain .logoContact, #footer .logoContact{
    position: relative;
    padding-left: 9rem;
    }

    #menuMain .logoContactSvg, #footer .logoContactSvg {
    fill:white;
    }

     @media screen and (max-width: 370px){
    header .logoContact {
display:none;
    }
     }

.logoContactSvg{
    fill: white; 
    /* fill: rgba(16, 180, 86, 0.8);*/
    width: 2rem;
    height: 2rem;
    
}

.logoContactPath{
}

     #backgroundCurves{
      stroke: rgba(08, 90, 140, 0.05);
      stroke-width: 0.2px;
      height: 100svh;
      z-index: 2001;
      width:100svw;
      pointer-events: none;
      /*stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      animation: draw 10s ease-in-out forwards infinite;*/
    }

    #clickOpenMenuMobile{
    position: absolute;
    top: 14px;
    right: 17px;
    width: 30px;
    height: 40px;
    transition: width 0.3s ease;
    z-index: 2060;
    }

    #clickOpenMenuMobile:hover{
    width: 25px;
    }

     #logoMenuOpen {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;

      /* stroke: rgba(238, 20, 189, 0.8); */
      stroke: rgba(100, 20, 189, 0.9);
      stroke-width: 5px;
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      animation: draw 5s linear forwards infinite;
      /* fill: rgba(16, 180, 86, 0.8); */
      fill:rgba(255,255,255,1);
    }

    #XMLID_241_ , #XMLID_242_ , #XMLID_243_ {
  transition: transform 1s ease;
  }


    #brandNameDiv{
    position: absolute;
    top: 14px;
    left: 0px;
    width: 236px;
    height: 69px;
    overflow: hidden;
}


     #brandName{
    position: absolute;
    top: 23px;
    left: 120px;
    transform: translate(-62%, -40%);
    width: 100%;
    height: 100%;
      stroke: rgba(238, 20, 189, 0.8);
      stroke-width: 1.5px;
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      animation: draw 20s ease-in-out forwards infinite ;
   fill: rgba(106, 138, 186, 0.95);
    /*width: 100svw;
    height: auto;*/
    display: block;
    }

    #logoBrandName{
      transform: translate(-68px, -7px);
    }

    #brandLogo{
    stroke: rgba(250, 250, 250, 0.8);
    stroke-width: 0.2px;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 50s ease-in-out forwards infinite;
    fill: none;
    height: 100px;
    width: 100px;
    }


    @keyframes draw {
      0% {
        stroke-dashoffset: 1000;
      }
      50% {
        stroke-dashoffset: 0;
      }
      100% {
        stroke-dashoffset: 1000;
      }
    }

    /*Footer*/
    
    footer{
      margin-bottom:3rem;
    }

    .linksFooter{
    color:white;
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    /*background: rgba(20, 20, 120,0.85);*/
    z-index: 20;
    width: 94vw;
    height:100%;
    padding: 3vw;

}

.linksLegal{
  font-weight:250;
  font-size:1rem;
  align-items: center;
  text-align: center;

}

.linksLegal a{
  color:white;
  text-decoration: none;
}

#footer .menuPart{
  padding: 8px 20px;
}


.elementWorldPage{
  padding:0px 19px;
}


.divFlexFooter{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

  /*Qui sommes Nous*/
  
  #videoQuiSommesNous{
    margin: 2rem;
    width: 100svw;
    max-width: 35rem;
    border-radius: 10px 30px;
    box-shadow: 0px 2px 10px black;
  }
  
  #logoQuisommesNous {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  
  #quiSommesNous {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-height: none;
    /*background: linear-gradient(0deg, rgb(45, 10, 35) 65%, transparent);*/
    /*box-shadow: 0px 1px 10px 1px black, 0px 6px 20px inset black;*/
    padding-bottom: 0.66rem;
  
  }
  
  #quiSommesNous .elementWorldPage{
    max-width: 400px;
    max-height:100px;
    margin: 0.2rem;
    /*background: radial-gradient( rgb(65,20,40), transparent);*/
    border-radius:30px;
    color: black;
    font-size: 1.1rem;
    font-weight: 750;
    font-family: "Rajdhani", sans-serif;
    padding: 1rem;
    display:flex;
  
  }
  
  
  #quiSommesNous c{
    /* text-shadow: 0px 1px 4px rgb(0, 0, 0); */
    color: lightgrey;
    font-size: 1rem;
    font-weight: 450;
    font-style: italic;
  }
  
  
  #quiSommesNous p{
    margin-bottom: 0px;
    font-size: 1.25rem;
    font-weight: 550;
    color:white;
    text-shadow: 0px 0px 2px rgb(220, 0, 220) , 0px 0px 4px black;
  }
  
  
  #indexAcheterVendre p{
    /*color: rgb(120, 10, 148);
    text-shadow: 0px 1px 5px white;*/
  }
  
  #indexAcheterVendre img{
    width: 70px;
    height:100px;
    filter: drop-shadow(2px 4px 3px black);
  }
  
  
  #indexInvestir p{
    /*color: rgb(120, 10, 148);
    text-shadow: 0px 1px 5px white;*/
  }
  
  #indexInvestir img{
    width: 70px;
    height:100px;
    filter: drop-shadow(2px 4px 3px black);
  }
  
  #indexIle p{
    /*color: rgb(120, 10, 148);
    text-shadow: 0px 1px 5px white;*/
  }
  
  #indexIle img{
    width: 70px;
    height:100px;
    filter: drop-shadow(1px 1px 10px black);
  }
  
  #indexFinancier p{
    /*color: rgb(120, 10, 148);
    text-shadow: 0px 1px 5px white;*/
  }
  
  #indexFinancier img{
    width: 70px;
    height:100px;
    filter: drop-shadow(1px 1px 10px black);
  }
  
  #indexFormalites p{
    /*color: rgb(120, 10, 148);
    text-shadow: 0px 1px 5px white;*/
  }
  
  #indexFormalites img{
    width: 70px;
    height:100px;
    filter: drop-shadow(1px 1px 10px black);
  }
  
  

/*Container*/

#containerMain{
position: relative;
    width: 100%;
    height: 90vh;
    /*margin-top: -10svh;*/
    overflow-y: scroll;
    overflow-x: hidden;
}

#containerMain::-webkit-scrollbar {
    display: none;
}

.underConstruction{
font-family: Circular, sans-serif;
    font-weight: 300;
    font-size: 2rem;
    text-align: center;
    padding: 2rem;
    /* margin: 1rem; */
    min-height: 81svh;
    backdrop-filter: blur(34px);
    background: rgba(0, 0, 51, 0.255);
    /* box-shadow: 0px 13px 15px rgba(160, 16, 157, 0.35); */
    /* border-radius: 10px 27px; */
    color: white;
}



.titreTheme{
font-size: 3rem;
color: white;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    animation: slideInFromLeft 1s ease-out forwards;
    padding: 2rem;
}

.descriptionTheme{
      font-family: "Rajdhani", sans-serif;
    font-weight: 400;
    animation: slideInFromLeft 1s ease-out forwards;
font-size: 1rem;
color: white;
padding: 2rem;
}


#containerAlpha{
  overflow:hidden;
  width: 100svw;
  height: 90svh;
  z-index: -1;
}

#containerAlpha .texteTheme{
  position: absolute;
  top: 80px;
  display: flex;
  flex-direction: column;
}

#containerBeta .titreTheme{
    color: rgba(20, 20, 110);
}

#containerBeta .descriptionTheme{
  color: rgba(20, 20, 110);
  font-weight:400;
}

#containerBeta{
  background: rgba(250, 250, 250, 1);
  position: relative;
  overflow:hidden;
  width: 100svw;
}

#containerBeta .texteTheme{
    display: flex;
    flex-direction: column;
    width: 50%;
}

#expertiseHomePage .menuPartElement{
  
}

#expertiseHomePage .menuAskData{
  display: flex;
  align-items: center;
  color: rgba(20, 20, 110);
  font-weight: 800;
  font-size: 21px;
}

.imageLogoExpertise{
  width: 2rem;
  padding: 0px 39px 0px 26px;
}

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

#containerBeta .texteTheme{
  width: 100svw;
}
 
 }

 @media screen and (min-width: 680px){

#containerBeta {
    display: flex;
    align-items: center;
 }
 }


.filterVideo{
    position: absolute;
    background: rgba(22, 33, 97, 0.8);
    height: 90svh;
    width: 100svw;
}

#videoContainer{
    position: relative;
    width: 100%;
    height: 90svh;
    overflow: hidden;
}

#videoAlpha{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    /* width: 100%; */
    /* height: 100%; */
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

#containerGamma {
    font-family: "Rajdhani", sans-serif;
    font-weight: 400;
    animation: slideInFromLeft 1s ease-out forwards;
    background: rgba(20, 20, 110, 0.95);
 }

#containerGamma .texteTheme{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
 }

#containerGamma .descriptionTheme{
  padding: 0px 0px 20px 37px;
 }

#containerGamma .titreSector{
  position: absolute;
  color: white;
  text-shadow:0px 0px 10px rgba(16, 180, 86, 0.8);
  font-size: 2rem;
  bottom: 20%;
  left: 10%;
 }

.divContainSector {
  position:relative;
    cursor: pointer;
    width: 240px;
    height: 243px;
    max-width: 95svw;
    max-height: 50svh;
    overflow: hidden;
  display: flex;
  justify-content: center;
  margin:10px;
  border-radius: 10px 25px;
  box-shadow: 0px 0px 20px black;
}

.divContainSector:hover{
    width: 220px;
    height: 223px;
    box-shadow: 0px 0px 10px black;
}

#sectorsPortfolio{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.filterImgSector{
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    background: rgba(25, 80, 120, 0.25);
  
}

.imageLogoSector{

}

#containerDelta {
  position: relative;
  background:rgba(255, 255, 255, 0.95);
}

#containerDelta .texteTheme{
  position: absolute;
    top: 20%;
    display: flex;
    flex-direction: column;
}

#containerDelta .titreTheme, #containerDelta .descriptionTheme {
  text-shadow:0px 0px 7px  rgba(255, 180, 60, 0.8);
  color:  rgb(20, 20, 110);
}

.filterImgWorldWide{
  
}

.imageLogoWorldWide{

}

#worldWide{
  height: 60svh;
}

#worldSvg{
  height: 100svh;
  width: 100svw;
  stroke: rgba(16, 180, 86, 0.8);
  stroke-width: 1px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 20s ease-in-out forwards infinite;
  fill: none;
}


#containerEpsilon {   
  background: rgba(20, 20, 110);
  padding: 35px;
}

#containerZeta {   
  background: rgba(255, 255, 255);
  padding: 35px;
}

#containerZeta .texteTheme {   
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#containerZeta .titreTheme , #containerZeta .descriptionTheme {   
  color:rgba(20, 20, 110);
}
/*Innovation*/

.innovationAlpha{
  background-image: url('/img/diggity-marketing-s8HyIEe7lF0-unsplash.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}



  /* Moteur Recherche*/

  #closeFilter{
    margin-top: 0.85rem;
    cursor: pointer;
  }

  #closeFormRech{
    position: absolute;
    cursor: pointer;
    border-radius: 22px;
    padding: 0.25rem 0.55rem;
    margin: 1rem;
    font-weight: 800;
    box-shadow: black 0px 0px 1px, 0px 0px 1px inset black;
    background-color: white;
    color: black;
    z-index: 50;
    right: 20px;
}
  
  
  #moteurRechercheQuery{
    height: 100lvh;
    width: 100lvw;
    display: flex;
    background: linear-gradient(to top, transparent -9%, rgba(20, 30, 60, 0.85));
    flex-direction: column;
    align-items: center;
  }

  .moteur_recherche{
    display: flex;
    color: white;
    font: italic 0.76em "Open Sans", sans-serif;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 300px;
    align-items: center;
  margin:auto;
  padding-top:0.66em;
  }

  .moteur_recherche select{
  }
  
  /* Cacher la case à cocher par défaut */
  #filterAnnonces input[type="checkbox"] {
  display: none;
}

/* Styliser le label */
#filterAnnonces input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
  padding-right: 12px;
  padding-bottom: 7px;
  cursor: pointer;
  font-weight: 450;
}

/* Ajouter un pseudo-élément pour la case à cocher */
#filterAnnonces input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 60px;
  box-shadow: 0px 0px 4px black;
  background-color: white;
}

/* Changer l'apparence lorsque la case est cochée */
#filterAnnoncesinput[type="checkbox"]:checked + label::before {
  background-color: #000;
}

/* Ajouter une coche */
#filterAnnonces input[type="checkbox"]:checked + label::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: -4px;
  color: black;
  font-size: 16px;
  font-weight:800;
}

#filterAnnonces{
  animation: 1.5s openScenarized ease-in-out ;
  transform-origin: left center;
  will-change: transform;
}

#filterAnnonces{
  position:relative;
  font-style: normal;
  font-family: "Rajdhani", sans-serif;
  /*background-color: rgba(20, 20, 40, 0.75);*/
  background-color: rgba(255, 255, 255, 1);
  box-shadow: -2px 8px 29px black;
  margin: 1rem;
  border-radius: 20px 10px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color:black;
}

#elementsFilter{
  animation: 1.5s ease-out 0s 1 normal none running openScenarized;
}

.elementFilter{
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.elementFilter form{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
}

.elementFilter input[type="number"]{
  background: white;
  border: none;
  border-radius: 20px 10px;
  box-shadow: 0px 0px 2px white, black 0px 0px 2px;
  color: black;
  padding: 3px 6px;
  max-width: 35lvw;
}


  #nbrAnnonce , #annonceNotifText{
    color: rgba(250, 250, 250, 1);
    font-weight: 500;
    font-family: "Rajdhani", sans-serif;
    text-shadow: 0px 0px 13px black;
  }

  #annonceNotifText {
    padding-left:7px;
    font-weight: 300;
  }

  .leaflet-bottom{
    display:none;
  }

  .annonceLeaflet img{
    width:17rem;
    max-width: 70lvw;
  }

  .textPopUpAnnonce{
    max-width: 82lvw;
  }

  .paysAnnonceLeaflet{
    font-size:1rem;
    margin-right:0.5rem;
  }

  .typeBienLeaflet{
    font-size:0.75rem;
    font-style:italic;
  }
  /*Leaflet*/

.leaflet-popup-tip-container{
  /*transform: rotate(90deg);
  position: absolute;
  left: -15px;
  top: 71%;*/
  display:none;
}

.leaflet-popup-content-wrapper{
  /*color: white;
  background-color: rgba(20, 20, 40, 0.85);
  box-shadow: -2px 8px 29px black;*/
  color: black;
  background-color: white;
  box-shadow: -2px 8px 29px black;
}

.leaflet-popup-content{
display:flex;
width:auto !important;
max-width: 92lvw;
}

.textPopUpAnnonce{
display:flex;
flex-wrap: wrap;
flex-direction: column;

}

.annonceLeaflet{
  cursor:grab;
}


/* property */
#mapProperty{
z-index: 40;
    height: 100lvh;
    width: 100lvw;
    max-width: 20rem;
    max-height: 12rem;
    outline-style: none;
    margin: auto;
    position: relative;
    /* outline-style: none; */
    box-shadow: black 0px 0px 10px;
    border-radius: 20px 10px;
}

#propertyOnline{
  color:white;
  position: fixed;
    top: 0;
    z-index: 2051;
    height: 100vh;
    width: 100vw;
    overflow: scroll;
    font-family: "Rajdhani", sans-serif;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: inset 1px 1px 50px 1px;
}
#propertyOnline::after{
  content: ""; /* OBLIGATOIRE : sinon rien ne s'affiche */
  
  /* On étire le filtre sur tout le parent */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
    backdrop-filter: brightness(50%) blur(12px);
    z-index:-1;
}

#closeProperty{
  cursor:pointer;
    position: absolute;
    right: 16px;
    top: 10px;
    background: black;
    color: white;
    border-radius: 13px;
    padding: 7px;
    box-shadow: 1px 1px 6px black;
    z-index: 2002;
}

  /* The dots/bullets/indicators */


#dotsDiv{
    top: 38px;
    position: relative;
    z-index: 50;
    display: flex;
    width: 100lvw;
    justify-content: center;
}

  .dot {
    cursor: pointer;
    height: 1rem;
    width: 1rem;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  
  #buttonNext {
    cursor: pointer;
    position: absolute;
    justify-content: center;
    height: 65vh;
    display: flex;
    right: 1rem;
    z-index: 50;
    align-items: center;
    width: 5rem;
  }
  
  #buttonPrev {
    cursor: pointer;
    position: absolute;
    justify-content: center;
    height: 65vh;
    display: flex;
    left: 1rem;
    z-index: 50;
    align-items: center;
    width: 5rem;
  }
  
.slideshow-container{
    min-height: 65vh;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slidePicture{
  border-radius: 20px 30px;
  height:65vh;
  width: 100%;
  max-width: 35rem;
  box-shadow: -21px 19px 47px black;
  object-fit: contain;
  position: relative;
  display: block;
  animation: apparitionClaire 0.5s ease-out forwards;
}

@keyframes apparitionClaire {
    from {
        opacity: 0;
        filter: brightness(1.5); /* L'image arrive plus lumineuse */
        transform: translateY(5px); /* Petit mouvement du bas vers le haut */
    }
    to {
        opacity: 1;
        filter: brightness(1); /* Retour à la normale */
        transform: translateY(0);
    }
}


#proprieteSingleDetail{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    margin: 4vh;
}

  /*Contact Form*/
  
  #indexContact{
    display: flex;
    justify-content: center;
    font-family: "Rajdhani", sans-serif;
  }
  
  
  #formDemande ,form{
    border-radius: 20px 60px;
    width:20rem;
    max-width: 95svw;
    padding: 1.25rem;
    margin: 0.5rem;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.70); */
    box-shadow: 0px 0px 6px 0px black, 1px 4px 8px -7px inset white;
    color: black;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;

  }
  
  
  #formDemande option{
    background: rgba(0, 0, 0, 0.85);
    color: white;
    font-family: "Rajdhani", sans-serif;
  }

  
  
  #typeDemande-1 , #detailDemande-2 , #coordoneesDemande-3{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
  }
  
  .buttonSuivantRetourFormDemand{
    padding: 1.5rem 0rem;
  }
  
  titleformcontact {
    margin-bottom: 0px;
    font-size: 1.5rem;
    font-style:normal;
    font-weight: 600;
    padding:1rem 0rem;
    animation: 5s askedIn;
  }
  
  @keyframes askedIn {
    from {
        transform: translateX(100%);
    }
  
    to {
        transform: translateX(0%);
    }
  }
  
  #indexContact ::placeholder{
    color:black;
    font-weight:450;
  }
  
  
  #indexContact select,#indexContact textarea,#indexContact input[type=email]{
  
    color: black;
    background-color: transparent;
  }
  
  #formDemande select,
  #formDemande textarea,
  #formDemande input[type=email],
  #formDemande input[type=number],
  #formDemande input[type=tel],
  #formDemande input[type=password]{
    color: white;
    border-radius: 10px;
    width: 90%;
    box-shadow: 0px 0px 0px 1px black;
    padding: 0.25rem;
    margin: 0.25rem;
    font-family: "Rajdhani", sans-serif;
  }

  #formDemande textarea{
    box-shadow: 0px 0px 2px black, inset white 0px 0px 2px;
  }
  
  #typeBien{
    color: white !important;
    background-color: black;
  }
  
  
  
  #formDemande ::placeholder{
    color:darkgrey;
    font-weight:450;
  }
  
  #indexContact input[type=submit]{
    background-color: rgba(20,50,110,1);
  }
  
  
  /*Vendre Partie */

    #vendreDatas{
    margin: auto;
    color: white;
    max-width: 25rem;
    padding: 28px;
    /* box-shadow: 0px 0px 12px 1px white inset, 0px 0px 13px 4px black, inset 0px 0px 150px 160px black; */
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 400;
    animation: slideInFromLeft 1s ease-out forwards;
  }

  
    #estimation,#venteInternationale {
      display: flex;
      align-items: center;
      font-family: "Rajdhani", sans-serif;
    align-content: space-between;
    justify-content: space-evenly;
    flex-wrap: wrap;
    animation: slideInFromLeft 1s ease-out forwards;
    transform-origin: left center;
    will-change: transform;
  
      ul{
        padding:1.5rem;
        width: 20rem;
        cursor:pointer;
        box-shadow:1px 0px 4px white inset,0px 1px 6px black;
        /*background-color: rgba(20, 20, 40, 0.75);*/
        background-color:rgba(0, 0, 0, 0.85) ;
        color:white;
        border-radius: 20px 10px;
        font-weight:400;
        max-width: 50rem;
        width: 90svw;
        
    }
      }
      
        .quesacoEstimation li{  
        padding:0.75rem;
        list-style:none;
        animation: 1.5s openScenarized ease-in-out;
    }
    
    .venteInter li{
      padding:0.75rem;
      list-style:none;
      animation: 1.5s openScenarized ease-in-out;
    }
    

    .menuLinkHome{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    top: 7rem;
    z-index:2500;
    width:100%;
    max-width: 100svw;
    padding: 0.5rem 0rem;
    }
    
    .categorieMenu {
    /* background-color: #f0f0f0; */
    background-color:rgba(0, 0, 0, 0.85) ;
    color: white;
    cursor: pointer;
    z-index: 50;
    padding: 0.5rem 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: "Rajdhani", sans-serif;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.categorieMenu:hover {
  color:black;
    background-color: lightgrey;
    transform: scale(1.05);
    box-shadow: 0px 0px 7px white;
}

.categorieMenu img {
    width: 1.25rem;
    padding-left: 1rem;
}

/* Infos Legales */
  #infosDatas{
    border-radius: 20px 60px;
    margin: auto;
    color: white;
    max-width: 25rem;
    padding: 28px;
    background:rgba(0,0,0,0.85);
    box-shadow: 0px 0px 6px 0px black, 1px 4px 8px -7px inset white;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 400;
    animation: slideInFromLeft 1s ease-out forwards;
  }

  #infosDatas h6{
    color:white;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 400;
  }

  /*Annonces*/

  

    /* .annonceObjet{
    min-width: 18rem;
    display:flex;
    flex-direction:column;
    animation: ease-out 1s slidein;
    position:relative;
    margin: 0px 1.33rem;
    border-radius: 10px 5px;
    overflow: hidden;
    box-shadow: rgba(12,12,12,0.6) -22px 1px 11px 1px;
    
  } */
  .annonceObjet {
    scroll-snap-align: center;
    flex: 0 0 18rem;
    cursor:pointer;
}

@keyframes slidein {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
  
  
  .annonceObjet:hover{
    margin: 0px 0.66rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(12,12,12,0.8) 0px 1px 17px 1px;
    
  }
  
  .annonceMiniature img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.annonceSkills{
    padding: 12px 11px;
}


  #proprieteSingleTitle{
padding-top: 0.75rem;
    margin: 0 auto;
    z-index: 30;
    position: relative;
    font-size: 1.5rem;
    width: 90%;
    max-width: 70vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
    line-height: 1.2; /
  }
  
  .annonceDetails{
    color:white;
  }

  #descriptionPropriete {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    text-align: justify;
    max-width: 45rem;
    margin: 2rem auto;
    padding: 2rem;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5); 
    letter-spacing: 0.02rem;
}
  
  #proprieteLocalisation{
    margin-top: 0px;
    z-index: 30;
    position: relative;
    font-size: 1rem;
    width: 100svw;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    text-align: center;
    flex-wrap: wrap;
  }
  
  #proprieteLocalisation .annonceDetails{
  padding:0rem 0.75rem;
  
  }
  
  #propertyType{
    margin-top: 0px;
    z-index: 30;
    position: relative;
    font-size: 1.25rem;
    width: 100svw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  
  #propertyType .annonceDetails{
    padding:0rem 0.75rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  
  #proprieteSingleHeader{
    margin-top: 0px;
    z-index: 30;
    position: relative;
    font-size: 1.5rem;
    width: 100svw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*box-shadow: 0px 10px 7px rgba(0, 0, 0, 0.5);*/
  }
  
  #proprieteSingleHeader .annonceDetails{
    padding:0rem 0.75rem;
  }
  
  #proprieteSinglePrix{
    font-size: 1.75rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  
  #propertyInfos{
    padding:1rem 0rem;
    z-index: 30;
    position: relative;
    font-size: 1.25rem;
    width: 100svw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    /*box-shadow:0px 3px 16px black;*/
  }
  
  #propertyInfos .skillLine{
  padding:0rem 0.75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  
  }
  
  #propertyRenta{
    margin-top: 0px;
    z-index: 30;
    position: relative;
    font-size: 1rem;
    width: 100svw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    /*box-shadow:0px 3px 16px black;*/
  }
  
  #propertyRenta .annonceDetails{
    padding: 0rem 0.75rem;
    font-size: 1.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  
  #proprieteSingleDescription{
    margin-top: 0px;
    padding:1rem 0rem;
    z-index: 30;
    position: relative;
    font-size: 1rem;
    width: 100svw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    /*box-shadow:0px 3px 16px black;*/
  }
  
  #proprieteSingleDescription .annonceDetails{
    padding: 0rem 0.75rem;
  }
  
  #propertySimilars{
    /* margin-top: 0px;
    padding: 1rem 0rem;
    z-index: 30;
    position: relative;
    font-size: 1rem;
    width: 100svw;
    display: flex;
    align-items: center;
    text-align: center;
    flex-wrap: nowrap;
    overflow: scroll; */
    /*box-shadow:0px 3px 16px black;*/
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto; /* Active le scroll horizontal */
    scroll-snap-type: x mandatory; /* Force l'aimantage */
    gap: 1.5rem;
    padding: 2rem;
    -webkit-overflow-scrolling: touch;
  }
  
  #propertySimilars .annonceDetails{
    padding: 0rem 0.75rem;
  }
  
  #annonceDescription{
    max-width: 25rem;
  }

  
/*Contrat Signature*/

#NomProprio {
    color:white;
    border: solid 2px black;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    margin: 5px;
    background-color: rgba(20,50,60,0.6);
    box-shadow: inset 2px 2px 2px, 2px 2px 20px black;
    min-width: 13rem;
}

#voirPdf {
    color:white;
    background-color: rgba(20,50,60,0.6);
    box-shadow: inset 2px 2px 2px, 2px 2px 20px black;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

#signature {
    border-radius: 10px;
    box-shadow: 1px 1px 14px 1px black;
    border: 1px solid white;
    background-color: white;
    touch-action: none;
}

#effacer {
    color:white;
    background-color: rgba(204, 3, 3, 0.8);
    box-shadow: inset 2px 2px 3px rgba(204, 3,50, 0.8), 2px 2px 3px 0px black;
}

#enregistrer {
    color:white;
    background-color: rgba(65, 201, 7, 0.8);
    box-shadow: inset 2px 2px 3px rgba(65, 201, 50, 0.8), 2px 2px 3px 0px black;
}

#SignatureMandatBodyAction{
    width:100svw;
    height:100svh
}

#SignatureMandat{
overflow: scroll;
height: 100%;
width: 100%;
display: flex;
position: absolute;
flex-wrap: nowrap;
flex-direction: column;
justify-content: center;
align-items: center;
}
