* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}
.bloc-1 {
    position: relative;
    min-height: 820px;
    height: 100vh;
    background-image: url('Projet blocs/librairies/home/bgslider.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bloc-1 header {
    position: relative;
    z-index: 100;
}

.bloc-1 .rectangle {
    background-color: rgb(13, 18, 95);
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0;
}

.bloc-1 span {
    font-family: 'Quicksand', sans-serif;
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.bloc-1 nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: flex-end;
    align-items: center;
    padding-top: 20px;
    padding-right: 200px;
    padding-left: 0;
    margin: 0;
}

.bloc-1 nav ul li a:hover {
    color: rgb(44, 100, 243);
}

.bloc-1 nav ul li a {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(51, 53, 96);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.bloc-1 .contact {
    margin-left: 50px;
    display: inline-flex;
    align-items: center;
    background-color: rgb(44, 100, 243);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    cursor: pointer;
}

.bloc-1 .contact:hover {
    color: rgb(255, 255, 255);
}

.bloc-1 .fleche {
    margin-left: 5px;
    width: 25px;
    height: 35px;
    filter: brightness(0) invert(1);
}

/* Masquer */
.menu-toggle {
    display: none;
}

/* Masquer le hamburger */
.hamburger-label {
    display: none;
}

.hamburger-label .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000060;
    border-radius: 3px;
    transition: all 0.3s ease;
    right: 0;
}

.bloc-1 .fond {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    z-index: -1;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.bloc-1 .gauche {
    padding-left: 200px;
    padding-right: 20px;
}

.bloc-1 .logo {
    display: block;
    position: relative;
    top: -50px;
    z-index: 2;
    width: 150px;
    height: 150px;
}

.bloc-1 h1 {
    color: rgb(51, 53, 96);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 1;
    margin-bottom: 0;
}

.bloc-1 p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    margin-top: 40px;
    line-height: 1.7;
    margin-bottom: 0;
}

.bloc-1 .contact2 {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    background-color: rgb(44, 100, 243);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    cursor: pointer;
}

.image-tablette {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 800px;
    height: auto;
    z-index: 1;
}

.image-tablette-768 {
    display: none;
}

@media screen and (max-width: 768px) {
    .bloc-1 {
        height: 70vh;
        min-height: 700px;
    }

    .bloc-1 header {
        margin-left: 20px;
        margin-right: 20px;
    }

    .bloc-1 .rectangle {
        height: 30px;
    }

    /* Afficher le bouton hamburger en mobile */
    .hamburger-label {
        display: flex !important; /* !important pour prendre le dessu sur tout*/
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        position: absolute;
        top: 30px;
        right: 0;
        z-index: 1000;
        padding: 5px;
        border-radius: 5px;
    }

    /* Animation des barres quand le menu est ouvert */
    .menu-toggle:checked + .hamburger-label .bar:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background-color: rgb(51, 53, 96);
    }

    .menu-toggle:checked + .hamburger-label .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked + .hamburger-label .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: rgb(51, 53, 96);
    }

    /* Menu caché*/
    .bloc-1 nav ul {
        position: fixed;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        background: white;
        padding: 40px 10px;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        overflow-y: auto;
        z-index: 999;
        overflow-y: auto;
    }

    /* Afficher le menu quand croix est cliquer */
    .menu-toggle:checked ~ nav ul {
        display: flex;
    }

    /*liens dans le menu mobile */
    .bloc-1 nav ul li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
    }

    .bloc-1 nav ul li:last-child {
        border-bottom: none;
    }

    .bloc-1 nav ul li a {
        display: block;
        padding: 20px 10px;
        font-size: 18px;
        color: rgb(13, 18, 95);
        font-weight: 600;
    }

    .bloc-1 .contact {
        display: none;
    }

    .bloc-1 .gauche {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bloc-1 .logo {
        display: block;
        position: relative;
        top: 20px;
        z-index: 2;
        width: 100px;
        height: 100px;
    }

    .bloc-1 h1 {
        font-size: 75px;
    }

    .image-tablette {
        display: none;
    }

    .image-tablette-768 {
        display: block;
        position: absolute;
        top: 15px;
        left: 518px;
        transform: translateX(-50%);
        width: 90%;
        max-width: 500px;
        height: auto;

        z-index: 0;

        object-fit: cover;
    }
}
/* BLOC-22---------------------------------------------------------------------------------------------------------------*/

.bloc-22 {
    position: relative;
    background-color: rgb(13, 18, 95);
    min-height: 700px;
    height: 90vh;
    overflow: hidden;
}

/* FOND */
.bloc-22 .fond {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.bloc-22 .fond img {
    width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* SECTION GAUCHE */
.bloc-22 .gauche {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    z-index: 2;
}

/* Personnage */
.bloc-22 .personnage img {
    position: absolute;
    z-index: 4;
    left: 36%;
    top: 13%;
    width: 400px;
    height: auto;
    border-radius: 0 0 170px 170px;
    object-fit: cover;
}

.bloc-22 .bulle-bleu {
    position: absolute;
    top: 25%;
    left: 35%;
    z-index: 3;
}

.bloc-22 .bulle-bleu img {
    width: 220px;
}

.bloc-22 .bulle-verte {
    position: absolute;
    top: 35%;
    left: 36%;
    z-index: 2;
}

.bloc-22 .bulle-verte img {
    width: 410px;
}

/* SECTION DROITE */
.bloc-22 .droite {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 45%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TITRES ET TEXTES */
.bloc-22 h3 {
    font-size: 40px;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    color: white;
    font-weight: 600;
}

.bloc-22 .sous-titre {
    color: rgb(112, 244, 177);
    font-family: 'Quicksand', sans-serif;
}

.bloc-22 p {
    line-height: 2;
    color: rgb(215, 215, 215);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Bloc "évolution" */
.bloc-22 .evolution {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.bloc-22 .evolution p {
    color: rgb(172, 171, 171);
}

.bloc-22 .icone {
    width: 50px;
    height: 50px;
}

/* Bouton */
.bloc-22 .bouton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border: 1px solid rgb(92, 87, 255);
    padding: 10px 20px;
    background-color: transparent;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.bloc-22 .fleche {
    display: flex;
    align-items: center;
    margin-left: 5px;
    width: 10px;
    height: 10px;
    filter: brightness(0) invert(1);
}

.bloc-22 .bouton:hover {
    transform: scale(1.05);
    border: 1px solid white;
}

/* responsive---------------------------------------------------------------------------------------------------------bloc-22--- */

@media (max-width: 768px) {
    .bloc-22 {
        height: 150vh;
    }

    /* FOND */
    .bloc-22 .fond {
        display: none;
    }

    /* SECTION GAUCHE */
    .bloc-22 .gauche {
        position: absolute;
        top: 0;
        left: 0;
        height: 47%;
        width: 65%;
        z-index: 2;
    }

    /* Personnage */
    .bloc-22 .personnage img {
        position: absolute;
        z-index: 4;
        left: 36%;
        top: 13%;
        width: 400px;
        height: auto;
        border-radius: 0 0 170px 170px;
        object-fit: cover;
    }

    .bloc-22 .bulle-bleu {
        position: absolute;
        top: 25%;
        left: 35%;
        z-index: 3;
    }

    .bloc-22 .bulle-bleu img {
        width: 220px;
    }

    .bloc-22 .bulle-verte {
        position: absolute;
        top: 35%;
        left: 36%;
        z-index: 2;
    }

    .bloc-22 .bulle-verte img {
        width: 410px;
    }

    /* SECTION DROITE */
    .bloc-22 .droite {
        letter-spacing: 1px;
        font-size: 20px;
        position: absolute;
        margin-top: 300px;
        width: 92%;
        margin-left: 20px;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* TITRES ET TEXTES */
    .bloc-22 h3 {
        font-size: 40px;
        margin: 0;
        font-family: 'Quicksand', sans-serif;
        color: white;
        font-weight: 600;
    }

    .bloc-22 .sous-titre {
        color: rgb(112, 244, 177);
        font-family: 'Quicksand', sans-serif;
    }

    .bloc-22 p {
        line-height: 2;
        color: rgb(215, 215, 215);
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
            Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    /* Bloc "évolution" */
    .bloc-22 .evolution {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .bloc-22 .evolution p {
        color: rgb(172, 171, 171);
    }

    .bloc-22 .icone {
        width: 50px;
        height: 50px;
    }

    /* Bouton */
    .bloc-22 .bouton {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
            Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        border: 1px solid rgb(92, 87, 255);
        padding: 10px 20px;
        background-color: transparent;
        cursor: pointer;
        border-radius: 5px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    }

    .bloc-22 .fleche {
        display: flex;
        align-items: center;
        margin-left: 5px;
        width: 10px;
        height: 10px;
        filter: brightness(0) invert(1);
    }

    .bloc-22 .bouton:hover {
        transform: scale(1.05);
        border: 1px solid white;
    }
}

/*BLOC-3--------------------------------------------------------------------------------------------------------------*/

.bloc-3 {
    margin-bottom: 50px;
}

.bloc-3 .texte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bloc-3 .services {
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    font-size: 45px;
    margin-top: 70px;
    margin-bottom: 0;
    color: rgb(13, 14, 95);
}

.bloc-3 .description {
    font-size: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(44, 100, 243);
}

.bloc-3 .contenu {
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 90px;
}

.bloc-3 .cartes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.bloc-3 .carte {
    padding: 30px 30px;
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloc-3 .carte:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.072);
}

/* Couleurs de fond carte */
.bloc-3 .carte.lorem {
    background-color: rgb(255, 252, 246);
}
.bloc-3 .carte.ipsum {
    background-color: rgb(254, 248, 245);
}
.bloc-3 .carte.dolor {
    background-color: rgb(254, 247, 252);
}
.bloc-3 .carte.sitamet {
    background-color: rgb(251, 244, 254);
}

.bloc-3 .image-fenetre img {
    display: block;
    width: 480px;
}

.bloc-3 h3 {
    font-weight: 500;
    font-size: 20px;
    color: rgb(13, 14, 95);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.bloc-3 p {
    font-size: 13px;
    line-height: 1.8;
    color: rgb(175, 175, 175);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* responsive-----------------------------------------------------------------------------------------bloc"-----*/

@media screen and (max-width: 768px) {
    .bloc-3 .contenu {
        display: flex;
        flex-direction: column;
        gap: 25px;
        box-sizing: border-box;
    }

    .bloc-3 .cartes {
        gap: 30px;
    }

    .bloc-3 .carte {
        padding: 50px 87px;
        text-align: center;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .bloc-3 .image-fenetre img {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .bloc-3 h3 {
        font-size: 25px;
    }

    .bloc-3 p {
        font-size: 15px;
    }
}

/* BLOC-4---------------------------------------------------------------------------------------------------------------*/
.bloc-4 {
    background-color: #f5f8ff;
}
.bloc-4 .texte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bloc-4 .Titre-des-cas {
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    font-size: 45px;
    margin-top: 70px;
    margin-bottom: 0;
    color: rgb(13, 14, 95);
}

.bloc-4 .description {
    font-size: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(44, 100, 243);
}

.bloc-4 .carte-titre-des-cas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 10px 100px;
}

.bloc-4 .contenu-carte-titre-des-cas {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.bloc-4 .cas {
    text-align: left;
    border-radius: 0 0 15px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 100px;
}

.bloc-4 .cas:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.042);
}

.bloc-4 .cas img {
    background-color: rgb(226, 243, 232);
    display: block;
    width: 100%;
}

.bloc-4 .li1 {
    background-color: rgb(255, 255, 255);
}
.bloc-4 .li2 {
    background-color: rgb(255, 255, 255);
}
.bloc-4 .li3 {
    background-color: rgb(255, 255, 255);
}
.bloc-4 .li4 {
    background-color: rgb(255, 255, 255);
}

.bloc-4 h3 {
    margin-bottom: 30px;
    line-height: 0.5;
    margin-left: 30px;
    font-weight: 500;
    font-size: 20px;
    color: rgb(13, 14, 95);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.bloc-4 .carte-titre-des-cas p {
    margin-top: 20px;
    line-height: 0.5;
    margin-left: 30px;
    font-size: 13px;
    color: rgb(175, 175, 175);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* responsive -----------------------------------------------------------------------------------------------bloc4---*/
@media (max-width: 768px) {
    .bloc-4 .carte-titre-des-cas {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 5px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 100px;
    }

    .bloc-4 .cas {
        margin-bottom: 0px;
    }

    .bloc-4 h3,
    .bloc-4 .carte-titre-des-cas p {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/*----BLOC  avis CLIENT-------------------------------------------------------------------------*/

.bloc-client {
    font-family: 'Quicksand', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 100px;
}

.partie-gauche .photo-client {
    width: 450px;
}

.partie-droite {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 55px;
}

.partie-droite h2 {
    font-size: 40px;
    font-weight: 700;
    color: rgb(13, 14, 95);
    margin-bottom: 10px;
}

.texte-bleu {
    color: rgb(20, 133, 255);
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 25px;
}

.encadre {
    border: 1px solid rgb(217, 216, 216);
    padding: 15px;
    width: 380px;
    margin-bottom: 15px;
}

.texte-temoignage {
    width: 350px;
    font-style: italic;
    color: rgb(25, 33, 111);
    line-height: 1.8;
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
}

.auteur {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.photo-auteur {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.infos-auteur h3 {
    font-size: 18px;
    color: rgb(13, 14, 95);
    margin: 0;
}

.poste {
    color: rgb(20, 133, 255);
    font-size: 14px;
    margin: 0;
}

.points {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    margin-left: -10px;
}

.point {
    background-color: rgb(20, 133, 255);
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.PointGrand {
    background-color: rgb(20, 133, 255);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: 1;
}

/* responsive -----------------------------------------------------------------------------------------------bloc4---*/
@media (max-width: 768px) {
    .bloc-client {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .partie-gauche {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 100px;
        margin-bottom: 0;
    }

    .partie-gauche .photo-client {
        width: 750px;
        max-width: 790px;
    }

    .partie-droite {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 100px;
        box-sizing: border-box;
        margin-right: 0;
    }

    .partie-droite h2,
    .texte-bleu,
    .texte-temoignage,
    .auteur,
    .points {
        text-align: left;
        width: 100%;
    }

    .points {
        justify-content: flex-start;
        margin-left: 0;
    }
    .encadre {
        display: flex;
        justify-content: center;
        border: 1px solid rgb(217, 216, 216);
        padding: 15px;
        width: 718px;
        margin-bottom: 15px;
    }
}

/* bloc contact -----------------------------------------------------------------------------------*/

.bloc-contact {
    min-height: 650px;
    height: 80vh;
    background: url('Projet blocs/librairies/home/bg-2.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bloc-contact {
    min-height: 650px;
    height: 80vh;
    background-color: #2667ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bloc-contact img {
    position: relative;
    z-index: 1;
}

.bloc-contact .contenu {
    position: relative;
    z-index: 2;
}
.bloc-contact h2 {
    font-weight: 700;
    font-size: 2.6rem;
    color: rgb(255, 255, 255);
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 0;
}

.bloc-contact p {
    color: #ffff;
    font-family: 'Quicksan', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
}

.number {
    display: flex;
    justify-content: left;
    gap: 120px;
}

.number h5 {
    font-family: 'Quicksand', sans-serif;
    color: #ffff;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 0;
}

.number p {
    margin-top: 0;
}

.bloc-contact .contenu {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.bloc-contact .gauche {
    display: flex;
    flex-direction: column;
}

.bloc-contact .droite {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bloc-contact .contact-testing {
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    padding: 50px;
    border-radius: 10px;
    font-size: 15px;
}

.titre-contact {
    font-family: 'Quicksand', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.titre-contact h3 {
    margin-bottom: 0;
    color: rgb(13, 14, 95);
}

.titre-contact p {
    margin-top: 0;
    color: rgb(182, 182, 182);
    font-weight: 100;
}

.bloc-contact .contact-testing input {
    background-color: rgb(225, 232, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #bdcdff4f;
    font-size: 15px;
    transition: 0.3s;
}

.bloc-contact .contact-testing select {
    background-color: rgb(225, 232, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #bdcdff43;
    font-size: 15px;
    transition: 0.3s;
}

.bloc-contact .contact-testing button {
    all: unset; /* supprime TOUS les styles */
    font-family: 'Quicksand', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2667ff;
    color: #fff;
    width: 230px;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 2px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.bloc-contact .barre-blanche {
    background-color: rgb(255, 255, 255);
    opacity: 50%;
    height: 10px;
    width: 300px;
    border-radius: 0 0 10px 10px;
}

/* responsive -----------------------------------------------------------------------------------------------bloc4---*/
@media (max-width: 768px) {
    .bloc-contact {
        height: 100vh;
        background-color: #2667ff;
    }

    .bloc-contact .contenu {
        display: flex;
        flex-direction: column;
        gap: 3px;
        position: relative;
        z-index: 2;
    }

    .bloc-contact .gauche {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .bloc-contact .droite {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bloc-contact h2 {
        text-align: left;
        margin-top: 50px;
        margin-bottom: 10px;
    }

    .number {
        display: flex;
        /* Centrer le bloc de numéros */
        justify-content: flex-start;

        gap: 190px;
    }

    .bloc-contact .contact-testing {
        padding: 10px 50px;
    }

    .bloc-contact .contact-testing input {
        width: 627px;
    }

    .bloc-contact .contact-testing select {
        width: 627px;
    }

    .bloc-contact .barre-blanche {
        width: 700px;
    }
}

/* bloc blog & news ---------------------------------------------------------------------------------*/
.bloc-blog-news {
    min-height: 780px;
    height: 100vh;
}
.bloc-blog-news .texte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bloc-blog-news h2 {
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    font-size: 45px;
    margin-top: 70px;
    margin-bottom: 0;
    color: rgb(13, 14, 95);
}

.bloc-blog-news p {
    font-size: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(44, 100, 243);
}

.bloc-blog-news .article {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.bloc-blog-news .date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 0;
}

.bloc-blog-news .date img {
    width: 20px;
    height: 20px;
}

.bloc-blog-news .article h5 {
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    color: rgb(13, 14, 95);
    margin-bottom: 0;
}

.bloc-blog-news .article p {
    font-size: 13px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(13, 14, 95);
    line-height: 1.7;
}

.bloc-blog-news .photo-article {
    width: 85%;
}

.bloc-blog-news button {
    background-color: rgb(234, 239, 254);
    color: rgb(13, 14, 95);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border: none;
    padding: 13px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 3px;
}

.bloc-blog-news button img {
    width: 20px;
    height: 20px;
}

/* responsive -----------------------------------------------------------------------------------------------bloc4---*/
@media (max-width: 768px) {
    .bloc-blog-news {
        height: 80vh;
    }
    .bloc-blog-news .texte {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .bloc-blog-news h2 {
        font-size: 45px;
        margin-top: 70px;
        margin-bottom: 0;
    }

    .bloc-blog-news p {
        font-size: 15px;
    }

    .bloc-blog-news .article {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 20px;
        display: flex;
        justify-content: space-between;

        gap: 50px;
    }

    .bloc-blog-news .photo-article {
        width: 100%;
    }

    .bloc-blog-news .date {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .bloc-blog-news .date img {
        width: 20px;
        height: 20px;
    }

    .bloc-blog-news .article h5 {
        font-weight: 600;
        font-family: 'Quicksand', sans-serif;
        font-size: 1.5rem;
        color: rgb(13, 14, 95);
        margin-bottom: 0;
    }

    .bloc-blog-news .article p {
        font-size: 15px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
            Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        color: rgb(13, 14, 95);
        line-height: 1.7;
    }

    .bloc-blog-news button {
        background-color: rgb(234, 239, 254);
        color: rgb(13, 14, 95);
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
            Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        border: none;
        padding: 13px 25px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        border-radius: 3px;
    }

    .bloc-blog-news button img {
        width: 20px;
        height: 20px;
    }

    .bloc-blog-news .article-3 {
        display: none;
    }
}
/* BLOC-5--------------------------------------------------------------------------------------------*/
.bloc-5 .haut {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('Bloc 5 assets/bg-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    gap: 140px;
    background-color: #0d125f;
    width: 100%;
    height: 400px;
}

.bloc-5 .fond {
    position: absolute;
    width: 100%;
    height: 60vh;
    z-index: 1;
}

.bloc-5 .gauche {
    position: relative;
    z-index: 2;
}

.bloc-5 h3 {
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.bloc-5 p {
    font-family: 'Quicksand', sans-serif;
    color: aqua;
    font-size: 0.7rem;
    margin-bottom: 25px;
}

.bloc-5 .update {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bloc-5 .gauche img {
    width: 20px;
}

.bloc-5 .update p {
    font-family: 'Quicksand', sans-serif;
    color: white;
    margin: 0;
    font-weight: bold;
}

.bloc-5 .contact {
    margin-top: 40px;
}
.bloc-5 .contact img {
    margin-left: 10px;
    width: 10px;
}

.bloc-5 .contact a {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background-color: #2c63f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloc-5 .droite {
    z-index: 2;
    margin-right: 50px;
}
.bloc-5 .droite img {
    width: 350px;
    display: block;
}

.bloc-5 .bas {
    background-color: white;
    padding: 50px 0;
}

.bloc-5 .tout-menu {
    display: flex;
    justify-content: center;
    gap: 125px;
    margin-bottom: 1px;
}

.bloc-5 h4 {
    color: rgb(51, 53, 96);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 20px;
}

.bloc-5 .texte-gras {
    color: rgb(51, 53, 96);
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.bloc-5 .texte-bleu {
    color: #2c63f6;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
}

.bloc-5 .texte-gris {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(175, 175, 175);
    margin-bottom: 0;
}

.bloc-5 .telephone {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bloc-5 .telephone img {
    margin-bottom: 5px;
    width: 20px;
    height: 20px;
}

.bloc-5 .social-icons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.bloc-5 .social-icons img {
    width: 25px;
    height: 25px;
}

.social-follow {
    margin-top: 0;
    gap: 10px;
    display: flex;
    align-items: center;
}

.copyright p {
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    color: #00006065;
}

.copyright {
    margin: 0 auto;
    display: flex;
    height: 50px;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 1016px;
    font-size: 30px;
    background-color: #005df20a;
    margin-bottom: 30px;
}

/* responsive -----------------------------------------------------------------------------------------------bloc4---*/
@media (max-width: 768px) {
    .bloc-5 {
        height: 1100px;
    }
    .bloc-5 .haut {
        height: 590px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        text-align: left;
    }

    /* Texte principal */
    .bloc-5 h3 {
        margin-left: 20px;
        font-size: 3em;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .bloc-5 .haut p {
        margin-left: 20px;
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .bloc-5 .gauche img {
        margin-left: 20px;
    }

    .bloc-5 .contact {
        margin-left: 20px;
    }

    /* Partie droite */
    .bloc-5 .droite {
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }

    .bloc-5 .droite img {
        margin-left: 260px;
        width: 250px;
        max-width: 90%;
        height: auto;
        display: block;
        margin-bottom: 40px;
    }

    .bloc-5 .tout-menu {
        margin-left: -20px;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: flex-start;
    }

    .bloc-5 .menu1 {
        margin-left: 40px;
        margin-right: 140px;
    }

    .bloc-5 .menu3 {
        margin-left: 40px;
        margin-right: 250px;
    }

    .copyright p {
        margin: 0 auto;
        font-family: Arial, Helvetica, sans-serif;
        color: #00006065;
    }

    .copyright {
        margin: 0 auto;
        display: flex;
        height: 40px;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 728px;
        font-size: 25px;
    }
}

/*=============================================================================================================================
=========================================A PROPOS==================================================================================
=============================================================================================================================*/

/*header-apropos--------------------------------------------------------------------------------------------header-apropos*/

.header-apropos {
    background-image: url('Projet blocs/librairies/a propos/bg-pagetitle.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 383px;
    height: 50vh;
    background-color: #2564eb14;
}

.header-apropos header {
    position: relative;
    z-index: 10;
    display: block;
}

.header-apropos .rectangle {
    background-color: rgb(13, 18, 95);
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0%;
}

.header-apropos span {
    font-family: 'Quicksand', sans-serif;
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.header-apropos nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: flex-end;
    align-items: center;
    padding-top: 20px;
    padding-right: 200px;
    padding-left: 0;
    margin: 0;
}

.header-apropos nav ul li a {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(51, 53, 96);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.header-apropos .contact {
    margin-left: 50px;
    display: inline-flex;
    align-items: center;
    background-color: rgb(44, 100, 243);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    cursor: pointer;
}

.header-apropos .fleche {
    margin-left: 5px;
    width: 25px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.menu-toggle,
.hamburger-label {
    display: none;
}

.header-apropos .contenu {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 30px 200px;
}

.header-apropos .contenu h3 img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin: 0;
}

.header-apropos .gauche {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
}

.header-apropos .logo {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    top: -50px;
    z-index: 2;
    width: 150px;
    height: 150px;
}

.header-apropos h1 {
    color: rgb(51, 53, 96);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 55px;
    line-height: 1;
    margin: 0;
}

.header-apropos h3 {
    color: rgb(51, 53, 96);
    font-family: 'Quicksand', sans-serif;
    text-align: right;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding-right: 0;
}

@media (max-width: 768px) {
    .header-apropos {
        height: 20vh;
    }

    .header-apropos header {
        margin-left: 20px;
        margin-right: 20px;
    }

    .header-apropos .rectangle {
        height: 30px;
    }

    /* Afficher le bouton hamburger en mobile */
    .hamburger-label {
        display: flex !important; /* !important pour prendre le dessu sur tout*/
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        position: absolute;
        top: 30px;
        right: 0;
        z-index: 1000;
        padding: 5px;
        border-radius: 5px;
    }

    /* Animation des barres quand le menu est ouvert */
    .menu-toggle:checked + .hamburger-label .bar:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background-color: rgb(51, 53, 96);
    }

    .menu-toggle:checked + .hamburger-label .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked + .hamburger-label .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: rgb(51, 53, 96);
    }

    /* Menu caché par défaut - Overlay plein écran */
    .header-apropos nav ul {
        position: fixed;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        background: white;
        padding: 40px 10px;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        overflow-y: auto;
        z-index: 999;
        overflow-y: auto;
    }

    /* Afficher le menu quand la croix est cliquer */
    .menu-toggle:checked ~ nav ul {
        display: flex;
    }

    /* Ajustement des liens dans le menu mobile */
    .header-apropos nav ul li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
    }

    .header-apropos nav ul li:last-child {
        border-bottom: none;
    }

    .header-apropos nav ul li a {
        display: block;
        padding: 20px 10px;
        font-size: 18px;
        color: #000060;
        font-weight: 600;
    }

    .header-apropos .contact {
        display: none;
    }

    .header-apropos .fleche {
        margin-left: 5px;
        width: 25px;
        height: 35px;
        filter: brightness(0) invert(1);
    }

    .menu-toggle,
    .hamburger-label {
        display: none;
    }

    .header-apropos .contenu {
        display: flex;
        justify-content: space-between;
        align-items: end;
        padding: 70px 20px;
    }

    .header-apropos .contenu h3 img {
        width: 30px;
        height: 30px;
        vertical-align: middle;
        margin: 0;
    }

    .header-apropos .gauche {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    .header-apropos .logo {
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        top: -50px;
        z-index: 2;
        width: 150px;
        height: 150px;
    }

    .header-apropos h1 {
        font-size: 60px;
    }

    .header-apropos h3 {
        font-size: 25px;
        font-weight: 600;
        margin: 0;
        padding-right: 0;
    }
}
/* BLOC-6------------------------------------------------------------------------------------------------------------------*/

.bloc6 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 778px;
    height: 100vh;
}

.bloc6 main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.bloc6 .gauche {
    display: flex;
    flex-direction: column;
}

.bloc6 .droite {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bloc6 .photo {
    width: 450px;
}

.remonter {
    position: fixed;
    bottom: 50%;
    right: 25px;
    z-index: 9999;
}

.remonter a {
    background-color: rgb(44, 100, 243);
    padding: 15px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(44, 100, 243, 0.4);
    transition: all 0.3s ease;
}

.remonter a img {
    width: 20px;
    transform: rotate(270deg);
    transition: transform 0.3s ease;
}

.remonter a:hover {
    transform: scale(1.15);
    background-color: rgb(38, 90, 230);
    box-shadow: 0 8px 25px rgba(44, 100, 243, 0.8);
}

.remonter a:hover img {
    transform: rotate(270deg) translateX(5px);
}

html {
    scroll-behavior: smooth;
}

.remonter:active ~ .contenu {
    animation: remonte 0.6s ease;
}

@keyframes remonte {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px);
        opacity: 0.5;
    }
}

.bloc6 h2 {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    color: rgb(13, 14, 95);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.bloc6 h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15;
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
    color: rgb(13, 14, 95);
}

.bloc6 p {
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 10;
    color: rgb(112, 112, 112);
    font-weight: 400;
    font-family: 'Quicksand', sans-serif;
}

.bloc6 .bleu p {
    color: #2c63f6;
}

.bloc6 .etiam {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.bloc6 .etiam .texte {
    display: flex;
    flex-direction: column;
}

.bloc6 .finibus {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.bloc6 .finibus .texte {
    display: flex;
    flex-direction: column;
}

.bloc6 img {
    width: 60px;
}

.bloc6 .boutton {
    margin-top: 40px;
}

.bloc6 .boutton img {
    margin-left: 10px;
    width: 10px;
    filter: invert(100%);
}

.bloc6 .boutton a {
    font-family: 'Quicksand', sans-serif;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background-color: #2c63f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloc6 .boutton a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(44, 100, 243, 0.5);
}

@media (max-width: 768px) {
    .bloc6 {
        height: 130vh;
        justify-content: flex-start;
        margin-left: 20px;
    }
    .bloc6 main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .bloc6 h2 {
        font-size: 45px;
    }

    .bloc6 h3 {
        font-size: 26px;
    }

    .bloc6 p {
        font-size: 17px;
    }

    .bloc6 .photo {
        width: 500px;
    }

    .bloc6 .boutton a {
        padding: 12px 300px;
    }

    .remonter {
        position: fixed;
        bottom: 50%;
        right: 10px;
        z-index: 9999;
    }
}

/*bloc-services-we-provide-------------------------------------------------------------------------------------*/
.bloc-services-we-provide {
    min-height: 730px;
    height: 90vh;
    background-image: url('Projet blocs/librairies/a propos/bg-facts.png');
    background-size: cover;
    background-color: #2563eb;
}
.bloc-services-we-provide .texte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bloc-services-we-provide h2 {
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    font-size: 45px;
    margin-top: 70px;
    margin-bottom: 0;
    color: rgb(255, 255, 255);
}

.bloc-services-we-provide p {
    font-size: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(255, 255, 255);
}

.services-container {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: 200px;
    margin-right: 200px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.service {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px;
}

.service img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.services-container .contenu {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service h5 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 2px;
    color: #333;
}

.service p {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
}

.section {
    margin-top: 50px;
    margin-bottom: 0;
}

.grilleteam {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.membre {
    background-color: white;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.membre:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.membre-image {
    width: 100%;
    margin-bottom: 20px;
}

.membre-image img {
    width: 100%;
    height: auto;
    display: block;
}

.membre-nom {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.membre p {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #2563eb;
    font-weight: 500;
}

@media (max-width: 768px) {
    .services-container {
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .service {
        width: 400px;
    }

    .services-container .service:nth-child(n + 2) {
        width: 344px;
    }

    .grilleteam {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-left: 20px;
        margin-right: 20px;
    }

    /* Carte membre */
    .membre {
        justify-content: center;
        background-color: white;
        border-radius: 8px;
        padding: 40px 1px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .membre:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .membre-image {
        width: 350px;
        margin-bottom: 20px;
    }

    .membre-image img {
        width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .membre-nom {
        font-family: 'Quicksand', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 4px;
    }

    .membre p {
        font-family: 'Quicksand', sans-serif;
        font-size: 15px;
        color: #2563eb;
        font-weight: 500;
    }
}

/* BLOC-7--------------------------------------------------------------------------------------------*/

.bloc-7 {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    min-height: 799px;
    height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Conteneur principal */
.bloc7-content {
    margin-top: 190px;
    max-width: 1400px;
    width: 100%;
    padding: 0 100px;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Section équipe */
.bloc7-section {
    margin-bottom: 50px;
}

/* Grille des membres */
.bloc7-grilleteam {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carte membre */
.bloc7-membre {
    background-color: white;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bloc7-membre:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Image */
.bloc7-membre-image {
    width: 100%;
    margin-bottom: 20px;
}

.bloc7-membre-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Nom */
.bloc7-membre-nom {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

/* Titre */
.bloc7-member-titre {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #2563eb;
    font-weight: 500;
}

/* Rectangle bleu */
.bloc7-sections-stats {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 16px;
    padding: 3px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
/* Rectangle bleu */
.bloc7-sections-stats img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* Grille des statistiques */
.bloc7-grille-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

/* Élément */
.bloc7-stats-element {
    margin-bottom: 20px;
    color: white;
}

/* Nombre */
.bloc7-nombre-stats {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

/* Label */
.bloc7-text-stats {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .bloc-7 {
        margin-top: 505px;
        margin-bottom: 150px;
        height: 130vh;
    }
    .bloc7-content {
        justify-content: space-around;
        padding: 0px;
    }

    .bloc7-grilleteam {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-left: 20px;
        margin-right: 20px;
    }

    /* Carte membre */
    .bloc7-membre {
        padding: 40px 1px;
    }

    /* Image */
    .bloc7-membre-image {
        width: 350px;
        margin-bottom: 20px;
    }

    .bloc7-membre-image img {
        width: 80%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .bloc7-membre-nom {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .bloc7-member-titre {
        font-size: 14px;
    }

    /* Grille des stat*/
    .bloc7-grille-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
        padding: 20px 10px;
    }

    .bloc7-nombre-stats {
        font-size: 36px;
    }

    .bloc7-sections-stats {
        max-width: 95%;
    }
}

/*----------bloc question--------------------------------------------------------------------------------------------------*/
.bloc-question {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 115px;
}

.bloc-question h2 {
    font-size: 35px;
    font-family: Quicksand;
    color: #000060;
    margin-bottom: 0;
}

.bloc-question summary {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 450px;
    margin-bottom: 15px;
    padding: 0px 20px;
    padding-left: 20px;
    list-style: none;
    background-color: #ffffff;
    padding-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #5f9cff30;
}

.bloc-question h4 {
    font-size: 16px;
    padding-left: 10px;
    color: #0b1460;
}

.bloc-question .boutton-plus {
    width: 20px;
}

.bloc-question .boutton-moins {
    width: 20px;
    display: none;
}

.bloc-question p {
    color: #005cf2;
    line-height: 2;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 50px;
}

/*bouton + visible, bouton – caché */
.bloc-question summary .boutton-moins {
    display: none;
}

/* Quand le details est ouvert */
.bloc-question details[open] summary .boutton-plus {
    display: none;
}

.bloc-question details[open] summary .boutton-moins {
    display: block;
}

.bloc-question details[open] summary {
    border: none;
    box-shadow: 0 10px 10px #00389116;
}

.bloc-question .question {
    transition: all 0.3s ease;
    padding-bottom: 20px;
}

.bloc-question details p {
    font-size: 13px;
    color: rgba(112, 112, 112, 0.7);
    margin: 10px 0 0;
    margin-bottom: 10px;
    margin-left: 20px;
}

.bloc-question .gauche {
    margin-left: 100px;
}

.bloc-question .droite {
    justify-content: center;
    position: relative;
    height: 650px;
    margin-top: 50px;
}

.bloc-question .droite .photo {
    width: 80%;
    display: block;
    position: relative;
    z-index: 2;
}

.bloc-question .droite .element {
    position: absolute;
    inset: 0; /* couvre toute la surface de .droite */
    pointer-events: none;
}

.bloc-question .droite .element .img {
    position: relative;
    height: auto;
}

.haut-gauche {
    top: -30px;
    right: 60px;
    position: relative;
    width: 80px;
    z-index: 4;
}

.haut-droite {
    left: 235px;
    top: -40px;
    width: 40px;
    position: relative;
    z-index: 4;
}

.bas-gauche {
    right: 130px;
    top: 396px;
    width: 100px;
    position: relative;
    z-index: 4;
}

.bas-droite {
    top: 400px;
    left: 170px;
    width: 110px;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .bloc-question .gauche {
        margin-left: 0px;
    }

    .bloc-question {
        display: flex;
        flex-direction: column;
        gap: 50px;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 40px;
    }

    .bloc-question h2 {
        font-size: 50px;
        font-family: Quicksand;
        color: #000060;
        margin-bottom: 0;
    }

    .bloc-question summary {
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        width: 730px;
        margin-bottom: 15px;
        padding: 0px 20px;
        padding-left: 20px;
    }

    .bloc-question h4 {
        font-size: 20px;
        padding-left: 10px;
        color: #0b1460;
    }

    .bloc-question .boutton-plus {
        width: 20px;
    }

    .bloc-question .boutton-moins {
        width: 20px;
        display: none;
    }

    .bloc-question p {
        color: #005cf2;
        line-height: 2;
        font-size: 18px;
        margin-bottom: 50px;
    }

    .bloc-question .question {
        transition: all 0.3s ease;
        padding-bottom: 20px;
    }

    .bloc-question details p {
        color: rgb(112, 112, 112);
        margin: 10px 0 0;
        margin-bottom: 15px;
    }

    .bloc-question .droite {
        position: relative;
        height: 650px;
        margin-top: 50px;
    }

    .bloc-question .droite .photo {
        width: 100%;
        display: block;
        position: relative;
        z-index: 2;
    }

    .bloc-question .droite .element .img {
        position: absolute;
        height: auto;
    }

    /* Image en haut à gauche */
    .haut-gauche {
        top: 2px;
        right: 530px;
        width: 90px;
        z-index: 4;
    }

    /* Image en haut à droite */
    .haut-droite {
        top: 80px;
        left: 525px;
        width: 50px;
        z-index: 4;
    }

    /* Image en bas à gauche */
    .bas-gauche {
        top: 530px;
        right: 500px;
        width: 130px;

        z-index: 4;
    }

    /* Image en bas à droite */
    .bas-droite {
        top: 500px;
        left: 500px;
        width: 140px;
        z-index: 1;
    }
}

/*============================================================================================================================= 
=========================================FAQ================================================================================== 
=============================================================================================================================*/
.faq {
    font-family: 'Quicksand', sans-serif;
    min-height: 100vh;
    padding: 40px 0;
    background-image: url('Projet blocs/librairies/faq/bg-faq.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.faq .bloc-question-faq {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.faq .texte {
    margin-top: 10px;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.faq .texte h2 {
    font-size: 42px;
    color: #0a1a4d;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq .texte span {
    font-size: 16px;
    color: #0066ff;
}

.faq .texte p {
    font-size: 16px;
    color: #666;
}

.faq .question {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq summary {
    width: 730px;
    margin: 0 auto 20px auto;
    background-color: #0052cc0b;
    border: 1px solid #0052cc18;
    padding: 0px 20px;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.faq summary h4 {
    font-size: 18px;
    color: #0a1a4d;
    font-weight: 600;
}

.faq .boutton-plus {
    width: 20px;
}

.faq .boutton-moins {
    width: 20px;
    display: none;
}

.faq details[open] summary {
    border: 1px solid #0052cc05;
    background: #ffffff;
    box-shadow: 0 10px 20px #0052cc0e;
}

.faq summary .boutton-moins {
    display: none;
}

.faq details[open] summary .boutton-plus {
    display: none;
}

.faq details[open] summary .boutton-moins {
    display: block;
}

.faq .icone {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000000;
    transition: transform 0.3s ease;
}

.faq details p {
    max-width: 680px;
    margin: 0 auto 20px auto;
    color: #666666b5;
    margin-bottom: 20px;
    line-height: 2;
    font-weight: 500;
    font-size: 13px;
}

.faq .section-contact {
    background: white;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.faq .contact-contenu {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.faq .image-gauche {
    margin-left: -200px;
    display: flex;
    align-items: center;
}

.faq .image-gauche img {
    width: auto;
    height: 435px;
}

.faq .contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    margin: 0 200px;
    padding: 50px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.081);
}

.faq .droite {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.faq .contact-testing {
    background-color: #005df20e;
    display: flex;
    flex-direction: column;
    padding: 50px;
    border-radius: 10px;
    font-size: 15px;
}

.faq .titre-contact {
    font-family: 'Quicksand', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.faq .titre-contact h3 {
    margin-bottom: 0;
    color: rgb(13, 14, 95);
}

.faq .titre-contact p {
    margin-top: 0;
    color: rgb(182, 182, 182);
    font-weight: 100;
}

.faq .contact-testing input {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 350px;
    padding: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    transition: 0.3s;
}

.faq .contact-testing select {
    border: none;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    padding: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    transition: 0.3s;
}

.faq .contact-testing button {
    all: unset; /* suprime les style de base tout dun cou */
    font-family: 'Quicksand', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2667ff;
    color: #fff;
    width: 330px;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 2px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .faq .contact-contenu {
        flex-direction: column;
    }

    .faq .section-contact {
        background: white;
        padding: 80px 40px;
        position: relative;
        overflow: hidden;
    }

    .faq .contact-contenu {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .faq .image-gauche {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .faq .image-gauche img {
        width: auto;
        height: 550px;
    }

    .faq .contact-container {
        flex-direction: column;
        display: flex;
        gap: 60px;
        margin: 0 20px;
        padding: 50px;
        background-color: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .faq .droite {
        display: flex;
        flex-direction: row;
    }

    .faq .contact-testing {
        padding: 20px 50px;
    }

    .faq .contact-testing input {
        width: 500px;
    }

    .faq .contact-testing select {
        width: 500px;
    }

    .faq .contact-testing button {
        width: 200px;
    }
}
