*{
    font-family: "Roboto", sans-serif;
}

.container-lg {
    max-width: 1000px; /* Limite la largeur à 1140px sur grands écrans */
}

@media (min-width: 1600px) {
    .container-lg {
        max-width: 1440px; /* Augmente la largeur maximale sur très grands écrans */
    }
}

/* .navbar {
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
} */
@media (max-width: 868px) {
    .toot {
        max-width: 100% !important;
    }
}
.active{
    border-bottom: 2px solid white;
}
@media (max-width: 900px) {
.testi{
    flex-direction: column;
}
}

.hh{
    /* background-image: url('image/index.png'); */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin: 0;
    padding: 30px 0;
}
.hh1 {
    /* background-image: url('image/Image.png'); */
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
/* .hh::before {
    content: '';
    position: absolute;
    width: 100%;
    min-height: 60vh;
    border-radius: 40px;
    background-color: #23293480;
    pointer-events: none;
} */
.ppos{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5); /* Pour une bordure blanche semi-transparente */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); /* Icône blanche */
}

.pp::placeholder{
    color: #999999;
}

@media (max-width: 568px) {
    .posi{
        position: absolute;
        top: 28%;
        left: 10%;
    }
    .posi h1{
        font-size: 4rem;
    }
    .posi h2{
        font-size: 2rem;
    }
}


.modal {
    --bs-modal-width: 800px;
}

.ttt::placeholder{
    color: white;
    font-size: 13px;
}
.ttt{
    padding: 1rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
  }
  
  .carousel-container .col-12 {
    transition: transform 0.5s ease-in-out;
  }
  .pos{
    position: absolute;
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);    
  }
  .ccv h1{
    font-size: 4rem;
  }

  @media (max-width: 668px) {
    .ccv{
        background-color: unset;
        width: 90% !important;
        h1{
            font-size: 2rem;
        }
    }
    .p-5 {
        padding: 1rem !important;
    }

        .col-6{
            width: 100% !important;
        }
        
  
    .foot{
        flex-direction: column;
        align-items: center;
    }
    .collapse {
        transition: height 0.35s ease;
    }
    .bott{
        padding-bottom: 0rem !important;
    }
    .lima{
        display: none;
    }

  }

  @media (max-width: 998px) {
    .closii{
        justify-content: flex-start !important;
    }
}
/* Masquer le menu par défaut en vue mobile */
#navbarContent {
    display: none; /* Gardez ceci pour masquer le menu par défaut */
    transform: translateY(-10px); /* Déplacez le menu légèrement vers le haut pour l'effet d'animation */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Ajoutez une transition pour l'opacité et la transformation */
}

/* Afficher le menu lorsque la classe 'open' est appliquée */
#navbarContent.open {
    display: flex; /* ou 'block', selon le style actuel du menu */
    opacity: 1; /* Rendre le menu visible */
    transform: translateY(0); /* Réinitialisez la transformation pour ramener le menu à sa position d'origine */
}