@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ==================================== */
/* ========== Base Styles ============= */
/* ==================================== */

/* Remove default margin, padding, and set box-sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	line-height: normal;
}

/* Set default font family and smoothing */
body {
  line-height: 1;
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Make images and media responsive */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Set forms to inherit font and remove borders */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Set root element styles */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  background-color: #fff;
  color: #000;
}

/* Normalize button cursor */
button {
  cursor: pointer;
}

/* ==================================== */
/* ========= Utility Classes ========== */
/* ==================================== */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  width: 100%;

}

@media only screen and (max-width: 1300px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

.hidden {
  display: none;
}

.section-headline {
  display: block;
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  border: 1px solid #ffffff1a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 500;
  font-size: 24px;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
	min-width: 320px;
}

/* ==================================== */
/* ============= Header =============== */
/* ==================================== */

header {
  position: relative;
}

.hero {
  width: 100%;
  height: 785px;
  background-color: black;
  aspect-ratio: 3/2;
  clip-path: ellipse(60% 100% at 50% 0%);
  position: relative;
  margin-bottom: 179.6px;
  overflow: visible;
}

.hero-container {
  position: relative;
  max-width: 1282px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.nav {
  width: 100%;
  display: flex;
  /* gap: 75.5px; */
  justify-content: space-between;
  align-items: center;
  padding-top: 45px;
}

.nav > img {
  min-width: 138px;
}

.main-nav {
  color: #f2f2f2;
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  padding: 12px 24px;
  margin: 0 10px;
  border-radius: 32px;
  border: 1px solid #f2f2f2;
  box-shadow: -9px 11px 38.1px 0px #0000000d;
  font-size: 16px;
}

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav ul li {
  list-style: none;
}

.main-nav ul li a {
  text-decoration: none;
  color: #f2f2f2;
}

.nav button {
  color: #fff;
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid #fff;
  font-size: 16px;
}

.hero-tagline {
  margin-top: 127px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.hero-tagline h1 {
  color: #fff;
  font-size: 110px;
  font-weight: 400;
  text-align: center;
}

.hero-tagline span {
  font-weight: 700;
}

.hero-tagline strong {
  font-weight: 900;
}

.next-section {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 118px;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

.menu-icon img {
  width: 30px;
  height: 30px;
}

@media only screen and (max-width: 1000px) {
  .hero {
    height: fit-content;
  }

  .nav {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .hero-tagline {
    margin-top: 60px;
  }

  .hero-tagline h1 {
    font-size: 80px;
  }

  .next-section {
    width: 100px;
    height: 100px;
  }
}

@media only screen and (max-width: 800px) {
  .hero {
    height: fit-content;
    clip-path: ellipse(90% 100% at 50% 0%);
    margin-bottom: 60px;
  }

  .nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }

  .hero-tagline {
    margin-top: 60px;
  }

  .hero-tagline h1 {
    font-size: 60px;
  }

  /*=================================================================*/

  .menu-icon {
    display: inline-block; /* Show the menu icon on mobile */
    width: fit-content;
  }

  .main-nav .nav-list {
    flex-direction: column; /* Stack items vertically on mobile */
    position: absolute; /* Position it absolutely for overlay effect */
    top: 60px; /* Adjust based on your header height */
    left: 0;
    width: 100%;
    background-color: #f4f4f4; /* Background for the mobile menu */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(-100%); /* Initially hide off-screen to the left */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
  }

  .main-nav .nav-list.active {
    transform: translateX(0); /* Slide in when active */
  }

  .main-nav .nav-list li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee; /* Separator for menu items */
  }

  .main-nav .nav-list li:last-child {
    border-bottom: none;
  }
}

@media only screen and (max-width: 500px) {
  .hero-tagline h1 {
    font-size: 50px;
    padding-bottom: 60px;
  }

  .next-section {
    width: 80px;
    height: 80px;
  }
}

/* ==================================== */
/* =========== Introduction =========== */
/* ==================================== */

.introduction {
  background-color: #dbddde;
}

@media only screen and (max-width: 1300px) {
  .introduction {
    padding: 16px;
  }

  .section-img {
    height: 900px;
    background-position: center;
  }
}

.section {
  display: flex;
  position: relative;
  align-items: end;
  height: 685px;
}



.section-img {
  position: absolute;
  right: 0;
  width: 77%;
  height: 581px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 24px 0 0;
  z-index: 0;
}

.section-2 .section-img {
  left: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 24px;
}

.section-info {
  text-align: left;
  width: 100%;
  max-width: 655.33px;
  background-color: #fff;
  padding: 29px 111px;
  border-radius: 24px 24px 0 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media only screen and (max-width: 1300px) {
	
	.section {
		display: block;
	}
	.section-img {
  position: absolute;
  right: 0;
  width: 100%;
		height: 100%;border-radius:0;}
  .section-info {
    max-width: 100%;
    padding: 29px 40px;
    border-radius: 0;
  }
}

.section-2 .section-info {
  position: absolute;
  right: 0;
  border-radius: 24px 0 0 0;
  gap: 20px;
}


@media only screen and (max-width: 1300px) {
  .section-2 .section-info {
    border-radius: 0;
  }
}

.postuler a {
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  border: 1px solid #ffffff1a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 99px;
  margin-bottom: 4px;
  display: inline-block;
}

.plus {
  font-weight: 700;
}

.postuler p {
  font-style: italic;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: 0.5%;
}

.section-info h2 {
  font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: 0.072px;
}

.section-info p {
  color: var(--Gray-1, #333);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%; 
	letter-spacing: 0.08px;
}

/* ==================================== */
/* =========== Our Values ============= */
/* ==================================== */

.nos-valeurs {
  margin-top: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.nos-valeurs > p {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  color: #333333;
  width: 100%;
  max-width: 991.61px;
  padding: 40px 0 54px 0;
	line-height: normal;
}

.valeurs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 88.19px;
  grid-row-gap: 144.46px;
  position: relative;
}

@media only screen and (max-width: 1300px) {
  .nos-valeurs > p {
    max-width: 100%;
  }

  .valeurs-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 80px;
  }
}

@media only screen and (max-width: 877px) {
  .valeurs-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.main-icon-container {
  width: 144.77px;
  height: 143.85px;
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  border: 0.94px solid;
  border-image-source: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.5) 49%,
    rgba(255, 255, 255, 0.1) 97.99%
  );
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 104.5px;
}

.valeur-card {
  width: 100%;
  max-width: 374.83px;
  height: 225px;
  justify-self: center;
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  border: 1px solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(153, 153, 153, 0.4) 100%
  );
  color: #fff;
  padding: 80px 30px 30px 30px;
  border-radius: 30px;
  position: relative;
}

@media only screen and (max-width: 1300px) {
  .valeur-card {
    max-width: 100%;
  }
}

.card-1::after,
.card-2::after,
.card-3::after {
  content: "";
  position: absolute;
  width: 12.78px;
  height: 12.78px;
  background-image: url(https://20xleap.com/img/sparkle.svg);
  background-size: cover;
  background-repeat: no-repeat;
  top: 32px;
  left: 40px;
}

.card-1::before,
.card-2::before,
.card-3::before {
  content: "";
  position: absolute;
  width: 12.78px;
  height: 12.78px;
  background-image: url(https://20xleap.com/img/sparkle.svg);
  background-size: cover;
  background-repeat: no-repeat;
  top: 32px;
  right: 24.83px;
}

.valeur-card-icon {
  width: 76.28px;
  height: 75.64px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.valeur-card h3 {
  font-size: 30px;
  padding-bottom: 22px;
  font-weight: 700;
}

.valeur-card p {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
  text-align: center;
}

/* ==================================== */
/* =========== Why Choose Us ========== */
/* ==================================== */

.chose-us {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chose-us > p {
  padding: 40px 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

@media only screen and (max-width: 1300px) {
  .chose-us > p {
    max-width: 100%;
  }
}

.chose-us-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 80px;
  width: 100%;
}

.chose-us-card {
  background-color: transparent;
  color: #000;
  padding: 25.5px 40px;
  border: 3px solid;
  /* border-image-source: linear-gradient(180deg, #343434 0%, #1e1e1e 100%); */
  border-radius: 24px;
  max-width: 1300px;
  width: 100%;
  /* height: 87px; */
}

.chose-us-card-clicked {
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
	border: unset !important;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title h3 {
  font-size: 30px;
  font-weight: 700;
	line-height: normal;
}

@media only screen and (max-width: 1300px) {
  .chose-us-card {
    max-width: 100%;
    padding: 20px 30px;
  }

  .card-title h3 {
    width: 80%;
    font-size: 20px;
    font-weight: 700;
  }
}

.icon {
  width: 26px;
  height: 26px;
  background-image: url(https://20xleap.com/img/StarFour.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.icon-clicked {
  background-image: url(https://20xleap.com/img/Minus.svg);
}

.chose-us-card p {
  font-size: 16px;
	line-height: normal;
	padding-right: 20px;
}

.chose-us-card p:not(:last-child) {
  padding-bottom: 28px;
}

/* Utility to actually hide the panel when toggled */
.hidden { display: none !important; }

/* Smooth accordion animation using max-height */
.chose-us-card-notes {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
}

/* When card is expanded, allow the panel to size naturally after transition */
.chose-us-card[aria-expanded="true"] .chose-us-card-notes {
  /* JS sets max-height to content height during transition, then to none */
}

/* Make the whole title feel clickable and focusable */
.card-title { cursor: pointer; }

/* Optional: flip your icon via class you already toggle */
.chose-us-card[aria-expanded="true"] .icon {
  background-image: url(https://20xleap.com/img/Minus.svg);
}

.chose-us-card-clicked  .chose-us-card-notes {
	max-height: max-content !important;
}

/* ==================================== */
/* =========== Our Approach =========== */
/* ==================================== */

.notre-approche {
  max-width: 1137px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}

@media only screen and (max-width: 1300px) {
  .notre-approche {
    max-width: 100%;
  }
}

.notre-approche-cards {
  display: flex;
  gap: 30px;
  row-gap: 30.98px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 57px 0 34px;
  align-items: stretch;
}

.notre-approche-card {
  width: calc(33.33% - 20px);
  padding: 60px 30px;
  border-radius: 10px;
  border: 1px solid #1a1a1a;
}

@media only screen and (max-width: 1300px) {
  .notre-approche-card {
    width: calc(50% - 15px);
  }
}

@media only screen and (max-width: 667px) {
  .notre-approche-card {
    width: 100%;
  }
}

.notre-approche-card span {
  /* background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%); */
  display: inline-block;
  font-size: 58px;
  line-height: 30px;
  font-weight: 700;
  padding-bottom: 60px;
}

.notre-approche-card p {
  font-size: 20px;
  font-weight: 500;
}

.approche-card-1 {
  border: none;
  padding: 30px 0;
  display: flex;
  align-items: center;
}

.approche-card-1 p {
  color: #3E3E3E;
text-align: justify;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 30px; /* 150% */
letter-spacing: -0.6px;
}

.approche-card-1 p:not(:last-child) {
  padding-bottom: 20px;
}

.approche-card-3,
.approche-card-5 {
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  border: 1px solid var(--Color, #ffffff);
  color: #fff;
}

.notre-approche > p {
  font-size: 20px;
  font-weight: 500;
  text-align: justify;
}

/* ==================================== */
/* =========== Our Programs =========== */
/* ==================================== */

.nos-programmes {
  padding-top: 40px;
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  color: #fff;
  position: relative;
}

.nos-programmes > p {
  max-width: 738px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 40px 16px 60px;
  font-size: 20px;
  font-weight: 500;
}

.nos-programmes-cards {
  position: relative;
  overflow-x: auto;
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
	overflow-x: hidden;
}

.slider-arrows {
	padding-bottom: 60px;
}

.nos-programmes-cards::-webkit-scrollbar {
  display: none;
}

.nos-programmes-card-container {
  background: linear-gradient(180deg, #ffffff 0%, #77679f 100%);
  border-radius: 24px;
  padding: 1px;
  flex: 0 0 calc((100% - 30%) / 3);
  margin: 0 10px;
  scroll-snap-align: center;
}

@media only screen and (max-width: 1300px) {
.nos-programmes-card-container {
  flex: 0 0 calc((100% - 20%) / 2);
}
}


@media only screen and (max-width: 800px) {
.nos-programmes-card-container {
  flex: 0 0 calc((100% - 20%));
}
}



.nos-programmes-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  border-radius: 24px;
  text-align: center;
  width: 100%;;
  height: 255px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nos-programmes-card h2 {
  font-weight: 700;
}

.nos-programmes-card p {
  font-size: 16px;
  font-weight: 500;
  padding: 0 23px;
}

.scroll-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding-bottom: 40px;
}

.dot {
  height: 5px;
  width: 40px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.15) 100%
  );
  border-radius: 99px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: #fff;
  width: 100px;
}

 @media only screen and (max-width: 800px) {
  .nos-programmes-card { 
    scroll-snap-align: center !important;
  }
} 

/* ==================================== */
/* =========== Our Trainings ========== */
/* ==================================== */

.nos-formations {
  text-align: center;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  height: 752px;
  padding: 100.24px 80px 70.76px 80px;
  position: relative;
}

@media only screen and (max-width: 768px) {
	
	.nos-formations {
	padding: 100px 16px 50px 16px !important;
		height: 620px !important;
	}
	.my-carousel {
  margin-top: 20px !important;
	}
	
	.my-card.my-back {
	display: none !important;	
	}
	
	.my-carousel-container {
  height: 380px !important;
		margin-top: 20px;
		
	}
	
}

/* Carousel specific styles - adjusted for integration */
.my-carousel-container {
  width: 100%;
  height: 480px; /* Adjusted height for better integration */
  display: flex;
  justify-content: center;
  perspective: 4000px; /* Crucial for 3D effect */
  overflow: hidden; /* Hide overflow from cards */
}

.my-carousel {
  position: absolute;
  left: 50%;
  margin-top: 99.79px;
  transform: rotateX(-8deg) translate(-50%, -50%);
  width: 320px;
  transform-style: preserve-3d;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.my-card {
  position: absolute;
  max-width: 334px;
  width: 100%;
  height: 240px;
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  color: #fff;
  backface-visibility: visible;
  transition: all 0.5s ease;
  padding: 39.79px 39px 0 29px;
  overflow: hidden;
}

.my-card:nth-child(3n - 2)::after {
  content: url(https://20xleap.com/img/mask-2.svg);
  position: absolute;
  width: 100%;
  bottom: 1;
  right: 1;
}

.my-card:nth-child(3n - 1)::after {
  content: url(https://20xleap.com/img/mask-3.svg);
  position: absolute;
  width: 100%;
  bottom: -25px;
  right: -86px;
}

.my-card:nth-child(3n)::after {
  content: url(https://20xleap.com/img/mask-2.svg);
  position: absolute;
  width: 100%;
  bottom: -25px;
  right: -86px;
}

.my-card.my-back {
  opacity: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
}

.my-card.my-back > * {
  visibility: hidden;
}

.my-card.my-back::after {
  visibility: hidden;
}

.my-card h3 {
  text-align: start;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 23px;
}

.my-card p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 23px;
}

.my-learn-more {
  padding: 8px 16px;
  background: linear-gradient(
      0deg,
      rgba(16, 16, 16, 0.2),
      rgba(16, 16, 16, 0.2)
    ),
    conic-gradient(
      from 181.06deg at 50% 50%,
      rgba(71, 47, 140, 0.4) 0deg,
      rgba(0, 0, 0, 0) 172.66deg,
      #493582 281.25deg,
      rgba(71, 47, 140, 0.4) 360deg
    );
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 99px;

  /* background: transparent; */
  /* border: 2px solid rgba(255, 255, 255, 0.3); */

  color: rgba(255, 255, 255, 1);
  font-size: 16px;

  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.my-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  opacity: 50%;
}

@media only screen and (max-width: 1110px) {
  .my-nav-btn {
    display: none;
  }
}

.my-nav-btn:hover {
  opacity: 100%;
}

.my-nav-btn.my-prev {
  left: 1%;
  transform: rotate(180deg);
}

.my-nav-btn.my-next {
  right: 1%;
}

.formations-scroll-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding-bottom: 40px;
}

.formations-dot {
  height: 5px;
  width: 40px;
  background: rgba(30, 30, 30, 0.15);
  border-radius: 99px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}

.formations-dot.formations-active {
  background-color: #1e1e1e;
  width: 100px;
}


/* ==================================== */
/* ======== Incubated Projects ======== */
/* ==================================== */

.lin-background {
	background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
}

.projets-incubes {
  
  color: #fff;
  padding: 100px 0 30.76px;
}

.projets-incubes-container {
  text-align: center;
  max-width: 1300px;
  width: 100%;
  margin: autoso;
  margin: 0 auto;
  position: relative;
  padding: 0 80px;
}

.projets-incubes-container h2 {
	margin-bottom: 21px !important;
}

.projects {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media only screen and (max-width: 800px) {
  .projects {
    padding-top: 20px;
  }
}

.projects::-webkit-scrollbar {
  display: none;
}

.project {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-scroll-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url(https://20xleap.com/img/grey-arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 40%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.p-scroll-btn:hover {
  background-image: url(https://20xleap.com/img/white-arrow.svg);
}

.p-left {
  left: 1%;
}

.p-right {
  right: 1%;
  transform: translateY(-50%) rotate(180deg);
}

@media only screen and (max-width: 800px) {
  .projets-incubes {
    padding-bottom: 100px;
  }

  .p-scroll-btn {
    top: 110%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }

  .p-left {
    left: 10%;
  }

  .p-right {
    right: 10%;
    transform: translateY(-50%) rotate(180deg);
  }
}

.project-info {
  max-width: 666px;
  width: 100%;
  height: 155px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: start;
}

@media only screen and (max-width: 600px) {
  .projets-incubes-container {
    padding: 0 40px;
  }
  .project {
    flex-wrap: wrap;
  }
  .project-info {
    margin-bottom: 30px;
  }
}

.project-info h2 {
  font-size: 30px;
  font-weight: 700;
}

.project-info p {
  max-width: 503px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}

.project-info a {
  font-size: 20px;
  font-weight: 500;
}

.project-img {
  max-width: 443px;
  width: 100%;
  height: 312px;
  background-image: url(https://20xleap.com/img/Rectangle\ 98.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ==================================== */
/* =========== Candidature ============ */
/* ==================================== */

.candidater {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 50px 0;
  text-align: center;
	margin-bottom: 100px;
  
}

.candidater h2 {
  color: var(--Color, #FFF);
text-align: center;

/* Mini title */
font-family: Inter;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.candidater p {
  color: var(--Color, #FFF);
text-align: center;

/* subtitle */
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.candidater a {
  display: inline-block;
  background: white;
  border: 1px solid #ffffff1a;
  color: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  padding: 18px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 14px;
}

/* ==================================== */
/* ======== Our Co-Directors ========== */
/* ==================================== */

.nos-co-dirigeant {
  width: 100%;
  max-width: 1138px;
  margin: 0 auto;
	padding-left: 16px;
  padding-right: 16px;
	padding-top: 100px;
}

.co-dirigeant-cards {
  display: flex;
  padding: 100px 0;
	gap: 20px;
}

@media only screen and (max-width: 1160px) {
  .co-dirigeant-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
  }
}

.co-dirigeant-card {
  display: flex;
  /* height: 320px; */
  max-width: 555px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.co-dirigeant-img {
  width: 302px;
  height: 100%;
  overflow: hidden;
}

.co-dirigeant-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.co-dirigeant-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #dbddde;
  width: 100%;
  max-width: 253px;
  border-radius: 0 8% 8% 0;
	padding: 20px;
	justify-content: center;
}

.co-dirigeant-info h3 {
  font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.co-dirigeant-info span {
background: var(--Linear, linear-gradient(180deg, #343434 0%, #1E1E1E 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.co-dirigeant-info p {
  
/* body */
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.co-dirigeant-links {
  display: flex;
  gap: 12px;
}

.co-dirigeant-links img {
  width: 28px;
  height: 28px;
  margin-top: 16px;
}

@media only screen and (max-width: 500px) {
  .co-dirigeant-card {
    flex-direction: column;
    align-items: center;
  }

  .co-dirigeant-img {
    width: 80%;
    height: 80%;
    overflow: hidden;
  }

  .co-dirigeant-info {
    width: 100%;
    border-radius: 0;
    max-width: 80%;
    padding: 24px;
    gap: 10px;
  }
}



/* ==================================== */
/* ========== Our Trainers ============ */
/* ==================================== */

.formateurs {
  background-color: #3b3b3b;
  padding: 100px 12px;
}

.formateurs-cards {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

@media only screen and (max-width: 935px) {
  .formateurs-cards {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.formateur-card {
  background-color: #fff;
  border-radius: 24px 24px 0 0;
  width: 294px;
  min-height: 513px;
  overflow: hidden;
}

.formateur-img {
  width: 100%;
  height: 294px;
  background-image: url(https://20xleap.com/img/formateur-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 651px) {
  .formateur-card {
    width: 400px;
  }
}

.formateur-img-2 {
  background-image: url(https://20xleap.com/img/formateur-2.png);
}

.formateur-img-3 {
  background-image: url(https://20xleap.com/img/formateur-3.png);
}

.formateur-info {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.formateur-info h1 {
  font-size: 30px;
  font-weight: 700;
}

.formateur-info span {
  font-size: 16px;
  font-weight: 400;
}

.formateur-info p {
  font-size: 16px;
  font-weight: 400;
  padding: 12px 10px;
}

.formateur-links {
  display: flex;
  gap: 12px;
  padding-bottom: 6px;
}

.formateur-links img {
  width: 24px;
  height: 24px;
}

/* ==================================== */
/* ============= News ================= */
/* ==================================== */




.conseil-card-social {
	padding-bottom: 4px !important;
}

@media only screen and (max-width: 1040px) {
  
	.nos-partenaire {
		padding-top: 0 !important;
	}
	
	
}


/* ==================================== */
/* ============ Contact =============== */
/* ==================================== */

.contact {
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  padding: 55.24px 16px 54.76px;
}

.contact-container {
  max-width: 1196px;
  width: 100%;
  min-height: 667px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  gap: 50px;
  box-shadow: 0px 0px 60px 30px #00000008;
}

@media only screen and (max-width: 900px) {
  .contact-container {
    flex-wrap: wrap;
  }
}

.coordonnees {
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  padding: 40px;
  border-radius: 10px;
  color: #fff;
  box-sizing: border-box;
  max-width: 491px;
  width: 100%;
  height: 647px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 900px) {
  .coordonnees {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    height: fit-content;
  }
}

@media only screen and (max-width: 723px) {
  .coordonnees {
    flex-wrap: wrap;
  }

  .coordonnees > * {
    width: 100%;
  }

  .coordonnees > *:not(:last-child) {
    padding-bottom: 60px;
  }
}

.coordonnees::after {
  content: "";
  width: 269px;
  height: 269px;
  background-image: url(https://20xleap.com/img/ellipse.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 464px;
  left: 311px;
}

.coordonnees::before {
  content: url(https://20xleap.com/img/ellipse.svg);
  position: absolute;
  width: 138px;
  height: 138px;
  top: 438px;
  left: 283px;
}

.coordonnees-head {
  padding-bottom: 81px;
}

.coordonnees-head h2 {
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 22px;
}

.coordonnees-head p {
  font-size: 20px;
  font-weight: 500;
  color: #c9c9c9;
  max-width: 364px;
  width: 100%;
}

.coordoonees-info {
  padding-bottom: 148px;
}

.coordoonees-info > *:not(:last-child) {
  padding-bottom: 50px;
}
.coordoonees-info img {
  width: 24px;
  height: 24px;
}

.phone,
.email,
.address {
  display: flex;
  gap: 25px;
  align-items: start;
  font-size: 16px;
}

.address p {
  width: 288px;
}

.coordonnees-links {
  display: flex;
  gap: 4px;
}

.coordonnees-links img {
  min-width: 28px;
  min-height: 28px;
  background-color: #fff;
  border-radius: 4px;
  padding: 2px;
}

@media only screen and (max-width: 900px) {
  .coordoonees-info {
    padding-bottom: 0;
  }

  .coordoonees-info > *:not(:last-child) {
    padding-bottom: 20px;
  }

  .phone,
  .email,
  .address {
    gap: 15px;
  }
}

.form {
  width: 100%;
  padding-top: 60px;
}

form {
  display: flex;
  flex-wrap: wrap;
}

.nom-prenom,
.email-phone {
  width: 100%;
  display: flex;
  gap: 39px;
  padding-bottom: 45px;
}

.form-group {
  position: relative;
  max-width: 278px;
  width: 100%;
  height: 55px;
}

.message,
.objet {
  max-width: 595px;
  width: 100%;
  margin-bottom: 45px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 7px;
  font-size: 20px;
}

@media only screen and (max-width: 1000px) {
  .form-group label {
    font-weight: 400;
    font-size: 16px;
  }
}

.form-group input {
  font-size: 16px;
  width: 100%;
  border-bottom: 2px solid #8d8d8d;
  padding: 7px 0 5px;
}

.form-group input::placeholder {
  color: #8d8d8d;
}

form button {
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  box-shadow: 0px 0px 14px 0px #0000001f;
  max-width: 254px;
  width: 100%;
  height: 49px;
  padding: 15px 48px;
  border-radius: 5px;
  margin-right: 50px;
  margin-left: auto;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 900px) {
  .form-group {
    max-width: 100%;
    padding: 0 20px;
  }

  .message,
  .objet {
    max-width: 100%;
  }
  .nom-prenom,
  .email-phone {
    flex-wrap: wrap;
  }

  form button {
    margin: 20px auto;
  }
}

/* ==================================== */
/* ========== Why Us (Section 1) ====== */
/* ==================================== */

.pourquoi-nous {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 100px 12px;
}

.pourquoi-nous-img {
  max-width: 397px;
  width: 100%;
  height: 544px;
  transform: rotate(-4deg);
  border-radius: 28px;
  background-image: url(https://20xleap.com/img/pourquoi-nous.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.pourquoi-nous-info {
  width: 866px;

}

.pourquoi-nous-info h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
}

@media only screen and (max-width: 665px) {
  .pourquoi-nous {
    flex-wrap: wrap;
  }

  .pourquoi-nous-img {
    height: 260px;
    width: 100%;
    max-width: 544px;
    transform: rotate(0);
  }

  .pourquoi-nous-info h2 {
    text-align: center;
  }
}

.pourquoi-nous-info p {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}

.pourquoi-nous-info ul {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
	list-style: disc;
  margin-left: 28px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.pourquoi-nous-info li {
	margin-bottom: 10px;
}


.pourquoi-nous-info a {
  align-self: flex-start;
  width: 268;
  height: 56;
  padding: 18px 24px;
  border-radius: 50px;
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  font-size: 20px;
  font-weight: 500;
	margin: 0;
	margin-top: 50px;
	margin-bottom: 50px;
}

/* ==================================== */
/* ========== Why Us (Section 2) ====== */
/* ==================================== */

.pourquoi-nous-2 {
  background-color: #dbddde;
  padding: 100px 12px;
}

.pourquoi-nous-2 > p {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  color: #494949;
  padding: 100px 0;
}

.pourquoi-nous-2-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 51px;
  max-width: 1146px;
  width: 100%;
  margin: 0 auto;
}

.pourquoi-nous-2-card {
  /* height: 200px; */
  display: flex;
  gap: 100px;
  align-items: center;
}

.pourquoi-nous-2-card p {
  font-size: 30px;
  font-weight: 500;
  text-align: justify;
}

.pourquoi-nous-2-card p span {
  font-weight: 700;
}

@media only screen and (max-width: 881px) {
  .pourquoi-nous-2 {
    padding-bottom: 200px;
  }

  .pourquoi-nous-2-cards {
    gap: 80px;
    justify-content: center;
  }
  .pourquoi-nous-2-card {
    flex-wrap: wrap;
    gap: 51px;
    width: 100%;
    justify-content: center;
  }

  .pourquoi-nous-2-card:nth-child(2) {
    flex-direction: column-reverse;
  }

  .pourquoi-nous-2-card p {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
  }
}

.pourquoi-nous-2-card-img {
  max-width: 393px;
  width: 100%;
  height: 200px;
  border-radius: 24px;
  background-image: url(https://20xleap.com/img/p-nous-1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.pourquoi-nous-img-2 {
  background-image: url(https://20xleap.com/img/p-nous-2.jpg);
}

.pourquoi-nous-img-3 {
  background-image: url(https://20xleap.com/img/p-nous-3.webp);
}

/* ==================================== */
/* ============== Footer ============== */
/* ==================================== */

footer {
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  color: #fff;
  padding: 40px 12px;
  overflow-x: hidden;
}

.footer-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 1030px) {
  .footer-container {
    /* flex-wrap: wrap; */
    flex-direction: column;
    gap: 40px;
  }
}

.footer-section-1 {
  max-width: 252px;
  width: 100%;
}

.footer-section-1 img {
  max-width: 138px;
  width: 100%;
  padding-bottom: 12px;
}

.footer-section-1 p {
  font-size: 16px;
}

@media only screen and (max-width: 1030px) {
  .footer-section-1 {
    max-width: 100%;
  }
}

.footer-section-2 {
  max-width: 259px;
  width: 100%;
  /* height: 153px; */
}

.footer-section-2 h3 {
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 24px;
}

.footer-section-2 ul li {
  padding-bottom: 12px;
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 49px;
}

@media only screen and (max-width: 1030px) {
  .footer-section-2 {
    max-width: 100%;
  }

  .footer-section-2 ul li {
    padding-bottom: 18px;
    font-size: 16px;
  }

  .footer-links {
    display: flex;
    gap: 90px;
  }
}

.footer-section-3 {
  display: flex;
  flex-direction: column;
  gap: 19px;
  max-width: 454px;
  width: 100%;
  /* height: 145.13px; */
}

.footer-section-3 h3 {
  font-size: 20px;
  font-weight: 500;
}

.sub-form {
  position: relative;
  opacity: 0.6;
}

.sub-form input {
  max-width: 454px;
  width: 100%;
  height: 51px;
  border: 1px solid #f2f2f2;
  padding: 16px 20px;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
}

.sub-form input::placeholder {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.sub-form button {
  border: 1px solid #f2f2f2;
  padding: 16px 60px;
  border-radius: 54px;
  max-width: 199px;
  width: 100%;
  height: 51px;
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  color: #fff;
}

@media only screen and (max-width: 475px) {
  .sub-form button {
    top: calc(100% + 19px);
    padding: 15px;
    max-width: 120px;
    height: fit-content;
  }
}

.footer-section-3 img {
  width: 32.13px;
  height: 32.13px;
}

.footer-socail-links {
  display: flex;
  gap: 12px;
}












.full-width img{
	width: 100% !important;
}

.hero-pattern {
  position: relative;
	margin-bottom: 197px;
}

.hero-pattern h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  text-align: center;
color: var(--Color, #FFF);
font-family: Inter;
font-size: 110px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
	max-width: 1100px;
  width: 100%;
	margin: auto;
	z-index: 9999;
	padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (max-width: 900px) {
	
	.hero-pattern h1 {
		font-size: 60px;
	}
	
}


.hero-pattern span {
font-weight: 700;
}


.hero-pattern strong {
font-weight: 900;
}

.center-bottom img{

	position: absolute;
left: 50%;
bottom: 0;
transform: translate(-50%, -45%);
z-index: 99;

	
	
}

@media only screen and (max-width: 900px) {

.center-bottom img{
transform: translate(-50%, 0%);

	
	
}
	
}


.hero-pattern {
  position: relative;	
	height: 785px;
}




.hero-pattern::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 86%;
  background: linear-gradient(0deg, rgba(30, 30, 30, 0.5) 0%, rgba(30, 30, 30, 0.5) 100%);
  mix-blend-mode: darken;
  z-index: 3; /* between video and text */
  pointer-events: none; /* keep text/links clickable */
	clip-path: ellipse(60% 100% at 50% 0%);
}


/* Make the hero section full width/height if needed */
.hero-pattern .hero-image img {
  
	
}

/* Video positioned over image */
.hero-pattern video {
  position: absolute;
  top: 0;
  left: 0;

  object-fit: cover;
  z-index: 2; 
  pointer-events: none;
	width: 100%;
  height: 86%;
  object-fit: cover;
  display: block;
	clip-path: ellipse(60% 100% at 50% 0%);
}


@media only screen and (max-width: 900px) {

	
	.hero-pattern video {
			clip-path: ellipse(90% 100% at 50% 0%);
	}
	
	.hero-pattern::after {
		clip-path: ellipse(90% 100% at 50% 0%);
	}
	.hero-pattern {
	  height: 500px;
	}
}

@media only screen and (max-width: 667px) {

	

	.hero-pattern h1 {
		font-size: 48px;
	}
}

/* Center the main headline text */
.hero-pattern .core-block.block__formatting--paragraph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff; 
  font-size: 2.5rem;
  line-height: 1.4;
  z-index: 4; 
	margin: auto;
  width: 100%;
	
}


/* ==================================== */
/* ========== Our History ============= */
/* ==================================== */

.notre-histoire {
  padding: 100px 16px 28px 16px;
	width: 100%;
}

.notre-histoire-cards {
  margin-top: 100px;
}

.notre-histoire-card {
  display: flex;
  align-items: center;
  gap: 59px;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  box-shadow: 0px 69px 114px 0px #1e1e1e14;
  max-width: 895px;
  width: 100%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.notre-histoire-card:not(:first-child) {
  margin-top: -10px;
}

.notre-histoire-card:nth-child(1) {
  z-index: 100;
}

.notre-histoire-card:nth-child(2) {
  margin-left: auto;
  z-index: 90;
}

.notre-histoire-card:nth-child(3) {
  z-index: 80;
}

.notre-histoire-card-img {
  width: clamp(200px, 25vw, 296px);
  flex-shrink: 0;
  /* width: 100%; */
  background-image: url(https://20xleap.com/img/histoire-1.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  align-self: stretch;
}



.notre-histoire-card-info {
  padding: 73px 70px 73px 0;
}

.notre-histoire-card-info h3 {
  font-weight: 700;
  font-size: 30px;
  position: relative;
  display: inline-block;
  margin-bottom: 48px;
}

.notre-histoire-card-info h3::after {
  content: "";
  position: absolute;
  border-bottom: 3px solid #1e1e1e;
  width: 82px;
  bottom: -29px;
  left: 0;
}

.notre-histoire-card-info p {
  font-weight: 400;
  font-size: 16px;
}

@media only screen and (max-width: 900px) {
  .notre-histoire-card {
    flex-direction: column;
    gap: 0;
	margin-top: 28px !important;  
  }

  .notre-histoire-card-img {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .notre-histoire-card-info {
    padding: 50px 40px;
  }
}


/* ============ Our Coaches =========== */
/* ==================================== */

.coachs {
  padding: 0 14px;
  margin: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.coach-pos {
  display: flex;
  justify-content: space-between;
}

.coachs-cards {
  margin-top: 100px;
  max-width: 1136px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  place-items: center;
  /* grid-template-columns: repeat(3, 1fr); */
  /* grid-template-rows: repeat(2, 1fr); */
  row-gap: clamp(30px, 8vw, 100px);
  column-gap: 20px;
	padding: 20px 100px;
	border: 2px dashed #9747FF;
}

@media only screen and (max-width: 900px) {
.coach-card {
  width: 100% !important;
	}
	
	.coach-info {
		width: 100% !important;
	}
	
	.coachs-cards {
		padding: 20px 40px !important;
	}	
	
	.coach-img {
  width: 100% !important;
		
	}
	
}

/* @media only screen and (max-width: 935px) {
  .coachs-cards {
  }
} */

.coach-card {
  width: 292px;
  height: 100%;
  position: relative;
}

.coach-img {
  width: 292px;
  height: 336px;
  background-image: url(https://20xleap.com/img/coach-1.png);
  background-color: #493582;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 24px;
  margin-bottom: 16px;
  box-shadow: -9px 11px 38.1px 0px rgba(0, 0, 0, 0.05);
}



.coach-card span {
  border: 1px solid var(--Option-9-tag-border, rgba(38, 38, 42, 1));
  border-radius: 20px;
  padding: 2px 12px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
}

.coach-card p {
  color: var(--Option-9-typography-text-secondary, #5F6155);

/* subtitle */
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.coach-info {
  background: rgba(52, 52, 52, 0.85);
  position: absolute;
  border-radius: 24px;
  padding: 40px 16px;
  height: 336px;
  width: 292px;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.coach-info:hover {
  opacity: 100%;
}

.coach-links {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.coach-links img {
  width: 24px;
}

.coach-info p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}




/* ==================================== */
/* ========== Our Council ============= */
/* ==================================== */

.conseil {
  background: linear-gradient(180deg, #343434 0%, #1e1e1e 100%);
  color: #fff;
}

.conseil-container {
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 50px;
}

.conseil-container p {
  font-weight: 500;
  font-size: 20px;
}

.conseil-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
	width: 100%;
}

.top-cards,
.bottom-cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
	width: 100%;
}

.conseil-card {
  max-width: 294px;
  width: 100%;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #fff;
  overflow: hidden;
  border: 1px solid #fff;
}

.conseil-card-head {
  background-color: #1e1e1e;
  padding: 2px 0;
}

.conseil-card-head h3 {
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  text-transform: capitalize;
}

.conseil-card-head strong {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}

.conseil-card p {
  font-weight: 400;
  font-size: 16px;
  color: #1e1e1e;
	padding-right: 10px;
  padding-left: 10px;

}

.address-info h3 {
	color: #FFF;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
	padding-bottom: 4px;
}

.conseil-card-social ul {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.top-rounded {
  border-radius: 24px 24px 0 0;
}

.bottom-rounded {
  border-radius: 0 0 24px 24px;
}


/* ==================================== */
/* ========== Why Us (Section 2) ====== */
/* ==================================== */

.nos-partenaire {
  padding: 100px 12px;
}

.nos-partenaire > p {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  color: #494949;
  padding: 100px 0;
}

.nos-partenaire-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 51px;
  max-width: 1146px;
  width: 100%;
  margin: 0 auto;
}

.nos-partenaire-card {
  min-height: 200px;
  display: flex;
  gap: 100px;
  align-items: center;
	width: 100%;
}

.nos-partenaire-card-info h3 {
  color: var(--dark-grey, #494949);

/* Mini title */
font-family: Inter;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.nos-partenaire-card-info strong {
  color: var(--dark-grey, #494949);

/* title 2 */
font-family: Inter;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: capitalize;
}

.nos-partenaire-card-info p {
  color: var(--dark-grey, #494949);

/* subtitle */
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
}


.nos-partenaire-card-info a {
	color: var(--dark-grey, #494949);
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
	display: block;
	padding-top: 20px;
}

@media only screen and (max-width: 881px) {
  .nos-partenaire {
    padding-bottom: 40px;
  }

  .nos-partenaire-cards {
    gap: 60px;
    justify-content: center;
    text-align: center;
  }

  .nos-partenaire-card {
    flex-wrap: wrap;
    gap: 51px;
    width: 100%;
    justify-content: center;
  }

  .nos-partenaire-cards .nos-partenaire-card:first-child {
    flex-direction: column-reverse;
  }

  .nos-partenaire-card-info p {
    font-size: 24px;
    font-weight: 500;
  }
}

.nos-partenaire-card-img {
  max-width: 393px;
  width: 100%;
  height: 200px;
  border-radius: 24px;
  background-image: url(https://20xleap.com/img/p-nous-1.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  box-shadow: -9px 11px 38.1px 0px #0000000d;
}

.nos-partenaire-img-2 {
  background-image: url(https://20xleap.com/img/p-nous-2.jpg);
}

.nos-partenaire-img-3 {
  background-image: url(https://20xleap.com/img/p-nous-3.webp);
}

/* ==================================== */
/* ============== Footer ============== */
/* ==================================== */