/* --- v2.10 --- */
/*-----------------------------------=========Main-Style-Sheet=========----------------------------------------*/


@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Ubuntu:wght@300;400;500;700&display=swap');
:root {
  --theme__color1: #0F5DCE;
  --ubuntu: 'Ubuntu', sans-serif;
  --cairo: 'Cairo', sans-serif;
}
*,::before,::after {
  box-sizing: border-box;
}
body {
padding-top:5px;
  font-size: 16px;
  line-height: 1.5;
  background-color: #f7f8fc;
  color: #0B203F;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-family: var(--ubuntu);
 
 min-height:100vh;
 display:flex;
 flex-direction:column;
 /*margin:0;*/
}
a, a:active, a:focus, a:active, a:hover {
  text-decoration:none !important;
  color: inherit;
}
input{
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a:hover,
a:focus,
input:focus,
input:hover,
select:focus,
select:hover,
select:active,
textarea:focus,
textarea:hover,
button:focus {
  outline: none;
}
::placeholder {
  opacity: 1;
}
:focus::placeholder {
  opacity: 0;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed; /* Prevents HTML tables from becoming too wide */
  width: 100%;
}
img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
iframe {
  width: 100%;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  font-weight: 700;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
p{
  margin-bottom: 15px;
}
p:last-child{
  margin: 0;
}
.main-wrap {
  width: 100%;
  overflow: hidden;
 
 flex:1;
 position:relative;

   
}

@media (min-width: 1200px) {
  .container {
    max-width: 1165px;
  }
}




/* header */
.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  color: #fff;
}
.header-in {
  /* position: fixed;
  top: 0;
  left: 0;
  width: 100%; */
}

.header-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 230px;
  padding: 30px 15px 30px 15px;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f8fc;
}

.main-menu {

}
.main-menu > ul {
  gap: 25px;
  display: flex;
}
.main-menu > ul > li {

}
.main-menu > ul > li > a {
  font-size: 18px;
  font-weight: 500;
  position: relative;
      display: block;
      padding: 0px 0;
 	  transition: 0.5s;
}
.main-menu > ul > li > a::after {
        position: absolute;
        content: "";
        top: 100%;
        left: 0;
        width: 100%;
        height: 2px;
        background: #2caa4a;
       transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.2s;
 }

.main-menu > ul > li > a:hover {
        color: #F4F5F9;
 }

.main-menu > ul > li > a:hover::after {
        transform: scaleX(1);
        transform-origin: center;
}
  
/*
.main-menu > ul > li > a:hover {
  text-decoration: underline !important;
  text-decoration-color: #2caa4a !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 7px;
}*/
.main-menu > ul > li > a.active {
  text-decoration: underline !important;
  text-decoration-color: #fff !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 7px;
}
.main-menu > ul > li > a.active::after {
	opacity:0;
}
/* header-end */



/* ---offcanvas-css--- */
.offcanvas-open{
  font-size: 22px;
  transition: 0.3s;
 
}
.offcanvas-open img{

  filter: invert(95%) sepia(4%) saturate(51%) hue-rotate(291deg) brightness(118%) contrast(100%);
}
.offcanvas-open:hover {
  filter: invert(53%) sepia(21%) saturate(1386%) hue-rotate(82deg) brightness(97%) contrast(93%);
}
.offcanvas-close {
  filter: invert(23%) sepia(91%) saturate(1765%) hue-rotate(205deg) brightness(99%) contrast(102%);
  position: absolute;
  transition: 0.3s;
  right: 15px;
  top: 15px;
  font-size: 22px;
  line-height: 1;
}
.offcanvas-close:hover {
  filter: invert(53%) sepia(21%) saturate(1386%) hue-rotate(82deg) brightness(97%) contrast(93%) !important;
}
.offcanvas-menu {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateX(-105%);
  transition: 0.3s;
}
.offcanvas-menu.active {
  transform: translate(0);
}
.offcanvas-menu .offmenu {
  max-width: 250px;
  min-width: 200px;
  z-index: 5;
  position: relative;
  background: #fff;
  height: 100%;
  padding: 50px 20px 40px;
  overflow: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.offcanvas-menu .offmenu :-webkit-scrollbar {
  display: none;
}
.mobile-menu li a {
  display: block;
  text-align: center;
  font-size: 16px;
  color: var(--theme__color1);
  padding: 9px;
  font-weight: 500;
  transition: 0.3s;
}
.mobile-menu li a:hover {
  color: #2caa4a;
}
.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.178);
  z-index: 2;
  transform: 0;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* ---offcanvas-css-end---*/

/* --preloader-- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--theme__color1);
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
/* --preloader-end-- */


/* ---hero-section--- */
.hero-section {
  padding: 220px 0;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/*
.hero-section::after {
  content: '';
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
   background: rgba(25, 69, 165, 0.45);
  z-index: -1;
}
*/
.hero__bg__slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  display: flex !important;
  flex-direction: column;
}
.hero__bg__slider .owl-stage-outer {
  flex-grow: 1;
  display: flex !important;
  flex-direction: column;
}
.hero__bg__slider .owl-stage {
  flex-grow: 1;
  display: flex;
  height: 100%;
}
.hero__bg__slider .owl-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero__bg__slide {
  flex-grow: 1;
  height: 100%;
}
.hero__bg__slide .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}


.hero-section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__box {
  max-width: 565px;
  width: 100%;
  padding: 54px 60px 36px;
  border: 3px solid #fff;
  color: #fff;
  border-radius: 10px;
 
}
.hero__box .h1 {
  font-size: 50px;
  margin: 0 0 30px;
  line-height: 1.1;
  font-weight: 500;
  text-align: center;
}

.bt-section {
  height:200px;
  display:flex;
   justify-content: center;
}
.bt_buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.bt_buttons a{
  padding:10px 15px;
  font-size:18px;
 
}
#picture-credit{
	font-size:12px;
	color:rgba(256,256,256,0.5);
	position:absolute;
	bottom:5px;
	right:10px;
	transition: color 0.5s;
}
#picture-credit:hover{
	color:rgba(256,256,256,1);
}
/* ---hero-section---end */

/* ---tile-hero-section--- */
.title-hero-section {
  padding: 160px 0 40px;
  color: #fff;
  position: relative;
  z-index: 10;
}

.title-hero-section::after {
  content: '';
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(25, 69, 165, 0.45);
  z-index: -1;
}
.title-hero__inner {
	padding-top:15px;
}
.title-hero__inner .h1 {
  font-size: 50px;
  font-weight: 400;
  text-align: center;
}
/* ---tile-hero-section---end */


/* ---txt-section--- */
.txt-section {
  padding: 55px 0;
  background: #f7f8fc;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.txt-section-no-shadow {
  padding: 45px 0;
}
.txt-section__inner {

}
.txt-section__content {
  max-width: 790px;
  margin: 0 auto;
}
.txt-section__content p {
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: center;
  font-family: var(--cairo);
}
.txt-section__content p:last-child {
  margin-bottom: 0;
}
/* ---txt-section---end */


/* ---common--- */
.h2 {
  font-size: 40px;
  font-weight: 450;
}
.cont-blk {
  display: flex;
  flex-direction: column;
}
.cont-blk--center {
  align-items: center;
  text-align: center;
}
/* ---common---end */


/* ---start-section--- */
.start-section {

}
.start-section__inner {

}

.start-sec__row {

}
.start__row__left {
  position: relative;
  background: #F4F5F9;
  z-index: 1;
}
.start__row__left .m-shape {
  position: absolute;
  bottom: 0;
  right: -200px;
}
.start__row__left .bg-shape {
	display:inline-block;
	background-image:url('../images/accueil_bg_logo.svg');
	background-position: center; /* Center the image */
	background-repeat: no-repeat;
	background-size: cover;
	width:445px;
	height:490px;
  position: absolute;
  bottom: 0;
  right: 170px;
  z-index: -1;
}
.start__row__right {
  padding: 150px 28px 50px;
  background: #0F5DCE;
  color: #fff;
}
.start__row__right__inner {
  width: 430px;
}
.start__row__right .h2 {
  margin-bottom: 80px;
  font-size:18px;
  font-weight:400;
}
.start__row__right .start__auth {
  border-left: 2px solid #fff;
  font-size: 14px;
  margin-left: 190px;
  padding-left: 11px;
  border-radius: 6px;
  line-height: 1.15;
  font-weight: 500;
}
/* ---start-section---end */


/* ---bring-section--- */
.bring-section {
  padding: 85px 0;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.bring-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:50px 0; 
}
.bring-section__title {
  margin: 0 0 25px;
  
}
.bring-section__title h2{
 font-size:30px;
}

.bring-section__title h3{
 margin-top:15px;
 font-size:25px;
 font-weight:400;
}

.bring__row {
  max-width: 1050px;
  --bs-gutter-x: 75px;
  --bs-gutter-y: var(--bs-gutter-x);
}
.bring-column {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bring-column h3 {
  font-size: 18px;
  font-weight: 700;
  line-height:1.2;
  font-family: var(--cairo);
  color: #0B203F;
}
.bring-column p {
  font-size: 16px;
  font-weight: 500;
  line-height:1.2;
  font-family: var(--cairo);
  color: #0B203F;
}
.bring-column .icon {
  margin-bottom: 25px;
  width: 90px;
  height: 90px;
}
.bring-column .icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
/* ---bring-section---end */


/* ---members-section--- */
.members-section {
  padding: 100px 0 140px;
}
.members-section__inner {

}
.members-section__title {
  margin: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.members_row {
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 50px;
  column-gap: 5%;
}
.member_single {
  width: 21%;
  border-bottom: 3px solid #1364E5;
  border-radius: 7px;
}
.member_single .img {
  width: 100%;
  border-radius: 5px;
}
/* ---members-section---end */



/* ---footer-section--- */
.footer-section {
  padding: 44px 0;
  background: #002C6D;
  color: #fff;
 

 
 width:100%;
 
 
}
.footer-section__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fs-menu {
  display: flex;
  gap: 3px;
}
.fs-menu li {
  
}
.fs-menu li a {
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: 0.3s;
}

.fs-menu li a:hover {
  background: #2caa4a;
  border-color: transparent;
}
 
 .fs-menu li a img{
	height:15px;
	width:15px;
 }
 
.copyright {
  font-size: 13px;
}

.logo-binome {
  width: 90px; /*69*/
  height: 30px; /*23*/
  border: 1px solid #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.logo-binome:hover {
  background: #ff6a48;
  border-color: transparent;
 }
 .logo-binome img{
  vertical-align:top;
}

/* ---footer-section---end */


/* ---faq-section--- */
.faq-section {
  padding: 60px 0 110px;
}
.faq-section__inner {

}
.faq-section__title {
  margin: 0 0 50px;
}

.faqs_wrapper {
  border-bottom: 2px solid #EAEAEA;
}
.single-faq {
  border-top: 2px solid #EAEAEA;
}
.single-faq__title {
  padding: 24px 62px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.single-faq__title .icon {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
}
.single-faq__title .icon .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.single-faq__title h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--theme__color1);
}
.single-faq__title .ind {
  margin-left: auto;
  font-size: 16px;
  color: var(--theme__color1);
  
}
.single-faq__title .ind i{
  font-size: 24px;
  margin-left:10px;
  vertical-align: -3px;
transition: 0.3s;
}
.single-faq__title:not(.collapsed) .ind i{
  transform: rotate(180deg);
}
.single-faq__body {

}
.single-faq__body__inner {
  padding: 0 100px 45px 160px;
}
.single-faq__body__inner li {
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: var(--cairo);
}
/* ---faq-section---end */

.elected-members_wrap.faqs_wrapper{
  border-bottom: none;
}
.elected-member.single-faq{
   border-top: none;
}
.elected-member .single-faq__title{
  padding: 0;
  align-items: center;
  gap: 0px;
}
.elected-member__tc__bd.single-faq__body__inner{
  padding: 0;
}



/* ---elected-section--- */
.elected-section {
  background: #F4F5F9;
  padding: 50px 0 115px;
}
.elected-section__inner {

}
.elected-section__title {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  margin-bottom: 53px;
}
.elected-section__title h5 {
  font-size: 16px;
  margin: 0 0 40px;
  line-height: 1.4;
  font-weight: 500;
  font-family: var(--cairo);
}
.elected-section__title h4 {
  font-size: 19px;
  font-weight: 500;
  font-family: var(--cairo);
}

.elected-members_wrap {
  gap: 14px;
  display: flex;
  flex-direction: column;
}
.elected-member {
	padding: 35px 75px 28px 74px;
	gap: 30px;
	background: #fff;
	border-radius: 12px;
	display: flex;
  align-items: flex-start;
}
.elected-member__image {
  width: 180px;
  border-bottom: 3px solid #1364E5;
  border-radius: 7px;
  flex-shrink: 0;
}
.elected-member__image .img {
 border-radius: 5px;
}
.elected-member__tc {
  padding: 15px 0;
  display:flex;
  flex-direction: column;
  flex:1;
}
.elected-member__tc__ttl {
  margin: 0 0 23px;
}
.elected-member__tc__ttl h3 {
  font-size: 27.88px;
  margin: 0 0 6px;
  font-weight: 500;
  color: var(--theme__color1);
}
.elected-member__tc__ttl .bdg {
  font-size: 15.18px;
  font-weight: 500;
  line-height: 1.1;
  border-radius: 5px;
  padding: 5px 12px 5px;
  background: #002C6D;
  color: #fff;
  display: inline-block;
  border:2px solid #002C6D;
}
.bdg2 {

    font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
  padding: 5px 12px 5px;
  display: inline-block;
  align-self: flex-start;
 border-radius: 5px;
  background:#1364E5;
  color: #fff;
  border:2px solid #1364E5;

  margin-top: 25px;
}
.elected-member__tc__bd p {
  font-size: 16px !important;
  font-weight: 500;
  font-family: var(--cairo)!important;
  line-height: 1.21;
}
.elected-member__tc__bd ul li {
  font-size: 16px !important;
  font-family: var(--cairo)!important;
  margin-left:25px !important;
  list-style-type: disc;
}
.elected-member__tc__bd ul li span{
  font-size: 16px !important;
  font-family: var(--cairo)!important;}


/* --realisations ---*/

.card-sections-title{
  font-size:1.5rem;font-weight:600;
  margin-top:50px;
  margin-bottom:50px;
  text-align: center;
}
.card-sections-subtitle{
  font-size:1.3rem;
  font-weight: 600;
  margin-top:20px;
  margin-bottom:20px;
  text-align: center;
}
  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
  }
  

  .card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width:100%;
    margin-bottom:5px;
  }

  .bonus-cards .card{
    border: 2px dotted #0f5dce;
  }

  .card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: #333;
    font-weight:500;
  }

   .bonus-cards .card h3{
    font-weight:400;
     font-size: 1rem;
  }

  .card .theme {
    font-weight: bold;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
  }

  .card .etat {
    font-weight: 400;
    margin: 0.5rem 0;
    font-size: 1rem;
  }

  .card .justification {
    font-size: 0.9rem;
    color: #444;
  }





/* ----contact----*/

.mail-link{
	color:#0f5dce; 
	
	
}
.mail-link:hover{
		color:#2caa4a;
	}

.social-link{
	margin-top:8px;
	display:inline-block;
	/*width:30px;*/
	padding:10px 15px 10px 12px;
	background-color:#0f5dce; 
	border-radius:5px;
	color:#fff;
	transition: 0.3s;
	
}
.social-link:hover{
	background-color:#2caa4a;
		color:#fff;
}
.social-link img{
	width:24px;
	height:24px;
	margin-right:15px;
}



/* ----contact---- end*/