:root{
    --blanc : #ffffff;
    --ciel : #5ce7fe;
    --nuit : #022ea6;
    --bleu : #217ffd;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
body{
    
}
/*============================================================
                    navbar
===============================================================*/
.bande{
    height: 45px;
    background-color: var(--bleu);
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
  }
  .bande a{
    text-decoration: none;
    color: var(--blanc);
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-right: 10px;
    padding: 5px;
    border-radius: 50%;
    background-color: var(--blanc);
  }
  .bande .social{
    display: flex;
    align-items: center;
  }
  .bande .social img{
    width: 15px;
  }
  nav {
      padding: 5px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
      z-index: 1;
      background-color: var(--blanc);
    }
    nav .logo {
      display: flex;
      align-items: center;
    }
    nav .logo img {
      height: 60px;
      width: 100px;
      margin-right: 10px;
    }
    nav .logo h1 {
      font-size: 1.1rem;
      background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    nav ul {
      list-style: none;
      display: flex;
    }
    nav ul li {
      margin-left: 1.5rem;
    }
    nav ul li a {
      text-decoration: none;
      color: var(--nuit);
      font-size: 95%;
      font-weight: 400;
      padding: 20px 8px;
      border-radius: 5px;
    }
    
    nav ul li a:hover {
      background-color: #f5f5f5;
    }
  /* Style de base pour la dropdown */
  ul li.dropdown {
    position: relative;
  }
  
  ul li .dropdown-menu {
    display: none;
    width: 130px;
    position: absolute;
    top: 200%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    border-radius: 5px;
    z-index: 10;
  }
  
  ul li .dropdown-menu li {
    padding: 0;
  }
  
  ul li .dropdown-menu li a {
    color: var(--nuit);
    padding: 10px;
    display: block;
    text-decoration: none;
  }
  
  ul li .dropdown-menu li a:hover {
    background-color: #f5f5f5;
  }
  /* Affichage au survol */
  ul li.dropdown:hover .dropdown-menu {
    display: block;
  }
  
    .hamburger {
      display: none;
      cursor: pointer;
    }
    
    .hamburger .line {
      width: 25px;
      height: 1px;
      background-color: #1f1f1f;
      display: block;
      margin: 7px auto;
      transition: all 0.3s ease-in-out;
    }
    .hamburger-active {
      transition: all 0.3s ease-in-out;
      transition-delay: 0.6s;
      transform: rotate(45deg);
    }
    
    .hamburger-active .line:nth-child(2) {
      width: 0px;
    }
    
    .hamburger-active .line:nth-child(1),
    .hamburger-active .line:nth-child(3) {
      transition-delay: 0.3s;
    }
    
    .hamburger-active .line:nth-child(1) {
      transform: translateY(12px);
    }
    
    .hamburger-active .line:nth-child(3) {
      transform: translateY(-5px) rotate(90deg);
    }
    
    .menubar {
      position: absolute;
      top: 0;
      left: -60%;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      width: 60%;
      height: 100vh;
      padding: 20% 0;
      background: rgba(255, 255, 255);
      transition: all 0.5s ease-in;
      z-index: 2;
    }
    .active {
      left: 0;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    
    .menubar ul {
      padding: 0;
      list-style: none;
    }
    .menubar ul li {
      margin-bottom: 32px;
    }
    
    .menubar ul li a {
      text-decoration: none;
      color: #000;
      font-size: 95%;
      font-weight: 400;
      padding: 5px 10px;
      border-radius: 5px;
    }
    
    .menubar ul li a:hover {
      background-color: #f5f5f5;
    }
    @media screen and (max-width: 790px) {
      .hamburger {
        display: block;
      }
      nav ul {
        display: none;
      }
    }
/*============================================================
                    header
===============================================================*/
.tete{
    background-image: linear-gradient(rgba(72, 84, 96, 0.5), rgba(53, 68, 84, 0.5)), url(../img/header2.jpg) ;
    background-position: center; 
    background-size: cover;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.header{
    color: var(--blanc);
    padding: 120px 30px;
    text-align: center;
    max-width: 1080px;
    margin-inline: auto;
}
.header h1{
    margin-bottom: 10px;
    font-size: 45px;
}
.header p{
    opacity: .8;
    margin-bottom: 40px;
}
.header a{
    text-decoration: none;
    color: var(--blanc);
    background-color: var(--bleu);
    padding: 10px 32px;
    margin: 5px;
    border-radius: 4px;
    font-size: 14px;
    transition-duration: .3s;
    display: inline-block;
    font-weight: 600;
    border: 2px solid var(--bleu);
}
#btnCont{
    border: 2px solid var(--blanc);
    background-color: transparent;
}
#btnCont:hover{
    background-color: var(--blanc);
    border: 2px solid var(--blanc);
    color: var(--bleu);
}
.header a:hover,.recherche form input:hover{
    background-color: var(--nuit);
    border: 2px solid var(--nuit);
}
@media screen and (max-width:800px){
    .header{
        padding: 80px 30px;
    }
    .header h1{
        font-size: 25px;
    }
}
.recherche{
    margin: 10px 8%;
    margin-top: -70px;
    background-color: var(--blanc);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.recherche form{
    text-align: center;
}
.recherche form input,.recherche form select{
    width: 30%;
    height: 35px;
    margin: 10px 1%;
    padding: 4px 10px;
    outline: none;
    border: 1px solid var(--bleu);
    font-weight: 600;
    border-radius: 4px;
}
.recherche form input{
    background-color: var(--bleu);
    color: var(--blanc);
    cursor: pointer;
    width: 20%;
    border: none;
}
@media screen and (max-width:600px) {
    .recherche form input,.recherche form select{
        width: 90%;
    }
}
/*============================================================
                    main
===============================================================*/
.main{
    margin-top: 80px;
}
.voir_tous {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin-bottom: 10px;
}
.voir_tous h1 {
    font-size: 24px;
    font-weight: bold;
    color: var(--noir);
    margin: 0;
}
#voir_tous {
    font-size: 16px;
    color: var(--bleu);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

#voir_tous:hover {
    color: var(--nuit);
}

@media screen and (max-width: 1080px) {
    .voir_tous {
        padding: 10px 4%;
    }
    .voir_tous h1 {
        font-size: 20px;
    }
    #voir_tous {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .voir_tous {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .voir_tous h1 {
        font-size: 18px;
    }
}
.main .partie{
    margin: 30px 0;
}
.main .partie a{
    color: black;
}
.splide{
    max-width: 1080px;
    margin-inline: auto;
    padding: 20px;
}
.splide a,.affichage a,.page-bien a{
    text-decoration: none;
}
.splide a,.page-bien a{
    margin: 30px 5px;
}
.splide .bien,.page-bien .bien,.affichage .container .item{
    background-color: var(--blanc);
    width: 100%;
    position: relative;
    height: 300px;
    border-radius: 0px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.splide .bien img,.affichage .item img,.page-bien .bien img{
    width: 100%;
    height: 190px;
    object-fit: cover; 
    object-position: center;
    margin-bottom: 10px;
}
video{
    height: 220px;
    width: 100%;
}
.splide .bien:hover img,.affichage .item:hover img,.page-bien .bien img:hover{
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.splide .bien h3,.affichage .container .item h3,.page-bien .bien h3{
    font-weight: 300;
    font-size: 18px;
}
.splide .bien h3,.splide .bien h4,.bien p,.affichage .item h3,.affichage .item p,.affichage .item h4,.page-bien .bien h3,.page-bien .bien p
.page-bien .bien h4{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px;
    color: black;
}
.splide .bien h4,.affichage .item h4,.page-bien .bien h4{
    background-color: var(--blanc);
    left: 10px;
    z-index: 999;
    position: absolute;
    top: 150px;
    font-size: 12px;
    max-width: 60%;
    border-radius: 2px;
    color: var(--bleu);
    font-weight: bold;
}
.splide .bien p,.affichage .item p,.page-bien .bien p{
    opacity: .7;
}
.splide .bien .superficie,.affichage .item .superficie,.page-bien .bien .superficie{
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.splide .bien .superficie img,.affichage .item .superficie img,.page-bien .bien .superficie img{
    width: 25px;
    height: 25px;
}
@media screen and (max-width:1080px){
    .main .voir_tous{
        padding: 10px 4%;
    }
}
@media screen and (max-width:600px){
    .main h1{
        font-size: 22px;
    }
    .splide .item,.affichage .item,.page-bien .bien{
       width: 90%;
       margin-inline: auto;
    }
}
@media screen and (max-width:400px){
    .main .voir_tous{
        padding: 10px 2%;
    }
    .main h1{
        font-size: 18px;
    }
    #voir_tous{
        font-size: 14px;
    }
}
/*============================================================
                    comment
===============================================================*/
.comment{
    text-align: center;
    padding: 30px 10px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/comment.jpg) ;
    background-size: cover;
    background-position: center;
    color: var(--blanc);
}
.comment h3{
    color: var(--bleu);
    margin: 10px;    
}
.comment h2{
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
}
.comment p{
    opacity: .8;
}
.comment .marches{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1080px;
    margin: 40px auto;
}
.comment .marches .marche{
    margin: 20px 1%;
    width: 30%;
    transition-duration: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.comment .marches .marche:hover{
    transform: scale(1.04);
}
.comment .marche .entoure{
    text-align: center;
    width: 80px;
    height: 80px;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: var(--bleu);
}
.comment .marches .marche img{
    width: 40px;
}
.comment .marches .marche h3{
    color: var(--blanc);
}
.comment .marches .marche p{
    font-size: 12px;
    opacity: .8;
    margin: 10px;
}
@media screen and (max-width:600px){
    .comment .marches .marche{
        width: 90%;
        margin: 20px auto;
    }
}
/*============================================================
                    propos
===============================================================*/
.propos{
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 80px 8%;
}
.propos .image{
    flex: 1;
    overflow: hidden;
    padding: 20px;
    text-align: center;
}
.propos .image img{
    border-radius: 6px;
    width: 80%;
    height: 80%;
}
.propos .info{
    flex: 1;
}
.propos .info h3{
    color: var(--bleu);
    margin: 20px 0;
}
.propos .info h1{
    font-family: "Qwitcher Grypen", cursive;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 25px;
}
.propos .info p{
    font-size: 14px;
    opacity: .9;
    line-height: 25px;
    margin-bottom: 30px;
}
.propos .info .point{
    margin-bottom: 40px;
}
.propos .info .point img{
    width: 20px;
    margin-right: 10px;
}
.propos .info .point p{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.propos .info a{
    text-decoration: none;
    background-color: var(--bleu);
    color: var(--blanc);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    transition-duration: .3s;
}
.propos .info a:hover{
    background-color: var(--nuit);
}
.propos ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    padding-left: 30px; /* Ajuste l'espace pour la bordure */
}

.propos ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px; /* Position de la bordure verticale */
    width: 2px;
    height: 100%;
    background-color: var(--ciel); /* Couleur de la bordure verticale */
}
.propos ul li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}
.propos ul li::before {
    content: "";
    position: absolute;
    left: -22px; /* Position du nœud par rapport à la bordure */
    top: 0;
    transform: translateY(50%) rotate(46deg); /* Rotation pour créer un losange */
    width: 17px;
    height: 17px;
    border-radius: 4px;
    background-color: var(--ciel); /* Couleur des nœuds */
    z-index: 1;
}
.propos ul li p{
    color: #444;
    margin-top: 5px;
}
.propos ul li h4{
    font-weight: 500;
    font-size: 20px;
}
@media screen and (max-width:700px){
    .propos{
        padding: 80px 4%;
    }
    .propos ,.contact{
        flex-direction: column;
    }
    .propos .image{
        margin-top: 40px;
    }
    .propos .image img{
        width: 90%;
        height: 90%;
    }
}
/*============================================================
                    investment
===============================================================*/
.investment-opportunities {
    padding: 80px 8%;
    background-image: -webkit-linear-gradient(90deg, #051367,#5D8BF4);
    color: #fff;
}
.investment-opportunities h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.investment-list {
    display: flex;
    gap: 30px;
}
.investment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    max-width: 700px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.investment-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.investment-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    padding: 5px;
}
.investment-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f0f0f0;
}
.investment-content p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
}
@media screen and (max-width:800px){
    .investment-list{
        flex-direction: column;
    }
}
/*============================================================
                    Services
===============================================================*/
.services{
    padding: 60px 8%;
    text-align: center;
    background-color: #F0F8FF;
}
.services .container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}
.services h1{
    margin: 20px;
    font-size: 40px;
}
.services h3{
    color: var(--bleu);
}
.services h4{
    font-weight: 500;
}
.services .container .item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 1%;
    margin-top: 20px;
    width: 24%;
}
.services .container .item .boxeImg{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--bleu);
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.services .container .item .boxeImg img{
    width: 100%;
    height: 100%;
}
.services p{
    margin: 10px;
    font-size: 14px;
    color: #444;
}
@media screen and (max-width:900px) {
    .services .container .item{
        width: 49%;
    }
    .services{
        padding: 60px 2%;
    }
}
/*============================================================
                    Contact Style
===============================================================*/
.contact {
    margin: 60px 8%;
    display: flex;
    justify-content: space-around;
    background-image: linear-gradient(90deg,  #EFFFFD,#9ADCFF);
    background-image: -webkit-linear-gradient(90deg,  #EFFFFD,#9ADCFF);
    border-radius: 10px;
    overflow: hidden;
}
.contact .item {
    flex: 1;
    margin: 15px;
    padding: 25px;
    border-radius: 10px;
}
.contact iframe{
    flex: 1;
}
.contact .item h1, .contact .item h2 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact .globale form {
    margin-top: 15px;
}
.contact .globale form input,
.contact .globale form textarea {
    width: 49%;
    padding: 10px;
    outline: none;
    background: #F0F8FF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    border-radius: 4px;
    margin: 12px 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact .globale form input:focus,
.contact .globale form textarea:focus {
    border-color: var(--ciel);
    box-shadow: 0 0 8px rgba(15, 188, 188, 0.3);
}
.contact .globale form input[type=email]{
    width: 99%;
}
.contact .globale form textarea {
    height: 90px;
    resize: none;
    width: 99%;
}

.contact .globale form input[type=submit] {
    background-color: var(--bleu);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact .globale form input[type=submit]:hover {
    background-color: var(--nuit);
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .contact {
        flex-direction: column;
    }
    .contact .item {
        margin-bottom: 20px;
    }
    .contact .globale form input,
    .contact .globale form textarea{
        width: 100%;
    }
}
.cordonnes{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 50px;
    gap: 50px;
    margin-bottom: 100px;
}
.cordonnes .cord{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.cordonnes .cord .boxImg{
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--bleu);
}
.cordonnes .cord .boxImg img{
    width: 100%;
}
.cordonnes .cord .textuelle{
    display: flex;
    gap: 5px;
}
.cordonnes .cord .textuelle a{
    text-decoration: none;
    color: #444;
}
/*============================================================
                    footer
===============================================================*/
.site-footer
{
  background-color:#26272b;
  padding:20px;
  font-size:15px;
  line-height:24px;
  color:#737373;
}
.site-footer .container .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
}
.site-footer .container .row .col{
    width: 24%;
    margin-right: 1%;
    margin-bottom: 20px;
}
.site-footer .container .row .col-md-6{
    width: 48%;
    margin-right: 2%;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin:15px 0;
  letter-spacing:2px
}
.site-footer a
{
    text-decoration: none;
  color:#737373;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#737373
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d
}
.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class=col]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
    .site-footer .container .row .col-md-6,.site-footer .container .row .col{
        width: 98%;
    } 
   .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons img{
    width: 50%;
    height: 50%;
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
.social-icons a.twitter:hover
{
  background-color:#00aced
}
.social-icons a.linkedin:hover
{
  background-color:#007bb6
}
.social-icons a.dribbble:hover
{
  background-color:#ea4c89
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}
/*============================================================
                    page biens
===============================================================*/
.panel{
    background-image: linear-gradient(rgba(72, 84, 96, 0.5), rgba(112, 128, 144, 0.5)), url(../img/panel1.jpg) ;
    background-position: center; 
    background-size: cover;
    height: 70vh;
    margin-bottom: 40px;
    overflow: hidden;
    text-align: center;
    color: var(--blanc);
}
#nos_prop{
    margin-top: 20vh;
}
.affichage{
    margin: 80px 10%;
}
.affichage form{
    background-color: var(--bleu);
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
}
.affichage form select,.affichage form input{
    width: 120px;
    height: 35px;
    border-radius: 5px;
    padding: 2px 10px;
    outline: none;
    border: none;
    margin: 5px;
}
.affichage form input{
    cursor: pointer;
    background-color: green;
    color: white;
    letter-spacing: 1px;
    transition-duration: .2s;
}
.affichage form input:hover{
    background-color: rgb(3, 68, 3);
}
.affichage .container,.page-bien .biens{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}
.affichage .container a{
    width: 32%;
    margin: 20px 0;
    margin-right: 1%;
}
.page-bien a{
    width: 32%;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination a, .pagination span.dots {
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block;
    margin: 2px;
    text-align: center;
    min-width: 40px;
}

.pagination a.active {
    background-color: #6200ea;
    color: white;
    border-color: #6200ea;
}

.pagination a:hover {
    background-color: #ddd;
    color: black;
}

.pagination a.prev, .pagination a.next {
    font-weight: bold;
}

.pagination span.dots {
    border: none;
    pointer-events: none;
}

@media screen and (max-width: 600px) {
    .pagination {
        gap: 3px;
    }
    
    .pagination a, .pagination span.dots {
        padding: 6px 8px;
        min-width: 30px;
        font-size: 14px;
    }
    
    .pagination a.prev, .pagination a.next {
        padding: 6px 10px;
    }
}

@media screen and (max-width: 800px) {
    .affichage{
        margin-inline: 8%;
    }
    .affichage .container a{
        width: 50%;
    }
    .page-bien a{
        width: 48%;
    }
}
@media screen and (max-width: 550px) {
    .affichage .container a,.page-bien a{
        width: 100%;
    }
}
/*============================================================
                    page bien
===============================================================*/
.page-bien{
    margin: 80px 4%;
}
.splide__slide img {
    width: 100%;
    height: 300px;
    object-fit: cover; /* Ajuste l'image pour remplir le conteneur sans déformation */
    object-position: center;
}
.information{
    margin: 40px 10px;
    display: flex;
}
.information h1{
    font-size: 28px;
    font-weight: 700;
}
.information h1,.information h3{
    margin: 10px 0;
}
.information .desc h3{
    color: var(--bleu);
    font-size: 20px;
    font-weight: 600;
}
.information .desc .qartier {
    color: #575555;
    font-size: 16px;
    font-weight: bold;
}
.information .desc .caracter{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 20px;
    border-radius: 4px;
    background-image: linear-gradient(90deg, #e6e9f0,#eef1f5);
}
.information .desc .caracter .type{
    width: 49%;
    margin-right: 1%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.information .desc .caracter h4{
    font-weight: 500;
    font-size: 15px;
    margin-right: 5px;
}
.information .spec p{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    margin: 10px;
    padding: 5px 10px;
    background-color: rgb(218, 218, 218);
    border-radius: 10px;
}
.information .spec img{
    width: 20px;
    height: 20px;
}
.information .desc p{
    margin: 10px 0;
    font-size: 14px;
}
.information .call{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}
.information .call a{
    background-color: var(--ciel);
    padding: 8px 12px;
    border-radius: 10px;
    margin: 5px;
    width: 150px;
    font-size: 14px;
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-weight: 600;
    transition-duration: .3s;
}
.information .call a:hover{
    transform: scale(1.04);
}
.information .call img{
    width: 20px;
    height: 20px;
}
.information .desc,.information .form{
    flex: 1;
    margin: 20px;
}
.information form{
    text-align: center;
    background-image: linear-gradient(90deg, #e6e9f0,#eef1f5);
    border: 2px solid #00aced;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 10px;
}
.information form p{
    font-size: 10px;
    opacity: .8;
    margin-bottom: 10px;
}
.information form input,.information form textarea{
    height: 30px;
    width: 80%;
    margin: 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    background-color: #f3f3f3;
    border: 1px solid #bbf7ff;
    padding: 10px;
}
.information form textarea{
    height: 60px;
}
.information form input[type="submit"]{
    background-color: var(--bleu);
    padding: 2px;
    color: var(--blanc);
    letter-spacing: 1px;
    cursor: pointer;
    transition-duration: .2s;
}
.information form input[type="submit"]:hover{
    background-color: var(--nuit);
}
@media screen and (max-width: 550px) {
    .information .desc .caracter .type{
        width: 100%;
    }
}
@media screen and (max-width: 800px) {
    .information{
        flex-direction: column;
        margin-inline: 0;
    }
    .information h1{
        font-size: 24px;
    }
    .information .desc,.information .form{
        margin-inline: 10px;
    }
    .information form input,.information form textarea{
        width: 90%;
    }
    .information .desc .caracter h4{
        font-size: 14px;
    }
    .information .call a{
        width: 120px;
        font-size: 12px;
        padding: 8px;
    }
}
.numeros{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
}
.numeros a{
    text-decoration: none;
    color: var(--noir);
    display: flex;
    align-items: center;
    margin: 10px;
    width: auto;
    font-size: 14px;
}
.numeros a img{
    margin-right: 10px;
}
.commentaire{
    max-width: 600px;
}
.commentaire form input{
    height: 30px;
    width: 70%;
    margin: 20px 2%;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--ciel);
}
.commentaire form input[type=submit]{
    cursor: pointer;
    width: 20%;
    border: none;
    background-color: #eae6ff;
    font-weight: 500;
    border-radius: 8px;
    transition-duration: .2s;
}
.commentaire form input[type=submit]:hover{
    background-color: #c2bbff;
}
.commentaire .avis{
    display: flex;
    margin: 30px 5px;
}
.avis img{
    width: 30px;
    height: 30px;
    margin-right: 15px;
}
.avis .avi h4{
    margin-bottom: 5px;
}
#similaire{
    margin-top: 60px;
}
#whatsapp{

}
#whatsapp img{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    animation-name: example;
    animation-duration: 1s;
    animation-delay: 2s;
    animation-iteration-count: infinite;
}
@keyframes example {
    0%{bottom: 20px;}
    25%{bottom: 30px;}
    50%{bottom: 20px;}
}