body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #009970;
  text-decoration: none;
}

a:hover {
  color: #00cc95;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
section {
  padding: 60px 0;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #009970;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #00c28e;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  top: 20px;
}

#header .header-container {
  background: rgb(255, 255, 255);
  border-radius: 20px;
}

#header.header-scrolled {
  background: rgb(255, 255, 255);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  top: 0;
}

#header .logo {
  overflow: hidden;
  padding: 16px 30px 12px 30px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
}

#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;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 65px;
}

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
    background: rgb(255, 255, 255);
  }

  #header.header-scrolled,
  #header .header-container {
    background: rgb(255, 255, 255);
  }

  #header .logo {
    padding-left: 0;
  }

  #header .logo h1 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
  border-radius: 20px;
  background: rgb(255, 255, 255);
  z-index: 998; /* Ensure it has a z-index for layering */
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative; /* Essential for positioning desktop dropdowns */
  padding-right: 10px; /* Adjust this value to create space for the icon */
}

.navbar a,
.navbar a:focus {
  /* Links directly */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #350267;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  transition: 0.3s;
}

/* Specific styling for the dropdown *toggle area* on desktop */
.navbar .dropdown > span {
  /* Target the span directly as the clickable part */
  display: flex; /* Use flex to align content and icon */
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px; /* Match link padding */
  color: #350267;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  cursor: pointer; /* Indicate it's clickable */
  padding-right: 25px; /* Ensure space for the chevron icon on its right */
  position: relative; /* If the icon is inside the span's flow */
}

.navbar a i,
.navbar a:focus i,
.navbar .dropdown > i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: transform 0.3s ease;
  /* Add or adjust these properties for better alignment */
  position: absolute; /* Position it absolutely within the parent li */
  right: 15px; /* Adjust as needed to position it from the right edge of the li */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for perfect vertical centering */
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a,
.navbar .dropdown:hover > span {
  /* Hover state for desktop dropdown text */
  background: rgb(255, 255, 255);
}

/* Styles pour le select */
.navbar .select-container {
  display: flex;
  align-items: center;
  width: 70px;
  /* display: none; */
}
.navbar .custom-select {
  flex: 1;
  margin-right: 10px;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  background-color: rgb(255, 255, 255);
  color: #000;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #009970;
  padding: 10px 25px;
  margin-left: 30px;
  margin-right: 15px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #00b383;
}

/* Desktop Dropdown Menu (the UL itself) */
.navbar .dropdown ul {
  display: block; /* Important for positioning, but will be hidden by opacity/visibility */
  position: absolute;
  /* Adjust left if it's not positioned correctly relative to the parent LI */
  left: 14px; /* Example: 14px from the LI's left edge */
  top: calc(100% + 30px); /* Initially below the parent link/span */
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0; /* Hidden by default */
  border-radius: 15px;
  visibility: hidden; /* Hidden by default */
  background: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s; /* Smooth transition for appearance */
}

.navbar .dropdown ul li {
  min-width: 200px; /* Ensures sub-items have enough width */
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none; /* Sub-items usually not uppercase */
  font-weight: 500;
  display: block; /* Make sure links fill the space */
}

.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; /* Highlight color for sub-items */
}

/* Desktop: Show dropdown on hover */
.navbar .dropdown:hover > ul {
  opacity: 1; /* Make visible */
  top: 100%; /* Snap to below parent */
  visibility: visible;
}

/* Desktop: Rotate chevron icon on dropdown hover */
.navbar .dropdown:hover > i.bx-chevron-down {
  transform: rotate(180deg);
}

/* Sub-dropdowns (nested dropdowns) for desktop */
.navbar .dropdown .dropdown ul {
  top: 0; /* Align with parent dropdown item */
  left: calc(100% - 30px); /* Initially off to the side */
  visibility: hidden;
  /* Ensure these are also hidden by default with opacity 0 if you want transition */
  opacity: 0;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1; /* Make visible */
  top: 0;
  left: 100%; /* Slide fully into view */
  visibility: visible;
}

/* Media query for sub-dropdowns on smaller desktop screens */
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%; /* Adjust position to prevent going off-screen */
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #009970;
  font-size: 51px;
  cursor: pointer;
  display: none; /* Hidden on desktop */
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  right: 17px; /* Align to the right */
  top: 40px;
  z-index: 1000;
}

/* Show mobile toggle on smaller screens */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    /* Hide the desktop ul on mobile */
    display: none;
  }

  /* Overlay for dimming background when mobile menu is active */
  body.mobile-nav-active::before {
    content: "";
    background: rgba(29, 28, 31, 0.6);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 997;
    transition: all 0.3s ease-in-out;
  }
}

/* Base style for the mobile menu panel (#navbar) */
.navbar-mobile {
  position: fixed;
  top: 0;
  right: 0; /* Slide from the right */
  bottom: 0;
  width: 75%; /* Adjust width as needed */
  max-width: 320px;
  background-color: #fff; /* White background for the panel */
  overflow-y: auto; /* Enable scrolling if content is too long */
  transition: all 0.3s ease-in-out;
  z-index: 999;
  transform: translateX(100%); /* Initially off-screen to the right */
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1); /* Shadow on the left edge */
}

/* When body has 'mobile-nav-active', slide the menu into view */
body.mobile-nav-active .navbar-mobile {
  transform: translateX(0%);
}

/* Styles for items inside the mobile menu */
.navbar-mobile ul {
  display: block; /* Ensure list items stack vertically */
  padding: 10px 0;
  margin-top: 55px; /* Space from the top where the 'x' button might be */
}

/* Styling for all links AND the dropdown span in mobile menu */
.navbar-mobile a,
.navbar-mobile a:focus,
.navbar-mobile .dropdown > span {
  /* Crucial: Target the span as the clickable part */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 15px;
  color: #36343a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Separator between items */
  cursor: pointer; /* Indicate it's clickable */
  white-space: normal; /* Allow text to wrap if long */
}

/* Mobile dropdown icon styling */
.navbar-mobile .dropdown > i.bx-chevron-down {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* Hover/Active states for mobile menu items */
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a,
.navbar-mobile .dropdown > span:hover {
  color: #009970;
  background-color: #f8f8f8;
}

/* Language selector in mobile menu */
.navbar-mobile .select-container {
  padding: 10px 20px;
  margin-top: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 150px;
}

.navbar-mobile .custom-select {
  background-color: #f0f0f0;
  border-radius: 5px;
  padding: 8px 10px;
}

/* Mobile Dropdown Menu (the UL itself) */
.navbar-mobile .dropdown ul {
  position: static; /* Allows it to flow naturally in the document */
  display: none; /* Hidden by default */
  margin: 0;
  padding: 0 0 0 20px; /* Indent sub-items */
  background: #fff;
  box-shadow: none; /* No shadow for sub-dropdowns in mobile */
}

.navbar-mobile .dropdown ul li {
  min-width: unset; /* Remove min-width inherited from desktop */
}

.navbar-mobile .dropdown ul a {
  padding: 8px 0;
  font-size: 14px;
}

/* Mobile: Show dropdown when 'dropdown-active' class is toggled by JS */
.navbar-mobile .dropdown > .dropdown-active {
  /* Targets the UL when active */
  display: block;
}

/* Mobile: Rotate chevron icon when dropdown is active */
.navbar-mobile .dropdown > i.bx-chevron-down.bx-rotate-180 {
  /* Target the icon when UL is active */
  transform: rotate(180deg);
}

/* Class for icon rotation (can be toggled by JS) */
.bx-rotate-180 {
  transform: rotate(180deg);
}

/* Get Started button in mobile menu */
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px 20px;
  text-align: center;
  display: block;
  width: calc(100% - 40px);
}
.select-container {
  flex: 1;
  margin-right: 10px;
  max-width: 200px; /* Limitez la largeur pour éviter le débordement sur les petits écrans */
}

.custom-select {
  width: 100%; /* Assurez-vous que le sélecteur occupe toute la largeur disponible */
  max-width: 100%; /* Empêchez le sélecteur de déborder de son conteneur */
}

@media screen and (max-width: 768px) {
  .navbar .select-container {
    display: none;
  }
}

/* Show the select container ONLY when the mobile navigation is active */
body.mobile-nav-active .navbar-mobile .select-container {
  display: flex; /* Or block, depending on your desired layout within the mobile menu */
  align-items: center; /* Keep this for alignment */
  /* Re-apply any specific mobile padding/margin as needed */
  padding: 10px 20px; /* Example: Match other mobile menu items */
  margin-top: 15px; /* Example: Space from previous item */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Example: Add a separator */
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Utilisation de rem pour les unités de taille pour une meilleure adaptabilité */

/* Utilisation de rem pour les unités de taille pour une meilleure adaptabilité */

#hero {
  width: 100%;
  min-height: 100vh;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
#hero .container {
  max-width: 1200px; /* Limite la largeur pour éviter un contenu trop étiré sur les grands écrans */
  width: 100%;
  padding-top: 80px;

  display: flex;
  align-items: center;
  text-align: center; /* Centre le contenu à l'intérieur du conteneur */
}
#hero .image {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* Alignement à droite */
  margin-left: 20px; /* Espacement entre le contenu et l'image */
  margin-top: 50px;
}

#hero img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.5s;
  max-height: 80vh;
}
#hero .image:hover img {
  transform: scale(1.1);
}

#hero .content {
  text-align: left; /* Alignement du texte à gauche */
  max-width: 50%;
}

.green-text {
  color: #0cc4a0;
}

.purple-text {
  color: #350267 !important;
}

#hero h1 {
  margin: 0 0 10px 0;
  font: normal bold 2.625rem/4.5rem Poppins; /* Utilisation de rem pour une taille de police plus adaptative */

  line-height: 56px;
  color: #350267;
}

#hero h2 {
  color: #350267;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.5px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9375rem; /* Utilisation de rem pour une taille de police plus adaptative */

  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #0cc4a0;
  border-radius: 19px;
}

#hero .btn-get-started:hover {
  background: #009970;
  border: 2px solid #009970;
}

@media (max-width: 1024px) {
  #hero .container {
    flex-direction: column; /* Change la direction pour empiler les éléments */
    align-items: center;
  }
  #hero .content {
    text-align: center;
    max-width: 100%; /* Prend la pleine largeur sur les écrans moyens */
    margin-right: 0; /* Réinitialise la marge pour les petits écrans */
  }
}

/* Tailles d'écran plus petites */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2rem; /* Ajustement de la taille de police */
    margin-bottom: 8px; /* Réduction de la marge inférieure */
  }
  #hero h2 {
    font-size: 1.4rem; /* Ajustement de la taille de police */
    margin-bottom: 15px; /* Réduction de la marge inférieure */
  }
  #hero .btn-get-started {
    font-size: 0.875rem;
    padding: 8px 18px; /* Ajustement de la taille du bouton */
  }
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
#client h1 {
  width: 100%;
  font: normal normal bold 48px/72px Poppins;
  text-align: center;
  color: #350267;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 36px;
}
#client {
  background: rgb(255, 255, 255);
}
.clients {
  background: #d7c2e0;
  text-align: center;
  padding: 5px 0;
}

.clients img {
  width: 40%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  background: rgb(255, 255, 255);
}
.why-us h1 {
  font: normal normal bold 32px/66px Poppins;
}
.why-us .content {
  padding: 30px;
  border-radius: 4px;
  color: #350267;
}

.why-us .content h3 {
  font: normal normal medium 64px/95px Poppins;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #009970;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
  height: auto;
  transition: 0.3s;
  font: normal normal medium 24px/35px Poppins;
  letter-spacing: 0px;
  color: #009970;
  opacity: 1;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #009970;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
  text-align: center;
  font: normal normal medium 15px/15px Poppins;
  letter-spacing: 0px;
  color: #350267;
  opacity: 1;
}

.why-us .icon-boxes .icon-box:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
  /* background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
 */
  background: linear-gradient(rgba(53, 2, 103, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/global.jpg") fixed center center/cover;
  opacity: 1;
}

.cta h3 {
  text-align: center;
  font: normal normal bold 75px/147px Poppins;
  letter-spacing: 0px;
  opacity: 1;
  color: #ffff;
}

.cta p {
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 400 40px/72px Poppins;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  background: #0cc4a0;
}

.cta .cta-btn:hover {
  background: #009970;
  border: 2px solid #009970;
}
@media (max-width: 768px) {
  .cta h3 {
    font-size: 28px;
    line-height: 1.6; /* Adjust font size for smaller screens */
  }
  .cta p {
    font-size: 18px;
    line-height: 1.4; /* Ajustez l'interligne pour les écrans plus petits si nécessaire */
    /* Adjust font size for smaller screens */
  }
  .cta .cta-btn {
    font-size: 14px; /* Adjust font size for smaller screens */
    padding: 8px 16px; /* Adjust padding for smaller screens */
    margin: 5px; /* Ajustez l'interligne pour les écrans plus petits si nécessaire */

    /* Adjust margin for smaller screens */
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

/* .services {
  width: 100%;
  height: 80vh;
  background: url("../img/earth-day-environment-eco-concept-top-view.jpg") center center;
  background-size: cover;
  position: relative;}
.services .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-radius: 10px;
} */
/* .services :before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */
/* .services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  border: 1px solid #009970;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #009970;
} */

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  text-align: center;

  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #36343a;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  text-align: left;

  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover h4 a {
  color: #009970;
}

.services .icon-box:hover .icon {
  color: #fff;
  background: #009970;
}

.services {
  width: 100%;
  background: linear-gradient(rgba(53, 2, 103, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/earth-day-environment-eco-concept-top-view.jpg") fixed center
      center/cover;
  opacity: 1;
  background-size: cover;
  position: relative;
  padding: 20px;
}

.services .icon-box {
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  border: 1px solid #009970;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #009970;
}
.services h3 {
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal bold 48px/94px Poppins;
  background-image: linear-gradient(to right, #0cc4a0 30%, #ffffff 20%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}
/*--------------------------------------------------------------
# sdgs-section
--------------------------------------------------------------*/

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #7a3dae !important;
}

.sdgs-section {
  background-color: rgb(255, 255, 255);
  padding: 40px 20px;
  text-align: center;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: left;
}

.sdg-card {
  border-radius: 10px;
  padding: 20px;
  height: auto;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
  animation: scaleIn 0.6s ease-in-out;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;

  /* Utilisation de aspect-ratio pour fixer un rapport hauteur-largeur */
  aspect-ratio: 1; /* Ratio 1:1, peut être ajusté selon vos préférences */
}

.sdg-card:hover {
  transform: scale(1.05);
}

.sdg-photo {
  width: 70%; /* Ajustement de la largeur de l'image pour remplir la carte */
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.sdg-icon {
  font-size: 24px;
  color: #7a3dae;
  margin-bottom: 10px;
}

.sdg-title {
  color: var(--unnamed-color-0cc4a0);
  text-align: left;
  font: normal normal medium 24px/35px Poppins;
  letter-spacing: 0px;
  color: #350267;
}

.sdg-description {
  color: var(--unnamed-color-350267);
  text-align: center;
  font: normal normal medium 24px/35px Poppins;
  letter-spacing: 0px;
  color: #350267;
  opacity: 1;
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotateOnHover {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(5deg);
  }
}
.sdgs-section h1 {
  font: normal normal 48px/72px Poppins;
  color: #350267;
  margin-top: 20px;
}
.sdgs-section .green-text {
  font: normal normal 48px/72px Poppins;
  color: #0cc4a0;
  margin-top: 20px;
}
.sdgs-section .bold-text {
  font: normal normal bold 48px/72px Poppins;

  color: #350267;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .sdg-card {
    padding: 15px; /* Réduction de la taille de la carte */
  }

  .sdg-title,
  .sdg-description {
    font-size: 16px; /* Réduction de la taille du texte */
  }
}

/* Tailles d'écran plus petites */
@media (max-width: 768px) {
  .sdg-card {
    padding: 10px; /* Réduction de la taille de la carte */
  }
  .sdg-photo {
    width: 100%; /* Ajustement de la largeur de l'image pour remplir la carte */
    height: auto;
  }
  .sdgs-section .green-text {
    font: normal normal 20px/48px Poppins;
    margin-top: 20px;
  }
  .sdgs-section .bold-text {
    font: normal normal bold 28px/48px Poppins;

    margin-top: 20px;
  }
  .sdgs-section h1 {
    font: normal normal 28px/48px Poppins;

    margin-top: 20px;
  }
  .sdg-title,
  .sdg-description {
    font-size: 8px; /* Réduction de la taille du texte */
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.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;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.team .member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #36343a;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b5b3ba;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a8a5ae;
}

.team .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #009970;
}

.team .member .social a + a {
  margin-left: 8px;
}

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

.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #009970;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #36343a;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #686470;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #009970;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #00805d;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f7;
  margin-top: 100px;
}

.breadcrumbs h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f4c55;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #ffff;
  font-size: 14px;
  background: #f1f0f2;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #350267;
  overflow-x: hidden;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #ffff;
  position: relative;
  left: 67px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #00c28e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #009970;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e4e3e6;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #009970;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #00664b;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #009970;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #00805d;
  color: #fff;
  text-decoration: none;
}
/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/

.experience-section {
  background: #0cc4a0;
  color: #fff;
  padding: 40px 20px;
  border-radius: 30px;
  text-align: center;
}
.experience-section h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--unnamed-color-ffffff);
  text-align: center;
  font: normal normal bold 63px/94px Poppins;
  letter-spacing: 0px;
  opacity: 1;
}

.experience-photo {
  width: 100%; /* Ajustez la largeur au besoin */
  max-width: 600px;
  min-height: 120%;
  height: auto;
  margin-bottom: 5px;
}

.button {
  min-width: 300px;
  min-height: 60px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #fff; /* Couleur du texte */
  background: #350267; /* Couleur du fond du bouton */
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(53, 2, 103, 0.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
}

.button::before {
  content: "";
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #350267; /* Couleur du contour */
  box-shadow: 0 0 60px rgba(53, 2, 103, 0.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}

.button:hover,
.button:focus {
  color: #fff; /* Couleur du texte au survol ou focus */
  transform: translateY(-6px);
}

.button:hover::before,
.button:focus::before {
  opacity: 1;
}

.button::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid #00ffcb;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.button:hover::after,
.button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}
#footer .footer-contact img {
  max-width: 60%; /* La largeur maximale de l'image sera de 100% de la largeur du conteneur parent */
  height: auto; /* Cela garantit que l'aspect ratio de l'image est préservé */
}

/*-----------company------------------*/

/* .card-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  padding: 40px 20px;
  border-radius: 30px;
  text-align: center;
}

.card-section .card {
  background: #FFFFFF;
  box-shadow: 0px 20px 6px #0CC4A029;
  border-radius: 135px;
  opacity: 1;
  max-width: 90%;
  height: auto;
}

.card-section h2 {
  color: var(--unnamed-color-350267);
  text-align: center;
  font: normal normal bold 48px/72px Poppins;
  letter-spacing: 0px;
  color: #350267;
  padding-left: 8%;
}

.card-section p {
  color: var(--unnamed-color-350267);
  text-align: center;
  font: normal normal normal 32px/48px Poppins;
  letter-spacing: 0px;
  color: #350267;
  opacity: 1;
  padding-left: 8%;

}

.card-section img {
  width: 100%;
  max-width: 200px;
  min-height: 100%;
  height: auto;
  margin-bottom: 5px;
  align-items: center;
} */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#cardsection {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  padding: 40px 20px;
  margin-top: 15%;
  background: rgb(255, 255, 255);

  text-align: center;
  animation: fadeIn 1s ease-out;
}

#cardsection h4 {
  text-align: left;
  font: normal normal bold 64px/120px Poppins;
  letter-spacing: 0px;
  color: #350267;
  opacity: 1;
}
/* For screens smaller than 768px */
@media screen and (max-width: 768px) {
  #cardsection h4 {
    font-size: 32px; /* Adjust the font size for smaller screens */
    line-height: 1.5; /* Modify line height as needed */
  }
}

/* For screens larger than 768px */
@media screen and (min-width: 769px) {
  #cardsection h4 {
    font-size: 50px; /* Original font size for larger screens */
    line-height: 120px; /* Original line height */
  }
}

.allcards {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card {
  background: #ffffff;
  box-shadow: 0px 20px 6px #0cc4a029;
  border-radius: 50px;
  opacity: 1;
  padding: 40px;

  max-width: 84%;
  height: auto;
  margin-bottom: 80px; /* Adjust the margin between cards as needed */
  animation: fadeIn 3s ease-out;
}
.card:active {
  transform: scale(1.1); /* ou toute autre transformation souhaitée au clic */
}

.card h2 {
  color: var(--unnamed-color-350267);
  text-align: left;
  font: normal normal bold 28px/60px Poppins;
  letter-spacing: 0px;
  color: #350267;

  padding-left: 8%;
}

.card p {
  color: var(--unnamed-color-350267);
  text-align: left;
  font: normal normal normal 20px/36px Poppins;
  letter-spacing: 0px;
  color: #350267;
  opacity: 1;
  padding-left: 8%;
}
#companyImg4 {
  width: 54%;
  min-height: 91%;
  height: auto;
  margin: -70px;
  border-radius: 40px;
  align-items: center;
  animation: fadeIn 3s ease-out;
}
#companyImg {
  width: 76%;
  min-height: 91%;
  height: auto;
  margin: 8px;
  border-radius: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 3s ease-out;
}
#companyImg2 {
  width: 60%;
  min-height: 91%;
  height: auto;
  margin: 8px;
  border-radius: 40px;

  align-items: center;
  animation: fadeIn 3s ease-out;
}
#companyImg3 {
  width: 76%;
  min-height: 91%;
  height: auto;
  margin: -70px;
  border-radius: 40px;

  align-items: center;
  animation: fadeIn 3s ease-out;
}
.card2 {
  background: #350267;
  box-shadow: 0px 20px 6px #00000029;
  border-radius: 50px;
  opacity: 1;
  max-width: 84%;
  height: auto;
  padding: 80px;

  margin-bottom: 80px; /* Adjust the margin between cards as needed */
  animation: fadeIn 3s ease-out;
}
.card2:active {
  transform: scale(1.1); /* ou toute autre transformation souhaitée au clic */
}
.card2 h2 {
  text-align: left;
  font: normal normal bold 28px/60px Poppins;
  letter-spacing: 0px;
  opacity: 1;
  color: #fff;
  padding-left: 8%;
}

.card2 p {
  color: var(--unnamed-color-350267);
  text-align: left;
  font: normal normal normal 20px/36px Poppins;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
  padding-left: 8%;
}
/* Ajoutez ces Media Queries à la fin de votre feuille de style CSS */

/* Tablettes */
@media screen and (max-width: 768px) {
  .card-section .card,
  .card-section .card2 {
    padding: 50px; /* Ajustez le rembourrage des cartes pour les écrans plus petits */
  }

  .card-section .card h2,
  .card-section .card2 h2,
  .card-section .card p,
  .card-section .card2 p {
    font-size: 18px; /* Ajustez la taille de la police pour les écrans plus petits */
  }

  .card-section #companyImg,
  .card-section #companyImg2,
  .card-section #companyImg3,
  .card-section #companyImg4 {
    width: 100%; /* Faites en sorte que les images occupent la largeur complète de la carte */
    margin: 0; /* Réinitialisez les marges des images */
  }
}

/* Mobile */
@media screen and (max-width: 480px) {
  .card-section .card,
  .card-section .card2 {
    padding: 30px; /* Ajustez le rembourrage des cartes pour les écrans mobiles */
  }

  .card-section .card h2,
  .card-section .card2 h2,
  .card-section .card p,
  .card-section .card2 p {
    font-size: 16px; /* Ajustez la taille de la police pour les écrans mobiles */
  }
}

/* .gradient-section {
  background: linear-gradient(to bottom, rgb(255, 255, 255) 50%, #350267 50%);
}





.gradient-section{

  .card3 {
    background-color: #0CC4A0;
    padding: 7%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card-content {
    color: #fff; 
    text-align: center; 
  }

  
  
  .button {
    min-width: 300px;
    min-height: 60px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #fff; 
    background: #350267; 
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(53, 2, 103, 0.64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
  }
  
  .button::before {
    content: '';
    border-radius: 1000px;
    min-width: calc(300px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #350267;
    box-shadow: 0 0 60px rgba(53, 2, 103, 0.64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .button:hover, .button:focus {
    color: #fff; 
    transform: translateY(-6px);
  }
  
  .button:hover::before, .button:focus::before {
    opacity: 1;
  }
  
  .button::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 6px solid #00FFCB; 
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
  }
  
  .button:hover::after, .button:focus::after {
    animation: none;
    display: none;
  }
  .card3  h2{
    display: flex;
    flex-direction: column;
    color: var(--unnamed-color-ffffff);
    text-align: left;
    font: normal normal bold 63px/94px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
  }
  
  
  
   
  
  @keyframes ring {
    0% {
      width: 30px;
      height: 30px;
      opacity: 1;
    }
    100% {
      width: 300px;
      height: 300px;
      opacity: 0;
    }
    
  }
  #photoCompanyfoot{
    max-width: 100%;
    height: 146%;
    display: block;
    margin-top: -102px;
  }
} */
/*section-association*/

#section-association {
  background: linear-gradient(rgba(53, 2, 103, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/global.jpg") fixed center center/cover;
  opacity: 1;
  display: flex;
  color: #000;
  max-width: 88%;
  width: 85%;
  padding: 40px 20px;
  margin-top: 10%;
  border-radius: 50px;
  animation: fadeIn 1s ease-out;
}

#association {
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#section-association h3 {
  text-align: left;
  font: normal normal bold 2.5vw/6vh Poppins;
  letter-spacing: 0px;
  opacity: 1;

  color: #ffff;
}

#imgcard2-association {
  max-width: 56%;
  min-height: 91%;
  height: auto;
  margin: 8px;
  border-radius: 40px;

  align-items: center;
  animation: fadeIn 3s ease-out;
}

#section-association p {
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 400 20px/40px Poppins;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}

#section-association .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  background: #0cc4a0;
}

#section-association .cta-btn:hover {
  background: #009970;
  border: 2px solid #009970;
}

#cardsection-association {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  padding: 40px 20px;
  background: rgb(255, 255, 255);
  text-align: center;
  animation: fadeIn 1s ease-out;
}
@media screen and (max-width: 768px) {
  #section-association h3 {
    font-size: 24px; /* Taille de police plus petite pour les petits écrans */
    line-height: 1.2; /* Ajustement de la hauteur de ligne */
  }

  #section-association .cta-btn {
    font-size: 16px; /* Taille de police plus petite pour les boutons */
    padding: 6px 20px; /* Ajustement des rembourrages */
  }
}
/*company */
/* Styles communs pour tous les écrans */
/* /* Styles pour le composant de la section principale */
/*about us*/
/* .divider {
  height: 80vh;
	width: 100%;
	background-attachment: inherit;
	margin: 129px 0 52px;
	text-align: center;
  background-size: cover;
  opacity: 1;

	background:linear-gradient(rgba(53, 2, 103, 0.7), rgba(0, 0, 0, 0.7)), url("../img/hands.png") fixed center center/cover;
} */
.about {
  /* background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
 */
  background: linear-gradient(rgba(53, 2, 103, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/global.jpg") fixed center center/cover;
  opacity: 1;
}
.about h3 {
  text-align: center;
  font: normal normal bold 72px/147px Poppins;
  letter-spacing: 0px;
  opacity: 1;
  color: #ffff;
}
.about .container {
  padding-top: 80px;
}
.about p {
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 700 38px/72px Poppins;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}
/* Pour les écrans de taille moyenne et plus grands */
.about h3 {
  font-size: 72px;
  line-height: 147px;
}

.about .container {
  padding-top: 80px;
}

.about p {
  font-size: 30px;
  line-height: 72px;
}

/* Pour les écrans plus petits ou les appareils mobiles */
@media (max-width: 992px) {
  .about h3 {
    font-size: 48px; /* Modifier la taille de la police pour un affichage plus petit */
    line-height: 100px; /* Ajuster la hauteur de ligne pour les petits écrans */
  }

  .about .container {
    padding-top: 60px; /* Réduire l'espacement au-dessus du contenu */
  }

  .about p {
    font-size: 24px; /* Modifier la taille de la police pour un affichage plus petit */
    line-height: 54px; /* Ajuster la hauteur de ligne pour les petits écrans */
  }
}

/* Pour les écrans encore plus petits */
@media (max-width: 768px) {
  .about h3 {
    font-size: 36px;
    line-height: 60px;
  }

  .about .container {
    padding-top: 40px;
  }

  .about p {
    font-size: 18px;
    line-height: 36px;
  }
}

/* Styles pour la section de la mission */

/* .mission-section {
  background-image: url('chemin/vers/votre/image.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.mission-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.mission-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.mission-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
}


.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%,rgb(255, 255, 255) 100%);
  z-index: 0;
  animation: slide 10s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
} */
/* Styles pour la section de la mission */

/* Styles pour la section de la mission */

/* Styles pour la section de la mission */

/* Styles pour la section de la mission */

/* Style de la section de mission */
/* Style de la section de mission */
/* Style de la section de mission */
/* Style de la section de mission */
/* Style de la section de mission */
/* Style de la section de mission */
.mission-section {
  background-color: rgb(255, 255, 255);
  padding: 50px 0;
  text-align: center;
}

.mission-content {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.mission-text {
  flex: 1;
  text-align: left;
  padding-right: 20px;
  max-width: 45%; /* Ajustement de la largeur du texte */
}

.mission-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  animation: fadeInLeft 1s ease-in-out;
  color: var(--unnamed-color-350267);
  text-align: left;
  font: normal normal bold 60px/129px Poppins;
  letter-spacing: 0px;
  color: #350267;
  opacity: 1;
}

.mission-description p {
  color: var(--unnamed-color-350267);
  text-align: left;
  font: normal normal 500 28px/40px Poppins;
  /* color: #350267; */
  animation: slideInUp 1s ease-in-out;
}

.mission-image {
  flex: 1;
  max-width: 50%; /* Ajustement de la largeur de l'image */
  text-align: center;
}

.mission-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  animation: zoomIn 1s ease-in-out;
}
/* Styles for mobile devices */
@media (max-width: 768px) {
  .mission-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .mission-description p {
    font-size: 18px;
    line-height: 1.6;
  }

  .mission-content {
    flex-direction: column;
    align-items: center;
  }

  .mission-text,
  .mission-image {
    max-width: 100%;
    text-align: center;
    padding: 0 15px;
  }
}

/* Styles for tablets and larger screens */
@media (min-width: 769px) {
  .mission-title {
    font-size: 48px;
    line-height: 1.3;
  }

  .mission-description p {
    font-size: 24px;
    line-height: 1.6;
  }

  .mission-content {
    justify-content: space-between;
    align-items: flex-start;
  }

  .mission-text {
    max-width: 45%;
    padding-right: 30px;
    text-align: left;
  }

  .mission-image {
    max-width: 45%;
  }
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.custom-vision-section {
  padding: 0px 0;
}

.custom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-image: url("../img/Living-Organism-YT-thumb-V1-no-text-1-102.png");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.custom-section-bg {
  background-color: #d8d8d8;
}

.custom-text {
  flex: 1;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}

.custom-vision-title {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.custom-vision-description {
  font-size: 1.2em;
  line-height: 1.6;
}

.custom-image {
  flex: 1;
  padding: 20px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  position: relative;
}

.custom-image::after {
  content: "";
  display: block;
  padding-top: 100%; /* This creates a space for the aspect ratio of the image */
}
/*# Testimonials Section
--------------------------------------------------------------*/
.value-section {
  background: rgb(255, 255, 255);
}
.values-title {
  font-size: 2.5em;
  margin-bottom: 10px;
  animation: fadeInLeft 1s ease-in-out;
  color: var(--unnamed-color-350267);
  text-align: center;
  font: normal normal bold 60px/60px Poppins;
  letter-spacing: 0px;
  color: #350267;
  opacity: 1;
}
/* .slide1{
  background: url('../img/connection.png') center center/cover no-repeat;
  background-size: contain; 

  opacity: 1;
  height: 100%;
} */
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #009970;
  padding: 40px 0 20px 0;
  color: #fff;
}

.counts .counters span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
}
/*-----------oragaOrComapnySection------------*/
.oragaOrComapnySection {
  background: linear-gradient(rgba(0, 153, 112, 0.8), rgba(0, 0, 0, 0.7)),
    url("../img/orgaorcamp.jpg") fixed center center/cover;
  padding: 60px 0; /* Espacement intérieur pour la section */
  text-align: center; /* Centrer le contenu */
  color: #fff; /* Couleur du texte */
}
