@charset "UTF-8";html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
*,
*::before,
*::after {
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

html,body{
	margin: 0;
	padding: 0;
    background-color: var(--fondblanc, #fff);
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

header{
    background-image: linear-gradient(to bottom, #00000054, #0000000e), url('../images/alex.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 20px 200px;
    width: 100%;
    gap: 50px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

header .bloc-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    height: auto;
    margin-bottom: 50px;
    padding: 5px 0;
}

header .bloc-nav.static{
    background-color: rgb(11, 40, 93);
    position: fixed;    
    top: 0;
    z-index: 2200;
    width: 100%;
    animation: sticky 0.5s ease-in-out;
    border-radius: 0;
    padding: 10px 50px;
}

@keyframes sticky {
    0% {
        transform: translateY(-7rem);
    }
    100% {
        transform: translateY(0rem);
    }
}

header .bloc-nav img{
    width: 80px;
    height: 80px;
    border-radius: 100%;
}

header .bloc-nav nav{
    padding: 10px 0;
}

header .bloc-nav nav a{
    padding: 15px;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    text-transform: capitalize;
}

header .bloc-nav nav a i{
    color: #fff;
}

header .bloc-nav nav a:hover{
    border-bottom: 2px solid rgb(246, 223, 95);
}

header .bloc-nav nav a.login{
    background-color: rgb(53,174,243);
    border-bottom: 2px solid transparent;
}

header .bloc-nav nav a.login:hover{
    opacity: 0.8;
}

header .bloc-nav nav a.moi{
    background-color: rgba(246, 223, 95, 0.24);
    border-bottom: 2px solid rgb(246, 223, 95);
}

header .bloc-nav .btn-mobile{
    background-color: rgb(246, 223, 95);
    display: none;
    border-radius: 50%;
    cursor: pointer;
}

header .bloc-nav .btn-mobile .la-bars{
    padding: 15px;
    color: rgb(11, 40, 93);
    font-size: 30px;
    cursor: pointer;
}

header .bloc-nav nav .la-times-circle{
    display: none;
    font-size: 25px;
    background-color: rgb(197, 56, 0);
    padding: 20px;
    border-radius: 100px;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 900px) {
    header .bloc-nav{
        width: 100%;
    }

    header .bloc-nav.static{
        z-index: 2200;
        padding: 10px;
    }

    header .bloc-nav.staticc nav{
        z-index: 2400;
    }

    header .bloc-nav nav{
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 2400;
        height: 100vh;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 50px 10px;
        gap: 10px;
        background-color: white;
    }

    header .bloc-nav nav a{
        background-color: #024f6918;
        padding: 20px;
        width: 100%;
        height: auto;
        align-content: center;
        text-align: center;
        color: rgb(11, 40, 93);
        border-radius: 0;
    }

    header .bloc-nav nav a.moi{
        color: rgb(11, 40, 93);
    }

    header .bloc-nav nav a i{
        color: rgb(11, 40, 93);
    }

    header .bloc-nav nav .la-times-circle{
        display: inline;
    }

    header .bloc-nav nav.active{
        display: flex;
    }

    header .bloc-nav .btn-mobile{
        display: inline-block;
    }
}

header .bloc-present{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    width: 80%;
    height: auto;
}

header .bloc-present h1{
    font-size: 40px;
    color: rgb(246, 223, 95);
    width: 50%;
    text-align: center;
}

header .bloc-present p{
    font-size: 26px;
    color: #ffffff;
    width: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 500;
    font-style: italic;
    font-family: serif;
}

header .bloc-present .navigat > a{
    padding: 20px;
    color: white;
    border: none;
    font-weight: 700;
    background-color: transparent;
}

header .bloc-present .navigat > a:hover{
    background-color: transparent;
    opacity: 0.8;
}

header .bloc-present .navigat i{
    color: white !important;
}

@media (max-width: 900px) {
    header .bloc-present{
        width: 100%;
    }

    header .bloc-present h1{
        font-size: 30px;
        width: 100%;
    }

    header .bloc-present p{
        font-size: 20px;
        width: 100%;
    }
}

header .bloc-present a{
    padding: 20px 35px;
    color: white;
    font-weight: 700;
    background-color: rgb(53,174,243);
    border-radius: 50px;
    font-size: 18px;
}

header .bloc-present a:hover{
    background-color: rgba(53, 173, 243, 0.781);
}

header .bloc-present a i{
    color: white;
}

.bloc-objet{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 100px 20px;
    background-image: linear-gradient(to bottom,#024f6985), url('../images/f5.jpg');
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.bloc-objet h1{
    color: white;
    font-size: 40px;
    margin-bottom: 50px;
}

.bloc-objet h1 > span{
    color: #F2B44D;
}

.content-objet{
    width: 80%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
}

.item-objet{
    width: 500px;
    height: auto;
    padding: 40px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 30px #024f6957;
}

@media screen and (max-width: 900px){
    .bloc-objet h1{
        font-size: 30px;
        text-align: center;
    }

    .content-objet{
        width: 100%;
        gap: 20px;
    }
    
    .item-objet{
        width: 350px;
        padding: 20px;
    }
}

@media screen and (max-width: 700px){
    .item-objet{
        width: 95%;
    }
}

.item-objet > i{
    color: rgb(11, 40, 93);
    padding: 20px;
    background-color: rgb(246, 223, 95);
    border-radius: 0 100% 100% 0;
    font-size: 50px;
}

.item-objet h3{
    color: rgb(11, 40, 93);
    font-size: 30px;
    margin: 25px 0;
}

.item-objet p{
    color: rgb(11, 40, 93);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 25px;
}

.item-objet a{
    padding: 10px 20px;
    background-color: rgb(246, 223, 95);
    color: rgb(11, 40, 93);
    border-radius: 0 50px 50px 0;
    font-weight: 700;
}

.item-objet a:hover{
    opacity: 0.8;
}



.bloc-partenaire{
    background-color: #024f6911;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 100px 0;
}

.bloc-partenaire h1{
    color: rgb(11, 40, 93);
    font-size: 40px;
    margin-bottom: 20px;
    padding: 15px;
    border-left: 5px solid rgb(53,174,243);
    width: 100%;
    text-align: left;
}

.bloc-partenaire p{
    color: rgb(11, 40, 93);
    text-align: center;
    line-height: 25px;
}

.content-partenaire{
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content-partenaire-items{
    margin-top: 50px;
    width: 80%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.content-partenaire-items a img{
    width: 150px;
    height: 150px;
    border-radius: 10px;
    border: 1px solid #024f6944;
}

.content-partenaire > a{
    padding: 20px;
    background-color: rgb(246, 223, 95);   
    font-weight: 700;
    color: rgb(11, 40, 93);
    transition: all .5s;
}

.content-partenaire > a:hover{
    opacity: 0.8;
}

@media screen and (max-width: 900px){    
    .bloc-partenaire{
        padding: 100px 20px;
    }

    .bloc-partenaire h1{
        font-size: 30px;
    }

        .bloc-partenaire h1 span{
        font-size: 30px;
    }
    
    .content-partenaire{
        width: 100%;
    }

    .content-partenaire-items{
        width: 100%;
        gap: 10px;
        padding: 10px;
    }
}



.separator{
    height: 100px;
    width: 100%;
    background-color: #024f6911;
}

.bloc-objets-present{
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: start;
    background-color: #024f6911;
}

.bloc-objets-present .bloc-objet-present{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 80%;
    height: auto;
    border-bottom: 2px solid transparent;
    transform: translateY(-70px);
}

.bloc-objets-present .bloc-objet-present .objet-present{
    padding: 40px 20px;
    background-color: rgb(11, 40, 93);
    border-bottom: 10px solid rgb(246, 223, 95);
    width: 350px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    transition: all .3s;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.411);
}

.bloc-objets-present .bloc-objet-present .objet-present:hover{
    transform: translateY(-20px);
}

.bloc-objets-present .bloc-objet-present .objet-present i{
    color: white;
    font-size: 30px;
    padding: 15px;
    background-color: #ffffff33;
}

.bloc-objets-present .bloc-objet-present .objet-present h2{
    color: white;
    font-weight: 600;
    font-size: 25px;
}

.bloc-objets-present .bloc-objet-present .objet-present p{
    color: rgba(255, 255, 255, 0.705);
    text-align: center;
    line-height: 25px;
}

/* Mode carousel uniquement en dessous de 1390px */
@media (max-width: 1390px) {
    .bloc-objets-present .bloc-objet-present {
        display: flex;
        flex-direction: column; /* important pour afficher UN SEUL */
        overflow: hidden;
        width: 80% !important;
        gap: 0 !important;
    }

    /* cacher tous les slides */
    .bloc-objets-present .bloc-objet-present .objet-present {
        display: none !important;
        width: 100% !important;
    }

    /* slide visible */
    .bloc-objets-present .bloc-objet-present .objet-present.active {
        display: flex !important;
    }
}

@media (max-width: 900px) {
    .bloc-objets-present .bloc-objet-present {
        width: 100% !important;
    }
}



.bloc-histoire{
    padding: 0 20px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #024f6911;
}

.bloc-histoire .histoire{
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bloc-histoire .histoire .histoire-items{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.bloc-histoire .histoire .histoire-items .histoire-item{
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 20px;
    width: 45%;
}

.bloc-histoire .histoire .histoire-items .histoire-item h1{
    font-size: 25px;
    padding: 10px;
    border-left: 5px solid rgb(53,174,243);
}

.bloc-histoire .histoire .histoire-items .histoire-item p{
    line-height: 25px;
}

.bloc-histoire .histoire .histoire-items .histoire-item a{
    padding: 15px;
    border-left: 5px solid rgb(246, 223, 95);
    color: #fff;
    background-color: rgb(11, 40, 93);
}

.bloc-histoire .histoire .histoire-items .histoire-item a:hover{
    opacity: 0.8;
}

.bloc-histoire .histoire .histoire-items .histoire-item a i{
    color: #fff;
}

.bloc-histoire .histoire .histoire-items img{
    width: 45%;
    height: 500px;
    object-fit: cover;
}

.bloc-jobs{
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #024f6911;
}

.bloc-jobs .jobs{
    width: 80%;
}

.bloc-jobs .jobs h1{
    font-size: 25px;
    padding: 10px;
    border-left: 5px solid rgb(246, 223, 95);
    color: rgb(11, 40, 93);
    margin-bottom: 10px;
}

.bloc-jobs .jobs ul{
    margin-left: 20px;
}

.bloc-jobs .jobs ul li{
    margin-bottom: 20px;
    line-height: 25px;
}

.bloc-jobs .jobs ul li strong{
    margin-bottom: 7px;
    display: inline-block;
    color: rgb(11, 40, 93);
    font-size: 20px;
}

@media (max-width: 900px) {
    .bloc-jobs{
        padding: 0 10px;
    }

    .bloc-jobs .jobs{
        width: 100%;
    }

    .bloc-histoire .histoire {
        width: 100%;
    }

    .bloc-histoire .histoire .histoire-items {
        flex-direction: column;
        gap: 30px;
    }

    /* Image en premier */
    .bloc-histoire .histoire .histoire-items img {
        order: -1;
        width: 100%;
        height: 400px;
    }

    .bloc-histoire .histoire .histoire-items .histoire-item {
        width: 100%;
    }

    .bloc-histoire {
        padding: 0 10px 60px;
    }
}




.bloc-soumettre{
    background-image: linear-gradient(to bottom, #0000009c, rgba(11, 40, 93, 0.84)), url('../images/f5.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 10px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bloc-soumettre .soumettre-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 80%;
}

.bloc-soumettre .soumettre-item h1{
    font-size: 40px;
    color: #fff;
    text-align: center;
}

.bloc-soumettre .soumettre-item h1 span{
    color: rgb(246, 223, 95);
    font-weight: 800;
}

.bloc-soumettre .soumettre-item p{
    color: #fff;
    width: 50%;
    text-align: center;
    line-height: 25px;
}

@media (max-width: 900px) {
    .bloc-soumettre .soumettre-item h1{
        font-size: 30px;
    }
    .bloc-soumettre .soumettre-item{
        width: 100%;
    }

    .bloc-soumettre .soumettre-item p{
        width: 100%;
    }
}

.bloc-soumettre .soumettre-item a{
    border-left: 5px solid rgb(246, 223, 95);
    color: rgb(11, 40, 93);
    background-color: rgb(53,174,243);
    padding: 20px;
    font-weight: 600;
}

.bloc-soumettre .soumettre-item a:hover{
    opacity: 0.8;
}



.bloc-projets{
    padding: 100px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.bloc-projets .projet-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 80%;
}

.bloc-projets .projet-title h1{
    font-size: 40px;
    color: rgb(11, 40, 93);
    padding: 10px;
    border-left: 5px solid rgb(53,174,243);
}

.bloc-projets .projet-title h1 span{
    color: rgb(53,174,243);
}

.bloc-projets .projet-title a{
    background-color: rgb(246,223,95);
    padding: 15px 20px;
    color: black;
}

.bloc-projets .projet-title a:hover{
    background-color: rgb(196, 173, 47);
}

.bloc-projets .projet{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    overflow-x: hidden; /* cacher le scroll */
    scroll-behavior: smooth;
    flex-wrap: nowrap; 
    width: 80%;
}

.bloc-projets .projet .projet-item{
    flex: 0 0 auto; /* important pour garder la largeur fixe */
    width: 400px;
    background-color: rgb(11, 40, 93);
    transition: all .3s;
}


.bloc-projets .projet .projet-item:hover{
    background-color: rgb(246,223,95);
    transform: translateY(-20px);
}

.bloc-projets .projet .projet-item img{
    width: 100%;
    height: 300px;
}

.bloc-projets .projet .projet-item h5{
    font-weight: 700;
    font-size: 20px;
    margin: 10px 0 0 10px;
    color: #fff;
}

.bloc-projets .projet .projet-item:hover h5{
    color: rgb(11, 40, 93);
}

.bloc-projets .projet .projet-item small{
    color: white;
    display: inline-block;
    margin: 10px;
}

.bloc-projets .projet .projet-item:hover small{
    color: rgb(11, 40, 93);
}

@media screen and (max-width: 900px){
    .bloc-projets .projet-title{
        width: 100%;
    }

    .bloc-projets .projet{
        width: 100%;
    }
}



.bloc-events{
    background-image: linear-gradient(to bottom, #0000009c, rgba(11, 40, 93, 0.84)), url('../images/image4.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.bloc-events h1{
    font-size: 40px;
    color: rgb(246,223,95);
}

.bloc-events h1 span{
    color: rgb(53,174,243);
}

.bloc-events .events{
    border-top: 1px solid rgba(246, 223, 95, 0.541);
    border-bottom: 1px solid rgba(246, 223, 95, 0.541);
    display: flex;
    gap: 20px;
    overflow-x: hidden; /* cacher le scroll */
    flex-wrap: nowrap;   /* empêcher la 2e ligne */
    scroll-behavior: smooth;
    width: 80%;
    padding: 20px 0;
}

.bloc-events .events .item{
    flex: 0 0 auto; /* largeur fixe */
    width: 400px;
    padding: 10px;
}

.bloc-events .events .item h2{
    color: rgb(246,223,95);
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 30px;
}

.bloc-events .events .item h3{
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 25px;
}

.bloc-events .events .item p{
    color: #ffffffc4;
    line-height: 24px;
}

.bloc-events .events .item a{
    color: black;
    padding: 10px 15px;
    background-color: rgb(53,174,243);
    display: inline-block;
    margin: 10px 0;
}
@media (max-width: 900px) {
    .bloc-events h1{
        font-size: 30px;
        text-align: left;
        width: 100%;
    }

    .bloc-events .events{
        width: 100%;
    }
}


.bloc-articles{
    padding: 100px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.bloc-articles .articles-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 80%;
}

.bloc-articles .articles-title h1{
    font-size: 40px;
    color: rgb(11, 40, 93);
    padding: 10px;
    border-left: 5px solid rgb(53,174,243);
}

.bloc-articles .articles-title h1 span{
    color: rgb(53,174,243);
}

.bloc-articles .articles-title a{
    background-color: rgb(246,223,95);
    padding: 15px 20px;
    color: black;
}

.bloc-articles .articles-title a:hover{
    background-color: rgb(196, 173, 47);
}

.bloc-article {
    position: relative;
    width: 80%;
    margin: auto;
}

.bloc-articles .articles {
    display: flex;
    gap: 30px;
    overflow-x: hidden; /* cacher le scroll */
    flex-wrap: nowrap;
    scroll-behavior: smooth;
}

.bloc-articles .articles .article-item {
    flex: 0 0 auto; /* largeur fixe */
    width: 400px;
    transition: all .3s;
}

.bloc-articles .articles .article-item:hover {
    transform: translateY(-20px);
}

.bloc-articles .articles .article-item img {
    width: inherit;
    height: 350px;
    object-fit: cover;
}

.bloc-articles .articles .article-item small {
    display: inline-block;
    padding: 10px;
    transform: translateY(-35px);
    background-color: rgb(246,223,95);
    width: 200px;
    color: rgb(11, 40, 93);
    z-index: 100;
}

.bloc-articles .articles .article-item h3 {
    font-size: 25px;
    color: rgb(11, 40, 93);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.164);
    background-color: #fff;
    padding: 20px 10px;
    transform: translateY(-20px);
}

/* Boutons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgb(11, 40, 93);
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

#prevArticle { left: -20px; }
#nextArticle { right: -20px; }

@media (max-width: 900px) {
    .bloc-articles .articles-title{
        width: 100%;
    }

    .bloc-articles .articles-title h1{
        font-size: 30px;
    }

    .bloc-article {
        width: 100%;
    }

    #prevArticle { left: -7px; }
    #nextArticle { right: -7px; }
}


/* Caroussel personnel */
.testimonial-section {
    text-align: center;
    padding: 100px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.testimonial-section .sections-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 80%;
}

.testimonial-section .sections-title h1{
    font-size: 40px;
    color: rgb(11, 40, 93);
    padding: 10px;
    border-left: 5px solid rgb(53,174,243);
}

.testimonial-section .sections-title h1 span{
    color: rgb(53,174,243);
}

.testimonial-section .sections-title a{
    background-color: rgb(246,223,95);
    padding: 15px 20px;
    color: black;
}

.testimonial-section .sections-title a:hover{
    background-color: rgb(196, 173, 47);
}

.carousel {
    background: rgb(11, 40, 93);
    color: #fff;
    width: 80%;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
    border-radius: 10px;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(246,223,95);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    width: 50px;
}

.nav:hover {
    background: rgb(246,223,95);
}

.left { 
    left: -30px; 
}
.right { 
    right: -30px; 
}

.slide-container {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 30px;
    transition: opacity 0.5s ease;
}

.slide.active {
    display: flex;
}

.avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    margin-top: 20px;
        margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.job {
    font-size: 14px;
    color: #ccc;
}  





.bloc-stats{
    padding: 100px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: auto;
    background-color: #063456;
    background: linear-gradient(135deg, #063456, #0055e7, #063456);
}

.bloc-stats h1{
    text-align: center;
    font-size: 40px;
    color: rgb(246,223,95);
    font-family: sans;
}

.bloc-stats h1 span{
    color: rgb(246,223,95);
}

.bloc-stats p{
    text-align: center;
    color: rgba(255, 255, 255, 0.801);
    width: 80%;
    line-height: 25px;
}

.bloc-stats .stats-content{
    display: flex;
    gap: 20px;
    overflow-x: hidden; /* cacher le scroll */
    flex-wrap: nowrap;   /* empêcher la 2e ligne */
    width: 80%;
    scroll-behavior: smooth;
}

.bloc-stats .stats-content .item-stat{
    flex: 0 0 auto; /* important pour garder la largeur fixe */
    width: 250px;
    height: 250px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .3s;
}

.bloc-stats .stats-content .item-stat:hover{
    background-color: rgb(11, 40, 93);
    transform: translateY(-20px);
}

.bloc-stats .stats-content .item-stat i{
    font-size: 50px;
    color: rgb(11, 40, 93);
}

.bloc-stats .stats-content .item-stat:hover i{
    color: white;
}

.bloc-stats .stats-content .item-stat h1{
    font-size: 90px;
    text-align: center;
    color: rgb(246,223,95);
}

.bloc-stats .stats-content .item-stat h4{
    font-size: 16px;
    color: rgba(11, 40, 93, 0.726);
    text-align: center;
}

.bloc-stats .stats-content .item-stat:hover h4{
    color: rgba(255, 255, 255, 0.664);
}

@media (min-width: 1420px) {
    .bloc-stats .stats-content{
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .left { 
        left: -10px; 
    }
    .right { 
        right: -10px; 
    }

    .testimonial-section .sections-title{
        width: 100%;
    }

    .testimonial-section .sections-title h1{
        font-size: 30px;
    }

    .carousel {
        width: 100%;
    }

    .bloc-stats h1{
        font-size: 30px;
        text-align: left;
    }

    .bloc-stats .stats-content{
        width: 100%;
    }

    .bloc-projets .projet-title h1{
        font-size: 30px;
    }

    .bloc-stats p{
        width: 100%;
        text-align: left;
    }

}



/* Carrousel */
/* Bloc Temoignage */
.bloc-temoignages{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 100px 10px 10px;
    background-color: #024f6911;
    background-image: linear-gradient(to bottom, #024f6911), url('../images/fond1.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.bloc-temoignages .temoi-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 80%;
}

.bloc-temoignages .temoi-title h1{
    font-size: 40px;
    color: rgb(11, 40, 93);
    padding: 10px;
    border-left: 5px solid rgb(53,174,243);
}

.bloc-temoignages .temoi-title h1 span{
    color: rgb(53,174,243);
}

.bloc-temoignages .temoi-title a{
    background-color: rgb(246,223,95);
    padding: 15px 20px;
    color: black;
}

.bloc-temoignages .temoi-title a:hover{
    background-color: rgb(196, 173, 47);
}

.bloc-temoignages h3 {
    color: rgb(246,223,95);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

.bloc-temoignages h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #024F69;
    text-align: center;
}

.temoignage-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content-temoignage {
    display: none;
    transition: opacity 0.5s ease;
    width: 80%;
    height: auto;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.content-temoignage.active {
    display: flex;
}

.bloc-temoignages .content-temoignage img{
    width: 300px;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

.bloc-temoignages .content-temoignage .temoignage-item{
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    width: 60%;
    height: auto;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 200;
    transform: translate(-50px, 0);
    padding: 20px;
}

.bloc-temoignages .content-temoignage .temoignage-item p{
    font-size: 20px;
    font-weight: 100;
    margin-bottom: 10px;
    line-height: 30px;
    color: #024F69;
    letter-spacing: 1px;
}

.bloc-temoignages .content-temoignage .temoignage-item .temoignage-item-name{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.bloc-temoignages .content-temoignage .temoignage-item .temoignage-item-name p{
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    color: black;
}

.bloc-temoignages .content-temoignage .temoignage-item .temoignage-item-name p span{
    opacity: 0.7;
}

.bloc-temoignages .content-temoignage .temoignage-item .temoignage-item-name i{
    font-size: 40px;
    opacity: 0.8;
    color: rgb(11, 40, 93);
    display: inline-block;
    transform: translateY(-30px);
}

/* Boutons */
.bloc-temoignages .temoignage-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bloc-temoignages .temoignage-controls button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background-color: rgb(11, 40, 93);
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.bloc-temoignages .temoignage-controls button i{
    color: white;
}

.bloc-temoignages .temoignage-controls button:hover {
    background-color: rgb(246,223,95);
}

@media screen and (max-width: 900px){
    .bloc-temoignages .temoi-title{
        width: 100%;
        margin-bottom: 10px;
    }

    .testimonial-section h1{
        font-size: 30px;
    }

    .bloc-temoignages h1 {
        font-size: 30px;
        text-align: left;
    }

    .bloc-temoignages .content-temoignage{
        width: 100%;
        flex-wrap: wrap;
    }

    .bloc-temoignages .content-temoignage img{
        width: 100%;
        height: auto;
        max-height: 600px;
    }

    .bloc-temoignages .content-temoignage .temoignage-item{
        width: 90%;
        transform: translate(0px, -50px);
    }
}


.footer{
    background-color: rgb(11, 40, 93);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.footer .bloc-logo{
    width: 160px;
    height: 160px;
}

.footer .bloc-logo img{
    width: 160px;
    height: 160px;
    border-radius: 10px;
}

.footer > h3{
    text-align: center;
    color: white;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer > p{
    color: white;
    width: 50%;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
}

.reseaux{
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 50%;
}

.reseaux a > i{
    color: white;
    font-size: 35px !important;
}

.courte-lien{
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.courte-lien a{
    color: rgba(255, 255, 255, 0.733);
    text-transform: capitalize;
}

.newsletters{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0 0 10px;
    gap: 10px;
}

.newsletters h1{
    font-size: 20px;
    color: rgb(246,223,95);
    font-family: serif;
}

.newsletters form{
    padding: 1px;
}

.newsletters form input{
    background-color: rgba(255, 255, 255, 0.199);
    padding: 15px;
    border: none;
    font-size: 16px;
    color: white;
    outline: none;
}

.newsletters form .btn-newsletter{
    background-color: rgb(246,223,95);
    color: rgb(11, 40, 93);
    cursor: pointer;
        padding: 15px;
    border: none;
    font-size: 16px;
}

.newsletters form input[type="button"]:hover{
    opacity: 0.8;
}

.newsletters form input::placeholder{
    color: white;
}

.copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 80%;
    border-top: 1px solid rgba(255, 255, 255, 0.212);
    padding: 20px 0;
    margin-top: 50px;
}

@media screen and (max-width: 1000px){
    .copyright{
        justify-content: space-around;
        width: 100%;
    }

    .footer .bloc-logo{
        width: 100px;
        height: 100px;
    }

    .footer .bloc-logo img{
        width: 100px;
        height: 100px;
    }

    .footer > p{
        width: 100%;
    }

    .reseaux{
        width: 100%;
    }

    .newsletters{
        width: 100%;
        justify-content: center;
        background-color: transparent;
        padding: 0;
        gap: 10px;
    }

    .newsletters h1{
        font-size: 18px;
        text-align: center;
    }
}

@media screen and (max-width: 450px){
    .newsletters form input{
        width: 100%;
    }

    .newsletters form .btn-newsletter{
        width: 100%;
    }
}

.copyright-left span{
    color: rgba(255, 255, 255, 0.603);
    font-size: 14px;
}

@media screen and (max-width: 500px){
    .copyright-left span{
        text-align: center;
    }
}

.copyright .copyright-right a{
    color: rgba(255, 255, 255, 0.603);
    font-size: 14px;
    transition: all .5s;
}

.copyright .copyright-right a::after {
    content: "/";
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.603);
}

.copyright .copyright-right a:last-child::after {
    content: "";
}

.copyright .copyright-right a:hover{
    color: white;
}


/* Btn retour */
.scroll-btn {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 2100;
    width: 3rem;
    height: 3rem;
    background: rgb(246,223,95);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10rem);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.404);
}

.scroll-btn.active {
    opacity: 1;
    transition: all 0.5s ease-in-out;
    transform: translateY(0);
}

.scroll-btn i {
    font-size: 18px;
    color: rgb(11, 40, 93);
}

/* ====== LOADER ====== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #063456;
    background: linear-gradient(135deg, #063456, #0055e7, #063456);
    color: rgb(246,223,95);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

#loader h1 {
    font-size: 3em;
    display: flex;
    gap: 5px;
}

#loader h1 span {
    opacity: 0;
    transform: translateY(20px);
    animation: appear 0.5s forwards;
}

@keyframes appear {
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* Animation du texte lettre par lettre */
#loader h1 span:nth-child(1) { animation-delay: 0.1s; }
#loader h1 span:nth-child(2) { animation-delay: 0.2s; }
#loader h1 span:nth-child(3) { animation-delay: 0.3s; }
#loader h1 span:nth-child(4) { animation-delay: 0.4s; }
#loader h1 span:nth-child(5) { animation-delay: 0.5s; }
#loader h1 span:nth-child(6) { animation-delay: 0.6s; }
#loader h1 span:nth-child(7) { animation-delay: 0.7s; }
#loader h1 span:nth-child(8) { animation-delay: 0.8s; }
#loader h1 span:nth-child(9) { animation-delay: 0.9s; }

/* Disparition du loader */
#loader.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}


/* CODES BLOC ARTICLES */
.blog-article{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: #024f6911;
    padding: 20px;
    width: 100%;
}

/* Grille principale */
.blog-article .content-article {
    display: grid;
    grid-template-columns: 2fr 1fr; /* la colonne gauche est deux fois plus grande */
    gap: 30px;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgb(11, 40, 93);
    background-color: #ffffff;
}

@media screen and (max-width: 700px){
    .blog-article{
        padding: 10px;
    }
}

/* Colonne gauche */
.blog-article .content-article .content-article-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-article .content-article .items-content-article{
    width: 100%;
    height: auto;
    max-height: 120vh;
    overflow-y: auto;
    scrollbar-width: thin; /* pour Firefox */
    scrollbar-color: rgb(11, 40, 93) #024f6911; /* couleur du scroll */
}

/* ✅ Personnalisation de la barre de défilement (Chrome, Edge, etc.) */
.blog-article .content-article .items-content-article::-webkit-scrollbar {
    width: 8px;
}

.blog-article .content-article .items-content-article::-webkit-scrollbar-track {
    background: #024f6911;
    border-radius: 10px;
}

.blog-article .content-article .items-content-article::-webkit-scrollbar-thumb {
    background: rgb(11, 40, 93);
    border-radius: 10px;
}

.blog-article .content-article .items-content-article::-webkit-scrollbar-thumb:hover {
    background: rgb(11, 40, 93);
}

/* Article individuel */
.blog-article .content-article .content-article-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.233);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgb(11, 40, 93);
}

.blog-article .content-article .content-article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.267);
}

/* Image */
.blog-article .content-article .content-article-item img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* Contenu texte */
.blog-article .content-article .content-article-item h2 {
    font-size: 1.6rem;
    margin: 25px 15px;
    color: rgb(11, 40, 93);
    border-left: 5px solid rgb(53,174,243);
    padding: 5px 10px;
}

.blog-article .content-article .content-article-item .date {
    display: block;
    margin: 0 15px;
    color: #888;
    font-size: 0.9rem;
}

.blog-article .content-article .content-article-item p {
    margin: 15px;
    color: #555;
    line-height: 1.6;
}

/* Bouton */
.btn-lire-plus {
    display: inline-block;
    margin: 15px;
    padding: 10px 20px;
    background: rgb(11, 40, 93);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-lire-plus:hover {
    background: rgba(11, 40, 93, 0.747);
}

/* Bloc pagination */
.blog-article .content-article .content-article-left .pagination-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.blog-article .content-article .content-article-left .pagination-circle .page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgb(11, 40, 93);
    color: rgb(11, 40, 93);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.blog-article .content-article .content-article-left .pagination-circle .page:hover {
    background-color: rgb(11, 40, 93); 
    color: white;
}

.blog-article .content-article .content-article-left .pagination-circle .page.active {
    background-color: rgb(11, 40, 93);
    color: white;
}

.blog-article .content-article .content-article-left .pagination-circle .page i {
    color: rgb(11, 40, 93);
}

.blog-article .content-article .content-article-left .pagination-circle .page:hover i {
    color: white;
}

/* Colonne droite (sidebar) */
.blog-article .content-article .content-article-right {
    background: #f9f9f9;
    padding: 20px 0;
    border: 1px solid rgb(11, 40, 93);
    background-color: rgb(246, 223, 95);
}

.blog-article .content-article .content-article-right .bloc-recherche-article{
    padding: 5px;
    width: 100%;
    margin-bottom: 20px;
}

.blog-article .content-article .content-article-right .bloc-recherche-article form{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.blog-article .content-article .content-article-right .bloc-recherche-article form input{
    padding: 15px;
    border-radius: 50px;
    border: 1px solid rgba(11, 40, 93, 0.87);
    background-color: white;
    width: 100%;
    outline: none;
    font-size: 16px;
}

.blog-article .content-article .content-article-right .bloc-recherche-article form button{
    padding: 15px;
    border-radius: 50px;
    background-color: rgb(11, 40, 93);
    width: 70px;
    cursor: pointer;
    border: none;
    margin: 0;
}

.blog-article .content-article .content-article-right .bloc-recherche-article form button:hover{
    opacity: 0.8;
}

.blog-article .content-article .content-article-right .bloc-recherche-article form button i{
    color: white;
}

.blog-article .content-article .content-article-right .bloc-articles-category{
    margin-bottom: 30px;
}

.blog-article .content-article .content-article-right .bloc-articles-category > h3{
    padding: 15px 10px;
    background-color: rgb(11, 40, 93);
    color: white !important;
    text-align: center;
}

.blog-article .content-article .content-article-right .bloc-articles-category > ul{
    padding: 20px !important;
}

.blog-article .content-article .content-article-right .bloc-articles-category > ul li{
    padding: 10px 0;
    border-bottom: 1px solid rgba(11, 40, 93, 0.822);
}

.blog-article .content-article .content-article-right .bloc-articles-category > ul li:last-child {
    border-bottom: none;
}

.blog-article .content-article .content-article-right .bloc-articles-category > ul li a, a i{
    transition: all 0.3s ease;
    color: rgb(11, 40, 93);
    font-size: 16px !important;
}

.blog-article .content-article .content-article-right .bloc-articles-category > ul li a:hover{
    opacity: 0.8;
}

.blog-article .content-article .content-article-right .bloc-articles-recents > h3{
    padding: 15px 10px;
    background-color: rgb(11, 40, 93);
    color: white !important;
    text-align: center;
}

.blog-article .content-article .content-article-right .bloc-articles-recents-items{
    padding: 10px 20px;
}

.blog-article .content-article .content-article-right .bloc-articles-recents-item{
    width: 100%;
    border-bottom: 1px solid rgba(11, 40, 93, 0.815);
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 10px;
    padding: 10px 0;
}

.blog-article .content-article .content-article-right .bloc-articles-recents-item:last-child {
    border-bottom: none;
}

.blog-article .content-article .content-article-right .bloc-articles-recents-item > img{
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

.blog-article .content-article .content-article-right .bloc-articles-recents-item > div{
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.blog-article .content-article .content-article-right .bloc-articles-recents-item > div h4{
    color: rgb(11, 40, 93);
    font-size: 18px;
}

.blog-article .content-article .content-article-right .bloc-articles-recents-item > div span{
    font-size: 14px;
    color: rgb(11, 40, 93);
    font-style: italic;
}

.blog-article .content-article .content-article-right .bloc-articles-recents-item > div span i{
    color: rgb(11, 40, 93);
    font-size: 14px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-article .content-article {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    }
}



/* CODES BLOC CONTACTS */
.bloc-page-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: #024f6911;
    background-image: linear-gradient(to bottom, #024f6911), url('../images/fond1.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 20px;
    width: 100%;
}

.page-contact-content{
    display: grid;
    grid-template-columns: 2fr 1fr; /* ✅ la colonne gauche est deux fois plus grande */
    gap: 30px;
    padding: 10px;
    width: 80%;
    margin: 0 auto;
    border: 1px solid rgb(11, 40, 93);
    background-color: #ffffffa6;
}

.page-contact-content-left{
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 20px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 75, 136, 0.267);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
}

.page-contact-content-left:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 75, 136, 0.123);
}

.page-contact-content-left h2{
    color: rgb(11, 40, 93);
    font-size: 25px;
}

.page-contact-content-left .bloc-detail-contact-page{
    margin: 10px 0;
    background-color: #024f6911;
    box-shadow: 0 4px 10px rgba(0, 75, 136, 0.267);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    padding: 10px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.page-contact-content-left .bloc-detail-contact-page > i{
    padding: 20px;
    font-size: 25px;
    color: rgb(11, 40, 93);
    background-color: rgb(246, 223, 95);
    border-radius: 10px;
}

.page-contact-content-left .bloc-detail-contact-page:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 75, 136, 0.171);
    border: 1px solid rgba(11, 40, 93, 0.815);
}

.page-contact-content-left .bloc-detail-contact-page p{
    color: rgb(11, 40, 93);
    font-size: 15px;
}

.page-contact-content-left .bloc-detail-contact-page h3{
    color: rgb(11, 40, 93);
    font-size: 22px;
    margin-top: 5px;
}

.page-contact-content-right{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 20px;
    background-color: rgb(246, 223, 95);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 75, 136, 0.267);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    border: 1px solid rgb(11, 40, 93);
}

.page-contact-content-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 75, 136, 0.123);
}

.page-contact-content-right h3{
    color: rgb(11, 40, 93);
    font-size: 25px;
}

.page-contact-content-right .indique-traitement{
    text-align: center;
    color: rgb(11, 40, 93);
    font-size: 15px;
    display: inline-block;
    width: 100%;
}

.alert-success{
    color: white;
    font-size: 15px;
    display: inline-block;
    width: 100%;
    padding: 7px 5px;
    background-color: rgb(0, 196, 16);
}

.page-contact-content-right form{
    width: 100%;
}

.page-contact-content-right form div{
    margin-bottom: 20px;
}

.page-contact-content-right form div label{
    padding-bottom: 3px;
    display: inline-block;
    color: rgb(11, 40, 93);
}

.page-contact-content-right form div input,textarea{
    padding: 15px;
    border: none;
    border-bottom: 1px solid rgba(11, 40, 93, 0.808);
    background-color: white;
    width: 100%;
    outline: none;
}

/* Placeholder blanc légèrement transparent */
.page-contact-content-right form input::placeholder,
.page-contact-content-right form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.page-contact-content-right form input:focus,
.page-contact-content-right form textarea:focus{
    border-bottom: 1px solid rgb(246, 223, 95);
}

.page-contact-content-right form button{
    padding: 13px;
    background-color: rgb(11, 40, 93);
    cursor: pointer;
    border: none;
    color: white !important;
    width: 100%;
    font-size: 18px;
}

.page-contact-content-right form button:hover{
    opacity: 0.8;
}

@media screen and (max-width: 700px){
    .bloc-page-contact{
        padding: 10px;
    }

    .page-contact-content{
        grid-template-columns: 1fr; /* ✅ la colonne gauche est deux fois plus grande */
        gap: 20px;
        padding: 10px;
        width: 100%;
    }
}

.bloc-faq{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    margin-top: 30px;
    width: 80%;
    border: 1px solid rgba(11, 40, 93, 0.795);
    background-color: #ffffffa6;
}

.bloc-faq h2{
    color: rgb(11, 40, 93);
    font-size: 30px;
    text-align: center;
}

.bloc-faq p{
    color: rgb(11, 40, 93);
    text-align: center;
}

.bloc-faq-content{
    background-color: #ffffffa6;
    padding: 0;
}

@media screen and (max-width: 1200px){
    .bloc-faq{
        width: 100%;
    }
}

.bloc-faq-content-item{
    background-color: #024f6911;
    box-shadow: 0 4px 10px rgba(0, 75, 136, 0.267);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.bloc-faq-content-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 75, 136, 0.171);
    border: 1px solid rgba(11, 40, 93, 0.842);
}

.faq-content-item-head{
    background-color: rgb(246, 223, 95);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

.faq-content-item-head h4{
    color: rgb(11, 40, 93);
    margin: 0;
}

.faq-content-item-head i{
    color: rgb(11, 40, 93);
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Corps masqué par défaut */
.faq-content-item-body{
    padding: 0 10px;
    line-height: 25px;
    color: rgb(11, 40, 93);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Quand ouvert */
.bloc-faq-content-item.active .faq-content-item-body{
    max-height: 500px;
    padding: 10px;
}

/* Rotation de l’icône */
.bloc-faq-content-item.active .faq-content-item-head i{
    transform: rotate(180deg);
}


/* Bloc média */
.bloc-medias{
    width: 80%;
    margin: auto;
    padding: 100px 10px;
}

.medias-title{
    font-size: 40px;
    font-weight: 700;
    color: rgb(11, 40, 93);
    margin-bottom: 30px;
    text-align: left;
    padding: 10px 15px;
    border-left: 5px solid rgb(53,174,243);
}

.medias-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Chaque élément média */
.media-item{
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    background-color: rgb(11, 40, 93);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.media-item:hover{
    transform: scale(1.05);
}

/* Images */
.media-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vidéos */
.media-item video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1000px){
    .bloc-medias{
        width: 100%;
    }

    .medias-title{
        font-size: 30px;
    }
}



.team-section {
    padding: 100px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.team-title {
    font-size: 40px;
    font-weight: 700;
    color: rgb(11, 40, 93);
    margin-bottom: 30px;
    text-align: left;
    padding: 10px 15px;
    border-left: 5px solid rgb(53,174,243);
    width: 80%;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    width: 80%;
    margin: auto;
}

.team-card {
    background: #0c1a2a;
    padding: 25px;
    border-radius: 10px;
    transition: 0.35s;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px #00000040;
}

.team-img img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.team-socials {
    position: absolute;
    top: 20px;
    left: 15px;
    list-style: none;
    padding: 0;
}

.team-socials li {
    margin-bottom: 8px;
}

.team-socials li a {
    background: #063456;
    color: #fff;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    transition: 0.3s;
}

.team-socials li a i {
    color: #fff;
}

.team-socials li a:hover {
    background: #157efb;
}

.team-card h3 {
    color: #fff;
    margin: 15px 0 5px;
}

.team-card p {
    color: #b8d4ff;
    margin: 0;
}

@media screen and (max-width: 900px){
    .team-title {
        font-size: 30px;
        width: 100%;
    }

    .team-container {
        width: 100%;
    }
}



.event-container {
    max-width: 80%;
    margin: 50px auto;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.event-header {
    text-align: center;
    margin-bottom: 25px;
}

.event-header h1 {
    margin: 10px 0;
    font-size: 32px;
    color:  #063456;
}

.event-image {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    background: #f8f9fc;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #063456;
}

.info-item h3 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #063456;
}

.event-description {
    background: #f8f9fc;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.7em;
    border-left: 4px solid #28a745;
}

/* Responsive */
@media(max-width: 768px) {
    .event-info {
        grid-template-columns: 1fr;
    }

    .event-image {
        height: 220px;
    }

    .event-container {
        max-width: 100%;
        margin: 50px auto;
        background: white;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
}