*
body{
    background-color: whitesmoke;
}
header{
    height: 125px;
}
#bandeb{
    background-color: white;
    height: 85px;
    padding: 30px 50px;
}
#logo{
    width: 230px;
    height: 100px;
}
#reseaux{
    width: 200px;
    height: 55px;
    gap: 20px;
}
#reseaux svg{
    color:2F70C7;
}
#reseaux svg:hover{
    color: #2F70C7;
}
#reseaux a{
    text-decoration: none;
    color: black;
}

#bandev{
    background-color: #145F35;
    height: 40px;
    padding: 0px 50px;
}
#navbar{
    gap: 20px;
}
.nav-item {
    padding: 2px;
    margin: 0px 15px;
    position: relative; /* Nécessaire pour le positionnement absolu du dropdown */
}

.nav-item:hover {
    text-decoration: underline;
    color: #ffffff;
}

.nav-item:hover a {
    color: #2d2d2d;
}

.nav-item a {
    text-decoration: none;
    padding: 4px;
    color: white;
}

/* Style du menu déroulant */
.custom-dropdown-menu {
    width: 130px; /* Largeur de la liste */
    padding: 0; /* Enlève le padding par défaut */
    margin-left: -25px;
    display: none; /* Cache le menu par défaut */
    position: absolute; /* Positionne le menu par rapport à l'élément parent */
    left: 0; /* Aligne le menu à gauche de l'élément parent */
    top: 100%; /* Positionne le menu juste en dessous de l'élément parent */
    flex-direction: column; /* Aligne les éléments verticalement */
    list-style: none; /* Supprime les puces de la liste */
    background-color: #fff; /* Ajoute un fond blanc pour que la liste soit visible */
    border: 1px solid #ccc; /* Ajoute une bordure légère pour délimiter le menu */
    text-align: center; /* Centre le texte des éléments */
    z-index: 1000; /* Assure que le menu est au-dessus des autres éléments */
}

.nav-item:hover .custom-dropdown-menu {
    display: flex; /* Affiche le menu lorsqu'on survole l'élément parent */
}

.custom-dropdown-menu li {
    margin: 0; /* Enlève les marges pour éviter tout décalage */
}

.custom-dropdown-menu a {
    display: block; /* Assure que le lien prenne toute la largeur de l'élément */
    padding: 10px 0; /* Ajoute du padding pour rendre les éléments cliquables */
    text-decoration: none; /* Supprime la décoration des liens */
    color: #000; /* Couleur du texte */
    transition: background-color 0.3s ease; /* Ajoute une transition pour l'effet de survol */
}

.custom-dropdown-menu a:hover {
    background-color: #f0f0f0; /* Change la couleur de fond au survol */
    color: #333; /* Change la couleur du texte au survol */
}






.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Fond blanc avec 80% d'opacité */
    transition: background-color 0.3s, transform 0.3s; /* Transition pour la couleur de fond et la transformation */
    z-index: 1000;
}

.hidden {
    transform: translateY(-100%); /* Déplace le header hors de l'écran */
}

/*     ((((((((((((((((------------------------------ La première section avec l'arrière plan  ------------------------)))))))))))))))))))*/



#section1 {
    background-image: url('../images/WhatsApp\ Image\ 2024-08-08\ à\ 10.44.46_7935f145.jpg');
    background-size: cover;
    background-position: center;
    height: 370px;
    box-shadow: 10px 2px 40px rgba(0, 0, 0, 0.171);
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    position: relative;
}

#section1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Assurez-vous que le pseudo-élément couvre toute la section */
    background-color: rgba(0, 0, 0, 0.5); /* Ajustez l'opacité selon votre besoin */
    z-index: 1;
}

#section1 aside {
    width: 700px; /* Ajustez la largeur si nécessaire */
    padding: 30px;
    position: relative;
    text-align: center;
    color: #EED767;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 2;
}

#section1 h1 {
    font-size: 40px;
    animation: slideInTop 2s forwards;
    position: relative;
}

@keyframes slideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}

#section1 p {
    font-size: 16px;
    padding: 20px 0;
    color: white;
}

strong {
    color: #EED767;
}





/* Style pour l'icône */
.up {
    position: fixed;
    bottom: 20px; /* Ajustez la distance depuis le bas si nécessaire */
    right: 20px; /* Ajustez la distance depuis le bord droit si nécessaire */
    cursor: pointer;
    display: none; /* Masquer le bouton par défaut */
    z-index: 1000; /* Assurez-vous que le bouton est au-dessus des autres éléments */
    color: #2F70C7;
}

/* Style lorsque le bouton est visible */
.show {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Pour un bouton circulaire */
}





/*     ((((((((((((((((------------------------------ La première section avec l'arrière plan  ------------------------)))))))))))))))))))*/





/* Styles communs et spécifiques à la section */
#fond {
    position: relative;
    clip-path: inset(0);
    overflow: hidden; /* Ajout pour gérer le positionnement absolu des enfants */
}

#fond img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

#fond:before {
    content: "";
    background: #eed767b3;
    position: absolute;
    inset: 0;
    z-index: 2;
}

#section4 {
    position: relative;
    z-index: 3;
    padding: 35px 0;
    color: white;
}

#section4 p {
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-weight: bold;
    color: rgb(0, 0, 0);
}

#section4 .row p {
    font-size: 15px;
    font: 200;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: rgb(255, 255, 255);
}

#section4 .row {
    margin-top: 50px;
    gap: 20px;
}

.elem {
    text-align: center;
    width: 100px;
    height: 180px;
    border-radius: 10px;
    background-color:#34aa71;
}

.elem h4 {
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    color:  rgb(255, 255, 255);
    margin-top: 50px;
    font-weight: bold;
}

/* Styles pour les boutons */
.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: var(--accent-color);
    color: var(--background-color);
    border: 2px solid var(--accent-color);
}











/*     ((((((((((((((((------------------------------ La première section avec l'arrière plan  ------------------------)))))))))))))))))))*/




form{
    gap: 15px;
    justify-content: center;
    align-items: center;
    height: auto;
}

form div{
    width: 250px;
    padding: 10px 0px;
}

form input{
    width: 250px;
    padding: 10px 0px;
}

form .btn{
    width: 220px;
    height: 38px;
    background-color: #145F35;
    color: rgb(255, 255, 255);
}






















/*     ((((((((((((((((------------------------------ La première section avec l'arrière plan  ------------------------)))))))))))))))))))*/





main{
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 50px 0px 150px 0px;
}



#public{
    width: 51%;
    height: 1550px;
    justify-content: center;
    align-items: center;
}
#elem{
    width: auto;
    height: 500px;
    padding: 5px;
    display: flex;
    gap: 10px;
}

#cardmini{
    width: 230px;
    height: 400px;
    padding: 8px 0px;
}

#cardmini h2{
    font: 900;
    font-size: 22px;
    padding: 5px 0px;
    font-family: Arial, Helvetica, sans-serif;
}

#cardmini p{
    font: 100;
    font-size: 15px;
    padding: 5px 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(0, 0, 0, 0.544);
}


#cardmini img{
    width: 230px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 10px 0px 40px rgba(0, 0, 0, 0.199);
}

#cardmini video{
    width: 230px;
    height: 200px;
    border-radius: 10px;
}



#cardrect{
    width: 715px;
    height: 590px;
}


#cardrect img{
    width: 715px;
    height: 400px;
    border-radius: 8px;
    box-shadow: 10px 0px 40px rgba(0, 0, 0, 0.199);
}

#cardrect video{
    width: 715px;
    height: 400px;
    border-radius: 8px;
    box-shadow: 10px 0px 40px rgba(0, 0, 0, 0.199);
}


#cardrect h2{
    font: 900;
    font-size: 22px;
    padding: 5px 0px;
    font-family: Arial, Helvetica, sans-serif;
}


#cardrect p{
    font: 100;
    font-size: 15px;
    padding: 5px 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(0, 0, 0, 0.544);
}

#menu{
    background-color: #2f71c7c3;
    border-radius: 8px;
    color: rgb(0, 0, 0);
    text-align: left;
    width: 23%;
    height: 1200px;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#menu h3{
    font: 800;
    font-size: 25px;
    padding: 5px 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-bottom: 30px;
}

#menu nav{
    padding: 0px 30px;
}


.vertical-menu {
    list-style-type: none; /* Supprime les puces des listes */
    padding: 0;
    margin: 0;
    width: 200px; /* Largeur du menu */
}

.vertical-menu li {
    color: #fff; /* Couleur du texte */
    padding: 6px;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font: 200;
    font-size: 18px;
    cursor: pointer;
    transition: all 1s ease;
}

.vertical-menu li:hover {
    color: #0b3162;
    text-decoration: underline;
}

#bas{
    background-color: whitesmoke;
    padding: 15px 0px 15px 50px;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin-top: 50px;
}

#bas #cardmini{
    width: 230px;
    height: 400px;
    padding: 8px 0px;
    margin-bottom: 35px;
}















#gros{
    gap: 50px;
}

#left{
    width: 800px;
    height: auto;
    padding: 15px;
}

#left h2{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
}

#lefti{
    width: 100%;
    height: 550px;
    border-radius: 7px;
    margin-top: 30px;
    background-position: center;
    background-size: cover;
    background-image: url(../images/dg.jpeg);
}

#description {
    padding: 40px 0px 20px 0px;
}

#back{
    background-color: rgb(246, 246, 246);
    border-radius: 10px;
    padding: 20px 15px;
    border-left: 3px solid #2f71c7c3;
}

#right{
    width: 250px;
    height: auto;
    padding: 10px;
    flex-direction: column;
    gap: 25px;
}

#right #carrei{
    width: 100%;
    height: 200px;
    border-radius: 4px;
}

#right video{
    width: 100%;
    height: 200px;
    border-radius: 4px;
}

#right h2{
    font-size: 18px;
    padding-top: 20px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

#right p{
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}
















.desc{
    margin-top: 100px;
}
.desci{
    background-image: url(../images/tt02.jpg);
    width: 100%;
    height: 550px;
    border-radius: 7px;
    margin-top: 30px;
    background-position: center;
    background-size: cover;
}











/*     ((((((((((((((((------------------------------ La partie des contacts   ------------------------)))))))))))))))))))*/

#fin{
    background-color: rgb(21, 21, 21);
}
#contacts{ 
    height: auto;
    justify-content: center;
    align-items: center;
    background-color: rgb(21, 21, 21);
    color: white;
    gap: 10px;
    padding: 50px 0px;
}
#last{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
}
#section6{
    background-color: black;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 0px 70px ;
}
#section6 h4{
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-weight: bold;
}
#premier{
    display: flex;
    gap: 10px;
    height: 60px;
    padding: 6px;
    margin-top: 18px;
}
#premier h5{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    padding: 4px 0px 0px 0px;
    color: white;
}
#premier p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
    color: white;
}
#icon{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color:rgb(255, 221, 0) ;
    align-items: center;
    justify-content: center;
}
#icon svg{
    margin-top: 12px;
    margin-left: 12px;
    color: rgb(50, 137, 50);
}


iframe{
    border-radius: 4px;
}









/*.reval{
    opacity: 0;
    transform: translateY(-30px);
}
.visible{
    opacity: 1;
    transform: translateY(0);
    transition: 1.5s cubic-bezier(.5, 0, 0, 1);
}*/