/* Auteur: Rassoul */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
   
    margin: -3px;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

header {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 200px;
    transition: 0.5 ease;
}

header .logo {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

header .logo span {
    color: #007a33;
}

header .navigation {
    position: relative;
}

header .navigation .navigation-items a {
    position: relative;
    text-decoration: none;
    color: #fff;
    margin-right: 20px;
}

header .navigation .navigation-items a::before {
    position: absolute;
    z-index: 999;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #007a33;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
    width: 100%;
}

section {
    padding: 100px 200px;
}

.home {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #6fffe78b;
}

.home::before {
    content: "";
    position: absolute;
    z-index: 777;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #b79c040f;
}

.home .content {
    width: 70%;
    position: relative;
    z-index: 888;
}

.home .content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 70px;
    color: #fff;
    margin-bottom: 40px;
}

.home .content p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 65px;
}

.home .content a {
    text-decoration: none;
    background: #007a33;
    color: #fff;
    padding: 15px 30px;
    border-radius: 2px;
    font-weight: 500;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.social-media {
    position: absolute;
    z-index: 888;
    right: 30px;
    display: flex;
    flex-direction: column;
}

.social-media a {
    font-size: 1.3rem;
    color: #fff;
    transition: 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.5);
}

.social-media a:not(:last-child) {
    margin-bottom: 15px;
}

.video-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 000;
    object-fit: cover;
}

@media (max-width: 1040px) {
    header {
        padding: 12px 20px;
    }
    section {
        padding: 100px 20px;
    }
    .home .content {
        width: 90%;
    }
    .home .social-media {
        right: 15px;
    }
    header .navigation {
        display: none;
    }
    .menu-btn {
        position: relative;
        background: url(/images/menu.png) no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        filter: invert(1);
        z-index: 9999;
        transition: 0.3s ease;
        ;
    }
    .menu-btn.active {
        background: url(/images/close.png) no-repeat;
        background-size: 25px;
        background-position: center;
        position: fixed;
        transition: 0.3s ease;
        z-index: 9999;
    }
    header .navigation.active {
        display: block;
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        animation: slide-right 1s ease;
    }
    @keyframes slide-right {
        0% {
            transform: translateX(500px);
        }
        100% {
            transform: translateX(0);
        }
    }
    .navigation.active .navigation-items {
        position: absolute;
        z-index: 999;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background: rgba(1, 1, 1, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header .navigation .navigation-items a {
        font-size: 1.5rem;
        font-weight: 600;
        color: #ffffff;
        margin: 8px;
    }
    header .navigation.active .navigation-items {
        background: #007a33;
        width: 50%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 5px 25px rgba(1, 1, 1, 0.2);
    }
}

@media (max-width: 699px) {
    header .navigation.active .navigation-items {
        width: 60%;
    }
}

.about-section,
.projects-section,
.contact-section {
    padding: 50px 20px;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-image {
    width: 150px;
    /* Ajustez la taille de l'image de profil */
    border-radius: 50%;
    /* Pour un effet circulaire */
    margin: 20px 0;
}


/*Service Deco et autres */

.decoration {
    padding: 20px 10%;
    margin: 50px 0;
    width: 100%;
}

.deco-list {
    width: 100%;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fill, 31.11%);
    gap: 30px;
}

.deco-list .deco videoe {
    width: 100%;
    object-fit: cover;
}

.deco-list .deco {
    text-align: center;
    cursor: pointer;
    padding: 10px;
    transition: 0.5s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.deco-list .deco:hover {
    transform: scale(1.1);
}

.deco-list .deco p {
    margin: 5px 0;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.deco-list .deco span {
    font-size: 15px;
    color: #007a33;
}

.deco-list .deco .orange_link {
    margin-top: 5px;
    border: 1px solid #007a33;
    letter-spacing: 1px;
    width: 100%;
    transition: 0.5s;
    cursor: pointer;
}

.deco-list .deco .orange_link:hover {
    background-color: transparent;
    color: #007a33;
}

.orange_link {
    background-color: #007a33;
}

.services-section {
    background-color: #f7f7f7;
    padding: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.service-video {
    margin-bottom: 20px;
}

.service-video video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.service-description {
    margin-top: 20px;
}

.service-description h3 {
    font-weight: bold;
    margin-bottom: 10px;
}


/* CSS */

.video-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(90deg);
}


/* Media queries for responsive design */


/* Desktops and laptops */

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Tablets */

@media (min-width: 768px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile phones */

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.services-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #007a33;
}

.typing-animation {
    font-size: 1.5em;
    font-family: 'Courier New', Courier, monospace;
    border-right: 2px solid #333;
    /* Curseur de saisie */
    white-space: nowrap;
    /* Empêche le retour à la ligne */
    overflow: hidden;
    /* Cache le texte qui dépasse */
    width: 0;
    /* Commence avec une largeur de 0 */
    animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
        /* Ajustez cette valeur pour la longueur du texte */
    }
}

@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: black;
    }
}

.contact-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.contact-section h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-photo {
    width: 150px;
    /* Ajustez la taille de l'image */
    height: 150px;
    /* Ajustez la taille de l'image */
    border-radius: 50%;
    /* Pour un effet circulaire */
    margin-bottom: 20px;
}

.contact-section form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-section button {
    padding: 10px 20px;
    background: #007a33;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s;
}

.contact-section button:hover {
    background: #b60000ab;
}


/* Responsive Styles */

@media (max-width: 600px) {
    .contact-section h2 {
        font-size: 1.5em;
    }
    .contact-section input,
    .contact-section textarea {
        font-size: 0.9em;
    }
    .contact-section button {
        font-size: 0.9em;
    }
}

.footer {
    background-color: #000000;
    color: #ff5517;
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: #ddd;
    /* Couleur au survol */
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    margin: 0 15px;
}

.logo {
    position: absolute;
    top: 20px;
    /* Ajustez la position verticale */
    left: 20px;
    /* Ajustez la position horizontale */
    width: 100px;
    /* Ajustez la taille du logo */
    z-index: 10;
    /* Assurez-vous que le logo est au-dessus de la vidéo */
}

.logo {
    width: 100px;
    /* Ajustez la taille du logo */
    height: auto;
    /* Conserve les proportions */
}

.animate-charcter {
    text-transform: uppercase;
    background-image: linear-gradient( -225deg, #007a33 0%, #007a33 29%, #007a33 67%, #fff800 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    font-size: 190px;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.footer {
    background-color: #343a40;
    /* Couleur de fond du footer */
    color: white;
    /* Couleur du texte */
    padding: 40px 0;
    /* Espacement vertical */
}

.footer a {
    color: #61dafb;
    /* Couleur des liens */
    transition: color 0.3s;
    /* Transition pour le changement de couleur */
}

.footer a:hover {
    color: #ffffff;
    /* Couleur des liens au survol */
}

.social-icons a {
    margin: 0 10px;
    /* Espacement entre les icônes */
    font-size: 24px;
    /* Taille des icônes */
    transition: transform 0.3s;
    /* Transition pour l'animation */
}

.social-icons a:hover {
    transform: scale(1.2);
    /* Agrandissement au survol */
}

.footer-logo {
    max-width: 150px;
    /* Largeur maximale du logo */
    margin-bottom: 20px;
    /* Espacement en bas du logo */
}

.footer {
    position: relative;
    color: white;
    /* Couleur du texte */
    padding: 40px 0;
    /* Espacement vertical */
    overflow: hidden;
    /* Pour cacher les éléments qui débordent */
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #1e3c72, #2a5298);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    /* Animation du dégradé */
    z-index: 1;
    /* Mettre le dégradé derrière le contenu */
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-content {
    position: relative;
    /* Pour que le contenu soit au-dessus du dégradé */
    z-index: 2;
    /* Mettre le contenu au-dessus du dégradé */
}

.footer a {
    color: #61dafb;
    /* Couleur des liens */
    transition: color 0.3s;
    /* Transition pour le changement de couleur */
}

.footer a:hover {
    color: #ffffff;
    /* Couleur des liens au survol */
}

.social-icons a {
    margin: 0 10px;
    /* Espacement entre les icônes */
    font-size: 24px;
    /* Taille des icônes */
    transition: transform 0.3s;
    /* Transition pour l'animation */
}

.social-icons a:hover {
    transform: scale(1.2);
    /* Agrandissement au survol */
}

.footer-logo {
    max-width: 150px;
    /* Largeur maximale du logo */
    margin-bottom: 20px;
    /* Espacement en bas du logo */
}

.footer {
    position: relative;
    color: white;
    /* Couleur du texte */
    padding: 40px 0;
    /* Espacement vertical */
    overflow: hidden;
    /* Pour cacher les éléments qui débordent */
}

.footer video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Pour couvrir tout l'espace */
    z-index: 1;
    /* Mettre la vidéo derrière le contenu */
    opacity: 0.5;
    /* Rendre la vidéo semi-transparente */
}

.footer-content {
    position: relative;
    /* Pour que le contenu soit au-dessus de la vidéo */
    z-index: 2;
    /* Mettre le contenu au-dessus de la vidéo */
}

.footer a {
    color: #61dafb;
    /* Couleur des liens */
    transition: color 0.3s;
    /* Transition pour le changement de couleur */
}

.footer a:hover {
    color: #ffffff;
    /* Couleur des liens au survol */
}

.social-icons a {
    margin: 0 10px;
    /* Espacement entre les icônes */
    font-size: 24px;
    /* Taille des icônes */
    transition: transform 0.3s;
    /* Transition pour l'animation */
}

.social-icons a:hover {
    transform: scale(1.2);
    /* Agrandissement au survol */
}

.footer-logo {
    max-width: 150px;
    /* Largeur maximale du logo */
    margin-bottom: 20px;
    /* Espacement en bas du logo */
}


/* styles.css */

.legal-advice {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
    background-color: #f4f4f4;
}

.legal-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.legal-text {
    flex: 2 1 600px;
    padding-right: 1em;
}

.legal-text h2 {
    color: #333;
    margin-top: 0;
}

.legal-img {
    flex: 1 1 300px;
    max-width: 300px;
    border-radius: 10px;
}


/* Media Queries */

@media (max-width: 768px) {
    .legal-content {
        flex-direction: column;
        text-align: center;
    }
    .legal-text {
        padding-right: 0;
        padding-bottom: 1em;
    }
    .legal-img {
        margin: 0 auto;
    }
}


/* styles.css */

.financial-advice {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
    background-color: #f4f4f4;
}

.financial-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.financial-text {
    flex: 2 1 600px;
    padding-right: 1em;
}

.financial-text h2 {
    color: #003366;
    margin-top: 0;
}

.financial-img {
    flex: 1 1 300px;
    max-width: 300px;
    border-radius: 10px;
}


/* Media Queries */

@media (max-width: 768px) {
    .financial-content {
        flex-direction: column;
        text-align: center;
    }
    .financial-text {
        padding-right: 0;
        padding-bottom: 1em;
    }
    .financial-img {
        margin: 0 auto;
    }
}


/* styles.css */

.governance-compliance {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
    background-color: #f4f4f4;
}

.governance-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.governance-text {
    flex: 2 1 600px;
    padding-right: 1em;
}

.governance-text h2 {
    color: #003366;
    margin-top: 0;
}

.governance-img {
    flex: 1 1 300px;
    max-width: 300px;
    border-radius: 10px;
}


/* Media Queries */

@media (max-width: 768px) {
    .governance-content {
        flex-direction: column;
        text-align: center;
    }
    .governance-text {
        padding-right: 0;
        padding-bottom: 1em;
    }
    .governance-img {
        margin: 0 auto;
    }
}


/* styles.css */

.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
    background-color: #f4f4f4;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.about-img {
    flex: 1 1 300px;
    max-width: 300px;
    margin-right: 1em;
    border-radius: 50%;
    /* This makes the image round */
    border: 2px solid #ffffff;
    /* Optional: Adds a border around the image */
}

.about-text {
    flex: 2 1 600px;
}

.about-text h2 {
    color: #333;
    margin-top: 0;
}


/* Media Queries */

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-img {
        margin: 0 auto 1em auto;
    }
    .about-text {
        padding: 0 1em;
    }
}

.logo {
    position: absolute;
    top: -35px;
    left: 0;
    margin: -12px;
    width: 100px;
    /* Ajustez selon vos besoins */
    height: auto;
    /* Pour garder les proportions */
}

.profile-image {
    width: 150px;
    border-radius: 50%;
    margin: -48px 0;
}

.text-container {
    text-align: center;
}

.PP {
    text-align: center;
}

.decoration {
    padding: 40px 0;
}

.deco {
    margin-bottom: 20px;
}

.contact-section {
    padding: 40px 0;
}

.footer-logo {
    max-width: 185px;
    margin-bottom: -92px;
}

.decoration {
    padding: 20px;
}

#Service {
    color: green;
    font-size: 35px;
    text-align: center;
}

.deco-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.deco {
    background: #fff;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    width: calc(33.333% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.deco:hover {
    transform: translateY(-10px);
}

.deco video {
    width: 100%;
    border-radius: 10px;
}

.orange_link {
    background-color: #007a33;
    color: rgb(206, 206, 4);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .deco {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .deco {
        width: calc(100% - 20px);
    }
    #Service {
        font-size: 28px;
    }
}

@media (max-width: 1040px) {
    .menu-btn {
        position: relative;
        background: url(/images/menu.png) no-repeat;
        background-size: 30px;
        background-position: right;
        width: 100%;
        height: 88px;
        cursor: pointer;
        filter: invert(1);
        z-index: 9999;
        transition: 0.3s ease;
    }
}

body {
    font-family: Arial, sans-serif;
}

.content {
    padding: 20px;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007a33;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: none;
    /* Masqué par défaut */
    transition: background-color 0.3s;
}

.back-to-top:hover {
    background-color: yellowgreen;
}


/* Afficher le bouton lorsque l'utilisateur fait défiler la page */

body {
    scroll-behavior: smooth;
    /* Pour un défilement fluide */
}

@media (min-height: 600px) {
    .back-to-top {
        display: block;
        /* Afficher le bouton si la page est assez longue */
    }
}

.service {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.service-icon {
    width: 50px;
    /* Ajustez la taille de l'icône */
    height: 50px;
    /* Ajustez la taille de l'icône */
    margin-right: 15px;
}

h3 {
    color: #b36a6a;
    /* Couleur du titre */
    margin: 0;
}

p {
    color: #555;
}

.hh {
    text-align: center;
    color: #333;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper {
    font-family: 'poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fafafa;
}

.wrapper h1 {
    font-size: 3em;
    margin: 25px;
}

.content-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin-top: 30px;
}

.card {
    min-height: 220px;
    width: 320px;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    margin: 10px 4px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}

.card i {
    margin: 20px;
    color: #007a33;
}

.card h2 {
    margin-bottom: 12px;
    font-weight: 400;
    text-align: center;
}

.card p {
    color: #6c757d;
    text-align: center;
}

.card:hover i,
.card:hover p {
    color: #fff;
}

.card:hover h2 {
    font-weight: 600;
}

.card:nth-child(1):hover {
    background: linear-gradient(45deg, rgba(70, 159, 85, 0.7) 0%, rgba(70, 159, 85, 0.7)100%), url('bg.jpg');
    background-size: cover;
}

.card:nth-child(2):hover {
    background: linear-gradient(45deg, rgba(70, 159, 85, 0.7) 0%, rgba(70, 159, 85, 0.7)100%), url('bg2.jpg');
    background-size: cover;
}

.card:nth-child(3):hover {
    background: linear-gradient(45deg, rgba(70, 159, 85, 0.7) 0%, rgba(70, 159, 85, 0.7)100%), url('bg3.jpg');
    background-size: cover;
}

.card:nth-child(4):hover {
    background: linear-gradient(45deg, rgba(70, 159, 85, 0.7) 0%, rgba(70, 159, 85, 0.7)100%), url('bg4.jpg');
    background-size: cover;
}

.card:nth-child(5):hover {
    background: linear-gradient(45deg, rgba(70, 159, 85, 0.7) 0%, rgba(70, 159, 85, 0.7)100%), url('bg5.jpg');
    background-size: cover;
}

.card:nth-child(6):hover {
    background: linear-gradient(45deg, rgba(70, 159, 85, 0.7) 0%, rgba(70, 159, 85, 0.7)100%), url('bg2.jpg');
    background-size: cover;
}

@media(max-width:991px) {
    .wrapper {
        padding: 25px;
    }
    .wrapper h1 {
        font-size: 2.5em;
        font-weight: 600;
    }
    .content-box {
        flex-direction: column;
        width: 100%;
    }
    .card {
        min-width: 300px;
        margin: 10px auto;
    }
}

.services2 {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#Service1 {
    color: green;
    font-size: 35px;
}

.service1-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service1 {
    background: #fff;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    width: calc(33.333% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    text-align: center;
}

.service1:hover {
    transform: translateY(-10px);
}

.service1-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .service1 {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .service1 {
        width: calc(100% - 20px);
    }
    #Service1 {
        font-size: 28px;
    }
}

#center_11 {
    padding: 20px 0;
    background-color: #f9f9f9;
}

#center_11 h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

#center_11 p {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

.center_11_middle .col-sm-4 {
    margin-bottom: 30px;
}

.center_11_middle_left_inner_1 {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.center_11_middle_left_inner_1 img {
    width: 80%;
    /* Réduire la largeur de l'image à 80% de son conteneur parent */
    height: auto;
    /* Maintenir le ratio d'aspect de l'image */
    display: block;
    margin: 0 auto;
    /* Centrer l'image horizontalement */
}

.center_11_middle_left_inner_1 figcaption a {
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
}

.center_11_middle_left_inner_2 {
    text-align: center;
    padding: 10px;
}

.center_11_middle_left_inner_2 h4 a {
    text-decoration: none;
    color: #007a33;
    font-weight: bold;
}

.center_11_middle_left_inner_2 h5 {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.center_11_middle_left_inner_2 h3 {
    font-size: 18px;
    color: #007a33;
    font-weight: bold;
}


/* Media Queries pour différentes tailles d'écran */

@media (max-width: 991px) {
    .center_11_middle .col-sm-4 {
        width: 50%;
        /* Deux colonnes par ligne pour les tablettes et écrans moyens */
        margin-bottom: 20px;
    }
    .center_11_middle_left_inner_1 img {
        width: 90%;
        /* Ajuster la largeur de l'image pour les tailles d'écran moyenne */
    }
}

@media (max-width: 767px) {
    .center_11_middle .col-sm-4 {
        width: 100%;
        /* Une colonne par ligne pour les petits écrans */
        margin-bottom: 20px;
    }
    .center_11_middle_left_inner_1 img {
        width: 100%;
        /* Ajuster la largeur de l'image pour les petits écrans */
    }
}

#valeur_ajoutee {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#valeur_ajoutee h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.valeur-item {
    text-align: center;
    margin-bottom: 30px;
}

.valeur-num {
    font-size: 50px;
    color: #007a33;
    margin-bottom: 10px;
}

.valeur-content h4 {
    font-size: 24px;
    color: #007a33;
    margin-bottom: 10px;
}

.valeur-content p {
    color: #555;
}


/* Media Queries pour responsivité */

@media (max-width: 991px) {
    .valeur-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .valeur-item {
        width: 100%;
        /* Une colonne par ligne pour les petits écrans */
        margin-bottom: 20px;
    }
    .valeur-num {
        font-size: 40px;
    }
    .valeur-content h4 {
        font-size: 20px;
    }
}

#services {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#services h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.service-item {
    text-align: center;
    margin-bottom: 30px;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.service-icon img {
    width: 150px;
    /* Taille augmentée de l'image */
    height: auto;
    border-radius: 50%;
    /* Rendre l'image arrondie */
}

.service-content {
    padding: 10px;
}

.service-content h4 {
    font-size: 20px;
    color: #007a33;
    margin-bottom: 10px;
}

.service-content p {
    color: #555;
    font-size: 14px;
}


/* Media Queries pour responsivité */

@media (max-width: 991px) {
    .service-item {
        margin-bottom: 20px;
    }
    .service-icon img {
        width: 130px;
        /* Ajuster la taille de l'image pour les écrans moyens */
    }
}

@media (max-width: 767px) {
    .service-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .service-icon img {
        width: 110px;
        /* Ajuster la taille de l'image pour les petits écrans */
    }
}

.service-icon {
    width: 100%;
    height: 50px;
    margin-right: 15px;
}

#conseil-gouvernance {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#conseil-gouvernance h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.service-image {
    text-align: center;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-info {
    padding: 20px;
}

.service-detail {
    margin-bottom: 20px;
}

.service-detail h4 {
    font-size: 18px;
    color: #007a33;
    margin-bottom: 10px;
}

.service-detail p {
    color: #555;
    font-size: 14px;
}


/* Media Queries pour responsivité */

@media (max-width: 991px) {
    .service-item {
        flex-direction: column;
        align-items: center;
    }
    .service-info {
        padding: 10px;
    }
    .service-detail h4 {
        font-size: 16px;
    }
    .service-detail p {
        font-size: 12px;
    }
}

#conseil-gouvernance {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#conseil-gouvernance h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-detail {
    text-align: center;
    width: 23%;
    margin-bottom: 30px;
}

.service-icon img {
    width: 80px;
    /* Taille de l'icône */
    height: auto;
    margin-bottom: 10px;
}

.service-detail h4 {
    font-size: 16px;
    color: #007a33;
    margin-bottom: 10px;
}

.service-detail p {
    color: #555;
    font-size: 14px;
}


/* Media Queries pour responsivité */

@media (max-width: 991px) {
    .service-detail {
        width: 45%;
        margin-bottom: 20px;
    }
    .service-detail h4 {
        font-size: 14px;
    }
    .service-detail p {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .service-detail {
        width: 100%;
        margin-bottom: 20px;
    }
    .service-detail h4 {
        font-size: 14px;
    }
    .service-detail p {
        font-size: 12px;
    }
}

.lesp {
    color: white;
}

.deco-list .deco .orange_link {
    margin-top: 5px;
    border: 1px solid green;
    letter-spacing: 1px;
    width: 100%;
    transition: 0.5s;
    cursor: pointer;
}

element.style {
    color: #ff1212;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    text-align: center;
    color: #333;
}

.target {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.target div {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    flex: 1 1 30%;
    max-width: 30%;
    text-align: center;
}

.target img {
    width: 50px;
    height: 50px;
}

@media (max-width: 768px) {
    .target div {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .target div {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

#section-wrapper {
    width: 100%;
    padding: 10px;
}

.box-wrapper {
    position: relative;
    display: table;
    width: 1100px;
    margin: auto;
    margin-top: 35px;
    border-radius: 30px;
}

.info-wrap {
    width: 35%;
    height: 551px;
    padding: 40px;
    float: left;
    display: block;
    border-radius: 30px 0px 0px 30px;
    background: linear-gradient(144deg, rgb(10, 121, 6) 0%, rgb(19, 148, 14) 49%);
    color: #fff;
}

.info-title {
    text-align: left;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.info-sub-title {
    font-size: 18px;
    font-weight: 300;
    margin-top: 17px;
    letter-spacing: 0.5px;
    line-height: 26px;
}

.info-details {
    list-style: none;
    margin: 60px 0px;
}

.info-details li {
    margin-top: 25px;
    font-size: 18px;
    color: #fff;
}

.info-details li i {
    background: #dcf501;
    padding: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.info-details li a {
    color: #fff;
    text-decoration: none;
}

.info-details li a:hover {
    color: #e0f00a;
}

.social-icons {
    list-style: none;
    text-align: center;
    margin: 20px 0px;
}

.social-icons li {
    display: inline-block;
}

.social-icons li i {
    background: #000000;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    border-radius: 22%;
    margin: 0px 5px;
    cursor: pointer;
    transition: all .5s;
}

.social-icons li i:hover {
    background: #fff;
    color: #000000;
}

.form-wrap {
    width: 65%;
    float: right;
    padding: 40px 25px 35px 25px;
    border-radius: 0px 30px 30px 0px;
    background: #ecf0f3;
}

.form-title {
    text-align: left;
    margin-left: 23px;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.form-fields {
    display: table;
    width: 100%;
    padding: 15px 5px 5px 5px;
}

.form-fields input,
.form-fields textarea {
    border: none;
    outline: none;
    background: none;
    font-size: 18px;
    color: #555;
    padding: 20px 10px 20px 5px;
    width: 100%
}

.form-fields textarea {
    height: 150px;
    resize: none;
}

.form-group {
    width: 46%;
    float: left;
    padding: 0px 30px;
    margin: 14px 12px;
    border-radius: 25px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ffffff;
}

.form-fields .form-group:last-child {
    width: 96%;
}

.submit-button {
    width: 96%;
    height: 60px;
    margin: 0px 12px;
    border-radius: 30px;
    font-size: 20px;
    ;
    font-weight: 700;
    outline: none;
    border: none;
    cursor: pointer;
    color: #fff;
    text-align: center;
    background: #007a33;
    box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
    transition: .5s;
}

.submit-button:hover {
    background: #eb0410;
}


/* Responsive css */

@media only screen and (max-width: 767px) {
    .box-wrapper {
        width: 100%;
    }
    .info-wrap,
    .form-wrap {
        width: 100%;
        height: inherit;
        float: none;
    }
    .info-wrap {
        border-radius: 30px 30px 0px 0px;
    }
    .form-wrap {
        border-radius: 0px 0px 30px 30px;
    }
    .form-group {
        width: 100%;
        float: none;
        margin: 25px 0px;
    }
    .form-fields .form-group:last-child,
    .submit-button {
        width: 100%;
    }
    .submit-button {
        margin: 10px 0px;
    }
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    text-align: center;
    color: #333;
}

.target {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.target div {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    flex: 1 1 30%;
    max-width: 30%;
    text-align: center;
}

.target img {
    width: 50px;
    height: 50px;
}

@media (max-width: 768px) {
    .target div {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .target div {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.value-added {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.value-added div {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    flex: 1 1 30%;
    max-width: 30%;
    text-align: center;
}

@media (max-width: 768px) {
    .value-added div {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .value-added div {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.target,
.value-added {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.target div,
.value-added div {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    text-align: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.target div:hover,
.value-added div:hover {
    transform: scale(1.05);
}

.target i,
.value-added i {
    font-size: 48px;
    color: #007a33;
    margin-bottom: 15px;
}

.target h3,
.value-added h3 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #007a33;
}

.target p,
.value-added p {
    color: #555;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .target div,
    .value-added div {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.content-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.card {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    text-align: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card i {
    font-size: 48px;
    color: #007a33;
    margin-bottom: 15px;
}

.card h2 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #007a33;
}

.card p {
    color: #555;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.icon {
    font-size: 2rem;
    color: #007a33;
}

.card-title {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.card {
    border: none;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
}

* body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}


/* Titre de la section */

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #007a33;
    margin-bottom: 40px;
}


/* Grille */

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}


/* Bloc d'icône */

.icon-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


/* Icône */

.icon-box .icon {
    font-size: 3rem;
    color: #007a33;
    margin-bottom: 15px;
}


/* Texte */

.icon-box h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}


/* Responsivité */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .icon-box .icon {
        font-size: 2.5rem;
    }
    .icon-box h3 {
        font-size: 1rem;
    }
}

@media (max-width: 699px) {
    header .navigation.active .navigation-items {
        width: 67%;
    }
}

@media (max-width: 1040px) {
    header .navigation .navigation-items a {
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
        margin: 10px;
    }
}





.home .content h1 {
    font-size: 35px;
    font-weight: 600px;
    line-height: 67px;
    color: #fff;
    margin-bottom: 40px;
}




@media (max-width: 1040px) {
    header .navigation .navigation-items a {
        font-size: 0.8rem;
        font-weight: 600;
        color: #ffffff;
        margin: 10px;
    }
}

















.references-section {
    padding: 40px;
    background-color: #fff;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.references-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.reference-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    transition: transform 0.2s;
}

.reference-item:hover {
    transform: scale(1.02);
}

.reference-item img {
    width: 120px;
    height: 60px;
    
    object-fit: cover;
    margin-right: 20px;
}

.reference-item div {
    flex-grow: 1;
}

.reference-item h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #555;
}

.reference-item p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #777;
}

