@charset "UTF-8";
.Footer_TxtEmail {
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 300;
}

* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Body";
  src: url("../../font/Inter-VariableFont.ttf") format("woff2");
  font-weight: 100, 900;
  font-style: normal;
}
@font-face {
  font-family: "Title";
  src: url("../../font/Coralith.woff2") format("woff2"), url("../../font/Coralith.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html {
  font-family: "Body";
  font-size: 16px;
  color: #16171F;
}

body {
  font-family: "Body", sans-serif;
  background-color: #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#slideBtn a {
  text-decoration: none;
}

/* Loader overlay */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* ou ta couleur de fond principale */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-container.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Spinner simple (tu peux le styliser comme tu veux) */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #333; /* ou ta couleur principale */
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* HOME PAGE -------------------------- */
.NavWrapper {
  position: fixed;
  overflow: clip;
  width: 100%;
  z-index: 100;
}

.Navbar {
  width: 100%;
  padding: 16px 0px;
  position: fixed;
  background-color: white;
  -webkit-box-shadow: 0 2px 4px 0 rgba(22, 23, 31, 0.1);
          box-shadow: 0 2px 4px 0 rgba(22, 23, 31, 0.1);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  z-index: 99;
}
@media (max-width: 860px) {
  .Navbar {
    padding: 10px 0px;
  }
}

.Navbar a {
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: #16171F;
}
.Navbar a:hover {
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 500px) {
  .Logo {
    width: 112px;
  }
}

.Navbar-Container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.Menu-Desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  list-style-type: none;
}
@media (max-width: 860px) {
  .Menu-Desktop {
    display: none;
  }
}

.BtnBurger {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  outline: none;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearence: none;
  -webkit-tap-highlight-color: transparent;
}
.BtnBurger svg {
  width: 64px;
  height: 48px;
  top: -6px;
  left: -14px;
  stroke: #16171F;
  stroke-width: 4px;
  stroke-linecap: square;
  stroke-linejoin: round;
  fill: none;
  display: block;
  position: absolute;
  z-index: 200;
}
.BtnBurger svg path {
  -webkit-transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
  transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
  stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
  stroke-dashoffset: var(--offset, 126px);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.BtnBurger svg path:nth-child(2) {
  --duration: .7s;
  --easing: ease-in;
  --offset: -6px;
  --array-2: 74px;
}
.BtnBurger svg path:nth-child(3) {
  --offset: 133px;
  --array-2: 107px;
}
.BtnBurger.active svg path {
  --offset: 57px;
}
.BtnBurger.active svg path:nth-child(1), .BtnBurger.active svg path:nth-child(3) {
  --delay: .15s;
  --easing: cubic-bezier(.2, .4, .2, 1.1);
}
.BtnBurger.active svg path:nth-child(2) {
  --duration: .4s;
  --offset: 2px;
  --array-1: 1px;
}
.BtnBurger.active svg path:nth-child(3) {
  --offset: 58px;
}
@media (max-width: 860px) {
  .BtnBurger {
    display: block;
  }
}

.Menu-Mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: fixed;
  height: 100dvh;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  top: 0;
  left: 360%;
  right: 0;
  list-style-type: none;
  -webkit-transition: left cubic-bezier(0.87, -0.08, 0, 1.05) 0.5s;
  transition: left cubic-bezier(0.87, -0.08, 0, 1.05) 0.5s;
  z-index: 98;
}

.ListMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}

.ListMenu a {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #16171F;
}
.ListMenu a:hover {
  font-weight: bold;
  text-decoration: underline;
}

.MenuIcon {
  position: absolute;
  bottom: 0;
  width: 20dvh;
}

.HeroSection {
  width: 100%;
  height: 640px;
  padding-top: 40px;
  background-image: url(../images/Texture.svg);
  background-size: cover;
  overflow: clip;
}
@media (max-width: 860px) {
  .HeroSection {
    height: 969px;
  }
}
@media (max-width: 600px) {
  .HeroSection {
    height: 92dvh;
    max-height: 648px;
  }
}

.HeroContainer {
  width: 90%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.Tof {
  position: absolute;
  bottom: -60px;
  left: -282px;
}
@media (max-width: 1186px) {
  .Tof {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    left: -482px;
  }
}
@media (max-width: 600px) {
  .Tof {
    width: 38rem;
    left: -252px;
    bottom: -28px;
  }
}
@media (max-width: 358px) {
  .Tof {
    width: 32rem;
    left: -212px;
  }
}

.TitleContainer {
  width: 472px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 44px;
  text-align: end;
  position: absolute;
  right: 0;
  top: 140px;
}
@media (max-width: 1186px) {
  .TitleContainer {
    -webkit-transform-origin: right;
            transform-origin: right;
    scale: 0.8;
  }
}
@media (max-width: 860px) {
  .TitleContainer {
    scale: 1;
  }
}
@media (max-width: 600px) {
  .TitleContainer {
    gap: 14px;
    scale: 0.7666666667;
    top: 8px;
  }
}
@media (max-width: 358px) {
  .TitleContainer {
    scale: 0.6666666667;
  }
}

.TitleBloc-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-weight: 500;
}

.TitleBloc-1 .Grp1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.625rem;
  font-weight: 300;
}
.TitleBloc-1 .Grp1 .P2 {
  font-family: "Title", sans-serif;
  font-size: 4.5rem;
}

@media (max-width: 600px) {
  .TitleBloc-1 .P3 {
    font-size: 14px;
    font-weight: 700;
  }
}

.TitleBloc-2 {
  width: 398px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  opacity: 68%;
  font-size: 0.875rem;
  font-weight: 300;
}
.TitleBloc-2 p:nth-of-type(2) {
  font-size: 0.8125rem;
  font-weight: 500;
}
@media (max-width: 600px) {
  .TitleBloc-2 {
    -webkit-transform-origin: right;
            transform-origin: right;
    scale: 1.04;
    font-weight: 400;
  }
  .TitleBloc-2 p:nth-of-type(2) {
    font-size: 13px;
    font-weight: 700;
  }
}

@media (max-width: 600px) {
  .TitleContainer button {
    margin-top: 26px;
    -webkit-transform-origin: right;
            transform-origin: right;
    scale: 1.1;
  }
}

.Line {
  height: 54px;
  position: absolute;
  right: 98px;
  bottom: 38px;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-animation: lineAnimation 2s infinite alternate;
          animation: lineAnimation 2s infinite alternate;
}
@-webkit-keyframes lineAnimation {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0.7);
            transform: scaleY(0.7);
  }
}
@keyframes lineAnimation {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0.7);
            transform: scaleY(0.7);
  }
}
@media (max-width: 1186px) {
  .Line {
    right: 80px;
    bottom: 92px;
  }
}
@media (max-width: 860px) {
  .Line {
    right: 102px;
    bottom: 380px;
  }
}
@media (max-width: 600px) {
  .Line {
    right: 86px;
    bottom: 264px;
  }
}
@media (max-width: 358px) {
  .Line {
    right: 74px;
    bottom: 254px;
  }
}

.SplitText .letter {
  display: inline-block;
  white-space: pre;
}

.intro-words .word {
  display: inline-block;
}

.LogoClientSection {
  width: 100%;
  padding: 12px 0px;
  text-align: center;
  font-family: "Title", sans-serif;
  background-color: #E6E6E6;
}
@media (max-width: 360px) {
  .LogoClientSection {
    font-size: 12px;
  }
}

.LogoClientSection .Wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.LogoClientSection .Container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 0px 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: scroll 18s linear infinite;
          animation: scroll 18s linear infinite;
}

.LogoClientSection:hover .Container {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.LogoClientSection img {
  width: 60rem;
}
@media (max-width: 360px) {
  .LogoClientSection img {
    width: 36rem;
  }
}

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.Folio {
  width: 100%;
  overflow: clip;
  padding-top: 92px;
  padding-bottom: 200px;
  background-image: url(../images/Texture2.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 686px) {
  .Folio {
    padding-top: 100px;
    padding-bottom: 140px;
  }
}
@media (max-width: 474px) {
  .Folio {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.Folio .Container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  width: 90%;
  max-width: 680px;
  margin: 0 auto;
}
.Folio .Container a {
  text-decoration: none;
}
@media (max-width: 686px) {
  .Folio .Container {
    width: 100%;
    gap: 60px;
  }
}
@media (max-width: 474px) {
  .Folio .Container {
    gap: 80px;
  }
}
@media (max-width: 474px) {
  .Folio .Container button {
    margin-top: -58px;
  }
}

.Folio .TitleBloc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.Folio .TitleBloc h2 {
  font-family: "Title";
  font-size: 5.875rem;
  font-weight: normal;
}
@media (max-width: 686px) {
  .Folio .TitleBloc h2 {
    font-size: 3.375rem;
    line-height: 38px;
  }
}
@media (max-width: 474px) {
  .Folio .TitleBloc h2 {
    font-size: 2.375rem;
  }
}

.Folio .TitleBloc p {
  font-family: "Body";
  font-size: 1rem;
}
@media (max-width: 686px) {
  .Folio .TitleBloc p {
    font-size: 0.75rem;
  }
}
@media (max-width: 474px) {
  .Folio .TitleBloc p {
    font-size: 0.6875rem;
    line-height: 6px;
  }
}

.CardContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  width: 100%;
  position: relative;
}
@media (max-width: 686px) {
  .CardContainer {
    gap: 16px;
    width: 80%;
  }
}
@media (max-width: 474px) {
  .CardContainer {
    width: 90%;
    margin-bottom: 40px;
  }
}

.CardContainer .Card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 248px;
  height: 248px;
  border-radius: 8px;
  background-color: #16171F;
  background-size: 60%;
  text-align: center;
  color: #FFFFFF;
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 686px) {
  .CardContainer .Card {
    width: 178px;
    height: 178px;
  }
}
@media (max-width: 474px) {
  .CardContainer .Card {
    width: 132px;
    height: 132px;
  }
}

.Card p {
  font-size: 0.75rem;
}
@media (max-width: 474px) {
  .Card p {
    font-size: 0.5625rem;
  }
}

.Card h3 {
  font-family: "Title";
  font-size: 2.125rem;
  font-weight: normal;
  line-height: 80%;
}
@media (max-width: 474px) {
  .Card h3 {
    font-size: 1.25rem;
  }
}

/* Appliquer l'effet hover UNIQUEMENT si le dispositif supporte le survol */
@media (hover: hover) and (pointer: fine) {
  .Card:hover {
    scale: 1.05; /* La valeur qui restait sur mobile */
  }
}
/* --------------------------------------------------------------------- */
/* La classe pour l'état "cliqué" / "actif" */
.is-clicked {
  scale: 0.9 !important;
}

/* --------------------------------------- */
/* Supprimer l'highlight pour les clics seulement */
.Card {
  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
}

.Card:focus {
  -webkit-focus-ring-color: transparent;
}

/* ............................................. */
.CardContainer .Brand {
  background-image: url(../images/Brand.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.CardContainer .UIUX {
  background-image: url(../images/UIUX.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.CardContainer .Visual {
  background-image: url(../images/VisualDesign.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.CardContainer .Graphic {
  background-image: url(../images/GraphicDesign.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.illustBox {
  width: 325px;
  height: 740px;
  position: absolute;
  right: -178px;
  top: -56px;
  background-image: url(/assets/images/illust-01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
@media (max-width: 1046px) {
  .illustBox {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    top: -48px;
    right: -122px;
    scale: 0.8;
  }
}
@media (max-width: 790px) {
  .illustBox {
    top: -28px;
    right: -70px;
  }
}
@media (max-width: 686px) {
  .illustBox {
    top: -110px;
    right: -128px;
    scale: 0.62;
  }
}
@media (max-width: 474px) {
  .illustBox {
    top: -172px;
    right: -132px;
    scale: 0.53;
  }
}
@media (max-width: 348px) {
  .illustBox {
    top: -196px;
    right: -148px;
    scale: 0.38;
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 44px 0px;
  width: 100%;
  background-color: #16171F;
  color: #FFFFFF;
}

.Footer_Title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: clamp(0.7rem, 0.7rem + 0.175 * (100vw - 390px) / 1050, 0.875rem);
}

.Footer_Title img {
  width: clamp(90px, 90px + 42 * (100vw - 390px) / 1050, 132px);
}

.Footer_TxtEmail {
  color: #E6E6E6;
}

.Footer_RSContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin-top: -14px;
}
.Footer_RSContainer img {
  width: 1.8rem;
  cursor: pointer;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.Footer_RSContainer img:hover {
  width: 2.2rem;
}

/* ----------------------------------- */
/* Catégories------------------------ */
/* Cat-Header---------------- */
#category-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(10px, 10px + 8 * (100vw - 390px) / 1050, 18px);
  width: 100%;
  height: clamp(160px, 160px + 154 * (100vw - 390px) / 1050, 314px);
  padding-top: clamp(40px, 40px + -39 * (100vw - 390px) / 1050, 1px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: left;
  background-position-y: bottom;
  text-align: center;
}
#category-bg p {
  font-size: clamp(0.8rem, 0.8rem + 3.2 * (100vw - 390px) / 1050, 4rem);
}

#category-title {
  font-family: "Title";
  font-weight: normal;
  font-size: clamp(2rem, 2rem + 28 * (100vw - 390px) / 1050, 28rem);
  line-height: 78%;
}

/* ------------------------ */
/* Main------------------- */
.Cat-Section {
  width: 100%;
  overflow: clip;
  padding-bottom: 100px;
  padding-top: 32px;
  background-image: url(../images/Texture2.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
}

.Cat-Section .isbottom {
  margin: 0 auto;
}

.Cat-TitleBloc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: clamp(20px, 0px + 5.5556vw, 80px);
  padding-bottom: clamp(60px, 53.3333px + 1.8519vw, 80px);
}

.Cat-TitleBloc p {
  font-family: "Body";
  font-size: clamp(0.68rem, 0.5733rem + 0.4741vw, 1rem);
  text-align: center;
}

.Card-Container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  padding: 0px 40px;
  margin: 0 auto;
  max-width: 1222px;
  /* Responsive */
  /* ---------------- */
}
@media (max-width: 379px) {
  .Card-Container {
    padding: 0px 10px;
  }
}

.project-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
  width: clamp(292px, 269.3333px + 6.2963vw, 360px);
  height: clamp(198px, 184px + 3.8889vw, 240px);
  padding: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  overflow: clip;
  /* keep position relative for potential overlays */
}
.project-card:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.project-card h3 {
  font-family: "Title";
  font-weight: normal;
  font-size: clamp(1.6rem, 1.5917rem + 0.037vw, 1.625rem);
  line-height: 78%;
  color: #FFFFFF;
}

.project-card p {
  font-size: clamp(0.5rem, 0.4583rem + 0.1852vw, 0.625rem);
  color: #FFFFFF;
}

.project-card button {
  background-color: #FFFFFF;
  border: none;
  padding: 6px 8px;
  border-radius: 4px;
  margin-bottom: -60px;
  margin-top: 16px;
  cursor: pointer;
  /* Transition pour une animation fluide */
  -webkit-transition: margin-bottom 0.3s ease, margin-top 0.3s ease;
  transition: margin-bottom 0.3s ease, margin-top 0.3s ease;
}

/* Modification des marges au survol de la carte parente */
.project-card:hover button {
  margin-bottom: 0px;
  margin-top: 0px;
}

/* ---------------------- */
/* --------------------------------- */
/* Projet ------------------------- */
/* Le header -----------*/
.Projet-Header {
  width: 90%;
  max-width: 1238px;
  margin: 0 auto;
  padding-top: clamp(80px, 73.3333px + 1.8519vw, 100px);
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.Btn-Back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  cursor: pointer;
}
.Btn-Back button {
  border: none;
  background: none;
}
.Btn-Back:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* Title groupe */
.Projet-TitleGrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: clamp(28px, 22.6667px + 1.4815vw, 44px);
  border-radius: 8px;
  background-color: #16171F;
  color: #FFFFFF;
}
@media (max-width: 630px) {
  .Projet-TitleGrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}

/* Left ------------------------ */
.Projet-TitleGrp .Left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.Projet-TitleGrp .Left h3 {
  font-family: "Title";
  font-weight: normal;
  font-size: clamp(2rem, 1.6667rem + 1.4815vw, 3rem);
  line-height: 90%;
}
.Projet-TitleGrp .Left #project-description {
  font-weight: 200;
  font-size: clamp(0.75rem, 0.5833rem + 0.7407vw, 1.25rem);
}
@media (max-width: 630px) {
  .Projet-TitleGrp .Left #project-description {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 630px) {
  .Projet-TitleGrp .Left {
    gap: 10px;
  }
}

/* ----------------------------- */
/* Right ---------------------- */
.Projet-TitleGrp .Right {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.Projet-TitleGrp .Right p {
  text-align: right;
  font-size: clamp(0.625rem, 0.5rem + 0.5556vw, 1rem);
  font-weight: 200;
}
@media (max-width: 630px) {
  .Projet-TitleGrp .Right p {
    text-align: left;
  }
}
.Projet-TitleGrp .Right img {
  width: clamp(34px, 21px + 3.6111vw, 73px);
}
@media (max-width: 630px) {
  .Projet-TitleGrp .Right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/* ---------------------------- */
/* ---------------------*/
/* Image du projet */
#project-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  max-width: 1238px;
  margin: 0 auto;
  overflow: clip;
  border-radius: 8px;
}
#project-images img {
  width: 100%;
}

/* Bouton du bas */
.isbottom {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 84px;
  cursor: pointer;
}
.isbottom img {
  width: 36px;
}

/* ------------------------------- */
/* Back To Top Button */
.BtnBackToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background-color: #16171F;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.BtnBackToTop:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.BtnBackToTop.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.BtnBackToTop svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 600px) {
  .BtnBackToTop {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
  .BtnBackToTop svg {
    width: 20px;
    height: 20px;
  }
}

/* ................. */