@font-face {
    font-family: 'Cirvia Light';
    src: url('../fonts/Cirvia/Cirvia-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Cirvia';
    src: url('../fonts/Cirvia/Cirvia-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Cirvia Medium';
    src: url('../fonts/Cirvia/Cirvia-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Cirvia Bold';
    src: url('../fonts/Cirvia/Cirvia-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Cirvia ExtraBold';
    src: url('../fonts/Cirvia/Cirvia-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Lorenza';
    src: url('../fonts/Lorenza.woff') format('truetype');
}


button{
   font-size: 16px;
   font-family: 'Lorenza', serif;
   font-weight: 500;
   border-radius: 8px;
   cursor: pointer;
}


html, body {
   margin: 0;
   padding: 0;
   font-family: 'Lorenza', serif;
}


/* Nav */
nav{
  display: flex;
  justify-content: center;
}
nav .container{
   position: absolute;
   top: 40px;
   width: 85%;
   height: 85px;
   border-radius: 8px;
   background: rgb(102, 83, 133,0.4);
   backdrop-filter: blur(5px);
   display: flex;
   justify-content: space-around;
   align-items: center;
   border: 0.1px solid rgb(255, 255, 255,0.5);
  
}

nav .container .logo img{
   width: 150px;
   height: 55px;
}


nav .container .link .nav-list{
  list-style: none;
  display: flex;
  gap: 20px;
}

nav .container .link ul a{
 text-decoration: none;
 color: white;
 font-family: 'Lorenza', sans-serif;
 font-size: 22px;
 font-size: 500;
}

/* sous-link */

nav .container .link .apropos{
   list-style: none;
   position: absolute;
   width: 170px;
   padding: 0;
   margin: 0;
   padding-top: 30px;
   display: none;
}

nav .container .link .apropos li{
   display: inline-block;
   width: 100%;
   padding-top: 15px;
   padding-bottom: 15px;
   text-align: center;
   background: rgb(102, 83, 133,1);
   margin-bottom: 1px;
}



nav .container .link .link-apropos:hover .apropos{
   display: block;
}

nav .container .link .mission{
   list-style: none;
   position: absolute;
   width: 170px;
   padding: 0;
   margin: 0;
   padding-top: 30px;
   display: none;
}

nav .container .link .mission li{
   display: inline-block;
   width: 100%;
   padding-top: 15px;
   padding-bottom: 15px;
   text-align: center;
   background: rgb(102, 83, 133,1);
   margin-bottom: 1px;
}

nav .container .link .link-mission:hover .mission{
   display: block;
}

nav .container .button{
   display: flex;
   gap: 20px;
   align-items: center;
}

nav .container .button i{
   font-size: 25px;
   color: white;
   border: 1px solid white;
   padding: 10px;
   border-radius: 8px;
   cursor: pointer;
   display: none;
}

nav .container .button button{
   width: 176px;
   height: 53px;
   border: 1px solid white;
   color: #665385;
   cursor: pointer;
}


#mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(102, 83, 133, 0.95);
    z-index: 999;
    padding-top: 80px;
    transition: left 0.6s ease;
}

#mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-menu ul.mobile-nav-list li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    box-sizing: border-box;
}

#mobile-menu ul.mobile-nav-list li a {
    text-decoration: none;
    color: white;
    display: block;
    font-size: 18px;
}

#mobile-menu ul.mobile-nav-list li button {
    width: 176px;
   height: 53px;
   border: 1px solid white;
   color: #665385;
   cursor: pointer;
   display: none;
   margin-top: 20px;
}

.mobile-apropos,
.mobile-mission {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 15px;
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(-10px);
}


.mobile-nav-list li.open > ul {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}




/*  Accueil */

.acceuil .hero-section{
    width: 100%;
    height: 100vh;
    background: no-repeat center/cover;
    transition: background-image 1s ease-in-out;
}

.acceuil .hero-section .container{
    width: 85%;
    margin: auto;
    padding-top:420px;
}

.acceuil .hero-section .container h1{
   color: white;
   font-size: 48px;
   font-family: 'Cirvia ExtraBold', sans-serif;
   margin: 0;
   margin-bottom: 10px;
}
.acceuil .hero-section .container p{
   color: white;
   font-size: 35px;
   font-family: 'Lorenza', sans-serif;
   margin: 0;
   margin-bottom: 30px;
}
.acceuil .hero-section .container a{
   text-decoration: none;
}

.acceuil .hero-section .container a button{
   width: 172px;
   height: 47px;
   border-radius: 8px;
   border: 1px solid white;
   color: #665385;
   cursor: pointer;
   font-size: 16px;
}

.word {
  transition: color 0.6s ease;
}

.word.active {
  color: #FDBD3B;
}

.acceuil .about-section{
  position: relative;
}

.acceuil .about-section .pattern{
  position: absolute;
  top: -40px;
  right: 0;
  height: 800px;
}

.acceuil .about-section .container{
    width: 85%;
    margin: auto;
    padding-top:100px;
}

/* h2 title */

.title {
   font-size: 54px;
    color: #236881;
    font-family: 'Cirvia ExtraBold', sans-serif;
    font-weight: bold;
    line-height: 1.1;
}

.acceuil .about-section .container .about-content{
   display: flex;
   align-items: flex-start;
   flex-wrap: wrap;
   gap: 40px;
}

.acceuil .about-section .container .about-content .img{
   width: 40%;
}
.acceuil .about-section .container .about-content .img img{
   width: 100%;
   height: 100%;
}
.acceuil .about-section .container .about-content .content-text{
   width: 55%;
}

.acceuil .about-section .container .about-content .content-text h3{
   line-height: 54px;
   font-size: 35px;
   margin: 0;
}

.acceuil .about-section .container .about-content .content-text p{
   font-size: 18px;
   font-weight: 400;
   line-height: 26px;
}

.acceuil .about-section .container .about-content .content-text button{
   width: 158px;
   height: 53px;
   border: 1px solid #665385;
   background-color: #665385;
   color: white;
}




.acceuil .valeurs-section .container{
    width: 85%;
    margin: auto;
    padding-top:100px;
}


.acceuil .valeurs-section .container .valeurs-content{
   display: flex;
   align-items:flex-start;
   flex-wrap: wrap;
   gap: 40px;
}

.acceuil .valeurs-section .container .valeurs-content .img{
   width: 40%;
}
.acceuil .valeurs-section .container .valeurs-content .img img{
   width: 100%;
   height: 100%;
}
.acceuil .valeurs-section .container .valeurs-content .valeurs-list{
   width: 55%;
   margin-top: 10px;
}

.acceuil .valeurs-section .container .valeurs-content .valeurs-list .value-item {
    background-color: #E8DCFB;
    border: 2px solid #b3aac2;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 8px;
    width: 95%;
}

.acceuil .valeurs-section .container .valeurs-content .valeurs-list .value-item h3 {
    font-size: 18px;
    font-family: 'Cirvia ExtraBold', sans-serif;
    font-weight: bolder;
    color: #665385;
    margin: 0;
}

.acceuil .valeurs-section .container .valeurs-content .valeurs-list .value-item p {
    font-size: 18px;
    color: #665385;
    margin: 0;
    font-weight: 200;
}

.acceuil .valeurs-section .container .valeurs-content .valeurs-list  button{
   min-width: 220px;
   height: 53px;
   border: 1px solid #665385;
   color: white;
   background-color: #665385;
   margin-top: 15px;
}


.acceuil .missions-section .container{
    width: 85%;
    margin: auto;
    padding-top:100px;
}


.acceuil .missions-section .container .missions-content{
   display: flex;
   gap: 0px;
   background: linear-gradient(135deg, #236881 0%, #144050 100%);
   padding: 30px;
   padding-top: 45px;
   padding-bottom: 45px;
   border-radius: 8px;
}

.acceuil .missions-section .container .missions-content .mission{
   width: 33%;
}

.acceuil .missions-section .container .missions-content .mission2,.acceuil .missions-section .container .missions-content .mission3{
   width: 33%;
   border-left: 1px solid rgb(255, 255, 255,0.3);
}
.acceuil .missions-section .container .missions-content .mission .icon{
   display: flex;
   justify-content: center;
}

.acceuil .missions-section .container .missions-content .mission .icon i{
   color: #FDBD3B;
   font-size: 41px;
}

.acceuil .missions-section .container .missions-content .mission h4{
   text-align: center;
   color: white;
   font-size: 22px;
   font-family: 'Cirvia Bold', sans-serif;
   margin: 0;
   margin-top: 15px;
   
}

.acceuil .missions-section .container .missions-content .mission p{
   text-align: center;
   color: white;
   font-size: 18px;
   margin: 0;
   line-height: 26px;
   max-width: 85%;
   margin: auto;
   font-weight: 400;
}

.acceuil .missions-section button{
   width: 158px;
   height: 53px;
   border: 1px solid #665385;
   color: white;
   background-color: #665385;
   margin-top: 15px;
}




/* CTA */


.cta-section{
   padding-top: 100px;
}

.acceuil .cta-section .cta , .gouvernance .cta-section .cta,.commission .cta-section .cta,.membre .cta-section .cta{
   width: 100%;
   min-height: 350px;
   background: url(../images/accueil-cta.png) center/cover no-repeat;
}

.identity .cta-section .cta{
   width: 100%;
   min-height: 400px;
   background: url(../images/about-cta.png) center/cover no-repeat;
}

.value .cta-section .cta{
   width: 100%;
   min-height: 400px;
   background: url(../images/value-cta.png) center/cover no-repeat;
}

.action .cta-section .cta{
   width: 100%;
   min-height: 400px;
   background: url(../images/pole-action-cta.png) center/cover no-repeat;
}

.cta-section .cta .container{
  width: 85%;
  padding-top: 100px;
  margin: auto;
}

.cta-section .cta .container h3{
    font-size: 52px;
    color: #FDBD3B;
    font-family: 'Cirvia', sans-serif;
    font-weight: bold;
    line-height: 54px;
    text-align: center;
    margin: 0;
    font-weight: bold;
}

.cta-section .cta .container p{
   text-align: center;
   color: white;
   font-size: 21.5px;
   font-size: 500;
   line-height: 26px;
}

.cta-section .cta .container .button{
   display: flex;
   justify-content: center;
}
.cta-section .cta .container .button button{
   width: 300px;
   height: 53px;
   border: 1px solid white;
   color: #665385;
   background-color: white;
}
.cta-section .cta .container .button .action-btn{
   width: 411px;
   height: 53px;
   border: 1px solid white;
   color: #665385;
   background-color: white;
}



/* footer */

footer{
   width: 100%;
   min-height: 50vh;
   background-color: #665385;
   margin-top: 100px;
   position: absolute;
}

footer .container{
   width: 85%;
   margin: auto;
   padding-top: 100px;
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   flex-wrap: wrap;
}

footer .container .logo{
   width: 42%;
}

footer .container .link{
   width: 25%;
}
footer .container .reseaux{
   width: 30%;
}

footer .container .logo img{
   width: 300px;
   height: 100px;
}

footer .container .logo form{
   padding-top: 50px;
}

footer .container .logo h3{
    font-size: 40px;
    color: white;
    font-family: 'Cirvia', sans-serif;
    font-weight: bold;
    line-height: 32.5px;
}

footer .container .logo .input{
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
}

footer .container .logo .input input{
   width: 85%;
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    padding: 10px;
    font-family: 'Cirvia', sans-serif;
    font-size: 14px;
    color: white;
}
footer .container .logo .input input:focus {
   outline: none;
}
footer .container .logo .input input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lorenza', sans-serif;
    font-size: 20px;
    font-weight: 400;
}

footer .container .logo .input button{
   background: transparent;
   border: 1px solid white;
   color: white;
   cursor: pointer;
   padding: 11px;
   border-radius: 50%;
   display: inline-flex;
   justify-content: center;
   align-items: center;
}

footer .container .logo .inputcoche{
   padding-top: 20px;
   display: flex;
   align-items: center;
   gap: 5px;
}

footer .container .logo .inputcoche label {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lorenza', sans-serif;
    font-size: 20px;
    font-weight: 400;
}

footer .container .link h3{
    font-size: 25px;
    color: white;
    font-family: 'Cirvia', sans-serif;
    font-weight: bold;
    margin-left: -20px;
    line-height: 1.1;
}

footer .container .link ul{
   color: white;
   padding-left: 0;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

footer .container .link ul li a{
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}



footer .container .reseaux h3{
    font-size: 25px;
    color: white;
    font-family: 'Cirvia', sans-serif;
    font-weight: bold;
    line-height: 1.1;
}

footer .container .reseaux .icons{
   display: flex;
   gap: 10px;
}

footer .container .reseaux .icons a{
   text-decoration: none;
   color: white;
   padding: 10px;
   border: 1px solid white;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
}

footer .container .reseaux .icons a:hover{
   color: #665385;
   background-color: white;
}

footer .hr-section{
   width: 85%;
   margin: auto;
   margin-top: 100px;
}


footer .hr-section .hr{
  background-color: rgb(255, 255, 255,0.2);
   width: 100%;
   height: 1px;
}

footer .hr-section p{
  color: white;
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 100;
}


/*identity section*/



.identity .hero-section{
    background: url(../images/hero-section-identity.webp);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.identity .hero-section .container{
    width: 85%;
    height: 80vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.identity .hero-section .container h1{
   color: white;
   font-size: 48px;
   font-family: 'Cirvia ExtraBold', sans-serif;
}

.identity .identity-section .container{
    width: 85%;
    margin: auto;
    padding-top:100px;
}

.identity .identity-section .container .identity-content2{
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   flex-wrap: wrap;
   padding-bottom: 0px;
}



.identity .identity-section .container .identity-content2 .text{
   width: 55%;
}



.identity .identity-section .container .identity-content2 .text p{
   font-size: 18px;
   line-height: 26px;
   font-weight: 400;
   padding-top: 25px;
}


.identity .identity-section .container .identity-content2 .img{
   width: 40%;
}

.identity .identity-section .container .identity-content2 .img img{
   width: 100%;
   height: 100%;
}



/*valeurs section*/
.value .hero-section{
    background: url(../images/hero-section-value.webp);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.value .hero-section .container{
    width: 85%;
    height: 80vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value .hero-section .container h1{
   color: white;
   font-size: 48px;
   font-family: 'Cirvia ExtraBold', sans-serif;
}

.value .value-section .container{
   width: 85%;
    margin: auto;
    padding-top:100px;
}
.value .value-section .container .value{
   padding-bottom: 40px;
}
.value .value-section .container h3{
   font-size: 32px;
    font-weight: bold;
    color: #665385;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 400;
    line-height: 48px;
}

.value .value-section .container .value-content{
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   flex-wrap: wrap;
}

.value .value-section .container .value-content.value-padding .text{
   padding-top: 30px;
}

.value .value-section .container .value-content img{
   width: 48%;
   height: 100%;
}
.value .value-section .container .value-content .text{
   width: 48%;
}

.citation.blue {
    background: linear-gradient(135deg, #D8E8EE 100%, #7BA7B7 100%, #236881 100% );
    color: #236881;
    border: 2px solid #7BA7B7;

}

.citation.purple {
    background: linear-gradient(135deg, #E8DCFB 100%, #665385 50%, #665385 100% );
    color: #665385;
    border: 2px solid #665385;
}

.citation.yellow {
    background: linear-gradient(135deg, #FDEFD3 100%, #C5AB77 48%, #92670F 100% );
    color: #92670F;
    border: 2px solid #92670F;

}

.citation.orange {
    background: linear-gradient(135deg, #FFE1DB 100%, #FF8066 100%, #943825 100% );
    color: #943825;
    border: 2px solid #943825;

}

.value .value-section .container .value-content .text .citation{
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 8px;
}

.value .value-section .container .value-content .text .citation p{
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    font-weight: 200;
}

.value .value-section .container .value-content .text .citation span{
    font-size: 16px;
    font-family: 'Cirvia ExtraBold', sans-serif;
    
}

.value .value-section .container .value-content .text p{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

.value .value-section .container .hr{
   width: 100%;
   height: 1px;
   background: rgba(35, 104, 129, 0.3);
}










/*gouvernance section*/
.gouvernance .hero-section{
    background: url(../images/hero-section-gouvernance.webp);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.gouvernance .hero-section .container{
    width: 85%;
    height: 80vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


.gouvernance .hero-section .container h1{
   color: white;
   font-size: 48px;
   font-family: 'Cirvia ExtraBold', sans-serif;
}

.gouvernance .gouvernance-section{
    padding-top:100px;
}

.gouvernance .gouvernance-section .container{
    width: 85%;
    height: 300px;
    margin: auto;
    background: url(../images/gouvernance-section1.png) no-repeat center/contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gouvernance .gouvernance-section .container div{
    width: 80%;
    height: 70%;
}

.gouvernance .gouvernance-section .container div p{
    font-size: 27px;
    font-weight: 500;
    color: white;
    
}

.gouvernance .gouvernance-section .container div p span{
    font-size: 35px;
    font-weight: bold;
    color: white;
}


.gouvernance .title{
    padding-top: 50px;
}
.gouvernance .gouvernance-content .container{
    width: 85%;
    margin: auto;
}

.gouvernance .gouvernance-content .container h2{
   margin: 0;
   font-size: 54px;
    color: #236881;
    font-family: 'Cirvia ExtraBold', sans-serif;
    font-weight: bold;
    line-height: 1.1;
}

.gouvernance .gouvernance-content .container .gouv-h2{
  margin-bottom: 50px;
}


.gouvernance .gouvernance-content  p{
   font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}


.gouvernance .gouvernance-content .gouvernance-container{
   padding-top: 50px;
}
.gouvernance .gouvernance-content .gouvernance-content{
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   flex-wrap: wrap;
   padding-bottom: 100px;
}

.gouvernance .gouvernance-content .gouvernance-content .img{
   width: 45%;
}

.gouvernance .gouvernance-content .gouvernance-content .img img{
   width: 100%;
   height: 100%;
}



.gouvernance .gouvernance-content .gouvernance-content .text{
   width: 50%;
}

.gouvernance .gouvernance-content .gouvernance-content h3{
  font-size: 32px;
   margin: 0;
}

.gouvernance .gouvernance-content .gouvernance-content p{
  font-size: 18px;
  line-height: 26px;
   margin: 0;
   font-weight: 400;
   margin-bottom: 0px;
}
.gouvernance .gouvernance-content .info-blocks{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}
.gouvernance .gouvernance-content .info-blocks .info-block{
   padding: 18px;
   padding-left: 25px;
   border-radius: 8px;
   color: white;
}

.gouvernance .gouvernance-content .info-blocks .info-block.purple{
   background: #665385;
}

.gouvernance .gouvernance-content .info-blocks .info-block.blue{
   background-color: #236881;
}
.gouvernance .gouvernance-content .info-blocks .info-block p{
   font-family: 'Cirvia', sans-serif;
   font-size: 14px;
   line-height: 26px;
   margin: 0;
}

.gouvernance .gouvernance-content .info-blocks .info-block span{
   font-size: 21px;
   font-weight: bold;
}






/* Nos missions */

/* Poles d'actions */

.action .hero-section{
    background: url(../images/hero-section-action.webp);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.action .hero-section .container{
    width: 85%;
    height: 80vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action .hero-section .container h1{
   color: white;
   font-size: 48px;
   font-family: 'Cirvia ExtraBold', sans-serif;
}


.action .action-section{
    padding-top:100px;
}

.action .action-section .container{
    width: 85%;
    height: 300px;
    margin: auto;
    background: url(../images/gouvernance-section1.png) no-repeat center/contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action .action-section .container div{
    width: 80%;
    height: 70%;
}

.action .action-section .container div h3{
   margin: 0;
   color: #FDBD3B;
   font-family: 'cirvia ExtraBold', sans-serif;
   text-transform:capitalize;
   font-size: 35px;
}

.action .action-section .container div p{
    font-size: 21px;
    max-width: 95%;
    font-weight: 500;
    color: white;
    margin: 0;
    margin-top: 15px;
    
}

.action .action-section .container div p span{
    font-size: 35px;
    font-weight: bold;
    color: white;
}

.action .action-container{
  min-height: 800px;
}
.action .action-content{
   width: 100%;
   height: 750px;
   background: url(../images/action-content.png) no-repeat center/cover;
}


.action .action-content  .container{
  width: 85%;
  margin: auto;
  margin-top: 50px;
}
.action .action-content .cards{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.action .action-content .cards .two-cards{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 100px;
}


.action .action-content .cards .two-cards .cards1,.action .action-content .cards .two-cards .cards2{
  width:48%;
  height:400px;
  background:linear-gradient(#3D2C57,#665385);
  border: 3px solid white;
  border-radius: 8px;
  padding: 40px 50px;
  overflow: hidden;
  position: relative;
}

.action .action-content .cards .two-cards .cards1 img{
 position: absolute;
 bottom: 0;
 left: 0;
}

.action .action-content .cards .two-cards .cards2 img{
 position: absolute;
 top: 0px;
 right: 0px;
 height: 100px;
}

.action .action-content .cards .two-cards h3{
    font-size: 26px;
    color: #FDBD3B;
    font-family: 'cirvia ExtraBold', sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.action .action-content .cards .two-cards p{
    font-size: 18px;
    color: white;
    font-family: 'Lorenza', serif;
    font-weight: 400;
    text-align: center;
    line-height: 26px;
}

  .action .action-content .cards .one-card{
  width: 100%;
  height: 200px;
  background-color: #D9EEF5;
  border-radius: 8px;
  border: 3px solid #236881;
  overflow: hidden;
  position: relative;
}

.action .action-content .cards .one-card h3{
    font-size: 26px;
    color: #665385;
    font-family: 'cirvia ExtraBold', sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.action .action-content .cards .one-card p{
     font-size: 18px;
    color: #236881;
    font-weight: 400;
    text-align: center;
    line-height: 26px;
    max-width: 70%;
    margin:auto;

}

.action .action-content .cards .one-card img{
 position: absolute;
 bottom: 0px;
 right: 0px;
 height: 150px;

}



/* commission */

.commission .hero-section{
    background: url(../images/hero-section-commission.webp);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.commission .hero-section .container{
    width: 85%;
    height: 80vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.commission .hero-section .container h1{
   color: white;
   font-size: 48px;
   font-family: 'Cirvia ExtraBold', sans-serif;
}

.commission .gouvernance-section{
    padding-top:100px;
}

.commission .gouvernance-section .container{
    width: 95%;
    height: 300px;
    margin: auto;
    background: url(../images/gouvernance-section1.png) no-repeat center/contain;
    background-position-x: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.commission .gouvernance-section .container div{
    width: 80%;
    height: 70%;
}

.commission .gouvernance-section .container div p{
    font-size: 27px;
    font-weight: 500;
    color: white;
    
}

.commission .gouvernance-section .container div p span{
    font-size: 35px;
    font-weight: bold;
    color: white;
}



.commission .cards{
   min-height: 50vh;
}

.commission .cards .container{
   width: 88%;
   margin: auto;
   padding-top: 50px;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 40px;
}

.commission .cards .card{
   width: 48%;
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    padding-top: 250px;
    box-sizing: border-box;
    transition: all 0.6s ease-in-out;
}

.commission .cards .card1{
    background: url('../images/commision-card1.png') center/cover no-repeat;
}
.commission .cards .card2{
    background: url('../images/commision-card2.png') center/cover no-repeat;
}
.commission .cards .card3{
    background: url('../images/commision-card3.png') center/cover no-repeat;
}
.commission .cards .card4{
    background: url('../images/commision-card4.png') center/cover no-repeat;
}
.commission .cards .card5{
    background: url('../images/commision-card5.png') center/cover no-repeat;
}

.commission .cards .card img{
   width: 250px;
    height: 250px;
    position: absolute;
    top: -25px;
    right: -25px;
    z-index: 1;
    transition: all 0.6s ease-in-out;
}

.commission .cards .card .card-overlay {
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    transition: all 0.6s ease-in-out;
}

.commission .cards .card .card-overlay  h3{
    color: white;
    max-width: 65%;
    text-align: center;
    margin: auto;
    font-size: 23px;
    font-weight: bolder;
    line-height: 40px;
    font-family: 'Cirvia ExtraBold', sans-serif;
}

.commission .cards .card .card-overlay p{
    color: white;
    text-align: center;
    max-width: 80%;
    padding-top: 10px;
    margin: auto;
    display: none;
}




.commission .cards .card:hover img{
   position: absolute;
    top: -65px;
    right: -65px;
}

.commission .cards .card:hover p{
  display: block;
}

.commission .cards .card:hover {
  padding-top: 0;
}
.commission .cards .card:hover .card-overlay{
  padding-top: 60px;
    background: linear-gradient(to top, #665385 0%, rgba(102, 83, 133, 0.8) 60%, rgba(102, 83, 133, 0.3) 80%, rgba(102, 83, 133, 0) 100%);
}


/* Devenir membre */

.membre .hero-section{
    background: url(../images/hero-section-membre.webp);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.membre .hero-section .container{
    width: 85%;
    height: 80vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.membre .hero-section .container h1{
   color: white;
   font-size: 48px;
   font-family: 'Cirvia ExtraBold', sans-serif;
}









.membre .membre-section1{
    padding-top:100px;
}

.membre .membre-section1 .container{
    width: 85%;
    height: 400px;
    margin: auto;
    background: url(../images/membre-patern.png) no-repeat center/contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.membre .membre-section1 .container div{
    width: 80%;
    height: 70%;
}

.membre .membre-section1 .container div h3{
   margin: 0;
   color: #FDBD3B;
   font-family: 'cirvia ExtraBold', sans-serif;
   text-transform:capitalize;
   font-size: 32px;
}

.membre .membre-section1 .container div p{
    font-size: 21px;
    max-width: 95%;
    font-weight: 500;
    color: white;
    margin: 0;
    margin-top: 15px;
    
}

.membre .membre-section1 .container div p span{
    font-size: 35px;
    font-weight: bold;
    color: white;
}









.membre .membre-section{
    background: url(../images/bg-section-membre.png) no-repeat;
    background-size: 100% 850px;
    background-position-y: 900px;
}
.membre .membre-section .container{
    width: 85%;
    margin: auto;
}

.membre .membre-section .container .title2-membre h3{
    font-size: 34px;
    color: #665385;
    font-family: 'Cirvia ExtraBold', sans-serif;
    font-weight: bold;
    line-height: 48px;
    margin: auto;
}

.membre .membre-section .container .title2-membre p{
    font-size: 18px;
    color: black;
    font-weight: 400;
    line-height: 26px;
}
.membre .membre-section .container .membre-content{
   padding-top: 50px;
   display: flex;
   flex-direction: column;
   gap: 0px;
}


.membre .membre-section .container .membre-content1{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 20px;
}

.membre .membre-section .container .membre-content1 .img{
   width: 48%;
}

.membre .membre-section .container .membre-content1 img{
   width: 100%;
   height: 100%;
}


.membre .membre-section .container .membre-content1 .text{
   width: 48%;
}

.membre .membre-section .container  .membre-content1 .text h3{
   font-weight: bold;
   font-size: 22px;
   line-height: 40px;
}
.membre .membre-section .container  .membre-content1 .text p{
   font-weight: 400;
   font-size: 18px;
   line-height: 26px;
}



.membre .membre-section .container  .cards-membre{
  padding-top:100px;
}
.membre .membre-section .container  .cards-membre .title2-membre h3{
    font-size: 34px;
    color: #665385;
    font-family: 'Cirvia ExtraBold', sans-serif;
    font-weight: bold;
    line-height: 48px;
    margin: auto;
}

.membre .membre-section .container  .cards-membre .title2-membre p{
    font-size: 17px;
    color: black;
    font-weight: 400;
    line-height: 28px;
}

.membre .membre-section .container  .cards-membre .cards{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 50px;
}

.membre .membre-section .container  .cards-membre .cards .card{
    width: 470px;
    height: 300px;
    border-radius: 8px;
    background-color: #665385;
    padding: 20px;
    padding-top: 50px;
    text-align: center;
    box-sizing: border-box;
}

.membre .membre-section .container  .cards-membre .cards .card h3{
   text-align: center;
   font-family: 'Cirvia', sans-serif;
   font-size: 45px;
   line-height: 26px;
   color: #FDBD3B;
   font-weight: 900;
   margin: 0;
}

.membre .membre-section .container  .cards-membre .cards .card h4{
   text-align: center;
   font-family: 'Cirvia Bold', sans-serif;
   font-size: 18px;
   line-height: 24px;
   color: white;
   font-weight: bold;
   margin: 0;
   padding-top: 30px;
}

.membre .membre-section .container  .cards-membre .cards .card p{
   text-align: center;
   font-size: 16px;
   line-height: 22px;
   color: white;
   font-weight: 400;
   margin: 0;
   margin-top: 15px;
}

.membre .membre-section .container .process-section{
   padding-top: 100px;
}

.membre .membre-section .container .process-section-cards{
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   padding-top: 20px;
}

.membre .membre-section .container .process-section .text{
   width: 55%;
}
.membre .membre-section .container .process-section .text h3{
    font-size: 34px;
    color: #665385;
    font-family: 'Cirvia ExtraBold', sans-serif;
    font-weight: bold;
    line-height: 48px;
    margin: auto;
}

.membre .membre-section .container .process-section .text p{
    font-size: 18px;
    color: black;
    font-weight: 400;
    line-height: 26px;
}

.membre .membre-section .container .process-section .text .cards{
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.membre .membre-section .container .process-section .text .cards .card{
    width: 100%;
    border-radius: 8px;
    padding: 20px 25px 25px 25px;
    box-sizing: border-box;
}
.membre .membre-section .container .process-section .text .cards .card h4{
   margin: 0;
   font-family: 'Cirvia ExtraBold', sans-serif;
   font-size: 18px;
   font-weight: 900;
   line-height: 26px;
}
.membre .membre-section .container .process-section .text .cards .card p{
   font-size: 18px;
   font-weight: 400;
   margin: 0;
   line-height: 26px;
   margin-top: 15px;
   color: white;
}
.membre .membre-section .container .process-section .text .cards .card1{
   color: white;
   background: linear-gradient(to left, #665385 0%, #3A2955 100%);
}

.membre .membre-section .container .process-section .text .cards .card2{
   color: white;
   background: linear-gradient(to left, #236881 0%, #103745 100%);
}

.membre .membre-section .container .process-section .text .cards .card3{
   color: white;
   background: linear-gradient(to left, #FF8066 0%, #E85436 100%);
}

.membre .membre-section .container .process-section .text .cards .card4{
   background: linear-gradient(to left, #FCD178 0%, #FCD178 100%);
   color: #3B2A57;
}

.membre .membre-section .container .process-section .text .cards .card4 p{
   color: #3B2A57;
}
.membre .membre-section .container .process-section .img{
   width: 40%;
}
.membre .membre-section .container .process-section .img img{
   width: 100%;
   height: 100%;
}

/* contact */


.contact .hero-section{
    background: url(../images/hero-section-contact.webp); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.contact .hero-section .container{
    width: 85%;
    height: 80vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .hero-section .container h1{
   color: white;
   font-size: 48px;
   font-family: 'Cirvia ExtraBold', sans-serif;
}

.contact .contact-section .container{
    width: 85%;
    margin: auto;
    padding-top: 100px;
}

.contact .contact-section .container h3{
   font-size: 25px;
    color: black;
    font-weight: 500;
    line-height: 32px;
}

.contact .contact-section .container .title-contact p{
   font-size: 18px;
    color: black;
    font-weight: 400;
    line-height: 26px;
    margin-top: -20px;
}
.contact .contact-section .form{
   min-height: 550px;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   padding-top: 20px;
}
.contact .contact-section .form .img{
  width: 45%;
  height: 550px;
}
.contact .contact-section .form .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.contact .contact-section .form form{
  width: 53%;
  height: 550px;
  border-radius: 8px;
  padding-top: 20px;
  padding-left: 30px;
  box-sizing: border-box;
  background-color: #F0E9FB;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-section .form form h3{
  margin: 0;
  margin-bottom: 20px;
}
.contact .contact-section .form-container{
  width: 90%;
}


  .contact .form-container input{
    width: 90%;
    height: 30px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    font-family: 'Lorenza', serif;
    background-color: #fbfbfc;
  }

  

  .input-tel{
   margin-bottom: 15px;
   }
  .iti {
    width: 100%;
   }

  .iti input {
   width: 100%;
   height: 30px;
  }


  .contact .form-container textarea{
    width: 90%;
    height: 90px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    font-family: 'Lorenza', serif;
    background-color: #fbfbfc;
  }

  .contact .form-container select{
    width: 90%;
    height: 48px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    font-family: 'Lorenza', serif;
    background-color: #fbfbfc;
  }
  
  .contact .form-container input::placeholder{
   opacity: 0.5;
   font-family: 'Lorenza', serif;
}

.contact .form-container select::placeholder{
   opacity: 0.5;
   font-family: 'Lorenza', serif;
}

.contact .form-container textarea::placeholder{
   opacity: 0.5;
   font-family: 'Lorenza', serif;
}
  .contact .form-container input:focus,
  .contact .form-container select:focus,
  .contact .form-container textarea:focus {
    border-color: #3A2955;
    box-shadow: 0 0 0 2px rgba(125, 95, 255, 0.2);
  }
  
  
  .contact .form button{
    font-size: 16px;
   font-family: 'Lorenza', serif;
   font-weight: 500;
   border-radius: 8px;
   cursor: pointer;
   background-color: #665385;
    width: 120px;
   height: 53px;
   border: 1px solid white;
   color: white;
   cursor: pointer;
  }


  /* adhesion */


.join .hero-section{
    background: url(../images/hero-section-join.webp);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.join .hero-section .container{
    width: 85%;
    height: 80vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.join .hero-section .container h1{
   color: white;
   font-size: 48px;
   font-family: 'Cirvia ExtraBold', sans-serif;
}

.join .join-section .container{
    width: 85%;
    margin: auto;
    padding-top: 100px;
}
.join .join-section .title-join{
   padding-bottom: 20px;
}
.join .join-section .title-join h3{
    font-size: 34px;
    color: #236881;
    font-family: 'Cirvia ExtraBold' , sans-serif;
    font-weight: bold;
    line-height: 50px;
    margin: 0;
}

.join .join-section .title-join  p{
   max-width: 75%;
    font-size: 20px;
    color: black;
    font-weight: 400;
    line-height: 28px;
}


.join .join-section .container .steps{
    display: flex;
}

.join .join-section .container .steps .step{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    width: 20%;
}



.step1 .hr{
    width: 85%;
    height: 3px;
    border-radius: 2px;
    background-color: #FDBD3B;
    transition: all 0.6s ease-in-out;  
}
.step2 .hr,.step3 .hr,.step4 .hr,.step5 .hr{
    width: 85%;
    height: 3px;
    border-radius: 2px;
    background-color: #D9D9D9;
    transition: all 0.6s ease-in-out;
}

.step1 p{
   font-family: 'Cirvia', sans-serif;
   font-size: 40px;
   line-height: 26px;
   color: #FDBD3B;
   font-weight: bold;
   margin: 0;
   transition: all 0.6s ease-in-out;
}
.step2 p,.step3 p,.step4 p,.step5 p{
   font-family: 'Cirvia', sans-serif;
   font-size: 40px;
   line-height: 26px;
   color: #D9D9D9;
   font-weight: bold;
   margin: 0;
   transition: all 0.6s ease-in-out;
}


.join .join-section .step-contents{
  padding-top: 60px;
}

.join .join-section .step-contents h4{
  font-size: 25px;
    color: black;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
    margin-bottom: 50px;
    
}

.join .join-section .step-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.join .join-section .step-content .form{
  width: 48%;
}
.join .join-section .step-content .img{
  width: 48%;
}

.join .join-section .step-content .img img{
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.join .join-section .step-content .form form{
   padding-top: 0px;
}

.join .join-section .step-content .form .input{
   width: 95%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  
}

.join .join-section .step-content .form .inputbtn{
   width: 100%;
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
}

.btn-step1,.btn-step2,.btn-step3,.btn-step4{
   font-size: 16px;
   font-family: 'Lorenza', serif;
   font-weight: 500;
   border-radius: 8px;
   cursor: pointer;
   background-color: #665385;
    width: 150px;
   height: 55px;
   border: 1px solid white;
   color: white;
   cursor: pointer;
}

.join .join-section .step-content .form .inputbtn .back2,.join .join-section .step-content .form .inputbtn .back3,.join .join-section .step-content .form .inputbtn .back4{
   font-size: 16px;
   font-family: 'Lorenza', serif;
   font-weight: 500;
   border-radius: 8px;
   cursor: pointer;
   background-color: white;
   text-align: left;
   color: #665385;
   cursor: pointer;
   margin-top: 10px;
   border: none;
}


.join .join-section .step-content .form .input div{
   width: 100%;
  position: relative;
}
.join .join-section .step-content .form .input div i{
  position: absolute;
  top: 10px;
  right: 20px;
  opacity: 0.5;
  cursor: pointer;
}

.join .join-section .step-content .form label{
  font-size: 18px;
  font-weight: 400;
}

.join .join-section .step-content .form .input button{
  font-size: 16px;
   font-family: 'Lorenza', serif;
   font-weight: 500;
   border-radius: 8px;
   cursor: pointer;
   background-color: #665385;
    width: 150px;
   height: 53px;
   border: 1px solid white;
   color: white;
   cursor: pointer;
}
.join .join-section .step-content .form input{
   width: 100%;
    height: 30px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    font-family: 'Lorenza', serif;
    color: #B0B0B0;
    background-color: #fbfbfc;
}



.join .join-section .step-content .form select{
    width: 90%;
    height: 48px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    font-family: 'Lorenza', serif;
    color: #B0B0B0;
    background-color: #fbfbfc;
}



.join .join-section .step-contents2 .step-content .form,.join .join-section .step-contents3 .step-content .form,.join .join-section .step-contents4 .step-content .form{
  width: 100%;
}
.join .join-section .step-contents2 .step-content .form form,.join .join-section .step-contents3 .step-content .form form,.join .join-section .step-contents4 .step-content .form form{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.join .join-section .step-contents2 .step-content .form .input,.join .join-section .step-contents3 .step-content .form .input{
   width: 48%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.join .join-section .step-contents4 .step-content .form .input{
   width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.join .join-section .step-contents4 .step-content .form .input select{
   width: 100%;
}




.step-contents2,.step-contents3,.step-contents4{
  display: none;
}








