a {
  text-decoration: none !important;
}
p{
  font-weight: 600;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: #513cc4;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  /* opacity: 0; */
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #513cc4;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color:#ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #513cc4, transparent 20%);
  color:#ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #5b5c56;
  background-color: #ffffff;
  padding: 10px ;
  scroll-margin-top: 118px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# programme-section
--------------------------------------------------------------*/

.programme-section {
  z-index: 2;
  background: rgba(255,245,4,255);
}

.programme-section .section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.programme-section .section-title h2 {
  color: #513cc4;
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.programme-section .section-title span {
  color: #513cc4;
  margin: 10px 0 0 0;
  font-size: 18px;
  font-weight: 700;
}

.programme-section .img-programme {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.programme-section .img-programme img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  border: solid 4px blue;
  min-width: 300px; /* Set a minimum width to prevent excessive shrinking */
}

.programme-section .img-programme span {
  position: absolute;
  top: 50%; /* Adjust this value to position the text precisely */
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2em;
  background-color: rgba(33, 37, 41, 0.5);
  color: #fff;
  border-radius: 30px;
  z-index: 3;
  padding: 12px;
}

@media (max-width: 575px) {
  .programme-section .section-title h2 {
    font-size: 30px;
  }

  .programme-section .img-programme span {
    font-size: 12px;
    padding: 10px;
  }
  
  .programme-section .img-programme img {
    min-height: 400px;
    min-width: 370px; /* Set a smaller minimum width for very small screens */
  }
}

@media (max-width: 320px) {
  .programme-section .section-title h2 {
    font-size: 25px;
  }

  .programme-section .img-programme span {
    font-size: 12px;
  }

  .programme-section .img-programme img {
    min-height: 250px;
    min-width: 300px; /* Set a smaller minimum width for very small screens */
  }
}


.page-programme-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.page-programme-section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

/*--------------------------------------------------------------
# page-activite-section
--------------------------------------------------------------*/

.page-activite-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.page-activite-section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

.services .service-item {
  text-align: center;
  border: 1px solid color-mix(in srgb, #444444, transparent 85%);
  padding: 10px 10px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #513cc4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: #106eea;
}

.services .service-item:hover h3 {
  color: #106eea;
}

.page-details-activite-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.page-details-activite-section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

.details-activite {
  background-color: color-mix(in srgb, #106eea, transparent 96%);
}

.details-activite .details-activite-titre h3{
  text-align: center;
}

.details-activite .details-activite-titre h3 {
  font-weight: 700;
  font-size: 26px;
  color: #513cc4;
  text-align: center;
}

.details-activite .details-activite-titre p {
  font-weight: 600;
  font-size: 16px;
  color: #513cc4;
}

.details-activite-img img{
  width: 100%;
  height: 600px; 
}

/*--------------------------------------------------------------
# type-membre Section
--------------------------------------------------------------*/

.type-membre-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.type-membre-section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

.logo-type-membre{
  text-align: center;
  background-color: color-mix(in srgb, #106eea, transparent 96%);
}

.logo-type-membre img{
  height: 100%;
  width: 100px;
}

.avantage {
  background-color: color-mix(in srgb, #106eea, transparent 96%);
}

.avantage .avantage-titre h3{
  text-align: center;
}

.avantage .avantage-titre h3 {
  font-weight: 700;
  font-size: 26px;
  color: #513cc4;
  text-align: center;
}

.avantage .avantage-titre p {
  font-weight: 600;
  font-size: 16px;
  color: #513cc4;
}

.avantage .avantage-content ul {
  list-style: none;
  padding: 0;
}

.avantage .avantage-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.avantage .avantage-content ul li:first-child {
  margin-top: 35px;
}

.avantage .avantage-content ul img {
  background: #fff;
  box-shadow: 0px 6px 15px color-mix(in srgb, #106eea, transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
}

.avantage .avantage-content ul h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.avantage .avantage-content ul p {
  font-size: 15px;
  font-weight: 600;
}

.avantage .avantage-content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# equipe Section
--------------------------------------------------------------*/

.team {
  background-color: color-mix(in srgb, #513cc4, transparent 96%);
  padding: 40px 0;
}

.team .swiper-wrapper {
  height: auto;
}

.team .swiper-pagination {
  margin-top: 20px;
  position: relative;
  color: #513cc4 !important;
}

.team .swiper-pagination-bulle {
  color: #513cc4 !important;
}

.team .team-member {
  box-shadow: 0px 2px 15px color-mix(in srgb, #444444, transparent 90%);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, #000, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: #513cc4;
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  background-color: #fff;
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, #444444, transparent 20%);
}

.team .team-member .member-info hr {
  color: #513cc4 !important;
  opacity: 1 !important;
  height: 2px;
  border: none;
  background-color: #513cc4;
  margin: 10px auto;
}

.team .team-member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: color-mix(in srgb, #444444, transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, #444444, transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

@media (max-width: 575px) {
  .team .swiper-wrapper {
    margin: 0 auto;
    padding: 0 15px;
  }

  .team .team-member .member-info {
    padding: 15px 10px;
  }

  .team .team-member .member-info h4 {
    font-size: 16px;
  }

  .team .team-member .member-info hr {
    width: 80%;
  }

  .team .team-member .social a{
    margin: 0 10px;
  }

  .team .team-member .member-info span {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .team .swiper-wrapper {
    margin: 0 auto;
    padding: 0 10px;
  }

  .team .team-member .member-info {
    padding: 10px 5px;
  }

  .team .team-member .member-info h4 {
    font-size: 14px;
  }

  .team .team-member .member-info hr {
    width: 90%;
  }

  .team .team-member .member-info span {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# page-equipe Section
--------------------------------------------------------------*/

.page-equipe-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.page-equipe-section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

.page-equipe-section {
  position: relative; /* Ensure children are positioned correctly */
  background: url("../img/Les_inseparables_president.png") no-repeat center center;
  background-size: cover;
  padding: 60px 0; /* Add some padding to the section */
  z-index: 2; /* Ensure it is above the background */
}

.page-equipe-section::before {
  content: ""; /* Generate the pseudo-element */
  position: absolute; /* Position it absolutely */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9); /* Use rgba for transparency */
  z-index: -1; /* Ensure it is below the content but above the background */
}

.page-equipe-section .section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.page-equipe-section .section-title h2 {
  color: #513cc4;
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-equipe-section .section-title span {
  color: #513cc4;
  font-size: 18px;
  font-weight: 700;
}

.page-equipe-texte p {
  color: #513cc4;
  font-size: 1.1em;
  font-weight: 500;
  margin-left: 10px;
}

.page-equipe-img img {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  height: 500px;
  width: 100%; /* Ensure the image covers the column */
  object-fit: cover; /* Maintain aspect ratio and cover the area */
}


/*--------------------------------------------------------------
# gouvernance-section
--------------------------------------------------------------*/

.gouvernance-section {
  background-color: gray;
  padding: 60px 0; /* Add some padding to the section */
}

.gouvernance-section .section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.gouvernance-section .section-title h2 {
  color: #513cc4;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.gouvernance-section .section-title p {
  margin-top: 20px; 
  color: #513cc4;
  font-size: 18px;
  font-weight: 700;
}

.gouvernance-img {
  position: relative;
  height: 100%; /* Ensure the column takes the full height */
  overflow: hidden; /* Hide any overflow */
}

.gouvernance-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire div */
  display: block; /* Remove default inline space */
}

/*--------------------------------------------------------------
# page-apropos-section
--------------------------------------------------------------*/

.page-apropos-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.page-apropos-section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

.apropos {
  background-color: color-mix(in srgb, #513cc4, transparent 96%);
}

.apropos .apropos-content h2 {
  text-align: center;
  font-weight: bold;
  color: #513cc4;
  margin-bottom: 30px;
  font-size: 40px;
}

.apropos .apropos-content h5 {
  text-align: center;
  font-weight: 650;
  color: #513cc4;
  margin-bottom: 30px;
}

.apropos-img img {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  height: 500px;
  width: 100%; /* Ensure the image covers the column */
  object-fit: cover; /* Maintain aspect ratio and cover the area */
}

/*--------------------------------------------------------------
# page-mission-section
--------------------------------------------------------------*/

.page-mission-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.page-mission-section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

.mission {
  padding: 10px;
  background-color: color-mix(in srgb, #513cc4, transparent 96%);
}

.mission .mission-content h2 {
  text-align: center;
  font-weight: bold;
  color: #513cc4;
  margin-bottom: 30px;
  font-size: 40px;
}

.mission .mission-content h5 {
  text-align: center;
  font-weight: 650;
  color: #513cc4;
  margin-bottom: 30px;
}

/* Styling for mission images */
.mission-img img {
  border-radius: 10px;
  height: 500px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Additional styling for the overall layout */
.mission .equipe-texte p {
  margin-bottom: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# page-vision-section
--------------------------------------------------------------*/

.page-vision-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.page-vision-section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

.vision {
  padding: 10px;
  background-color: color-mix(in srgb, #513cc4, transparent 96%);
}

.vision .vision-content h2 {
  text-align: center;
  font-weight: bold;
  color: #513cc4;
  margin-bottom: 30px;
  font-size: 40px;
}

.vision .vision-content h5 {
  text-align: center;
  font-weight: 650;
  color: #513cc4;
  margin-bottom: 30px;
}

/* Styling for mission images */
.vision-img img {
  border-radius: 10px;
  height: 500px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Additional styling for the overall layout */
.vision .equipe-texte p {
  margin-bottom: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Montserrat",  sans-serif;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, #444444, transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #513cc4;
}
/*--------------------------------------------------------------
# page-analyse-section
--------------------------------------------------------------*/

.page-analyse-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.page-analyse-section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

.analyse .section-title  {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.analyse .section-title p {
  color: #222222;
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: #222222;
}

.analyse .section-title p .description-title {
  color: #513cc4;
}

.analyse {
  background-color: color-mix(in srgb, #106eea, transparent 96%);
}

.analyse .analyse-container .analyse-item {
  background-color: #fff;
  position: relative;
  padding: 20px; 
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, #444444, transparent 85%);
  border-radius: 5px;
  overflow: hidden;
  height: 70px; /* Set a smaller height when closed */
  transition: height 0.3s ease-in-out;
}

.analyse .analyse-container .analyse-item:last-child {
  margin-bottom: 0;
}

.analyse .analyse-container .analyse-item h3 {
  color: #513cc4;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.analyse .analyse-container .analyse-item h3:hover {
  color: #695ac2;
}

.analyse .analyse-container .analyse-item .analyse-content {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s ease-in-out;
}

.analyse .analyse-container .analyse-item .analyse-content p {
  font-weight: 600;
  margin-bottom: 0;
  overflow: hidden;
}

.analyse .analyse-container .analyse-item .analyse-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.analyse .analyse-container .analyse-active {
  background-color: color-mix(in srgb, #106eea, transparent 60%);
  border-color: #106eea;
  color: #fff;
}

.analyse .analyse-container .analyse-active h3 {
  color: #513cc4;
}

.analyse .analyse-container .analyse-active .analyse-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.analyse .analyse-container .analyse-content .col-md-6 {
  display: flex;
  align-items: center;
  padding: 10px;
}

.analyse .analyse-container .analyse-content img {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.analyse .analyse-container .analyse-active .analyse-toggle {
  transform: rotate(90deg);
  color: #513cc4;
}

.analyse .analyse-container .analyse-item.analyse-active {
  height: auto; /* Allow the height to expand automatically when active */
}


/*--------------------------------------------------------------
# communaute-section
--------------------------------------------------------------*/

.communaute-section {
  background-color: rgba(255, 245, 4, 255);
  position: relative;
  z-index: 2; 
}

.communaute-section .section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.communaute-section .section-title h2 {
  color: #513cc4;
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.communaute-section .section-title span {
  color: #513cc4;
  font-size: 18px;
  font-weight: 700;
}

.communaute-section .img-container{
  position: relative;
  text-align: center;
}

/* .communaute-section .img-container img {
  width: 100%;
  height: 75vh;
  border-radius: 30px;
  position: relative;
  z-index: 3; 
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3); 
} */

/* @media (max-width: 575px) {
  .communaute-section .img-container img {
    min-height: 200px;
    min-width: 370px;
  }
}

@media (max-width: 320px) {

  .communaute-section .img-container img {
    min-height: 100px;
    min-width: 100px; 
  }
} */


.communaute-section .img-container img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  min-width: 300px; /* Set a minimum width to prevent excessive shrinking */
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3); /* Adding a shadow for better separation */
}


@media (max-width: 575px) {
  
  .communaute-section .img-container img {
    min-height: 400px;
    min-width: 370px; 
  }
}

@media (max-width: 320px) {

  .communaute-section .img-container img {
    min-height: 250px;
    min-width: 300px; 
  }
}

/*--------------------------------------------------------------
# activite-Section
--------------------------------------------------------------*/

.activite-section {
  margin-top: -110px;
  background: url('../img/Les_inseparables_activite.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.activite-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Dark overlay */
  z-index: -1; /* Ensure the overlay stays behind the content */
}

.activite-section .section-title {
  padding-bottom: 60px;
  padding-top: 99px;
}

.activite-section .section-title h1 {
  font-size: 4.1em;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .activite-section .section-title h1 {
    font-size: 50px;
  }
}

@media (max-width: 320px) {
  .activite-section .section-title h1 {
    font-size: 40px;
  }
}

.activite-section .section-title p {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 700;
}

.btn-decouvrir {
  color: #513cc4;
  background: rgba(255, 245, 4, 255);
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(81, 60, 196, 0.2);
}

.btn-decouvrir:hover {
  background: rgba(255, 245, 4, 0.85);
}

/*--------------------------------------------------------------
# engagement-Section
--------------------------------------------------------------*/
.engagement-section {
  margin-top: -90px;
  z-index: 1;
  background-color: #513cc4;
}

.engagement-section  .section-title {
  text-align: center;
  padding-bottom: 60px;
  padding-top: 99px;
  position: relative;
}
.engagement-section  .section-title h1 {
  color: #fff;
  font-size: 4.1em;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .engagement-section  .section-title h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
  }
}
@media (max-width: 320px) {
  .engagement-section  .section-title h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
  }
}
.engagement-section  .section-title span {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 18px;
  font-weight: 700;
}

.engagement-section .team-member {
  margin-top: 0;
  border: solid 4px rgba(255,245,4,255);
  box-shadow: 0px 2px 15px color-mix(in srgb, #5b5c56, transparent 90%);
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  background: none;
  height: 400px;
  width: 400px;
}

.engagement-section .team-member:hover {
  box-shadow: 0px 2px 15px color-mix(in srgb, rgba(255,245,4,255), transparent 50%);
}

.engagement-section .team-member .member-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.engagement-section .team-member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.engagement-section .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, #000, transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.engagement-section .team-member .social img {
  text-decoration-color: #fff;
  margin-bottom: 200px;
  height: 100px;
  width: auto;
  display: flex;
  align-items: center;
}

.engagement-section .team-member .member-info {
  background-color: transparent;
  margin-top: auto;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 10px;
}

.engagement-section .team-member .member-info span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  flex-grow: 1; /* Permet au texte de s'étendre */
  display: flex;
  align-items: flex-end; /* Aligner le texte en bas */
}

.engagement-section .team-member .member-info h4 {
  background-color: rgba(255, 245, 4, 1);
  font-weight: 700;
  padding: 8px;
  font-size: 18px;
  color: #513cc4;
  border-radius: 0 !important;
  margin-top: auto; /* Maintenir la carte en bas */
}

.engagement-section .team-member:hover .social {
  opacity: 1;
}

.btn-get-started-team {
  border: solid 2px;
  color: #000000;
  background: rgba(255,245,4,255);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px color-mix(in srgb, #513cc4, transparent 80%);
}

.btn-get-started-team:hover {
  color: #000000;
  background: color-mix(in srgb, rgba(255,245,4,255), transparent 15%);
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.contact .section-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

.contact .section-title p {
  color: #222222;
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: #222222;
}

.contact .section-title p .description-title {
  color: #513cc4;
}

.contact .info-wrap {
  box-shadow: 0px 0px 20px color-mix(in srgb, #444444, transparent 90%);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: #513cc4;
  background: color-mix(in srgb, #513cc4, transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #513cc4;
  color: #fff;
}

.contact .php-email-form {
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px color-mix(in srgb, #444444, transparent 90%);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=number],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #444444;
  background-color: color-mix(in srgb, #fff, transparent 50%);
  border-color: color-mix(in srgb, #444444, transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=number]:focus,
.contact .php-email-form textarea:focus {
  border-color: #513cc4;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=number]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, #444444, transparent 70%);
}

.php-email-form button {
  padding: 10px 30px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 20px;
  background: #513cc4;
  color: white;
  display: flex;
  align-items: center;
  border: none;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.php-email-form button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.php-email-form button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.php-email-form button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.php-email-form button:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.php-email-form button:hover span {
  transform: translateX(5em);
}

.php-email-form button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}


/*--------------------------------------------------------------
# result-recherche-null
--------------------------------------------------------------*/

.recherche{
  padding: 0 2px ;
}

.affichage {
  background-color: color-mix(in srgb, #513cc4, transparent 96%);
}

.recherche .recherche-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.recherche .recherche-title h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #513cc4, transparent 90%);
  color: #513cc4;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: "Montserrat",  sans-serif;
}

/* message  */

.message-null{
  font-weight: 500;
  font-size: 30px;
  color: #222222;
}

@media (max-width: 575px) {
  .message-null {
    font-size: 20px;
  }
}
@media (max-width: 320px) {
  .message-null {
    font-size: 20px;
  }
}

/* element anime */
/* element anime */

.typewriter {
  --blue: #5C86FF;
  --blue-dark: #275EFE;
  --key: #fff;
  --paper: #EEF0FD;
  --text: #D3D4EC;
  --tool: #FBC56C;
  --duration: 3s;
  position: relative;
  -webkit-animation: bounce05 var(--duration) linear infinite;
  animation: bounce05 var(--duration) linear infinite;
}

.typewriter .slide {
  width: 92px;
  height: 20px;
  border-radius: 3px;
  margin-left: 14px;
  transform: translateX(14px);
  background: linear-gradient(var(--blue), var(--blue-dark));
  -webkit-animation: slide05 var(--duration) ease infinite;
  animation: slide05 var(--duration) ease infinite;
}

.typewriter .slide:before, .typewriter .slide:after,
.typewriter .slide i:before {
  content: "";
  position: absolute;
  background: var(--tool);
}

.typewriter .slide:before {
  width: 2px;
  height: 8px;
  top: 6px;
  left: 100%;
}

.typewriter .slide:after {
  left: 94px;
  top: 3px;
  height: 14px;
  width: 6px;
  border-radius: 3px;
}

.typewriter .slide i {
  display: block;
  position: absolute;
  right: 100%;
  width: 6px;
  height: 4px;
  top: 4px;
  background: var(--tool);
}

.typewriter .slide i:before {
  right: 100%;
  top: -2px;
  width: 4px;
  border-radius: 2px;
  height: 14px;
}

.typewriter .paper {
  position: absolute;
  left: 24px;
  top: -26px;
  width: 40px;
  height: 46px;
  border-radius: 5px;
  background: var(--paper);
  transform: translateY(46px);
  -webkit-animation: paper05 var(--duration) linear infinite;
  animation: paper05 var(--duration) linear infinite;
}

.typewriter .paper:before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 7px;
  border-radius: 2px;
  height: 4px;
  transform: scaleY(0.8);
  background: var(--text);
  box-shadow: 0 12px 0 var(--text), 0 24px 0 var(--text), 0 36px 0 var(--text);
}

.typewriter .keyboard {
  width: 120px;
  height: 56px;
  margin-top: -10px;
  z-index: 1;
  position: relative;
}

.typewriter .keyboard:before, .typewriter .keyboard:after {
  content: "";
  position: absolute;
}

.typewriter .keyboard:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  transform: perspective(10px) rotateX(2deg);
  transform-origin: 50% 100%;
}

.typewriter .keyboard:after {
  left: 2px;
  top: 25px;
  width: 11px;
  height: 4px;
  border-radius: 2px;
  box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
  -webkit-animation: keyboard05 var(--duration) linear infinite;
  animation: keyboard05 var(--duration) linear infinite;
}

@keyframes bounce05 {
  85%, 92%, 100% {
    transform: translateY(0);
  }

  89% {
    transform: translateY(-4px);
  }

  95% {
    transform: translateY(2px);
  }
}

@keyframes slide05 {
  5% {
    transform: translateX(14px);
  }

  15%, 30% {
    transform: translateX(6px);
  }

  40%, 55% {
    transform: translateX(0);
  }

  65%, 70% {
    transform: translateX(-4px);
  }

  80%, 89% {
    transform: translateX(-12px);
  }

  100% {
    transform: translateX(14px);
  }
}

@keyframes paper05 {
  5% {
    transform: translateY(46px);
  }

  20%, 30% {
    transform: translateY(34px);
  }

  40%, 55% {
    transform: translateY(22px);
  }

  65%, 70% {
    transform: translateY(10px);
  }

  80%, 85% {
    transform: translateY(0);
  }

  92%, 100% {
    transform: translateY(46px);
  }
}

@keyframes keyboard05 {
  5%, 12%, 21%, 30%, 39%, 48%, 57%, 66%, 75%, 84% {
    box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
  }

  9% {
    box-shadow: 15px 2px 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
  }

  18% {
    box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 2px 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
  }

  27% {
    box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 12px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
  }

  36% {
    box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 12px 0 var(--key), 60px 12px 0 var(--key), 68px 12px 0 var(--key), 83px 10px 0 var(--key);
  }

  45% {
    box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 2px 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
  }

  54% {
    box-shadow: 15px 0 0 var(--key), 30px 2px 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
  }

  63% {
    box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 12px 0 var(--key);
  }

  72% {
    box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 2px 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
  }

  81% {
    box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 12px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
  }
}