@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700; 1 900&display=swap');
    
*{
  
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'roboto', sans-serif;
    scroll-behavior: smooth;
}


.home .carousel-item{
	min-height: 100vh;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.home .carousel-item:before{
	content: '';
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.4),  #00a8ff);
	z-index: -1;
}
.home .carousel-item .container{
	position: absolute;
	left: 50%;
	top:50%;
	transform: translate(-50%,-50%);
	text-align: center;
}

.home .carousel-item h2{
	font-size: 80px;
  font-style: italic;
  font-weight: 600;
	color: #ffffff;
	margin:0 0 10px;
	opacity: 0;
}
.home .carousel-item p{
	font-size: 40px;
	margin:0;
	color: #eeeeee;
	opacity:0;
}


.home .carousel-item.active h2{
	animation: fadeInLeft 0.5s ease forwards;
}
.home .carousel-item.active p{
	animation: fadeInRight 0.5s ease forwards;
}

@keyframes fadeInLeft{
	0%{
		opacity: 0;
		transform: translateX(-30px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px);
	}
}
@keyframes fadeInRight{
	0%{
		opacity: 0;
		transform: translateX(30px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px);
	}
}

.home .carousel-controls{
	position: absolute;
	left: 50%;
	bottom: 40px;
	z-index: 10;
	transform: translateX(-50%);
}

.home .carousel-indicators{
	position: relative;
	margin:0;
}

.home .carousel-indicators li{
	height: 70px;
	width: 70px;
	margin:0 5px;
	border-radius: 50%;
	background-position: center;
	background-size: cover;
	border:3px solid transparent;
	transition: all 0.3s ease;
}
.home .carousel-indicators li.active{
	border-color: #ffffff;
	transform: scale(1.2);
}

.home .carousel-control-next, 
.home .carousel-control-prev{
	height: 60px;
	width: 60px;
	opacity: 1;
	z-index: 3;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	transition: all 0.3s ease;
}
.home .carousel-control-next:hover, 
.home .carousel-control-prev:hover{
   box-shadow: 0 0 10px #ffffff;
}
.home .carousel-control-next img, 
.home .carousel-control-prev img{
   width: 30px;
}
.home .carousel-control-next{
	right: -90px;
}
.home .carousel-control-prev{
	left: -90px;
}

/*responsive*/
@media(max-width: 767px){
  .home .carousel-item {
    top: 40px;                   /* Décalage pour éviter le header fixe */
  }
  .home .carousel-control-next, 
  .home .carousel-control-prev{
  	display: none;
  }
  .home .carousel-indicators li{
    
  	height: 60px;
  	width: 60px;
  }
  .home .carousel-item h2{
  	font-size: 30px;
  }
  .home .carousel-item p{
  	font-size: 20px;
  }
}

/*Programme*/

.programe{
	overflow: hidden;
	/*padding: 60px 0;*/
	background:#dcdde1 ;
	white-space: nowrap;
	position: relative;
}
.programe:before,
.programe:after{
	position: absolute;
	top:0;
	width: 250px;
	height: 100%;
	content:" ";
	z-index: 2;

}
.programe:before{
	left: 0;
	background: linear-gradient(to left, rgba(255,255,255, 0));
}
.programe:after{
	right: 0;
	background: linear-gradient(to right, rgba(255,255,255, 0));
}
@keyframes programme {
	from{ transform: translateX(0);}
	to{transform: translateX(-100%);}
}
.programe:hover .logo-slide{
	animation-play-state: paused;
}
.logo-slide{
	display: inline-block;
	
	animation: 30s programme infinite linear;
}
.logo-slide .imgage-prog{
	height: 165px;
	margin: 0 40px;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

a{
	color:#4cd137;
	text-decoration: none;
}
a:hover{
	color: #4cd137;
	text-decoration: none;
}
#header{
transition: all 0.5s;
z-index: 997;
transition: all 0.5s;
top: 20px;
}

/*a revoir*/
#header .header-container{
	background: #fff;
}
#header .header-scrolled{
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0,0,0, 0.1);
	top: 0;
}
#header .logo{
	overflow: hidden;
	padding: 16px 30px 12px 30px;
	background: #4cd137;
}

#header .logo h1{
	font-size: 26px;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	font-family: "Poppins",sans-serif;
}
#header .logo h1 a,
#header .logo h1 a:hover{
	color: #fff;
	text-decoration: none;
}

@media(max-width: 992px){
 
	#header{
		box-shadow: 0px 2px 15px rgba(0,0,0, 0.1);
		top: 0;
		background: #4cd137;
	}
	#header .header-scrolled,
	#header .header-container{
		background: #4cd137;
	}
	#header .logo{
		padding-left: 0;
	}
	#header .logo h1{
		font-size: 25px;
	}

}
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Pc Navigation 
  */
.navbar{
	padding: 0;
}

.navbar ul{
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}
.navbar li{
	position: relative;
}
.navbar a,
.navbar a:focus{
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0 10px 30px;
color:#36343a;
transition: 0.3s;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
font-family: "roboto",sans-serif;
white-space: nowrap;
transition: 0.3s;
}
.navbar a i,
.navbar a:focus i{
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a{
	color: #4cd137;
}
.navbar .getstarted,
.navbar .getstarted:focus{
	background:#b81702 ;
	padding: 10px 25px;
	margin-left: 30px;
	margin-right: 15px;
	border-radius: 50px;
	color: #fff;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover{

	color: #fff;
	background: #b81702;

}

/*dropdown menu a rajouter*/


.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    font-weight: 500;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #009970;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }


 /**
  * Mobile Navigation 
  */

.mobile-nav-toggle{

	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media(max-width: 991px){

	.mobile-nav-toggle{
		display: block;
	}
	.navbar ul{
		display: none;
	}

}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(29, 28, 31, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #36343a;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #009970;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #009970;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }

  /* A propos**/

  .mission{
    width: 100%;
    padding: 70px 0;
    margin-left: -15px;
}
.titre-text{
    padding: 20px;
    text-align: center;
    margin: 0 7px;
}
.titre-text p{
    margin: auto;
    font-size: 30px;
    color: #009970;
    font-weight: bold;
    opacity: 0.5px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.titre-text p::after{
    content: '';
    background: linear-gradient( #fbff12ee, #fff);
    height: 40px;
    width: 60px;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(-10deg);
    border-bottom-right-radius: 40px;
    border-top-left-radius: 40px;
}
/*.titre-text h1{
    font-size: 50px;
}
.mission-boite{
    width: 80%;
    margin: auto;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    text-align: center;
}
*/

.mission-boite{
  width: 70%;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
 
  
}


.mission-boite .card {
  position: relative;
  border: none;
}

.mission-boite .card .face{
  width:300px;
  height: 270px;
  transition:.4s;
  
}



.mission-boite .card .face.face1{
  position: relative;
  background:#00a7ff;
  /*display: flex;*/
  justify-content: center;
 
  align-content:center;
  align-items: center;
  z-index: 1;

  transform: translateY(100px);
}


.mission-boite .card:hover .face.face1{
  transform: translateY(0);
 box-shadow:
    inset 0 0 60px whitesmoke,
    inset 20px 0 80px #4cd137,
    inset -20px 0 80px #00a7ff,
    inset 20px 0 300px #4cd137,
    inset -20px 0 300px #00a7ff,
    0 0 50px #fff,
    -10px 0 80px #4cd137,
    10px 0 80px #00a7ff;
   
}


.mission-boite .card .face.face1 .content{
  opacity: 2;
  transition:  0.5s;
  text-align: center;

}

.mission-boite .card:hover .face.face1 .content{
  opacity: 1;
 
}

.mission-boite .card .face.face1 .content i{
  font-size: 3em;
  color:white;
  display: inline-block;
   
}

.mission-boite .card .face.face1 .content h3{
  font-size: 1.5em;
  color: #fff;
  text-align: center;
  
}

.mission-boite .card .face.face1 .content a{
   transition: .5s;
}

.mission-boite .card .face.face2{
   position: relative;
   background: whitesmoke;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0,0,0,.8);
  transform: translateY(-100px);
}

.mission-boite .card:hover .face.face2{
    transform: translateY(0);


}

.mission-boite .card .face.face2 .content p, a{
  font-size: 10pt;
  margin: 0 ;
  padding: 0;
  color:#333;
}

.mission .card .face.face2 .content a{
  text-decoration:none;
  color: black;
  box-sizing: border-box;
  outline : 1px dashed #333;
  padding: 10px;
  margin: 15px 0 0;
  display: inline-block;
}

.mission-boite .card .face.face2 .content a:hover{
  background: #333 ;
  color: whitesmoke; 
  box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
}


/*.mission-boite{
    flex-basis: 50%;
}*/
.im-mission{

    background: linear-gradient(rgba(0, 0, 0, 0.4),  #00a8ff), url(../img/pgk-Jaune.jpg) center/cover  no-repeat ;
    height: 500px;
  
    flex-basis: 40%;
    margin: auto;
    border-radius: 10px;
}

/*.missions h1{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color:#32CD32 ;
}
.description{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}
.mission_icon{
  
    height: 250px;
    font-size: 20px;
    line-height: 50px;
    border-radius: 8px;
    color:#32CD32;
    border-left: 5px solid #32CD32;
    
}
.mission-text{
    text-align: initial;
    padding: 0 20px;
}*/
@media screen and (max-width:770px){
   
    .titre-text h1{
        font-size: 35px;
    }
    .missions{
        flex-basis: 100%;
    }
    .im-mission{
        flex-basis: 100%;
       
    }
    
}

.service{
  width: 100%;
  padding: 70px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.4),  #32CD32), url(../img/background-book.jpg) center/cover  no-repeat ;
  /*#efebc2;*/

}
.fliter li {
cursor: pointer;
display: inline-block;
padding: 8px 16px 8px 16px;
font-size: 14px;
font-weight: 500;
line-height: 1;
text-transform: uppercase;
color: #444444;
margin-bottom: 5px;
transition: all 0.3s ease-in-out;
border-radius: 50px;
font-family: "Poppins", sans-serif;

}

.service .fliter li:hover,
.service .fliter li.filter-active {
color: #fff;
background: #32CD32;
}

.service .fliter li li:last-child {
margin-right: 0;
}

.service_boite{
  width: 80%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

/*25% pour un disposition de 4 rangées*/
.service_unique{
  flex-basis: 25%;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 8px;
  position: relative;
  color: #fff;
 
}
.service_unique img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  
}

.text_surv{
  width: 250px;
  height: 250px;
  position: absolute;
  top: 0;
  left: 9%;
  border-radius: 8px;
  cursor: pointer;
  background: linear-gradient(rgba(231, 203, 45, 0.6), #babcbd);
  opacity: 0;
  transition: 0.6s ease-in;

}
.service_unique:hover .text_surv{
  opacity: 1;
}

.descrip1{
  width: 85%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  transition: 0.6s ease-in;
  opacity: 0;
  
}
.descrip1 p{
  text-align: center;
  font-size: 1.2rem;
  color: #000;

}

.service_unique:hover .descrip1{
  opacity: 1;
  bottom: 40%
}
hr{
  background: #fff;
  height: 2px;
  border: 0;
  margin: 15px auto;
  width: 60%;
}
@media screen and (max-width:770px) {

  .service{
    flex-basis:100%;
 
}
  .service_unique{
      flex-basis:100%;
      margin-bottom: 30px;
   
  }

  .pdf{

    left: 250px;
    bottom: 300px;

  }
 

  .descrip1 p{
      font-size: 15px;
      right:-27% ; 
  }

  hr{
      margin: 5px auto;  
  }

.service_unique:hover .descrip1{
  bottom: 25%
}
.text_surv{
  
  left: 10%;

}

}


/***Ouvrage***/

.Ouvrage{
  width: 100%;
  padding: 70px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.4),  #32CD32), url(../img/background-book.jpg) center/cover  no-repeat ;
  /*#efebc2;*/
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 40px;
}

/* .img-card{
    width: 40%;
} */

.img-card img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 4px;
  height: 520px;
  object-fit: cover;
}

.small-Card {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 15px;
  gap: 12px;
}

.small-Card img {
  width: 104px;
  height: 104px;
  border-radius: 4px;
  cursor: pointer;
}

.small-Card img:active {
  border: 1px solid #17696a;
}

.sm-card {
  border: 2px solid darkred;
}

/*detail Ouvrage*/

.DetatilOuvrage{
  width: 100%;
  padding: 70px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.4),  #c4f1c4) ;
  /*#efebc2; url(../img/background-book.jpg) center/cover  no-repeat*/
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 40px;
}

.product-info{
  width: 60%;
 
}
.product-info h3 {
 text-align: center;
  font-size: 32px;
  font-family: Lato;
  font-weight: 600;
  line-height: 130%;
}

.product-info h5 {
  font-size: 24px;
  font-family: Lato;
  font-weight: 500;
  line-height: 130%;
  color: #ff4242;
  margin: 6px 0;
}

.product-info del {
  color: #a9a9a9;
}

.product-info p {
  color: #424551;
  margin: 15px 0 ;
  width: 100%;
  
  font-size: 1.3rem;
}

.sizes p {
  font-size: 22px;
  color: black;
}

.size-option {
  width: 200px;
  height: 30px;
  margin-bottom: 15px;
  padding: 5px;
}

.quantity input {
  width: 51px;
  height: 33px;
  margin-bottom: 15px;
  padding: 6px;
}

button {
  background: #17696a;
  border-radius: 4px;
  padding: 10px 37px;
  border: none;
  color: white;
  font-weight: 600;
}

button:hover {
  background: #ff4242;
  transition: ease-in 0.4s;
}



hr {
  color: #787a80;
  width: 58%;
  opacity: 0.67;
}

.pagination {
    color: #787a80;
    margin: 15px 0;
    cursor: pointer;
}

@media screen and (max-width: 576px) {
  .DetatilOuvrage{
    flex-direction: column;
    padding: 0  15px;
  }
  .small-Card img{
    width: 80px;
  }
  .product-info{
    width: 100%;
  }
  .product-info p{
   
    font-size: 1.3rem;
    width: 100%;
    margin-left: 2px;
  }


  .delivery{
    width: 100%;
  }

  hr{
    width: 100%;
  }
}

/*********Mediatheque****************/
.mediatheque{
  width: 100%;
  padding: 70px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.4),  #00a8ff);
  /*url(../img/background-book.jpg) center/cover  no-repeat ;
  /*#efebc2;*/

}
.mediatheque .fliter-media li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  /*color: #fff;*/  
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  
  }

.mediatheque .fliter-media li:hover,
.mediatheque .fliter-media li.fliter-media-active {
color: #fff;
background: #00a8ff;
}

.mediatheque .fliter-media li li:last-child {
  margin-right: 0;
  }
  
  .media_boite{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  /*25% pour un disposition de 4 rangées*/
  .media_unique{
    flex-basis: 25%;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 8px;
    position: relative;
    color: #fff;
   
  }
  .media_unique img {
    /*width: 100%;
    height: 100%;*/
    border-radius: 8px;
    
  }

  .img-video-principal{
    width:550px;
    height:350px;
  }

  .play-btn{
    width: 100px;
    position: absolute;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
    transition: .6s ease-in-out;
}
.cat-video{
  width: 85%;
    position: absolute;
    border-radius: 30px;
    left: 50%;
    top: 90%;
    transform: translate(-50%,-50%);
}
.cat-video p{

  font-style: italic;
  font-weight: bolder;
  text-align: center;
  font-size: 1rem;
  width: 100%;
  background-color:#32CD32 ;
}
.lien-video{

  transform: translate(-50%,-50%);
}
.play-btn:hover{
  box-shadow: 0 5px 10px 3px #1c1c1d;
  border-radius: 50%;
  
}
 .play-btn-sm{
  width: 50px;
  
}

/*********VIDEO**/

.row{

  align-items: center;
  flex-wrap: wrap;
}
.col{
  flex-basis: 50%;
  min-width: 250px;
}

.small-img-row{
  display: flex;
  background: #efefef;
  margin: 20px 0;
  margin-left: 55px;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  width: 85%;
}
.small-img{
  position: relative;
}
.small-img img{
  width: 60px;
}
.small-img-sm{
  width:160px; 
  height:160px;
}
.small-img-row p{
  width: 100%;
  margin-left: 20px;
  color: #5e5959;
  line-height: 22px;
  font-size: 1rem;
}

.video-player{
  width: 77%;
  height: 30%;
  position: absolute;
  left: 50%;
  top: 40%;
 
  transform: translate(-50%,-50%);
  cursor: pointer;
  display: none;
}
video:focus{
  outline: none;
}
.close-btn{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  cursor: pointer;
}


  @media screen and (max-width:770px) {

    .mediatheque{
      flex-basis:100%;
   
  }
  .media_boite{
    flex-basis:100%;
    margin-bottom: 30px;
   
 
}
    .media_unique{
        flex-basis:100%;
        margin-bottom: 30px;
    }
    
    .row{
      flex-basis:100%;
     
    }
    .small-img-row{
      width: 100%;

    }
    .small-img{
      
      width:150px;
      height:150px;
    }
    
      
    
    .img-video-principal{
      width:350px;
      height:250px;
    }
    .small-img-row{
      font-size: 0.5rem;
      text-align: center;
      width: 100%;
      margin-left: 25px;
    }
    .col{
      flex-basis: 100%;
      margin-left: -30px;
    }
    .video-player{
      top:75%;
      /*bottom: 50%;*/
      width:100%;
      height:75%;
     
    }
  
  
  }



/*Temoignages*/
.temoignage{
  width: 100%;
  padding: 70px 0;
}

.media_boite-temoignage{
  width: 80%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*25% pour un disposition de 4 rangées*/
.media_unique-temoignage{
  flex-basis: 25%;
  text-align: center;
  padding: 1px 0 2px 4px;
  margin-bottom: 20px;
  border-bottom: 8px;
  position: relative;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 10px 3px #00a8ff;
  
}
.media_unique-temoignage img {
  /*width: 100%;
  height: 100%;*/
  border-radius: 8px;
  
}

.video-player-temoignage{
  width: 70%;
  height: 10%;
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%,-50%);
  cursor: pointer;
  display: none;
}
/*Effet au survol*/
.temoignage-simple:hover{
  transform: translate(-10px);
}

.col-temoignage{
  flex-basis: 100%;
  min-width: 250px;
}

@media screen and (max-width:770px) {
  .temoignage-simple{
      flex-basis: 100%;
      width: 50%;
  }
  .temoignage-boite p{
      font-size: 12px;
  }
  .info-util h4{
     font-size: 12px;
  }
  .info-util .fa-brands{
      font-size: 16px;
  
  }
  .img-temoignage{
    width: 100%;
    left: 15px;
  }

  .video-player-temoignage{
    top:60%;
    /*bottom: 50%;*/
    width:100%;
    height:75%;
   
   
  }
  .col-temoignage{
    width: 100%;
    flex-basis: 100%;
    margin-left: -30px;
  }

}




/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio{

  width: 100%;
  padding: 100px 0;

}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #009970;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(54, 52, 58, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(54, 52, 58, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #00cc95;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #009970;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #009970;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(54, 52, 58, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*****Article******/




/***** Pied de page *********/

.contact{
  padding: 100px 0 20px;
  background: #efebc2;
  position: relative;
}
.pied-page{
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pied-g, .pied-d{
  flex-basis: 45%;
  padding: 10px;
  margin-bottom: 20px;
} 

.pied-d{
  text-align: center;
}
.pied-page h1{
  margin: 10px 0;
}
.pied-g .fa-regular{

  margin-right: 10px;
  font-size: 20px;
  color: #32CD32;

}
.pied-d .fa-solid {
  margin-left: 10px;
  font-size: 20px;
  color: #32CD32;

}
.img-footer{
  max-width: 470px;
  opacity: 0.1;
  position: absolute;
  left: 55%;
  top: 30%;
  transform: translate(-50%, -50%);
  transition: 0.6s ease-in;
}
.img-footer:hover{
  transform: translate(-50%);
}

.reseau-sociaux{
  text-align: center;
}
.reseau-sociaux .fa-brands{
  height: 40px;
  width: 40px;
  font-size: 20px;
  line-height: 40px;
  border: 1px solid #32CD32;
  cursor: pointer;
  transition: 0.6s ease-in;
  color: #32CD32;
}
.reseau-sociaux .fa-brands:hover{
  background: #32CD32;
  color: #fff;
  transform: translateY(-10px);
}

.reseau-sociaux{
  font-size: 12px;
  margin-top: 20px;
}

@media screen and (max-width:770px) {

  .pied-g, .pied-d{
      flex-basis: 100%;
      align-items: center;
  }
  .pied-g{
      text-align: center;
  }
  .pied-d{text-align: center;
  }

  .img-footer{
      max-width: 300px;
  }
}

.point-noir{
  width:40%;
  height:40px ;
  margin: auto;
  border: solid 1px #000;
  border-radius: 5px;
  background: rgb(223, 186, 186);
  text-align: center;
}
.boutonPosit{
  text-align: center;
  margin-top: 40px;
}
/*login page**/

.card-login {
  max-width: 25rem;
}

.card-register {
  max-width: 40rem;
}

/*****A propo*******/



.titre-text{
  padding: 20px;
  text-align: center;
  margin: 0 7px;
}
.titre-text p{
  margin: auto;
  font-size: 30px;
  color: #009970;
  font-weight: bold;
  opacity: 0.5px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.titre-text p::after{
  content: '';
  background: linear-gradient( #fbff12ee, #fff);
  height: 40px;
  width: 60px;
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
  transform: rotate(-10deg);
  border-bottom-right-radius: 40px;
  border-top-left-radius: 40px;
}

/*--------------------------------------------------------------
# Story Intro
--------------------------------------------------------------*/
/* ================= SECTION ABOUT ================= */
.about {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(rgba(255,255,255,0.6), #5ee25e);
}

/* TITRES */
.story_icon {
  background: #f8fff8;
  padding: 20px;
  text-align: center;
  border-left: 5px solid #32CD32;
  border-right: 5px solid #32CD32;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* LISTES */
.story-intro ul,
.featured-members ul {
  list-style: none;
  padding: 0;
}

.story-intro ul li,
.featured-members ul li {
  padding-bottom: 10px;
}

.story-intro ul i,
.featured-members ul i {
  color: #32CD32;
  margin-right: 8px;
}

/* ================= ANIMATION SCROLL ================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .story_icon {
    width: 100%;
  }

  .fs-5 {
    font-size: 16px !important;
    line-height: 1.8;
  }

  video {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------*/

.soutenir-section {
    position: relative;
    
    padding: 100px 0;
    color: #fff;
}

.soutenir-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 60, 50, 0.85);
}

.soutenir-section .container {
    position: relative;
    z-index: 2;
}

.soutenir-section .title {
    font-size: 36px;
    font-weight: 700;
}

.soutenir-section .subtitle {
    font-size: 18px;
    margin-top: 10px;
}

.don-box {
    border: 2px solid #d4b11e;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.don-box img {
    max-width: 80px;
    margin-bottom: 15px;
}

.don-box p {
    font-size: 16px;
}

.bank-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bank-box img {
    max-height: 40px;
}

.btn-offrande {
    background: #d4b11e;
    color: #fff;
    padding: 18px 35px;
    font-size: 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-offrande:hover {
    background: #b89a18;
    color: #fff;
}

.prefacture {
    display: flex;
    justify-content: center;
    padding: 40px 15px;
}

.prefacture-card {
    background: #fff;
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 1, 0.548);
}

.prefacture-header {
    text-align: center;
    margin-bottom: 20px;
}

.prefacture-header .logo {
    max-width: 90px;
    margin-bottom: 10px;
}

.prefacture-header h2 {
    margin: 5px 0;
    font-weight: bold;
}

.prefacture-section {
    margin-bottom: 25px;
}

.prefacture-section h4 {
    margin-bottom: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.prefacture-table {
    width: 100%;
    border-collapse: collapse;
}

.prefacture-table td {
    padding: 10px 0;
}

.prefacture-table .total td {
    font-weight: bold;
    border-top: 1px solid #ddd;
}

.paiement-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-paiement {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn-paiement img {
    height: 30px;
}

.btn-paiement.wave {
    background: #1dcad3;
}

.btn-paiement.orange { 
    background: #ff7900;
}

.btn-paiement.mtn {
    background: #ffcc00;
    color: #000;
}

